From 8f1445ea69726e4ba2960be15d3f6bf07ddcaf59 Mon Sep 17 00:00:00 2001 From: "Donald A. Lobo" Date: Fri, 1 Mar 2013 10:59:11 -0800 Subject: [PATCH] fix CRM-11995 --- CRM/Report/Form.php | 95 ++-- CRM/Report/Form/Member/ContributionDetail.php | 150 ++++--- bin/regen.sh | 2 +- sql/civicrm_generated.mysql | 68 +-- xml/templates/civicrm_navigation.tpl | 422 +++++++++--------- 5 files changed, 372 insertions(+), 365 deletions(-) diff --git a/CRM/Report/Form.php b/CRM/Report/Form.php index 14671270ef..8cdda86283 100644 --- a/CRM/Report/Form.php +++ b/CRM/Report/Form.php @@ -274,10 +274,12 @@ class CRM_Report_Form extends CRM_Core_Form { } function preProcessCommon() { - $this->_force = CRM_Utils_Request::retrieve('force', - 'Boolean', - CRM_Core_DAO::$_nullObject - ); + $this->_force = + CRM_Utils_Request::retrieve( + 'force', + 'Boolean', + CRM_Core_DAO::$_nullObject + ); $this->_section = CRM_Utils_Request::retrieve('section', 'Integer', CRM_Core_DAO::$_nullObject); @@ -381,17 +383,21 @@ class CRM_Report_Form extends CRM_Core_Form { $this->_chartButtonName = $this->getButtonName('submit', 'chart'); } - function addBreadCrumb() { - $breadCrumbs = array(array('title' => ts('Report Templates'), - 'url' => CRM_Utils_System::url('civicrm/admin/report/template/list', 'reset=1'), - )); + static function addBreadCrumb() { + $breadCrumbs = + array( + array( + 'title' => ts('Report Templates'), + 'url' => CRM_Utils_System::url('civicrm/admin/report/template/list', 'reset=1'), + ) + ); CRM_Utils_System::appendBreadCrumb($breadCrumbs); } function preProcess() { + $this->preProcessCommon(); - self::preProcessCommon(); if (!$this->_id) { self::addBreadCrumb(); } @@ -509,15 +515,9 @@ class CRM_Report_Form extends CRM_Core_Form { $this->setDefaultValues(FALSE); } - CRM_Report_Utils_Get::processFilter($this->_filters, - $this->_defaults - ); - CRM_Report_Utils_Get::processGroupBy($groupBys, - $this->_defaults - ); - CRM_Report_Utils_Get::processFields($reportFields, - $this->_defaults - ); + CRM_Report_Utils_Get::processFilter($this->_filters, $this->_defaults); + CRM_Report_Utils_Get::processGroupBy($groupBys, $this->_defaults); + CRM_Report_Utils_Get::processFields($reportFields, $this->_defaults); CRM_Report_Utils_Get::processChart($this->_defaults); if ($this->_force) { @@ -542,9 +542,7 @@ class CRM_Report_Form extends CRM_Core_Form { if ($freeze) { // find element object, so that we could use quickform's freeze method // for required elements - $obj = $this->getElementFromGroup("fields", - $fieldName - ); + $obj = $this->getElementFromGroup("fields", $fieldName); if ($obj) { $freezeGroup[] = $obj; } @@ -591,16 +589,16 @@ class CRM_Report_Form extends CRM_Core_Form { } } - if (array_key_exists('order_bys', $table) && + if ( + array_key_exists('order_bys', $table) && is_array($table['order_bys']) ) { - if (!array_key_exists('order_bys', $this->_defaults)) { - $this->_defaults['order_bys'] = array(); } foreach ($table['order_bys'] as $fieldName => $field) { - if (CRM_Utils_Array::value('default', $field) || + if ( + CRM_Utils_Array::value('default', $field) || CRM_Utils_Array::value('default_order', $field) || CRM_Utils_Array::value('default_is_section', $field) || CRM_Utils_Array::value('default_weight', $field) @@ -702,8 +700,9 @@ class CRM_Report_Form extends CRM_Core_Form { foreach ($this->_filters as $table => $attributes) { foreach ($attributes as $fieldName => $field) { // get ready with option value pair - $operations = $this->getOperationPair(CRM_Utils_Array::value('operatorType', $field), - $fieldName + $operations = self::getOperationPair( + CRM_Utils_Array::value('operatorType', $field), + $fieldName ); $filters[$table][$fieldName] = $field; @@ -984,7 +983,7 @@ class CRM_Report_Form extends CRM_Core_Form { // Note: $fieldName param allows inheriting class to build operationPairs // specific to a field. - function getOperationPair($type = "string", $fieldName = NULL) { + static function getOperationPair($type = "string", $fieldName = NULL) { // FIXME: At some point we should move these key-val pairs // to option_group and option_value table. @@ -1276,7 +1275,7 @@ class CRM_Report_Form extends CRM_Core_Form { $relative, $from, $to, $type = NULL, $fromTime = NULL, $toTime = NULL ) { $clauses = array(); - if (in_array($relative, array_keys($this->getOperationPair(CRM_Report_FORM::OP_DATE)))) { + if (in_array($relative, array_keys(self::getOperationPair(CRM_Report_FORM::OP_DATE)))) { $sqlOP = self::getSQLOperator($relative); return "( {$fieldName} {$sqlOP} )"; } @@ -1533,7 +1532,7 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND foreach ($rows as $key => $list) { foreach ($list as $colName => $colVal) { - if (array_key_exists($colName, $checkList) && + if (array_key_exists($colName, $checkList) && $checkList[$colName] == $colVal) { $rows[$key][$colName] = ""; } @@ -2231,12 +2230,14 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND if (array_key_exists('filters', $table)) { foreach ($table['filters'] as $fieldName => $field) { if (CRM_Utils_Array::value('type', $field) & CRM_Utils_Type::T_DATE && CRM_Utils_Array::value('operatorType', $field) != CRM_Report_Form::OP_MONTH) { - list($from, $to) = $this->getFromTo(CRM_Utils_Array::value("{$fieldName}_relative", $this->_params), - CRM_Utils_Array::value("{$fieldName}_from", $this->_params), - CRM_Utils_Array::value("{$fieldName}_to", $this->_params), - CRM_Utils_Array::value("{$fieldName}_from_time", $this->_params), - CRM_Utils_Array::value("{$fieldName}_to_time", $this->_params) - ); + list($from, $to) = + $this->getFromTo( + CRM_Utils_Array::value("{$fieldName}_relative", $this->_params), + CRM_Utils_Array::value("{$fieldName}_from", $this->_params), + CRM_Utils_Array::value("{$fieldName}_to", $this->_params), + CRM_Utils_Array::value("{$fieldName}_from_time", $this->_params), + CRM_Utils_Array::value("{$fieldName}_to_time", $this->_params) + ); $from_time_format = CRM_Utils_Array::value("{$fieldName}_from_time", $this->_params) ? 'h' : 'd'; $from = CRM_Utils_Date::customFormat($from, null, array($from_time_format)); @@ -2246,18 +2247,19 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND if ($from || $to) { $statistics['filters'][] = array( 'title' => $field['title'], - 'value' => ts("Between %1 and %2", - array( - 1 => $from, - 2 => $to, - ) + 'value' => ts( + "Between %1 and %2", + array( + 1 => $from, + 2 => $to, + ) ), ); } elseif (in_array($rel = CRM_Utils_Array::value("{$fieldName}_relative", $this->_params), - array_keys($this->getOperationPair(CRM_Report_FORM::OP_DATE)) + array_keys(self::getOperationPair(CRM_Report_FORM::OP_DATE)) )) { - $pair = $this->getOperationPair(CRM_Report_FORM::OP_DATE); + $pair = self::getOperationPair(CRM_Report_FORM::OP_DATE); $statistics['filters'][] = array( 'title' => $field['title'], 'value' => $pair[$rel], @@ -2268,8 +2270,9 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND $op = CRM_Utils_Array::value("{$fieldName}_op", $this->_params); $value = NULL; if ($op) { - $pair = $this->getOperationPair(CRM_Utils_Array::value('operatorType', $field), - $fieldName + $pair = self::getOperationPair( + CRM_Utils_Array::value('operatorType', $field), + $fieldName ); $min = CRM_Utils_Array::value("{$fieldName}_min", $this->_params); $max = CRM_Utils_Array::value("{$fieldName}_max", $this->_params); @@ -2412,7 +2415,7 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND CRM_Report_Form_Instance::postProcess($this); } } - + /* * Get Template file name - use default form template if a specific one has not been set up for this report * diff --git a/CRM/Report/Form/Member/ContributionDetail.php b/CRM/Report/Form/Member/ContributionDetail.php index 6fb69f7f15..eeab895be7 100644 --- a/CRM/Report/Form/Member/ContributionDetail.php +++ b/CRM/Report/Form/Member/ContributionDetail.php @@ -2,29 +2,29 @@ // $Id$ /* - +--------------------------------------------------------------------+ - | CiviCRM version 4.3 | - +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2013 | - +--------------------------------------------------------------------+ - | This file is a part of CiviCRM. | - | | - | CiviCRM is free software; you can copy, modify, and distribute it | - | under the terms of the GNU Affero General Public License | - | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. | - | | - | CiviCRM is distributed in the hope that it will be useful, but | - | WITHOUT ANY WARRANTY; without even the implied warranty of | - | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | - | See the GNU Affero General Public License for more details. | - | | - | You should have received a copy of the GNU Affero General Public | - | License and the CiviCRM Licensing Exception along | - | with this program; if not, contact CiviCRM LLC | - | at info[AT]civicrm[DOT]org. If you have questions about the | - | GNU Affero General Public License or the licensing of CiviCRM, | - | see the CiviCRM license FAQ at http://civicrm.org/licensing | - +--------------------------------------------------------------------+ + +--------------------------------------------------------------------+ + | CiviCRM version 4.3 | + +--------------------------------------------------------------------+ + | Copyright CiviCRM LLC (c) 2004-2013 | + +--------------------------------------------------------------------+ + | This file is a part of CiviCRM. | + | | + | CiviCRM is free software; you can copy, modify, and distribute it | + | under the terms of the GNU Affero General Public License | + | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. | + | | + | CiviCRM is distributed in the hope that it will be useful, but | + | WITHOUT ANY WARRANTY; without even the implied warranty of | + | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | + | See the GNU Affero General Public License for more details. | + | | + | You should have received a copy of the GNU Affero General Public | + | License and the CiviCRM Licensing Exception along | + | with this program; if not, contact CiviCRM LLC | + | at info[AT]civicrm[DOT]org. If you have questions about the | + | GNU Affero General Public License or the licensing of CiviCRM, | + | see the CiviCRM license FAQ at http://civicrm.org/licensing | + +--------------------------------------------------------------------+ */ /** @@ -45,7 +45,7 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { protected $_summary = NULL; protected $_customGroupExtends = array( - 'Contribution', 'Membership'); + 'Contribution', 'Membership'); function __construct() { $config = CRM_Core_Config::singleton(); @@ -199,13 +199,13 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { 'title' => ts('Contribution ID'), ), 'financial_type_id' => array('title' => ts('Financial Type'), - 'default' => TRUE, + 'default' => TRUE, ), 'contribution_recur_id' => array('title' => ts('Recurring Contribution Id'), - 'name' => 'contribution_recur_id', - 'required' => TRUE, - 'no_display' => TRUE, - 'csv_display' => TRUE, + 'name' => 'contribution_recur_id', + 'required' => TRUE, + 'no_display' => TRUE, + 'csv_display' => TRUE, ), 'contribution_status_id' => array('title' => ts('Contribution Status'), ), @@ -219,12 +219,12 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { 'receive_date' => array('default' => TRUE), 'receipt_date' => NULL, 'honor_type_id' => array('title' => ts('Honor Type'), - 'default' => FALSE, + 'default' => FALSE, ), 'fee_amount' => NULL, 'net_amount' => NULL, 'total_amount' => array('title' => ts('Amount'), - 'required' => TRUE, + 'required' => TRUE, ), ), 'filters' => @@ -317,17 +317,17 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { 'fields' => array( 'membership_type_id' => array('title' => ts('Membership Type'), - 'required' => TRUE, - 'no_repeat' => TRUE, + 'required' => TRUE, + 'no_repeat' => TRUE, ), 'membership_start_date' => array('title' => ts('Start Date'), - 'default' => TRUE, + 'default' => TRUE, ), 'membership_end_date' => array('title' => ts('End Date'), - 'default' => TRUE, + 'default' => TRUE, ), 'join_date' => array('title' => ts('Join Date'), - 'default' => TRUE, + 'default' => TRUE, ), 'source' => array('title' => ts('Membership Source')), ), @@ -393,10 +393,10 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { array( 'note' => array( - 'name' => 'note', - 'title' => ts('Contribution Note'), - 'operator' => 'like', - 'type' => CRM_Utils_Type::T_STRING, + 'name' => 'note', + 'title' => ts('Contribution Note'), + 'operator' => 'like', + 'type' => CRM_Utils_Type::T_STRING, ), ), ), @@ -433,8 +433,8 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { 'default' => 'false', ); $this->_columns['civicrm_contribution']['filters']['campaign_id'] = array('title' => ts('Campaign'), - 'operatorType' => CRM_Report_Form::OP_MULTISELECT, - 'options' => $this->activeCampaigns, + 'operatorType' => CRM_Report_Form::OP_MULTISELECT, + 'options' => $this->activeCampaigns, ); $this->_columns['civicrm_contribution']['order_bys']['campaign_id'] = array('title' => ts('Campaign')); } @@ -551,18 +551,18 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { LEFT JOIN civicrm_note {$this->_aliases['civicrm_note']} ON ( {$this->_aliases['civicrm_note']}.entity_table = 'civicrm_contribution' AND {$this->_aliases['civicrm_contribution']}.id = {$this->_aliases['civicrm_note']}.entity_id )"; - + } if (CRM_Utils_Array::value('phone', $this->_params['fields'])) { - $this->_from .= " + $this->_from .= " LEFT JOIN civicrm_phone {$this->_aliases['civicrm_phone']} ON ({$this->_aliases['civicrm_contact']}.id = {$this->_aliases['civicrm_phone']}.contact_id AND {$this->_aliases['civicrm_phone']}.is_primary = 1)"; } //for contribution batches - if ($this->_closedBatches && - (CRM_Utils_Array::value('batch_id', $this->_params['fields']) || !empty($this->_params['bid_value']))) { + if ($this->_closedBatches && + (CRM_Utils_Array::value('batch_id', $this->_params['fields']) || !empty($this->_params['bid_value']))) { $this->_from .= " LEFT JOIN civicrm_entity_batch {$this->_aliases['civicrm_entity_batch']} ON ({$this->_aliases['civicrm_entity_batch']}.entity_id = {$this->_aliases['civicrm_contribution']}.id AND @@ -605,22 +605,22 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { // create temp table with contact ids,contribtuion id,membership id $dropTempTable = "DROP TABLE IF EXISTS civireport_membership_contribution_detail"; CRM_Core_DAO::executeQuery($dropTempTable); - + $sql = "CREATE TEMPORARY TABLE civireport_membership_contribution_detail (contribution_id int, contact_id int, membership_id int, payment_id int) ENGINE=HEAP"; CRM_Core_DAO::executeQuery($sql); - + $fillTemp = " INSERT INTO civireport_membership_contribution_detail (contribution_id, contact_id, membership_id) SELECT contribution.id, contact.id, m.id - FROM civicrm_contribution contribution + FROM civicrm_contribution contribution INNER JOIN civicrm_contact contact {$this->_aclFrom} ON contact.id = contribution.contact_id AND contribution.is_test = 0 LEFT JOIN civicrm_membership_payment mp ON contribution.id = mp.contribution_id LEFT JOIN civicrm_membership m ON mp.membership_id = m.id AND m.is_test = 0 "; - + CRM_Core_DAO::executeQuery($fillTemp); } @@ -639,15 +639,15 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { foreach ($unselectedSectionColumns as $alias => $section) { $this->_select .= ", {$section['dbAlias']} as {$alias}"; } - + if ($applyLimit && !CRM_Utils_Array::value('charts', $this->_params)) { $this->limit(); } - + $sql = "{$this->_select} {$this->_from} {$this->_where} {$this->_groupBy} {$this->_having} {$this->_orderBy} {$this->_limit}"; return $sql; } - + function groupBy() { $this->_groupBy = " GROUP BY {$this->_aliases['civicrm_contact']}.id, {$this->_aliases['civicrm_contribution']}.id "; } @@ -655,9 +655,9 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { function orderBy() { $this->_orderBy = " ORDER BY {$this->_aliases['civicrm_contact']}.sort_name, {$this->_aliases['civicrm_contact']}.id "; if (CRM_Utils_Array::value('first_donation_date', $this->_params['fields']) - || CRM_Utils_Array::value('first_donation_amount', $this->_params['fields'])) { + || CRM_Utils_Array::value('first_donation_amount', $this->_params['fields'])) { $this->_orderBy .= ", {$this->_aliases['civicrm_contribution']}.receive_date"; - } + } } function statistics(&$rows) { @@ -667,7 +667,7 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { SELECT ROUND(AVG({$this->_aliases['civicrm_contribution']}.total_amount), 2) as amt "; - $groupBy = " + $groupBy = " GROUP BY contribution_id "; @@ -678,17 +678,21 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { while ($dao->fetch()) { $amount = $amount + $dao->amt; } - $statistics['counts']['amount'] = array( - 'value' => $amount, - 'title' => 'Total Amount', - 'type' => CRM_Utils_Type::T_MONEY, - ); - - $statistics['counts']['avg'] = array( - 'value' => $amount/$dao->N, - 'title' => 'Average', - 'type' => CRM_Utils_Type::T_MONEY, - ); + $statistics['counts']['amount'] = array( + 'value' => $amount, + 'title' => 'Total Amount', + 'type' => CRM_Utils_Type::T_MONEY, + ); + + $avg = 0; + if ($dao->N) { + $avg = (float ) $amount / $dao->N; + } + $statistics['counts']['avg'] = array( + 'value' => $avg, + 'title' => 'Average', + 'type' => CRM_Utils_Type::T_MONEY, + ); return $statistics; } @@ -819,8 +823,8 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { array_key_exists('civicrm_contact_id', $row) ) { $url = CRM_Utils_System::url("civicrm/contact/view", - 'reset=1&cid=' . $row['civicrm_contact_id'], - $this->_absoluteUrl + 'reset=1&cid=' . $row['civicrm_contact_id'], + $this->_absoluteUrl ); $rows[$rowNum]['civicrm_contact_sort_name_link'] = $url; @@ -834,8 +838,8 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { ) { $url = CRM_Utils_System::url("civicrm/contact/view", - 'reset=1&cid=' . $row['civicrm_contact_honor_id_honor'], - $this->_absoluteUrl + 'reset=1&cid=' . $row['civicrm_contact_honor_id_honor'], + $this->_absoluteUrl ); $rows[$rowNum]['civicrm_contact_honor_sort_name_honor_link'] = $url; $rows[$rowNum]['civicrm_contact_honor_sort_name_honor_hover'] = ts("View Contact Summary for Honoree."); @@ -861,8 +865,8 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { CRM_Core_Permission::check('access CiviContribute') ) { $url = CRM_Utils_System::url("civicrm/contact/view/contribution", - "reset=1&id=" . $row['civicrm_contribution_contribution_id'] . "&cid=" . $row['civicrm_contact_id'] . "&action=view&context=contribution&selectedChild=contribute", - $this->_absoluteUrl + "reset=1&id=" . $row['civicrm_contribution_contribution_id'] . "&cid=" . $row['civicrm_contact_id'] . "&action=view&context=contribution&selectedChild=contribute", + $this->_absoluteUrl ); $rows[$rowNum]['civicrm_contribution_total_amount_sum_link'] = $url; $rows[$rowNum]['civicrm_contribution_total_amount_sum_hover'] = ts("View Details of this Contribution."); diff --git a/bin/regen.sh b/bin/regen.sh index 0ae005bdb3..177bc2757e 100755 --- a/bin/regen.sh +++ b/bin/regen.sh @@ -12,7 +12,7 @@ fi pushd . cd $CIVISOURCEDIR -svn up . +# svn up . cd $CIVISOURCEDIR/bin ./setup.sh cd $CIVISOURCEDIR/sql diff --git a/sql/civicrm_generated.mysql b/sql/civicrm_generated.mysql index dc1f041858..1417c5991a 100644 --- a/sql/civicrm_generated.mysql +++ b/sql/civicrm_generated.mysql @@ -1,8 +1,8 @@ --- MySQL dump 10.13 Distrib 5.5.29, for Linux (i686) +-- MySQL dump 10.13 Distrib 5.5.29, for debian-linux-gnu (x86_64) -- --- Host: localhost Database: trunk43 +-- Host: localhost Database: crm_43 -- ------------------------------------------------------ --- Server version 5.5.29 +-- Server version 5.5.29-0ubuntu0.12.10.1-log /*!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_contact_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,176,NULL,10,'Subject for Pledge Acknowledgment','2012-11-02 04:35:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(2,176,NULL,10,'Subject for Pledge Acknowledgment','2013-01-01 02:59:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(3,176,NULL,7,'Subject for Membership Signup','2012-08-17 05:42:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(4,176,NULL,10,'Subject for Pledge Acknowledgment','2013-01-11 12:32:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(5,176,NULL,7,'Subject for Membership Signup','2012-12-11 09:07:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(6,176,NULL,10,'Subject for Pledge Acknowledgment','2012-03-09 06:00:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(7,176,NULL,8,'Subject for Membership Renewal','2012-12-24 08:49:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(8,176,NULL,7,'Subject for Membership Signup','2012-05-05 01:21:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(9,176,NULL,10,'Subject for Pledge Acknowledgment','2012-03-03 10:14:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(10,176,NULL,8,'Subject for Membership Renewal','2012-08-25 04:03:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(11,176,NULL,8,'Subject for Membership Renewal','2012-03-13 10:39:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(12,176,NULL,10,'Subject for Pledge Acknowledgment','2012-03-24 10:15:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(13,176,NULL,10,'Subject for Pledge Acknowledgment','2012-04-30 11:10:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(14,176,NULL,9,'Subject for Tell a Friend','2012-08-23 11:55:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(15,176,NULL,10,'Subject for Pledge Acknowledgment','2012-07-05 06:11:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(16,176,NULL,9,'Subject for Tell a Friend','2012-09-18 06:52:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(17,176,NULL,7,'Subject for Membership Signup','2012-12-03 03:41:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(18,176,NULL,8,'Subject for Membership Renewal','2012-12-20 12:18:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(19,176,NULL,10,'Subject for Pledge Acknowledgment','2012-06-09 07:26:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(20,176,NULL,8,'Subject for Membership Renewal','2012-03-10 06:40:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(21,176,NULL,10,'Subject for Pledge Acknowledgment','2012-03-15 08:02:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(22,176,NULL,7,'Subject for Membership Signup','2012-09-19 02:24:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(23,176,NULL,9,'Subject for Tell a Friend','2013-02-03 06:45:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(24,176,NULL,10,'Subject for Pledge Acknowledgment','2012-06-17 03:26:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(25,176,NULL,8,'Subject for Membership Renewal','2012-06-28 06:05:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(26,176,NULL,7,'Subject for Membership Signup','2012-08-07 04:25:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(27,176,NULL,9,'Subject for Tell a Friend','2012-05-06 11:57:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(28,176,NULL,10,'Subject for Pledge Acknowledgment','2012-07-06 10:39:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(29,176,NULL,7,'Subject for Membership Signup','2013-01-10 05:54:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(30,176,NULL,8,'Subject for Membership Renewal','2012-11-27 04:10:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(31,176,NULL,8,'Subject for Membership Renewal','2012-10-19 03:51:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(32,176,NULL,9,'Subject for Tell a Friend','2012-12-09 02:56:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(33,176,NULL,8,'Subject for Membership Renewal','2012-11-14 04:55:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(34,176,NULL,10,'Subject for Pledge Acknowledgment','2012-10-15 05:27:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(35,176,NULL,10,'Subject for Pledge Acknowledgment','2012-09-29 10:30:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(36,176,NULL,10,'Subject for Pledge Acknowledgment','2012-03-06 06:09:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(37,176,NULL,8,'Subject for Membership Renewal','2012-09-23 05:26:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(38,176,NULL,7,'Subject for Membership Signup','2012-05-19 06:33:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(39,176,NULL,8,'Subject for Membership Renewal','2012-07-08 07:15:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(40,176,NULL,9,'Subject for Tell a Friend','2013-01-23 03:11:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(41,176,NULL,7,'Subject for Membership Signup','2012-09-13 12:35:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(42,176,NULL,8,'Subject for Membership Renewal','2012-04-20 05:24:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(43,176,NULL,8,'Subject for Membership Renewal','2013-01-10 09:14:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(44,176,NULL,10,'Subject for Pledge Acknowledgment','2012-03-02 01:49:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(45,176,NULL,8,'Subject for Membership Renewal','2012-10-15 11:57:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(46,176,NULL,8,'Subject for Membership Renewal','2012-07-29 12:28:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(47,176,NULL,7,'Subject for Membership Signup','2012-04-15 06:17:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(48,176,NULL,10,'Subject for Pledge Acknowledgment','2013-02-09 10:57:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(49,176,NULL,9,'Subject for Tell a Friend','2012-04-23 08:49:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(50,176,NULL,9,'Subject for Tell a Friend','2012-12-10 09:03:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(51,176,NULL,8,'Subject for Membership Renewal','2012-10-28 04:05:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(52,176,NULL,7,'Subject for Membership Signup','2012-03-22 12:17:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(53,176,NULL,10,'Subject for Pledge Acknowledgment','2012-06-23 07:18:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(54,176,NULL,8,'Subject for Membership Renewal','2013-01-18 09:50:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(55,176,NULL,8,'Subject for Membership Renewal','2012-08-13 03:48:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(56,176,NULL,9,'Subject for Tell a Friend','2012-05-24 05:34:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(57,176,NULL,7,'Subject for Membership Signup','2012-08-30 09:40:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(58,176,NULL,10,'Subject for Pledge Acknowledgment','2012-06-24 07:14:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(59,176,NULL,7,'Subject for Membership Signup','2012-03-26 07:59:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(60,176,NULL,9,'Subject for Tell a Friend','2013-02-03 03:32:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(61,176,NULL,10,'Subject for Pledge Acknowledgment','2012-11-03 06:33:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(62,176,NULL,10,'Subject for Pledge Acknowledgment','2012-03-10 03:56:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(63,176,NULL,8,'Subject for Membership Renewal','2012-05-31 10:37:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(64,176,NULL,7,'Subject for Membership Signup','2012-06-23 07:29:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(65,176,NULL,7,'Subject for Membership Signup','2012-09-23 11:02:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(66,176,NULL,9,'Subject for Tell a Friend','2012-07-15 07:15:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(67,176,NULL,9,'Subject for Tell a Friend','2012-09-22 06:50:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(68,176,NULL,7,'Subject for Membership Signup','2012-04-21 11:12:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(69,176,NULL,9,'Subject for Tell a Friend','2012-08-05 07:57:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(70,176,NULL,9,'Subject for Tell a Friend','2012-06-09 03:52:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(71,176,NULL,8,'Subject for Membership Renewal','2012-09-13 06:11:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(72,176,NULL,7,'Subject for Membership Signup','2012-05-06 09:13:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(73,176,NULL,8,'Subject for Membership Renewal','2012-09-29 04:46:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(74,176,NULL,9,'Subject for Tell a Friend','2012-09-07 05:51:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(75,176,NULL,7,'Subject for Membership Signup','2012-08-30 10:29:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(76,176,NULL,10,'Subject for Pledge Acknowledgment','2013-01-06 10:12:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(77,176,NULL,9,'Subject for Tell a Friend','2012-12-28 04:04:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(78,176,NULL,8,'Subject for Membership Renewal','2012-10-18 07:43:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(79,176,NULL,10,'Subject for Pledge Acknowledgment','2012-03-17 06:25:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(80,176,NULL,8,'Subject for Membership Renewal','2012-10-26 06:53:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(81,176,NULL,10,'Subject for Pledge Acknowledgment','2012-06-11 08:42:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(82,176,NULL,8,'Subject for Membership Renewal','2012-07-07 11:23:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(83,176,NULL,7,'Subject for Membership Signup','2012-06-23 07:38:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(84,176,NULL,7,'Subject for Membership Signup','2013-01-26 05:08:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(85,176,NULL,10,'Subject for Pledge Acknowledgment','2013-01-17 12:15:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(86,176,NULL,10,'Subject for Pledge Acknowledgment','2012-08-12 02:48:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(87,176,NULL,10,'Subject for Pledge Acknowledgment','2013-01-04 04:33:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(88,176,NULL,8,'Subject for Membership Renewal','2012-10-02 08:23:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(89,176,NULL,9,'Subject for Tell a Friend','2012-03-01 10:53:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(90,176,NULL,9,'Subject for Tell a Friend','2012-07-23 06:58:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(91,176,NULL,7,'Subject for Membership Signup','2012-08-02 11:45:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(92,176,NULL,8,'Subject for Membership Renewal','2012-06-09 06:18:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(93,176,NULL,10,'Subject for Pledge Acknowledgment','2012-04-06 04:01:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(94,176,NULL,10,'Subject for Pledge Acknowledgment','2012-07-27 02:14:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(95,176,NULL,7,'Subject for Membership Signup','2012-11-11 03:39:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(96,176,NULL,8,'Subject for Membership Renewal','2012-07-28 12:27:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(97,176,NULL,9,'Subject for Tell a Friend','2012-06-28 06:40:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(98,176,NULL,10,'Subject for Pledge Acknowledgment','2012-08-06 10:36:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(99,176,NULL,9,'Subject for Tell a Friend','2012-05-14 05:34:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(100,176,NULL,9,'Subject for Tell a Friend','2012-06-03 12:49:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(101,176,NULL,10,'Subject for Pledge Acknowledgment','2012-08-20 05:59:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(102,176,NULL,10,'Subject for Pledge Acknowledgment','2012-09-18 04:54:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(103,176,NULL,9,'Subject for Tell a Friend','2012-04-03 02:38:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(104,176,NULL,10,'Subject for Pledge Acknowledgment','2012-05-05 06:36:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(105,176,NULL,7,'Subject for Membership Signup','2012-04-04 11:28:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(106,176,NULL,10,'Subject for Pledge Acknowledgment','2012-04-22 02:30:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(107,176,NULL,10,'Subject for Pledge Acknowledgment','2012-09-13 10:04:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(108,176,NULL,8,'Subject for Membership Renewal','2012-06-09 05:10:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(109,176,NULL,9,'Subject for Tell a Friend','2012-12-19 05:41:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(110,176,NULL,10,'Subject for Pledge Acknowledgment','2013-02-14 08:50:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(111,176,NULL,7,'Subject for Membership Signup','2012-07-18 01:59:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(112,176,NULL,10,'Subject for Pledge Acknowledgment','2013-01-23 05:36:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(113,176,NULL,9,'Subject for Tell a Friend','2013-01-31 04:36:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(114,176,NULL,8,'Subject for Membership Renewal','2012-10-27 07:58:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(115,176,NULL,10,'Subject for Pledge Acknowledgment','2012-04-19 11:18:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(116,176,NULL,10,'Subject for Pledge Acknowledgment','2012-06-27 05:21:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(117,176,NULL,9,'Subject for Tell a Friend','2013-01-15 02:09:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(118,176,NULL,7,'Subject for Membership Signup','2012-12-18 11:28:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(119,176,NULL,9,'Subject for Tell a Friend','2012-03-31 05:02:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(120,176,NULL,8,'Subject for Membership Renewal','2012-05-10 06:06:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(121,176,NULL,7,'Subject for Membership Signup','2012-10-19 09:26:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(122,176,NULL,8,'Subject for Membership Renewal','2012-04-17 07:09:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(123,176,NULL,10,'Subject for Pledge Acknowledgment','2012-04-02 08:34:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(124,176,NULL,8,'Subject for Membership Renewal','2012-12-26 10:50:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(125,176,NULL,8,'Subject for Membership Renewal','2012-12-31 08:37:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(126,176,NULL,10,'Subject for Pledge Acknowledgment','2013-01-10 01:04:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(127,176,NULL,9,'Subject for Tell a Friend','2012-07-09 10:52:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(128,176,NULL,8,'Subject for Membership Renewal','2013-01-03 07:26:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(129,176,NULL,10,'Subject for Pledge Acknowledgment','2012-12-21 03:33:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(130,176,NULL,10,'Subject for Pledge Acknowledgment','2012-12-04 06:07:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(131,176,NULL,7,'Subject for Membership Signup','2012-02-27 11:48:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(132,176,NULL,8,'Subject for Membership Renewal','2012-03-10 01:06:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(133,176,NULL,7,'Subject for Membership Signup','2012-06-18 08:29:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(134,176,NULL,10,'Subject for Pledge Acknowledgment','2012-03-15 10:47:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(135,176,NULL,7,'Subject for Membership Signup','2012-04-04 08:04:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(136,176,NULL,7,'Subject for Membership Signup','2012-03-31 03:13:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(137,176,NULL,8,'Subject for Membership Renewal','2012-07-20 12:33:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(138,176,NULL,9,'Subject for Tell a Friend','2012-12-05 02:44:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(139,176,NULL,9,'Subject for Tell a Friend','2013-01-19 07:18:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(140,176,NULL,8,'Subject for Membership Renewal','2013-01-22 08:05:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(141,176,NULL,7,'Subject for Membership Signup','2012-05-31 01:26:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(142,176,NULL,9,'Subject for Tell a Friend','2012-10-26 02:00:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(143,176,NULL,8,'Subject for Membership Renewal','2013-01-22 01:54:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(144,176,NULL,8,'Subject for Membership Renewal','2012-03-16 11:43:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(145,176,NULL,9,'Subject for Tell a Friend','2012-12-20 03:03:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(146,176,NULL,8,'Subject for Membership Renewal','2012-10-03 10:12:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(147,176,NULL,10,'Subject for Pledge Acknowledgment','2012-07-09 04:48:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(148,176,NULL,7,'Subject for Membership Signup','2012-07-21 01:17:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(149,176,NULL,10,'Subject for Pledge Acknowledgment','2012-10-31 04:24:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(150,176,NULL,10,'Subject for Pledge Acknowledgment','2012-11-11 07:12:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(151,136,NULL,9,'Subject for Tell a Friend','2012-09-29 09:41:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(152,136,NULL,8,'Subject for Membership Renewal','2012-09-28 11:29:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(153,136,NULL,7,'Subject for Membership Signup','2012-07-29 06:50:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(154,136,NULL,8,'Subject for Membership Renewal','2012-05-13 04:24:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(155,136,NULL,9,'Subject for Tell a Friend','2012-11-25 08:00:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(156,136,NULL,9,'Subject for Tell a Friend','2013-01-06 05:05:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(157,136,NULL,10,'Subject for Pledge Acknowledgment','2012-04-10 07:43:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(158,136,NULL,10,'Subject for Pledge Acknowledgment','2012-11-29 07:04:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(159,136,NULL,7,'Subject for Membership Signup','2012-05-04 05:03:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(160,136,NULL,7,'Subject for Membership Signup','2012-12-26 03:38:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(161,136,NULL,8,'Subject for Membership Renewal','2012-07-30 12:35:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(162,136,NULL,10,'Subject for Pledge Acknowledgment','2013-02-06 11:34:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(163,136,NULL,7,'Subject for Membership Signup','2012-10-11 07:34:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(164,136,NULL,9,'Subject for Tell a Friend','2013-02-02 09:13:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(165,136,NULL,10,'Subject for Pledge Acknowledgment','2012-04-02 03:12:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(166,136,NULL,9,'Subject for Tell a Friend','2012-05-30 12:40:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(167,136,NULL,9,'Subject for Tell a Friend','2013-01-10 12:53:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(168,136,NULL,8,'Subject for Membership Renewal','2012-03-15 08:42:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(169,136,NULL,7,'Subject for Membership Signup','2012-06-21 02:19:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(170,136,NULL,8,'Subject for Membership Renewal','2012-04-06 11:12:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(171,136,NULL,7,'Subject for Membership Signup','2012-07-11 08:51:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(172,136,NULL,9,'Subject for Tell a Friend','2012-05-12 04:31:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(173,136,NULL,10,'Subject for Pledge Acknowledgment','2013-01-22 04:51:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(174,136,NULL,8,'Subject for Membership Renewal','2012-04-12 04:53:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(175,136,NULL,9,'Subject for Tell a Friend','2012-05-22 12:26:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(176,136,NULL,7,'Subject for Membership Signup','2012-09-13 11:11:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(177,136,NULL,7,'Subject for Membership Signup','2012-03-01 07:15:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(178,136,NULL,8,'Subject for Membership Renewal','2012-12-28 02:03:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(179,136,NULL,10,'Subject for Pledge Acknowledgment','2013-01-08 05:52:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(180,136,NULL,9,'Subject for Tell a Friend','2012-05-24 09:24:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(181,136,NULL,8,'Subject for Membership Renewal','2012-09-10 08:36:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(182,136,NULL,8,'Subject for Membership Renewal','2013-01-27 10:30:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(183,136,NULL,7,'Subject for Membership Signup','2012-10-23 10:14:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(184,136,NULL,10,'Subject for Pledge Acknowledgment','2012-11-04 06:17:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(185,136,NULL,10,'Subject for Pledge Acknowledgment','2012-05-06 12:05:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(186,136,NULL,9,'Subject for Tell a Friend','2012-08-09 07:41:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(187,136,NULL,7,'Subject for Membership Signup','2013-01-05 04:28:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(188,136,NULL,9,'Subject for Tell a Friend','2012-04-25 06:49:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(189,136,NULL,10,'Subject for Pledge Acknowledgment','2013-01-02 12:54:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(190,136,NULL,7,'Subject for Membership Signup','2012-05-15 06:23:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(191,136,NULL,9,'Subject for Tell a Friend','2012-09-07 10:57:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(192,136,NULL,10,'Subject for Pledge Acknowledgment','2012-05-07 10:13:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(193,136,NULL,7,'Subject for Membership Signup','2012-09-29 09:41:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(194,136,NULL,8,'Subject for Membership Renewal','2012-08-06 07:20:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(195,136,NULL,10,'Subject for Pledge Acknowledgment','2012-08-30 01:11:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(196,136,NULL,8,'Subject for Membership Renewal','2012-08-04 12:20:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(197,136,NULL,8,'Subject for Membership Renewal','2012-03-06 07:40:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(198,136,NULL,9,'Subject for Tell a Friend','2013-01-11 02:39:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(199,136,NULL,8,'Subject for Membership Renewal','2012-09-08 04:32:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(200,136,NULL,10,'Subject for Pledge Acknowledgment','2012-08-29 08:38:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(201,136,NULL,7,'Subject for Membership Signup','2012-04-30 05:58:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(202,136,NULL,10,'Subject for Pledge Acknowledgment','2012-03-02 12:46:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(203,136,NULL,7,'Subject for Membership Signup','2013-01-18 06:26:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(204,136,NULL,8,'Subject for Membership Renewal','2012-07-08 07:03:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(205,136,NULL,9,'Subject for Tell a Friend','2012-10-29 06:23:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(206,136,NULL,8,'Subject for Membership Renewal','2013-01-04 12:13:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(207,136,NULL,10,'Subject for Pledge Acknowledgment','2012-07-20 07:55:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(208,136,NULL,9,'Subject for Tell a Friend','2012-04-10 04:54:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(209,136,NULL,10,'Subject for Pledge Acknowledgment','2012-05-26 11:54:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(210,136,NULL,7,'Subject for Membership Signup','2012-09-21 01:31:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(211,136,NULL,7,'Subject for Membership Signup','2012-06-07 02:46:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(212,136,NULL,8,'Subject for Membership Renewal','2012-09-28 06:20:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(213,136,NULL,10,'Subject for Pledge Acknowledgment','2012-06-23 08:33:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(214,136,NULL,7,'Subject for Membership Signup','2012-09-15 09:05:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(215,136,NULL,9,'Subject for Tell a Friend','2013-02-02 09:03:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(216,136,NULL,9,'Subject for Tell a Friend','2012-07-22 06:11:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(217,136,NULL,9,'Subject for Tell a Friend','2013-02-08 05:49:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(218,136,NULL,8,'Subject for Membership Renewal','2013-01-07 11:22:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(219,136,NULL,10,'Subject for Pledge Acknowledgment','2012-03-08 06:20:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(220,136,NULL,9,'Subject for Tell a Friend','2013-02-14 08:42:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(221,136,NULL,10,'Subject for Pledge Acknowledgment','2012-06-22 05:58:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(222,136,NULL,10,'Subject for Pledge Acknowledgment','2012-09-23 01:35:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(223,136,NULL,7,'Subject for Membership Signup','2013-02-20 12:57:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(224,136,NULL,7,'Subject for Membership Signup','2012-03-27 10:46:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(225,136,NULL,8,'Subject for Membership Renewal','2012-12-30 04:02:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(226,136,NULL,9,'Subject for Tell a Friend','2012-09-14 10:01:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(227,136,NULL,7,'Subject for Membership Signup','2012-04-03 06:20:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(228,136,NULL,10,'Subject for Pledge Acknowledgment','2012-04-12 05:49:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(229,136,NULL,10,'Subject for Pledge Acknowledgment','2012-10-30 04:11:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(230,136,NULL,8,'Subject for Membership Renewal','2012-11-22 06:39:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(231,136,NULL,10,'Subject for Pledge Acknowledgment','2012-06-10 11:38:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(232,136,NULL,8,'Subject for Membership Renewal','2012-04-04 08:12:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(233,136,NULL,7,'Subject for Membership Signup','2012-07-15 12:30:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(234,136,NULL,9,'Subject for Tell a Friend','2012-10-05 11:31:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(235,136,NULL,8,'Subject for Membership Renewal','2012-10-15 09:28:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(236,136,NULL,8,'Subject for Membership Renewal','2012-03-29 01:59:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(237,136,NULL,9,'Subject for Tell a Friend','2012-12-25 09:28:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(238,136,NULL,7,'Subject for Membership Signup','2012-08-22 11:25:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(239,136,NULL,8,'Subject for Membership Renewal','2012-11-04 01:05:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(240,136,NULL,8,'Subject for Membership Renewal','2012-03-16 12:45:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(241,136,NULL,7,'Subject for Membership Signup','2012-05-27 03:35:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(242,136,NULL,9,'Subject for Tell a Friend','2012-10-10 02:12:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(243,136,NULL,9,'Subject for Tell a Friend','2012-06-05 04:48:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(244,136,NULL,10,'Subject for Pledge Acknowledgment','2012-11-08 05:21:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(245,136,NULL,7,'Subject for Membership Signup','2013-02-05 02:58:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(246,136,NULL,8,'Subject for Membership Renewal','2012-04-15 05:38:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(247,136,NULL,7,'Subject for Membership Signup','2012-04-30 06:20:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(248,136,NULL,10,'Subject for Pledge Acknowledgment','2012-08-09 04:14:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(249,136,NULL,10,'Subject for Pledge Acknowledgment','2012-05-19 06:06:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(250,136,NULL,8,'Subject for Membership Renewal','2012-06-01 05:30:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(251,136,NULL,8,'Subject for Membership Renewal','2013-02-25 02:43:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(252,136,NULL,9,'Subject for Tell a Friend','2012-05-12 05:40:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(253,136,NULL,10,'Subject for Pledge Acknowledgment','2012-12-19 04:41:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(254,136,NULL,9,'Subject for Tell a Friend','2012-05-12 04:28:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(255,136,NULL,10,'Subject for Pledge Acknowledgment','2012-03-18 05:20:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(256,136,NULL,9,'Subject for Tell a Friend','2013-01-17 02:07:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(257,136,NULL,10,'Subject for Pledge Acknowledgment','2012-05-05 05:56:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(258,136,NULL,10,'Subject for Pledge Acknowledgment','2013-02-19 06:22:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(259,136,NULL,8,'Subject for Membership Renewal','2012-10-27 11:22:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(260,136,NULL,9,'Subject for Tell a Friend','2012-04-23 05:22:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(261,136,NULL,8,'Subject for Membership Renewal','2012-07-17 06:04:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(262,136,NULL,9,'Subject for Tell a Friend','2012-11-13 08:19:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(263,136,NULL,10,'Subject for Pledge Acknowledgment','2013-02-16 12:35:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(264,136,NULL,8,'Subject for Membership Renewal','2012-03-17 08:42:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(265,136,NULL,10,'Subject for Pledge Acknowledgment','2012-08-21 01:27:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(266,136,NULL,8,'Subject for Membership Renewal','2012-05-27 04:58:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(267,136,NULL,8,'Subject for Membership Renewal','2012-04-22 12:18:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(268,136,NULL,10,'Subject for Pledge Acknowledgment','2012-07-07 01:06:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(269,136,NULL,9,'Subject for Tell a Friend','2012-11-01 12:03:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(270,136,NULL,8,'Subject for Membership Renewal','2012-10-25 07:04:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(271,136,NULL,10,'Subject for Pledge Acknowledgment','2012-08-01 04:07:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(272,136,NULL,7,'Subject for Membership Signup','2012-08-06 02:06:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(273,136,NULL,9,'Subject for Tell a Friend','2012-12-09 06:25:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(274,136,NULL,7,'Subject for Membership Signup','2012-07-05 05:49:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(275,136,NULL,10,'Subject for Pledge Acknowledgment','2012-09-01 07:23:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(276,136,NULL,9,'Subject for Tell a Friend','2012-11-10 09:12:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(277,136,NULL,9,'Subject for Tell a Friend','2012-05-25 09:00:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(278,136,NULL,7,'Subject for Membership Signup','2012-12-29 12:42:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(279,136,NULL,8,'Subject for Membership Renewal','2012-06-25 03:40:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(280,136,NULL,7,'Subject for Membership Signup','2012-06-13 06:59:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(281,136,NULL,9,'Subject for Tell a Friend','2012-11-06 08:39:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(282,136,NULL,7,'Subject for Membership Signup','2012-06-14 04:41:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(283,136,NULL,9,'Subject for Tell a Friend','2012-06-13 09:51:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(284,136,NULL,7,'Subject for Membership Signup','2012-11-15 09:48:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(285,136,NULL,7,'Subject for Membership Signup','2012-08-22 12:40:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(286,136,NULL,7,'Subject for Membership Signup','2012-05-15 10:24:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(287,136,NULL,8,'Subject for Membership Renewal','2012-12-06 11:34:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(288,136,NULL,10,'Subject for Pledge Acknowledgment','2012-03-19 09:39:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(289,136,NULL,8,'Subject for Membership Renewal','2013-02-26 04:04:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(290,136,NULL,8,'Subject for Membership Renewal','2012-09-11 10:07:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(291,136,NULL,10,'Subject for Pledge Acknowledgment','2012-06-15 04:42:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(292,136,NULL,10,'Subject for Pledge Acknowledgment','2012-04-14 08:44:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(293,136,NULL,10,'Subject for Pledge Acknowledgment','2012-07-15 12:19:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(294,136,NULL,7,'Subject for Membership Signup','2012-04-19 12:06:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(295,136,NULL,10,'Subject for Pledge Acknowledgment','2012-08-10 08:18:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(296,136,NULL,9,'Subject for Tell a Friend','2012-09-24 11:23:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(297,136,NULL,9,'Subject for Tell a Friend','2012-07-28 05:30:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(298,136,NULL,10,'Subject for Pledge Acknowledgment','2012-04-10 05:09:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(299,136,NULL,10,'Subject for Pledge Acknowledgment','2013-01-19 02:29:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(300,136,NULL,7,'Subject for Membership Signup','2012-09-29 07:21:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(301,73,NULL,7,'Subject for Membership Signup','2012-08-16 10:05:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(302,73,NULL,7,'Subject for Membership Signup','2012-12-05 07:25:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(303,73,NULL,7,'Subject for Membership Signup','2012-03-08 10:20:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(304,73,NULL,10,'Subject for Pledge Acknowledgment','2012-07-04 04:05:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(305,73,NULL,7,'Subject for Membership Signup','2012-09-29 11:26:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(306,73,NULL,10,'Subject for Pledge Acknowledgment','2012-10-25 11:15:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(307,73,NULL,10,'Subject for Pledge Acknowledgment','2012-05-13 11:37:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(308,73,NULL,7,'Subject for Membership Signup','2012-05-03 03:06:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(309,73,NULL,8,'Subject for Membership Renewal','2012-12-23 09:12:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(310,73,NULL,8,'Subject for Membership Renewal','2012-09-21 03:30:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(311,73,NULL,9,'Subject for Tell a Friend','2012-11-20 06:13:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(312,73,NULL,9,'Subject for Tell a Friend','2012-09-25 10:05:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(313,73,NULL,10,'Subject for Pledge Acknowledgment','2012-06-04 03:05:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(314,73,NULL,7,'Subject for Membership Signup','2013-01-28 11:41:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(315,73,NULL,9,'Subject for Tell a Friend','2013-02-02 03:19:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(316,73,NULL,10,'Subject for Pledge Acknowledgment','2012-12-30 08:51:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(317,73,NULL,7,'Subject for Membership Signup','2012-10-27 01:37:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(318,73,NULL,8,'Subject for Membership Renewal','2012-07-25 07:48:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(319,73,NULL,10,'Subject for Pledge Acknowledgment','2013-02-02 04:07:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(320,73,NULL,9,'Subject for Tell a Friend','2012-06-25 03:37:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(321,73,NULL,9,'Subject for Tell a Friend','2012-04-06 10:32:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(322,73,NULL,8,'Subject for Membership Renewal','2013-01-04 07:37:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(323,73,NULL,8,'Subject for Membership Renewal','2012-03-11 08:48:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(324,73,NULL,10,'Subject for Pledge Acknowledgment','2013-01-09 03:29:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(325,73,NULL,10,'Subject for Pledge Acknowledgment','2012-07-20 03:22:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(326,73,NULL,8,'Subject for Membership Renewal','2013-02-12 06:52:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(327,73,NULL,8,'Subject for Membership Renewal','2012-06-08 03:57:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(328,73,NULL,10,'Subject for Pledge Acknowledgment','2012-05-14 05:43:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(329,73,NULL,9,'Subject for Tell a Friend','2012-12-13 10:51:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(330,73,NULL,8,'Subject for Membership Renewal','2012-06-24 06:55:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(331,73,NULL,8,'Subject for Membership Renewal','2012-09-13 07:22:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(332,73,NULL,9,'Subject for Tell a Friend','2012-05-19 05:29:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(333,73,NULL,7,'Subject for Membership Signup','2012-11-25 10:02:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(334,73,NULL,9,'Subject for Tell a Friend','2012-06-30 10:17:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(335,73,NULL,7,'Subject for Membership Signup','2012-09-04 05:30:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(336,73,NULL,8,'Subject for Membership Renewal','2012-11-30 03:04:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(337,73,NULL,8,'Subject for Membership Renewal','2012-08-19 07:55:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(338,73,NULL,9,'Subject for Tell a Friend','2012-03-03 01:46:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(339,73,NULL,8,'Subject for Membership Renewal','2012-04-27 11:08:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(340,73,NULL,8,'Subject for Membership Renewal','2012-06-19 01:57:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(341,73,NULL,8,'Subject for Membership Renewal','2012-10-10 06:31:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(342,73,NULL,8,'Subject for Membership Renewal','2012-10-09 07:26:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(343,73,NULL,7,'Subject for Membership Signup','2012-08-21 02:31:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(344,73,NULL,10,'Subject for Pledge Acknowledgment','2012-10-14 03:31:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(345,73,NULL,9,'Subject for Tell a Friend','2012-07-05 04:07:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(346,73,NULL,7,'Subject for Membership Signup','2012-06-30 05:32:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(347,73,NULL,7,'Subject for Membership Signup','2012-12-15 06:46:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(348,73,NULL,8,'Subject for Membership Renewal','2012-11-01 12:58:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(349,73,NULL,9,'Subject for Tell a Friend','2012-08-05 07:38:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(350,73,NULL,7,'Subject for Membership Signup','2012-08-07 06:50:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(351,73,NULL,10,'Subject for Pledge Acknowledgment','2012-07-25 01:34:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(352,73,NULL,7,'Subject for Membership Signup','2012-07-31 04:20:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(353,73,NULL,7,'Subject for Membership Signup','2013-02-04 10:51:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(354,73,NULL,10,'Subject for Pledge Acknowledgment','2012-08-21 06:22:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(355,73,NULL,8,'Subject for Membership Renewal','2012-06-04 07:06:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(356,73,NULL,10,'Subject for Pledge Acknowledgment','2012-11-17 11:18:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(357,73,NULL,8,'Subject for Membership Renewal','2012-11-03 07:03:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(358,73,NULL,7,'Subject for Membership Signup','2012-05-16 04:20:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(359,73,NULL,9,'Subject for Tell a Friend','2012-08-08 10:47:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(360,73,NULL,9,'Subject for Tell a Friend','2012-06-03 01:43:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(361,73,NULL,7,'Subject for Membership Signup','2012-03-09 07:39:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(362,73,NULL,8,'Subject for Membership Renewal','2012-08-27 06:57:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(363,73,NULL,7,'Subject for Membership Signup','2013-02-19 07:27:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(364,73,NULL,9,'Subject for Tell a Friend','2012-12-31 08:04:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(365,73,NULL,7,'Subject for Membership Signup','2012-07-09 03:27:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(366,73,NULL,8,'Subject for Membership Renewal','2013-02-12 12:17:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(367,73,NULL,7,'Subject for Membership Signup','2013-01-17 11:22:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(368,73,NULL,9,'Subject for Tell a Friend','2012-05-23 02:52:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(369,73,NULL,9,'Subject for Tell a Friend','2012-12-04 06:11:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(370,73,NULL,7,'Subject for Membership Signup','2012-08-22 12:39:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(371,73,NULL,10,'Subject for Pledge Acknowledgment','2012-10-26 05:42:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(372,73,NULL,8,'Subject for Membership Renewal','2012-10-23 04:17:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(373,73,NULL,9,'Subject for Tell a Friend','2012-11-15 12:12:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(374,73,NULL,8,'Subject for Membership Renewal','2012-07-15 03:18:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(375,73,NULL,9,'Subject for Tell a Friend','2012-06-21 03:38:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(376,73,NULL,10,'Subject for Pledge Acknowledgment','2012-05-17 03:02:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(377,73,NULL,10,'Subject for Pledge Acknowledgment','2012-08-02 02:10:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(378,73,NULL,10,'Subject for Pledge Acknowledgment','2012-04-21 12:07:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(379,73,NULL,8,'Subject for Membership Renewal','2012-05-25 01:44:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(380,73,NULL,7,'Subject for Membership Signup','2012-05-31 10:27:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(381,73,NULL,7,'Subject for Membership Signup','2012-08-27 01:48:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(382,73,NULL,9,'Subject for Tell a Friend','2012-12-09 10:57:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(383,73,NULL,10,'Subject for Pledge Acknowledgment','2012-07-27 07:15:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(384,73,NULL,9,'Subject for Tell a Friend','2012-08-24 05:23:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(385,73,NULL,10,'Subject for Pledge Acknowledgment','2012-12-08 06:04:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(386,73,NULL,8,'Subject for Membership Renewal','2012-03-30 05:57:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(387,73,NULL,7,'Subject for Membership Signup','2013-01-21 08:27:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(388,73,NULL,10,'Subject for Pledge Acknowledgment','2012-03-23 03:58:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(389,73,NULL,8,'Subject for Membership Renewal','2012-12-22 12:27:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(390,73,NULL,10,'Subject for Pledge Acknowledgment','2013-02-21 07:22:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(391,73,NULL,9,'Subject for Tell a Friend','2012-08-20 01:54:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(392,73,NULL,9,'Subject for Tell a Friend','2012-05-31 06:44:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(393,73,NULL,10,'Subject for Pledge Acknowledgment','2012-05-31 05:37:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(394,73,NULL,9,'Subject for Tell a Friend','2012-09-01 05:29:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(395,73,NULL,9,'Subject for Tell a Friend','2013-02-03 12:35:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(396,73,NULL,8,'Subject for Membership Renewal','2012-04-14 03:46:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(397,73,NULL,9,'Subject for Tell a Friend','2012-04-18 04:09:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(398,73,NULL,9,'Subject for Tell a Friend','2012-07-25 01:20:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(399,73,NULL,7,'Subject for Membership Signup','2012-11-06 03:20:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(400,73,NULL,8,'Subject for Membership Renewal','2012-09-06 07:38:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(401,73,NULL,8,'Subject for Membership Renewal','2013-02-15 11:28:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(402,73,NULL,7,'Subject for Membership Signup','2012-03-04 05:12:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(403,73,NULL,9,'Subject for Tell a Friend','2012-03-04 04:38:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(404,73,NULL,7,'Subject for Membership Signup','2012-09-19 03:52:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(405,73,NULL,7,'Subject for Membership Signup','2012-03-24 12:10:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(406,73,NULL,10,'Subject for Pledge Acknowledgment','2012-06-14 01:51:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(407,73,NULL,8,'Subject for Membership Renewal','2012-05-15 09:33:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(408,73,NULL,8,'Subject for Membership Renewal','2012-02-29 01:10:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(409,73,NULL,9,'Subject for Tell a Friend','2012-10-21 12:45:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(410,73,NULL,7,'Subject for Membership Signup','2012-06-09 02:49:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(411,73,NULL,10,'Subject for Pledge Acknowledgment','2012-11-23 11:30:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(412,73,NULL,9,'Subject for Tell a Friend','2012-10-10 12:00:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(413,73,NULL,7,'Subject for Membership Signup','2012-10-11 03:47:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(414,73,NULL,8,'Subject for Membership Renewal','2012-09-10 04:06:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(415,73,NULL,8,'Subject for Membership Renewal','2012-03-28 11:16:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(416,73,NULL,8,'Subject for Membership Renewal','2012-07-07 06:18:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(417,73,NULL,9,'Subject for Tell a Friend','2012-05-01 11:20:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(418,73,NULL,8,'Subject for Membership Renewal','2013-02-18 01:20:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(419,73,NULL,9,'Subject for Tell a Friend','2012-07-08 07:54:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(420,73,NULL,8,'Subject for Membership Renewal','2012-05-23 07:30:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(421,73,NULL,10,'Subject for Pledge Acknowledgment','2012-04-07 09:08:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(422,73,NULL,10,'Subject for Pledge Acknowledgment','2012-05-03 07:39:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(423,73,NULL,9,'Subject for Tell a Friend','2012-06-06 06:47:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(424,73,NULL,8,'Subject for Membership Renewal','2012-07-08 02:26:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(425,73,NULL,9,'Subject for Tell a Friend','2012-12-25 05:01:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(426,73,NULL,8,'Subject for Membership Renewal','2012-07-21 06:35:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(427,73,NULL,9,'Subject for Tell a Friend','2012-10-22 12:46:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(428,73,NULL,9,'Subject for Tell a Friend','2012-10-23 06:14:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(429,73,NULL,7,'Subject for Membership Signup','2012-05-15 11:06:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(430,73,NULL,9,'Subject for Tell a Friend','2012-12-14 06:59:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(431,73,NULL,10,'Subject for Pledge Acknowledgment','2013-01-26 03:58:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(432,73,NULL,10,'Subject for Pledge Acknowledgment','2012-05-13 02:28:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(433,73,NULL,9,'Subject for Tell a Friend','2012-09-21 12:05:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(434,73,NULL,7,'Subject for Membership Signup','2012-09-03 10:59:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(435,73,NULL,9,'Subject for Tell a Friend','2012-09-23 10:12:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(436,73,NULL,9,'Subject for Tell a Friend','2012-10-16 02:31:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(437,73,NULL,9,'Subject for Tell a Friend','2012-12-06 12:32:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(438,73,NULL,8,'Subject for Membership Renewal','2012-05-06 10:46:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(439,73,NULL,8,'Subject for Membership Renewal','2012-06-18 10:51:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(440,73,NULL,7,'Subject for Membership Signup','2012-05-11 03:45:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(441,73,NULL,8,'Subject for Membership Renewal','2012-11-23 02:00:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(442,73,NULL,8,'Subject for Membership Renewal','2012-09-02 02:32:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(443,73,NULL,8,'Subject for Membership Renewal','2012-06-11 09:59:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(444,73,NULL,9,'Subject for Tell a Friend','2012-08-28 12:34:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(445,73,NULL,7,'Subject for Membership Signup','2012-08-04 04:29:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(446,73,NULL,7,'Subject for Membership Signup','2012-12-06 04:58:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(447,73,NULL,10,'Subject for Pledge Acknowledgment','2012-04-24 05:31:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(448,73,NULL,9,'Subject for Tell a Friend','2012-07-03 04:45:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(449,73,NULL,10,'Subject for Pledge Acknowledgment','2012-10-26 10:57:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(450,73,NULL,8,'Subject for Membership Renewal','2013-01-11 08:33:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(451,2,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,4,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,6,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,8,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,16,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,19,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,82,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,92,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,34,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,71,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,43,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,32,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,32,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,97,1,7,'General','2013-02-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(465,167,2,7,'Student','2013-02-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(466,168,3,7,'General','2013-02-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(467,119,4,7,'Student','2013-02-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(468,118,5,7,'General','2011-01-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(469,100,6,7,'Student','2013-02-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(470,197,7,7,'General','2013-02-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(471,46,8,7,'Student','2013-02-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(472,76,9,7,'General','2013-02-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(473,164,10,7,'General','2010-12-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(474,42,11,7,'Lifetime','2013-02-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(475,195,12,7,'Student','2013-02-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(476,163,13,7,'General','2013-02-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(477,184,14,7,'Student','2013-02-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(478,170,15,7,'General','2010-11-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(479,40,16,7,'Student','2013-02-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(480,112,17,7,'General','2013-02-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(481,109,18,7,'Student','2013-02-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(482,131,19,7,'General','2013-02-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(483,116,20,7,'Student','2012-02-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(484,154,21,7,'General','2013-02-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(485,132,22,7,'Lifetime','2013-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(486,93,23,7,'General','2013-02-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(487,45,24,7,'Student','2013-02-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(488,34,25,7,'Student','2012-02-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(489,153,26,7,'Student','2013-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(490,7,27,7,'General','2013-01-31 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(491,70,28,7,'Student','2013-01-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(492,185,29,7,'General','2013-01-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(493,179,30,7,'General','2010-07-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(494,97,14,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(495,167,15,6,'$ 50.00 - Student Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(496,168,16,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(497,119,17,6,'$ 50.00 - Student Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(498,118,18,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(499,100,19,6,'$ 50.00 - Student Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(500,197,20,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(501,46,21,6,'$ 50.00 - Student Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(502,76,22,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(503,164,23,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(504,42,24,6,'$ 1200.00 - Lifetime Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(505,195,25,6,'$ 50.00 - Student Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(506,163,26,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(507,184,27,6,'$ 50.00 - Student Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(508,170,28,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(509,40,29,6,'$ 50.00 - Student Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(510,112,30,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(511,109,31,6,'$ 50.00 - Student Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(512,131,32,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(513,116,33,6,'$ 50.00 - Student Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(514,154,34,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(515,132,35,6,'$ 1200.00 - Lifetime Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(516,93,36,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(517,45,37,6,'$ 50.00 - Student Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(518,34,38,6,'$ 50.00 - Student Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(519,153,39,6,'$ 50.00 - Student Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(520,7,40,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(521,70,41,6,'$ 50.00 - Student Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(522,185,42,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(523,179,43,6,'$ 100.00 - General Membership: Offline signup','2013-02-26 10:49:30',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(525,54,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,201,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,106,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,3,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,132,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,55,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,194,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,135,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,196,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,186,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,185,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,29,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,96,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,197,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,172,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,131,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,58,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,127,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,47,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,87,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,148,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,34,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,77,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,86,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,125,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,191,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,67,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,160,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,9,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,136,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,92,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,101,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,69,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,103,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,8,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,91,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,30,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,25,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,142,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,53,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,152,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,76,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,117,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,72,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,48,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,192,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,62,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,181,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,184,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,189,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,3,45,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(576,8,46,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(577,9,47,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(578,25,48,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(579,29,49,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(580,30,50,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(581,34,51,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(582,47,52,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(583,48,53,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(584,53,54,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(585,54,55,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(586,55,56,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(587,58,57,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(588,62,58,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(589,67,59,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(590,69,60,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(591,72,61,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(592,76,62,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(593,77,63,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(594,86,64,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(595,87,65,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(596,91,66,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(597,92,67,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(598,96,68,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(599,101,69,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(600,103,70,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(601,106,71,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(602,117,72,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(603,125,73,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(604,127,74,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(605,131,75,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(606,132,76,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(607,135,77,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(608,136,78,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(609,142,79,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(610,148,80,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(611,152,81,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(612,160,82,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(613,172,83,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(614,181,84,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(615,184,85,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(616,185,86,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(617,186,87,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(618,189,88,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(619,191,89,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(620,192,90,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(621,194,91,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(622,196,92,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(623,197,93,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(624,201,94,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-02-26 10:49:37',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO `civicrm_activity` (`id`, `source_contact_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,23,NULL,8,'Subject for Membership Renewal','2012-06-04 09:33:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(2,23,NULL,8,'Subject for Membership Renewal','2012-07-20 02:57:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(3,23,NULL,9,'Subject for Tell a Friend','2012-06-20 04:38:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(4,23,NULL,10,'Subject for Pledge Acknowledgment','2012-08-23 12:02:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(5,23,NULL,10,'Subject for Pledge Acknowledgment','2013-02-26 08:50:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(6,23,NULL,7,'Subject for Membership Signup','2012-06-21 01:05:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(7,23,NULL,8,'Subject for Membership Renewal','2012-05-20 12:35:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(8,23,NULL,8,'Subject for Membership Renewal','2012-09-30 01:17:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(9,23,NULL,9,'Subject for Tell a Friend','2012-04-23 11:38:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(10,23,NULL,9,'Subject for Tell a Friend','2013-02-07 07:00:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(11,23,NULL,9,'Subject for Tell a Friend','2012-09-27 07:46:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(12,23,NULL,10,'Subject for Pledge Acknowledgment','2012-11-18 09:48:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(13,23,NULL,9,'Subject for Tell a Friend','2012-05-07 08:12:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(14,23,NULL,9,'Subject for Tell a Friend','2012-06-02 05:05:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(15,23,NULL,8,'Subject for Membership Renewal','2013-02-24 09:53:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(16,23,NULL,8,'Subject for Membership Renewal','2012-10-11 04:13:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(17,23,NULL,8,'Subject for Membership Renewal','2012-10-15 06:59:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(18,23,NULL,8,'Subject for Membership Renewal','2012-11-17 03:32:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(19,23,NULL,8,'Subject for Membership Renewal','2012-12-10 04:37:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(20,23,NULL,9,'Subject for Tell a Friend','2012-10-26 08:52:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(21,23,NULL,7,'Subject for Membership Signup','2012-04-04 05:07:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(22,23,NULL,7,'Subject for Membership Signup','2012-07-20 11:07:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(23,23,NULL,8,'Subject for Membership Renewal','2012-10-30 02:42:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(24,23,NULL,9,'Subject for Tell a Friend','2012-04-19 01:08:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(25,23,NULL,8,'Subject for Membership Renewal','2012-08-14 05:36:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(26,23,NULL,7,'Subject for Membership Signup','2013-01-19 02:50:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(27,23,NULL,10,'Subject for Pledge Acknowledgment','2012-07-27 02:19:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(28,23,NULL,8,'Subject for Membership Renewal','2012-06-22 10:02:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(29,23,NULL,10,'Subject for Pledge Acknowledgment','2012-05-09 03:04:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(30,23,NULL,7,'Subject for Membership Signup','2012-10-21 04:21:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(31,23,NULL,8,'Subject for Membership Renewal','2012-12-07 10:55:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(32,23,NULL,7,'Subject for Membership Signup','2012-07-20 04:28:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(33,23,NULL,10,'Subject for Pledge Acknowledgment','2012-12-14 02:07:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(34,23,NULL,8,'Subject for Membership Renewal','2012-05-17 06:15:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(35,23,NULL,8,'Subject for Membership Renewal','2013-02-12 10:57:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(36,23,NULL,7,'Subject for Membership Signup','2012-05-12 07:47:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(37,23,NULL,9,'Subject for Tell a Friend','2012-12-26 12:07:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(38,23,NULL,8,'Subject for Membership Renewal','2012-12-14 07:07:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(39,23,NULL,9,'Subject for Tell a Friend','2012-06-05 07:41:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(40,23,NULL,7,'Subject for Membership Signup','2012-08-26 02:36:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(41,23,NULL,9,'Subject for Tell a Friend','2012-03-18 09:02:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(42,23,NULL,9,'Subject for Tell a Friend','2012-03-23 04:08:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(43,23,NULL,9,'Subject for Tell a Friend','2013-01-14 11:32:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(44,23,NULL,10,'Subject for Pledge Acknowledgment','2012-06-24 01:49:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(45,23,NULL,10,'Subject for Pledge Acknowledgment','2012-03-04 01:35:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(46,23,NULL,7,'Subject for Membership Signup','2012-03-22 06:20:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(47,23,NULL,7,'Subject for Membership Signup','2013-02-14 02:20:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(48,23,NULL,10,'Subject for Pledge Acknowledgment','2012-04-20 06:21:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(49,23,NULL,7,'Subject for Membership Signup','2012-08-31 11:37:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(50,23,NULL,8,'Subject for Membership Renewal','2012-12-12 11:52:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(51,23,NULL,8,'Subject for Membership Renewal','2012-09-20 02:12:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(52,23,NULL,10,'Subject for Pledge Acknowledgment','2012-12-03 02:12:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(53,23,NULL,10,'Subject for Pledge Acknowledgment','2012-04-19 11:18:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(54,23,NULL,9,'Subject for Tell a Friend','2012-12-09 02:47:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(55,23,NULL,9,'Subject for Tell a Friend','2012-09-12 10:38:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(56,23,NULL,9,'Subject for Tell a Friend','2012-12-19 06:38:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(57,23,NULL,7,'Subject for Membership Signup','2012-05-17 08:41:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(58,23,NULL,8,'Subject for Membership Renewal','2013-02-21 09:01:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(59,23,NULL,7,'Subject for Membership Signup','2012-03-10 12:40:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(60,23,NULL,8,'Subject for Membership Renewal','2012-11-03 11:31:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(61,23,NULL,9,'Subject for Tell a Friend','2012-05-08 02:36:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(62,23,NULL,8,'Subject for Membership Renewal','2012-12-17 01:35:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(63,23,NULL,10,'Subject for Pledge Acknowledgment','2012-11-27 04:18:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(64,23,NULL,7,'Subject for Membership Signup','2012-12-17 05:36:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(65,23,NULL,7,'Subject for Membership Signup','2013-02-25 02:41:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(66,23,NULL,7,'Subject for Membership Signup','2012-12-06 04:28:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(67,23,NULL,7,'Subject for Membership Signup','2012-08-30 06:44:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(68,23,NULL,7,'Subject for Membership Signup','2012-03-24 06:52:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(69,23,NULL,9,'Subject for Tell a Friend','2012-11-16 10:28:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(70,23,NULL,8,'Subject for Membership Renewal','2013-02-06 01:51:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(71,23,NULL,10,'Subject for Pledge Acknowledgment','2012-09-14 12:33:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(72,23,NULL,9,'Subject for Tell a Friend','2012-10-24 11:01:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(73,23,NULL,7,'Subject for Membership Signup','2012-03-21 02:27:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(74,23,NULL,10,'Subject for Pledge Acknowledgment','2012-12-08 10:29:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(75,23,NULL,8,'Subject for Membership Renewal','2012-04-03 07:55:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(76,23,NULL,8,'Subject for Membership Renewal','2012-12-19 06:56:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(77,23,NULL,7,'Subject for Membership Signup','2012-12-17 03:54:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(78,23,NULL,8,'Subject for Membership Renewal','2013-02-02 02:20:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(79,23,NULL,10,'Subject for Pledge Acknowledgment','2012-04-11 11:01:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(80,23,NULL,8,'Subject for Membership Renewal','2012-06-22 03:49:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(81,23,NULL,8,'Subject for Membership Renewal','2012-12-11 07:47:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(82,23,NULL,8,'Subject for Membership Renewal','2012-11-10 06:56:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(83,23,NULL,7,'Subject for Membership Signup','2012-10-01 07:56:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(84,23,NULL,8,'Subject for Membership Renewal','2012-04-12 09:01:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(85,23,NULL,8,'Subject for Membership Renewal','2012-10-10 01:16:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(86,23,NULL,7,'Subject for Membership Signup','2012-09-09 01:54:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(87,23,NULL,7,'Subject for Membership Signup','2012-11-07 04:12:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(88,23,NULL,7,'Subject for Membership Signup','2013-02-13 03:59:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(89,23,NULL,8,'Subject for Membership Renewal','2012-12-03 03:28:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(90,23,NULL,7,'Subject for Membership Signup','2013-02-08 02:15:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(91,23,NULL,8,'Subject for Membership Renewal','2013-01-31 03:34:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(92,23,NULL,8,'Subject for Membership Renewal','2012-08-09 10:46:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(93,23,NULL,8,'Subject for Membership Renewal','2012-12-10 09:44:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(94,23,NULL,7,'Subject for Membership Signup','2012-03-03 09:27:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(95,23,NULL,9,'Subject for Tell a Friend','2012-11-28 05:55:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(96,23,NULL,9,'Subject for Tell a Friend','2012-03-25 08:29:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(97,23,NULL,8,'Subject for Membership Renewal','2013-01-22 12:28:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(98,23,NULL,8,'Subject for Membership Renewal','2012-06-24 07:47:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(99,23,NULL,7,'Subject for Membership Signup','2012-06-08 02:07:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(100,23,NULL,9,'Subject for Tell a Friend','2012-11-11 02:24:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(101,23,NULL,9,'Subject for Tell a Friend','2012-10-22 03:07:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(102,23,NULL,9,'Subject for Tell a Friend','2012-07-15 06:45:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(103,23,NULL,8,'Subject for Membership Renewal','2012-12-16 03:42:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(104,23,NULL,10,'Subject for Pledge Acknowledgment','2012-12-28 03:59:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(105,23,NULL,8,'Subject for Membership Renewal','2012-06-27 05:53:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(106,23,NULL,7,'Subject for Membership Signup','2012-07-11 10:58:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(107,23,NULL,8,'Subject for Membership Renewal','2012-03-01 10:07:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(108,23,NULL,8,'Subject for Membership Renewal','2012-09-15 11:24:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(109,23,NULL,7,'Subject for Membership Signup','2012-09-27 07:30:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(110,23,NULL,9,'Subject for Tell a Friend','2013-02-08 01:59:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(111,23,NULL,10,'Subject for Pledge Acknowledgment','2012-08-22 04:41:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(112,23,NULL,9,'Subject for Tell a Friend','2012-09-18 02:11:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(113,23,NULL,10,'Subject for Pledge Acknowledgment','2012-07-21 12:52:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(114,23,NULL,8,'Subject for Membership Renewal','2013-02-11 05:48:52',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(115,23,NULL,8,'Subject for Membership Renewal','2012-08-10 05:15:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(116,23,NULL,8,'Subject for Membership Renewal','2012-04-10 11:24:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(117,23,NULL,9,'Subject for Tell a Friend','2012-03-01 06:17:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(118,23,NULL,7,'Subject for Membership Signup','2012-04-14 07:13:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(119,23,NULL,10,'Subject for Pledge Acknowledgment','2012-12-09 02:41:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(120,23,NULL,7,'Subject for Membership Signup','2012-08-18 03:16:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(121,23,NULL,7,'Subject for Membership Signup','2013-02-28 10:03:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(122,23,NULL,9,'Subject for Tell a Friend','2012-03-16 12:35:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(123,23,NULL,10,'Subject for Pledge Acknowledgment','2012-09-25 04:31:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(124,23,NULL,9,'Subject for Tell a Friend','2012-03-27 05:41:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(125,23,NULL,7,'Subject for Membership Signup','2012-10-04 11:23:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(126,23,NULL,10,'Subject for Pledge Acknowledgment','2012-05-04 08:11:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(127,23,NULL,7,'Subject for Membership Signup','2012-09-21 03:33:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(128,23,NULL,10,'Subject for Pledge Acknowledgment','2012-09-13 07:48:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(129,23,NULL,9,'Subject for Tell a Friend','2012-09-20 06:04:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(130,23,NULL,9,'Subject for Tell a Friend','2012-12-22 10:49:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(131,23,NULL,9,'Subject for Tell a Friend','2012-04-16 04:14:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(132,23,NULL,7,'Subject for Membership Signup','2012-04-26 05:11:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(133,23,NULL,10,'Subject for Pledge Acknowledgment','2012-11-27 12:31:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(134,23,NULL,7,'Subject for Membership Signup','2013-01-25 03:44:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(135,23,NULL,9,'Subject for Tell a Friend','2012-11-19 03:08:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(136,23,NULL,7,'Subject for Membership Signup','2012-04-12 09:59:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(137,23,NULL,7,'Subject for Membership Signup','2012-09-13 12:35:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(138,23,NULL,9,'Subject for Tell a Friend','2012-04-30 10:57:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(139,23,NULL,10,'Subject for Pledge Acknowledgment','2012-04-05 07:06:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(140,23,NULL,9,'Subject for Tell a Friend','2013-01-21 10:29:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(141,23,NULL,8,'Subject for Membership Renewal','2012-09-09 02:42:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(142,23,NULL,10,'Subject for Pledge Acknowledgment','2012-05-18 07:00:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(143,23,NULL,7,'Subject for Membership Signup','2012-10-10 05:57:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(144,23,NULL,8,'Subject for Membership Renewal','2012-08-14 12:17:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(145,23,NULL,8,'Subject for Membership Renewal','2012-05-01 12:00:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(146,23,NULL,9,'Subject for Tell a Friend','2012-10-11 03:47:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(147,23,NULL,9,'Subject for Tell a Friend','2012-10-14 08:21:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(148,23,NULL,9,'Subject for Tell a Friend','2012-10-25 09:55:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(149,23,NULL,9,'Subject for Tell a Friend','2013-01-13 04:20:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(150,23,NULL,9,'Subject for Tell a Friend','2012-11-12 09:05:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(151,86,NULL,10,'Subject for Pledge Acknowledgment','2012-05-27 06:50:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(152,86,NULL,7,'Subject for Membership Signup','2012-03-02 06:36:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(153,86,NULL,9,'Subject for Tell a Friend','2013-01-19 04:50:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(154,86,NULL,7,'Subject for Membership Signup','2012-11-27 12:22:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(155,86,NULL,10,'Subject for Pledge Acknowledgment','2012-12-20 12:54:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(156,86,NULL,10,'Subject for Pledge Acknowledgment','2012-08-11 02:18:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(157,86,NULL,7,'Subject for Membership Signup','2012-05-26 04:01:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(158,86,NULL,10,'Subject for Pledge Acknowledgment','2012-07-22 02:50:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(159,86,NULL,8,'Subject for Membership Renewal','2013-01-15 12:02:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(160,86,NULL,7,'Subject for Membership Signup','2012-10-16 02:34:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(161,86,NULL,10,'Subject for Pledge Acknowledgment','2013-01-21 11:54:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(162,86,NULL,8,'Subject for Membership Renewal','2013-01-21 08:50:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(163,86,NULL,8,'Subject for Membership Renewal','2012-03-22 10:34:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(164,86,NULL,8,'Subject for Membership Renewal','2012-04-21 12:27:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(165,86,NULL,10,'Subject for Pledge Acknowledgment','2012-08-09 08:09:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(166,86,NULL,10,'Subject for Pledge Acknowledgment','2013-02-18 08:51:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(167,86,NULL,8,'Subject for Membership Renewal','2012-12-13 07:33:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(168,86,NULL,9,'Subject for Tell a Friend','2012-06-12 11:38:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(169,86,NULL,7,'Subject for Membership Signup','2012-06-19 10:29:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(170,86,NULL,9,'Subject for Tell a Friend','2013-02-19 04:56:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(171,86,NULL,10,'Subject for Pledge Acknowledgment','2012-09-19 02:30:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(172,86,NULL,8,'Subject for Membership Renewal','2012-08-01 11:22:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(173,86,NULL,9,'Subject for Tell a Friend','2012-08-18 11:32:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(174,86,NULL,8,'Subject for Membership Renewal','2013-01-08 08:12:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(175,86,NULL,10,'Subject for Pledge Acknowledgment','2012-06-14 10:30:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(176,86,NULL,9,'Subject for Tell a Friend','2012-07-22 01:31:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(177,86,NULL,10,'Subject for Pledge Acknowledgment','2012-07-23 11:38:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(178,86,NULL,8,'Subject for Membership Renewal','2013-02-23 10:31:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(179,86,NULL,9,'Subject for Tell a Friend','2012-06-23 10:30:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(180,86,NULL,10,'Subject for Pledge Acknowledgment','2013-02-24 10:10:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(181,86,NULL,9,'Subject for Tell a Friend','2012-03-04 04:31:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(182,86,NULL,7,'Subject for Membership Signup','2012-04-21 10:50:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(183,86,NULL,8,'Subject for Membership Renewal','2013-02-03 03:20:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(184,86,NULL,8,'Subject for Membership Renewal','2012-12-29 04:43:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(185,86,NULL,8,'Subject for Membership Renewal','2012-03-28 10:19:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(186,86,NULL,9,'Subject for Tell a Friend','2012-06-29 08:31:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(187,86,NULL,10,'Subject for Pledge Acknowledgment','2012-08-26 09:56:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(188,86,NULL,9,'Subject for Tell a Friend','2012-04-24 11:05:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(189,86,NULL,7,'Subject for Membership Signup','2012-11-30 10:43:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(190,86,NULL,8,'Subject for Membership Renewal','2012-12-23 02:44:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(191,86,NULL,8,'Subject for Membership Renewal','2012-11-19 12:32:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(192,86,NULL,9,'Subject for Tell a Friend','2012-07-23 07:23:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(193,86,NULL,9,'Subject for Tell a Friend','2012-12-17 03:21:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(194,86,NULL,8,'Subject for Membership Renewal','2012-06-07 01:18:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(195,86,NULL,9,'Subject for Tell a Friend','2012-12-31 06:33:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(196,86,NULL,9,'Subject for Tell a Friend','2012-06-13 03:15:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(197,86,NULL,7,'Subject for Membership Signup','2013-02-15 05:23:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(198,86,NULL,7,'Subject for Membership Signup','2013-01-23 07:18:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(199,86,NULL,9,'Subject for Tell a Friend','2012-09-04 08:16:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(200,86,NULL,9,'Subject for Tell a Friend','2012-12-14 04:47:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(201,86,NULL,10,'Subject for Pledge Acknowledgment','2012-08-25 07:53:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(202,86,NULL,8,'Subject for Membership Renewal','2012-07-27 05:35:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(203,86,NULL,10,'Subject for Pledge Acknowledgment','2012-11-07 07:15:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(204,86,NULL,9,'Subject for Tell a Friend','2012-10-17 12:59:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(205,86,NULL,7,'Subject for Membership Signup','2012-12-27 10:20:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(206,86,NULL,10,'Subject for Pledge Acknowledgment','2012-07-11 09:06:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(207,86,NULL,7,'Subject for Membership Signup','2012-12-02 05:32:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(208,86,NULL,8,'Subject for Membership Renewal','2012-06-17 09:29:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(209,86,NULL,8,'Subject for Membership Renewal','2012-09-21 08:13:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(210,86,NULL,7,'Subject for Membership Signup','2012-07-08 06:53:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(211,86,NULL,10,'Subject for Pledge Acknowledgment','2012-12-05 06:25:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(212,86,NULL,9,'Subject for Tell a Friend','2012-08-25 02:10:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(213,86,NULL,10,'Subject for Pledge Acknowledgment','2012-10-11 04:12:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(214,86,NULL,10,'Subject for Pledge Acknowledgment','2012-07-13 04:25:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(215,86,NULL,8,'Subject for Membership Renewal','2012-05-22 12:47:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(216,86,NULL,8,'Subject for Membership Renewal','2012-08-15 05:18:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(217,86,NULL,9,'Subject for Tell a Friend','2013-01-18 05:58:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(218,86,NULL,10,'Subject for Pledge Acknowledgment','2012-04-05 04:15:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(219,86,NULL,9,'Subject for Tell a Friend','2012-09-24 09:28:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(220,86,NULL,7,'Subject for Membership Signup','2012-05-19 02:43:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(221,86,NULL,7,'Subject for Membership Signup','2013-01-06 02:08:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(222,86,NULL,10,'Subject for Pledge Acknowledgment','2012-04-13 06:14:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(223,86,NULL,8,'Subject for Membership Renewal','2012-07-11 03:08:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(224,86,NULL,8,'Subject for Membership Renewal','2013-01-08 03:40:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(225,86,NULL,7,'Subject for Membership Signup','2012-06-22 03:04:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(226,86,NULL,7,'Subject for Membership Signup','2012-03-11 09:47:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(227,86,NULL,10,'Subject for Pledge Acknowledgment','2012-11-26 12:03:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(228,86,NULL,10,'Subject for Pledge Acknowledgment','2013-01-16 06:39:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(229,86,NULL,8,'Subject for Membership Renewal','2013-01-16 10:03:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(230,86,NULL,10,'Subject for Pledge Acknowledgment','2012-03-13 03:11:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(231,86,NULL,7,'Subject for Membership Signup','2012-11-20 12:53:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(232,86,NULL,9,'Subject for Tell a Friend','2012-03-04 08:42:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(233,86,NULL,9,'Subject for Tell a Friend','2012-04-21 04:25:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(234,86,NULL,7,'Subject for Membership Signup','2012-03-07 08:51:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(235,86,NULL,9,'Subject for Tell a Friend','2012-03-23 01:57:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(236,86,NULL,8,'Subject for Membership Renewal','2012-09-27 11:03:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(237,86,NULL,7,'Subject for Membership Signup','2012-09-10 05:50:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(238,86,NULL,8,'Subject for Membership Renewal','2012-04-05 05:58:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(239,86,NULL,10,'Subject for Pledge Acknowledgment','2012-07-20 12:38:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(240,86,NULL,8,'Subject for Membership Renewal','2012-10-26 06:45:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(241,86,NULL,7,'Subject for Membership Signup','2013-02-25 08:05:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(242,86,NULL,8,'Subject for Membership Renewal','2012-05-13 09:42:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(243,86,NULL,8,'Subject for Membership Renewal','2012-12-30 06:53:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(244,86,NULL,10,'Subject for Pledge Acknowledgment','2012-10-27 07:18:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(245,86,NULL,8,'Subject for Membership Renewal','2012-09-01 08:27:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(246,86,NULL,7,'Subject for Membership Signup','2012-07-27 03:47:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(247,86,NULL,7,'Subject for Membership Signup','2012-06-17 07:44:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(248,86,NULL,9,'Subject for Tell a Friend','2012-06-21 05:44:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(249,86,NULL,8,'Subject for Membership Renewal','2012-07-07 08:58:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(250,86,NULL,8,'Subject for Membership Renewal','2012-09-19 02:48:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(251,86,NULL,8,'Subject for Membership Renewal','2012-05-29 11:59:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(252,86,NULL,10,'Subject for Pledge Acknowledgment','2012-03-11 04:41:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(253,86,NULL,8,'Subject for Membership Renewal','2012-04-06 11:14:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(254,86,NULL,8,'Subject for Membership Renewal','2012-11-23 11:52:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(255,86,NULL,9,'Subject for Tell a Friend','2012-06-25 01:21:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(256,86,NULL,10,'Subject for Pledge Acknowledgment','2012-08-23 01:26:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(257,86,NULL,10,'Subject for Pledge Acknowledgment','2013-02-02 03:51:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(258,86,NULL,8,'Subject for Membership Renewal','2012-09-01 04:29:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(259,86,NULL,9,'Subject for Tell a Friend','2012-09-30 12:22:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(260,86,NULL,7,'Subject for Membership Signup','2012-05-02 05:46:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(261,86,NULL,10,'Subject for Pledge Acknowledgment','2012-12-04 03:17:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(262,86,NULL,10,'Subject for Pledge Acknowledgment','2012-10-11 12:15:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(263,86,NULL,10,'Subject for Pledge Acknowledgment','2012-04-30 06:58:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(264,86,NULL,10,'Subject for Pledge Acknowledgment','2012-12-10 03:55:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(265,86,NULL,7,'Subject for Membership Signup','2012-08-26 12:25:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(266,86,NULL,8,'Subject for Membership Renewal','2012-03-29 12:14:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(267,86,NULL,9,'Subject for Tell a Friend','2012-03-14 09:43:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(268,86,NULL,10,'Subject for Pledge Acknowledgment','2012-04-18 08:28:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(269,86,NULL,9,'Subject for Tell a Friend','2012-05-06 04:24:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(270,86,NULL,8,'Subject for Membership Renewal','2012-08-27 02:51:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(271,86,NULL,10,'Subject for Pledge Acknowledgment','2012-11-01 09:44:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(272,86,NULL,8,'Subject for Membership Renewal','2012-09-12 08:28:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(273,86,NULL,7,'Subject for Membership Signup','2013-01-14 06:24:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(274,86,NULL,10,'Subject for Pledge Acknowledgment','2012-12-31 04:15:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(275,86,NULL,7,'Subject for Membership Signup','2012-05-30 08:32:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(276,86,NULL,9,'Subject for Tell a Friend','2012-10-17 05:14:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(277,86,NULL,10,'Subject for Pledge Acknowledgment','2012-04-11 05:29:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(278,86,NULL,9,'Subject for Tell a Friend','2012-05-21 08:12:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(279,86,NULL,7,'Subject for Membership Signup','2012-05-07 10:20:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(280,86,NULL,10,'Subject for Pledge Acknowledgment','2012-04-21 06:58:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(281,86,NULL,8,'Subject for Membership Renewal','2012-12-15 02:19:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(282,86,NULL,9,'Subject for Tell a Friend','2012-06-14 02:06:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(283,86,NULL,7,'Subject for Membership Signup','2012-08-02 03:39:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(284,86,NULL,9,'Subject for Tell a Friend','2012-04-25 05:10:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(285,86,NULL,9,'Subject for Tell a Friend','2012-11-20 08:19:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(286,86,NULL,9,'Subject for Tell a Friend','2012-11-06 05:41:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(287,86,NULL,8,'Subject for Membership Renewal','2012-03-06 11:16:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(288,86,NULL,7,'Subject for Membership Signup','2012-05-23 12:45:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(289,86,NULL,9,'Subject for Tell a Friend','2012-09-20 02:36:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(290,86,NULL,8,'Subject for Membership Renewal','2012-07-13 05:58:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(291,86,NULL,8,'Subject for Membership Renewal','2012-05-12 11:05:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(292,86,NULL,8,'Subject for Membership Renewal','2013-02-04 01:39:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(293,86,NULL,9,'Subject for Tell a Friend','2012-11-07 09:53:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(294,86,NULL,9,'Subject for Tell a Friend','2012-10-26 09:20:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(295,86,NULL,8,'Subject for Membership Renewal','2012-11-27 12:18:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(296,86,NULL,9,'Subject for Tell a Friend','2012-08-20 03:49:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(297,86,NULL,8,'Subject for Membership Renewal','2012-05-29 01:47:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(298,86,NULL,10,'Subject for Pledge Acknowledgment','2012-12-26 04:33:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(299,86,NULL,10,'Subject for Pledge Acknowledgment','2012-06-13 06:59:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(300,86,NULL,10,'Subject for Pledge Acknowledgment','2012-09-11 05:06:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(301,193,NULL,9,'Subject for Tell a Friend','2012-12-09 05:35:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(302,193,NULL,10,'Subject for Pledge Acknowledgment','2012-12-22 12:35:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(303,193,NULL,8,'Subject for Membership Renewal','2012-05-29 02:29:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(304,193,NULL,7,'Subject for Membership Signup','2012-10-03 02:46:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(305,193,NULL,8,'Subject for Membership Renewal','2012-04-20 05:40:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(306,193,NULL,9,'Subject for Tell a Friend','2012-08-24 12:24:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(307,193,NULL,10,'Subject for Pledge Acknowledgment','2012-12-29 02:48:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(308,193,NULL,10,'Subject for Pledge Acknowledgment','2012-06-21 05:57:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(309,193,NULL,10,'Subject for Pledge Acknowledgment','2012-10-17 07:59:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(310,193,NULL,8,'Subject for Membership Renewal','2013-02-05 04:55:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(311,193,NULL,10,'Subject for Pledge Acknowledgment','2012-06-15 06:17:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(312,193,NULL,8,'Subject for Membership Renewal','2012-09-14 08:51:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(313,193,NULL,10,'Subject for Pledge Acknowledgment','2012-03-14 12:04:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(314,193,NULL,9,'Subject for Tell a Friend','2012-04-24 04:57:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(315,193,NULL,8,'Subject for Membership Renewal','2012-06-24 12:57:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(316,193,NULL,8,'Subject for Membership Renewal','2012-03-13 11:53:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(317,193,NULL,9,'Subject for Tell a Friend','2013-01-08 03:31:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(318,193,NULL,7,'Subject for Membership Signup','2012-06-27 08:29:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(319,193,NULL,8,'Subject for Membership Renewal','2012-08-14 02:35:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(320,193,NULL,10,'Subject for Pledge Acknowledgment','2012-08-06 12:03:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(321,193,NULL,7,'Subject for Membership Signup','2012-04-26 06:08:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(322,193,NULL,10,'Subject for Pledge Acknowledgment','2012-07-25 05:14:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(323,193,NULL,9,'Subject for Tell a Friend','2012-12-31 02:30:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(324,193,NULL,10,'Subject for Pledge Acknowledgment','2012-11-07 03:20:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(325,193,NULL,8,'Subject for Membership Renewal','2012-12-21 10:54:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(326,193,NULL,9,'Subject for Tell a Friend','2012-11-27 08:30:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(327,193,NULL,8,'Subject for Membership Renewal','2012-07-06 11:45:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(328,193,NULL,7,'Subject for Membership Signup','2012-09-17 08:51:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(329,193,NULL,8,'Subject for Membership Renewal','2012-06-10 03:04:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(330,193,NULL,10,'Subject for Pledge Acknowledgment','2012-09-21 11:29:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(331,193,NULL,7,'Subject for Membership Signup','2012-03-27 09:31:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(332,193,NULL,9,'Subject for Tell a Friend','2012-10-20 06:41:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(333,193,NULL,9,'Subject for Tell a Friend','2012-10-19 11:29:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(334,193,NULL,8,'Subject for Membership Renewal','2012-10-20 07:43:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(335,193,NULL,10,'Subject for Pledge Acknowledgment','2012-08-11 01:23:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(336,193,NULL,7,'Subject for Membership Signup','2012-08-26 01:21:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(337,193,NULL,7,'Subject for Membership Signup','2012-12-11 09:46:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(338,193,NULL,9,'Subject for Tell a Friend','2013-02-28 04:13:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(339,193,NULL,8,'Subject for Membership Renewal','2013-01-02 01:55:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(340,193,NULL,9,'Subject for Tell a Friend','2012-08-26 10:41:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(341,193,NULL,8,'Subject for Membership Renewal','2012-07-14 10:27:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(342,193,NULL,10,'Subject for Pledge Acknowledgment','2012-04-21 11:46:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(343,193,NULL,7,'Subject for Membership Signup','2013-02-04 02:13:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(344,193,NULL,10,'Subject for Pledge Acknowledgment','2012-04-11 10:42:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(345,193,NULL,9,'Subject for Tell a Friend','2013-01-27 04:08:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(346,193,NULL,9,'Subject for Tell a Friend','2012-03-22 01:20:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(347,193,NULL,9,'Subject for Tell a Friend','2012-06-16 10:53:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(348,193,NULL,7,'Subject for Membership Signup','2012-12-23 02:56:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(349,193,NULL,7,'Subject for Membership Signup','2012-03-17 02:44:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(350,193,NULL,10,'Subject for Pledge Acknowledgment','2012-05-14 07:00:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(351,193,NULL,10,'Subject for Pledge Acknowledgment','2012-09-01 01:54:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(352,193,NULL,9,'Subject for Tell a Friend','2012-04-03 12:22:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(353,193,NULL,10,'Subject for Pledge Acknowledgment','2012-11-10 11:28:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(354,193,NULL,10,'Subject for Pledge Acknowledgment','2012-04-08 05:43:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(355,193,NULL,8,'Subject for Membership Renewal','2012-07-02 03:52:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(356,193,NULL,7,'Subject for Membership Signup','2012-11-13 08:38:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(357,193,NULL,8,'Subject for Membership Renewal','2012-12-19 09:08:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(358,193,NULL,7,'Subject for Membership Signup','2013-01-19 09:13:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(359,193,NULL,7,'Subject for Membership Signup','2013-01-13 12:58:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(360,193,NULL,9,'Subject for Tell a Friend','2012-09-19 10:32:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(361,193,NULL,10,'Subject for Pledge Acknowledgment','2012-04-23 07:29:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(362,193,NULL,8,'Subject for Membership Renewal','2012-12-26 11:32:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(363,193,NULL,9,'Subject for Tell a Friend','2012-06-20 11:49:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(364,193,NULL,10,'Subject for Pledge Acknowledgment','2012-08-16 06:41:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(365,193,NULL,8,'Subject for Membership Renewal','2012-07-18 07:10:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(366,193,NULL,7,'Subject for Membership Signup','2013-01-21 07:55:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(367,193,NULL,7,'Subject for Membership Signup','2012-08-19 04:24:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(368,193,NULL,9,'Subject for Tell a Friend','2012-10-20 09:29:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(369,193,NULL,8,'Subject for Membership Renewal','2012-04-10 02:41:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(370,193,NULL,8,'Subject for Membership Renewal','2012-10-11 07:57:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(371,193,NULL,7,'Subject for Membership Signup','2012-04-26 02:17:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(372,193,NULL,7,'Subject for Membership Signup','2013-01-03 12:05:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(373,193,NULL,10,'Subject for Pledge Acknowledgment','2012-07-11 01:40:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(374,193,NULL,7,'Subject for Membership Signup','2012-09-08 03:41:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(375,193,NULL,8,'Subject for Membership Renewal','2012-05-24 12:38:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(376,193,NULL,8,'Subject for Membership Renewal','2012-03-28 03:28:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(377,193,NULL,10,'Subject for Pledge Acknowledgment','2012-05-20 03:00:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(378,193,NULL,10,'Subject for Pledge Acknowledgment','2012-05-06 05:25:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(379,193,NULL,8,'Subject for Membership Renewal','2013-01-14 04:27:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(380,193,NULL,9,'Subject for Tell a Friend','2012-07-17 01:51:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(381,193,NULL,10,'Subject for Pledge Acknowledgment','2012-04-30 02:09:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(382,193,NULL,7,'Subject for Membership Signup','2012-07-31 11:49:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(383,193,NULL,10,'Subject for Pledge Acknowledgment','2012-08-27 01:05:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(384,193,NULL,7,'Subject for Membership Signup','2012-07-27 12:23:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(385,193,NULL,9,'Subject for Tell a Friend','2012-03-11 08:10:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(386,193,NULL,9,'Subject for Tell a Friend','2012-04-25 11:50:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(387,193,NULL,10,'Subject for Pledge Acknowledgment','2012-12-20 09:26:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(388,193,NULL,10,'Subject for Pledge Acknowledgment','2012-07-27 05:27:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(389,193,NULL,9,'Subject for Tell a Friend','2012-04-21 11:43:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(390,193,NULL,7,'Subject for Membership Signup','2012-12-25 08:36:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(391,193,NULL,7,'Subject for Membership Signup','2013-02-09 01:48:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(392,193,NULL,10,'Subject for Pledge Acknowledgment','2012-07-14 09:43:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(393,193,NULL,8,'Subject for Membership Renewal','2012-06-21 10:36:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(394,193,NULL,10,'Subject for Pledge Acknowledgment','2012-08-05 01:27:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(395,193,NULL,8,'Subject for Membership Renewal','2012-03-26 02:56:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(396,193,NULL,8,'Subject for Membership Renewal','2012-08-27 11:16:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(397,193,NULL,9,'Subject for Tell a Friend','2012-07-07 10:37:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(398,193,NULL,10,'Subject for Pledge Acknowledgment','2013-01-19 09:48:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(399,193,NULL,9,'Subject for Tell a Friend','2012-12-15 01:19:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(400,193,NULL,8,'Subject for Membership Renewal','2012-12-01 12:38:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(401,193,NULL,8,'Subject for Membership Renewal','2012-03-03 02:47:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(402,193,NULL,7,'Subject for Membership Signup','2012-10-01 02:06:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(403,193,NULL,9,'Subject for Tell a Friend','2013-01-24 12:48:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(404,193,NULL,8,'Subject for Membership Renewal','2012-05-07 04:20:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(405,193,NULL,8,'Subject for Membership Renewal','2012-09-05 02:07:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(406,193,NULL,8,'Subject for Membership Renewal','2012-12-18 07:22:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(407,193,NULL,7,'Subject for Membership Signup','2012-04-15 03:16:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(408,193,NULL,8,'Subject for Membership Renewal','2012-09-22 04:13:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(409,193,NULL,8,'Subject for Membership Renewal','2012-09-16 05:40:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(410,193,NULL,9,'Subject for Tell a Friend','2012-07-15 03:13:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(411,193,NULL,7,'Subject for Membership Signup','2012-12-31 12:48:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(412,193,NULL,9,'Subject for Tell a Friend','2012-12-22 05:34:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(413,193,NULL,7,'Subject for Membership Signup','2012-04-05 07:41:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(414,193,NULL,8,'Subject for Membership Renewal','2012-03-11 06:03:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(415,193,NULL,8,'Subject for Membership Renewal','2012-05-12 11:02:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(416,193,NULL,10,'Subject for Pledge Acknowledgment','2012-07-21 08:43:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(417,193,NULL,8,'Subject for Membership Renewal','2012-04-24 10:22:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(418,193,NULL,8,'Subject for Membership Renewal','2012-12-25 01:21:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(419,193,NULL,8,'Subject for Membership Renewal','2012-06-01 05:33:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(420,193,NULL,10,'Subject for Pledge Acknowledgment','2012-06-14 04:02:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(421,193,NULL,10,'Subject for Pledge Acknowledgment','2012-08-15 09:40:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(422,193,NULL,9,'Subject for Tell a Friend','2013-01-18 07:50:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(423,193,NULL,7,'Subject for Membership Signup','2012-03-06 01:15:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(424,193,NULL,7,'Subject for Membership Signup','2013-01-09 11:50:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(425,193,NULL,9,'Subject for Tell a Friend','2012-10-04 08:53:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(426,193,NULL,9,'Subject for Tell a Friend','2013-02-22 02:33:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(427,193,NULL,10,'Subject for Pledge Acknowledgment','2012-11-21 05:43:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(428,193,NULL,8,'Subject for Membership Renewal','2012-06-01 07:56:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(429,193,NULL,9,'Subject for Tell a Friend','2013-01-27 11:48:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(430,193,NULL,8,'Subject for Membership Renewal','2012-05-21 07:58:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(431,193,NULL,8,'Subject for Membership Renewal','2012-06-13 12:56:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(432,193,NULL,9,'Subject for Tell a Friend','2012-05-06 11:22:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(433,193,NULL,8,'Subject for Membership Renewal','2012-10-09 09:45:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(434,193,NULL,8,'Subject for Membership Renewal','2013-01-12 06:00:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(435,193,NULL,9,'Subject for Tell a Friend','2012-10-26 07:22:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(436,193,NULL,10,'Subject for Pledge Acknowledgment','2012-09-11 01:00:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(437,193,NULL,7,'Subject for Membership Signup','2012-10-31 05:56:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(438,193,NULL,9,'Subject for Tell a Friend','2012-12-26 04:40:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(439,193,NULL,10,'Subject for Pledge Acknowledgment','2012-07-13 04:15:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(440,193,NULL,10,'Subject for Pledge Acknowledgment','2012-11-03 06:34:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(441,193,NULL,9,'Subject for Tell a Friend','2012-03-26 05:10:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(442,193,NULL,7,'Subject for Membership Signup','2012-03-26 06:52:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(443,193,NULL,9,'Subject for Tell a Friend','2012-06-08 06:10:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(444,193,NULL,8,'Subject for Membership Renewal','2012-06-23 11:21:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(445,193,NULL,9,'Subject for Tell a Friend','2012-08-07 08:15:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(446,193,NULL,8,'Subject for Membership Renewal','2013-01-11 01:49:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(447,193,NULL,10,'Subject for Pledge Acknowledgment','2013-01-15 04:47:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(448,193,NULL,10,'Subject for Pledge Acknowledgment','2012-11-23 03:52:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(449,193,NULL,9,'Subject for Tell a Friend','2012-06-13 07:44:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(450,193,NULL,7,'Subject for Membership Signup','2012-09-05 08:49:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(451,2,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,4,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,6,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,8,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,16,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,19,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,82,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,92,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,34,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,71,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,43,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,32,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,32,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,4,1,7,'General','2013-03-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(465,11,2,7,'Student','2013-02-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(466,35,3,7,'General','2013-02-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(467,115,4,7,'Student','2013-02-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(468,120,5,7,'Student','2012-02-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(469,59,6,7,'Student','2013-02-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(470,164,7,7,'General','2013-02-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(471,108,8,7,'Student','2013-02-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(472,105,9,7,'General','2013-02-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(473,88,10,7,'General','2010-12-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(474,195,11,7,'Lifetime','2013-02-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(475,40,12,7,'Student','2013-02-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(476,161,13,7,'General','2013-02-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(477,155,14,7,'Student','2013-02-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(478,38,15,7,'Student','2012-02-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(479,176,16,7,'Student','2013-02-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(480,132,17,7,'General','2013-02-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(481,2,18,7,'Student','2013-02-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(482,168,19,7,'General','2013-02-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(483,181,20,7,'General','2010-09-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(484,52,21,7,'General','2013-02-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(485,135,22,7,'Lifetime','2013-02-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(486,51,23,7,'General','2013-02-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(487,57,24,7,'Student','2013-02-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(488,151,25,7,'General','2010-08-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(489,53,26,7,'Student','2013-02-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(490,13,27,7,'General','2013-02-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(491,148,28,7,'Student','2013-02-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(492,23,29,7,'General','2013-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(493,103,30,7,'Student','2012-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(494,4,14,6,'$ 100.00 - General Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(495,11,15,6,'$ 50.00 - Student Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(496,35,16,6,'$ 100.00 - General Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(497,115,17,6,'$ 50.00 - Student Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(498,120,18,6,'$ 50.00 - Student Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(499,59,19,6,'$ 50.00 - Student Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(500,164,20,6,'$ 100.00 - General Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(501,108,21,6,'$ 50.00 - Student Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(502,105,22,6,'$ 100.00 - General Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(503,88,23,6,'$ 100.00 - General Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(504,195,24,6,'$ 1200.00 - Lifetime Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(505,40,25,6,'$ 50.00 - Student Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(506,161,26,6,'$ 100.00 - General Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(507,155,27,6,'$ 50.00 - Student Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(508,38,28,6,'$ 50.00 - Student Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(509,176,29,6,'$ 50.00 - Student Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(510,132,30,6,'$ 100.00 - General Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(511,2,31,6,'$ 50.00 - Student Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(512,168,32,6,'$ 100.00 - General Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(513,181,33,6,'$ 100.00 - General Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(514,52,34,6,'$ 100.00 - General Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(515,135,35,6,'$ 1200.00 - Lifetime Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(516,51,36,6,'$ 100.00 - General Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(517,57,37,6,'$ 50.00 - Student Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(518,151,38,6,'$ 100.00 - General Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(519,53,39,6,'$ 50.00 - Student Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(520,13,40,6,'$ 100.00 - General Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(521,148,41,6,'$ 50.00 - Student Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(522,23,42,6,'$ 100.00 - General Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(523,103,43,6,'$ 50.00 - Student Membership: Offline signup','2013-03-01 10:55:52',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(525,101,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,164,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,28,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,140,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,187,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,22,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,128,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,116,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,109,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,19,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,47,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,31,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,55,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,180,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,117,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,106,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,112,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,102,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,32,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,110,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,60,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,198,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,96,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,72,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,174,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,143,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,138,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,95,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,36,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,68,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,139,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,158,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,52,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,196,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,126,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,182,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,107,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,65,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,103,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,89,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,149,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,177,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,161,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,199,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,130,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,160,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,37,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,49,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,15,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,61,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,15,45,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(576,19,46,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(577,22,47,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(578,28,48,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(579,31,49,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(580,32,50,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(581,36,51,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(582,37,52,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(583,47,53,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(584,49,54,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(585,52,55,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(586,55,56,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(587,60,57,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(588,61,58,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(589,65,59,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(590,68,60,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(591,72,61,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(592,89,62,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(593,95,63,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(594,96,64,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(595,101,65,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(596,102,66,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(597,103,67,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(598,106,68,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(599,107,69,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(600,109,70,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(601,110,71,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(602,112,72,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(603,116,73,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(604,117,74,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(605,126,75,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(606,128,76,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(607,130,77,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(608,138,78,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(609,139,79,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(610,140,80,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(611,143,81,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(612,149,82,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(613,158,83,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(614,160,84,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(615,161,85,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(616,164,86,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(617,174,87,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(618,177,88,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(619,180,89,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(620,182,90,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(621,187,91,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(622,196,92,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(623,198,93,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(624,199,94,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-03-01 10:55:54',NULL,NULL,NULL,NULL,NULL,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_assignment` WRITE; /*!40000 ALTER TABLE `civicrm_activity_assignment` DISABLE KEYS */; -INSERT INTO `civicrm_activity_assignment` (`id`, `activity_id`, `assignee_contact_id`) VALUES (36,163,1),(77,343,1),(21,91,2),(4,17,3),(83,358,3),(98,429,3),(43,190,4),(64,285,5),(80,350,7),(15,65,8),(37,169,9),(1,3,10),(35,160,12),(8,38,13),(56,245,13),(55,241,14),(69,302,14),(44,193,15),(13,59,17),(24,111,20),(97,413,21),(25,118,22),(41,183,22),(102,446,22),(38,171,25),(71,305,25),(53,233,26),(51,224,27),(96,410,27),(75,333,28),(54,238,32),(57,247,33),(65,286,34),(78,346,35),(20,84,36),(31,141,36),(40,177,40),(29,135,42),(61,280,42),(73,314,43),(6,26,44),(42,187,45),(82,353,45),(95,405,47),(48,211,48),(59,274,48),(93,402,48),(94,404,48),(62,282,49),(23,105,50),(26,121,51),(32,148,51),(49,214,51),(79,347,54),(47,210,56),(100,440,58),(12,57,59),(84,361,59),(11,52,60),(10,47,63),(99,434,63),(19,83,67),(101,445,67),(90,381,68),(91,387,68),(92,399,69),(17,72,70),(28,133,70),(66,294,71),(16,68,72),(76,335,74),(30,136,75),(70,303,75),(5,22,76),(46,203,76),(68,301,77),(34,159,78),(72,308,78),(88,370,78),(87,367,80),(9,41,81),(50,223,83),(52,227,85),(58,272,85),(89,380,85),(45,201,86),(74,317,87),(85,363,87),(39,176,90),(3,8,91),(22,95,95),(81,352,95),(63,284,96),(67,300,97),(86,365,97),(2,5,99),(14,64,99),(27,131,99),(33,153,99),(60,278,99),(7,29,100),(18,75,101); +INSERT INTO `civicrm_activity_assignment` (`id`, `activity_id`, `assignee_contact_id`) VALUES (50,207,1),(16,66,2),(33,125,3),(60,246,5),(63,265,5),(76,343,5),(2,21,6),(44,169,9),(19,73,10),(22,86,12),(54,225,13),(64,273,14),(93,411,14),(79,356,15),(4,26,16),(15,65,16),(30,118,17),(95,423,17),(94,413,18),(29,109,20),(55,226,21),(46,189,22),(82,366,24),(5,30,26),(12,57,27),(48,198,27),(52,220,27),(85,372,29),(88,384,29),(14,64,32),(25,90,34),(38,137,34),(86,374,35),(37,136,38),(17,67,40),(35,132,41),(36,134,41),(20,77,42),(39,143,43),(10,47,44),(47,197,44),(58,237,44),(96,424,44),(6,32,45),(70,318,45),(27,99,47),(49,205,47),(92,407,47),(53,221,48),(67,283,48),(3,22,49),(80,358,51),(9,46,52),(78,349,52),(61,247,53),(56,231,54),(45,182,56),(51,210,56),(73,331,57),(89,390,57),(98,442,57),(81,359,58),(41,154,60),(1,6,61),(97,437,61),(99,450,61),(75,337,63),(8,40,64),(40,152,65),(69,304,65),(31,120,68),(62,260,68),(74,336,68),(84,371,68),(83,367,70),(28,106,71),(87,382,71),(23,87,72),(24,88,73),(42,157,77),(43,160,77),(21,83,78),(32,121,78),(91,402,84),(13,59,86),(26,94,88),(11,49,90),(66,279,90),(77,348,91),(90,391,91),(34,127,92),(72,328,94),(7,36,95),(18,68,95),(57,234,97),(65,275,97),(68,288,97),(59,241,101),(71,321,101); /*!40000 ALTER TABLE `civicrm_activity_assignment` ENABLE KEYS */; UNLOCK TABLES; @@ -107,7 +107,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_activity_target` WRITE; /*!40000 ALTER TABLE `civicrm_activity_target` DISABLE KEYS */; -INSERT INTO `civicrm_activity_target` (`id`, `activity_id`, `target_contact_id`) VALUES (27,127,1),(14,70,2),(36,166,3),(18,90,4),(31,145,4),(75,332,5),(56,252,6),(3,23,7),(7,49,7),(17,89,7),(29,139,7),(99,419,11),(40,180,12),(58,256,12),(2,16,13),(96,409,14),(35,164,15),(79,349,17),(44,198,18),(110,448,20),(19,97,22),(89,391,22),(54,242,23),(70,312,24),(80,359,24),(16,77,25),(24,113,25),(95,403,26),(86,375,27),(77,338,28),(98,417,28),(59,260,29),(72,320,30),(90,392,30),(106,435,30),(73,321,31),(13,69,32),(23,109,34),(4,27,36),(107,436,36),(78,345,37),(12,67,38),(1,14,40),(69,311,40),(104,430,40),(51,226,41),(101,425,42),(15,74,45),(66,283,45),(84,369,45),(61,269,46),(105,433,46),(32,151,47),(9,56,48),(28,138,48),(91,394,48),(48,216,50),(76,334,51),(37,167,52),(42,188,52),(67,296,52),(47,215,54),(50,220,54),(10,60,55),(52,234,55),(100,423,55),(108,437,56),(38,172,57),(82,364,57),(93,397,57),(41,186,59),(57,254,59),(85,373,59),(103,428,60),(109,444,60),(65,281,61),(34,156,63),(102,427,63),(63,276,64),(71,315,64),(97,412,64),(64,277,66),(5,32,68),(8,50,68),(25,117,69),(39,175,71),(43,191,71),(92,395,71),(26,119,75),(22,103,76),(11,66,77),(30,142,77),(62,273,78),(55,243,80),(21,100,81),(33,155,81),(74,329,83),(83,368,84),(46,208,85),(81,360,86),(88,384,88),(94,398,89),(49,217,90),(68,297,90),(60,262,91),(45,205,93),(20,99,94),(53,237,94),(87,382,96),(6,40,100); +INSERT INTO `civicrm_activity_target` (`id`, `activity_id`, `target_contact_id`) VALUES (36,146,1),(58,217,1),(8,24,2),(82,323,2),(73,286,4),(2,9,7),(18,69,7),(79,306,7),(97,386,7),(24,102,9),(63,248,9),(87,340,9),(47,181,10),(76,294,10),(14,54,13),(71,284,14),(9,37,16),(78,301,16),(4,11,18),(23,101,18),(70,282,18),(55,200,19),(59,219,20),(106,426,20),(15,55,23),(51,193,23),(7,20,24),(96,385,24),(81,317,25),(102,410,25),(110,438,25),(49,188,27),(105,425,28),(64,255,30),(66,267,30),(19,72,32),(89,346,33),(35,140,34),(57,212,34),(40,150,35),(1,3,36),(95,380,36),(54,199,37),(11,41,38),(22,100,40),(98,389,40),(16,56,41),(27,117,41),(80,314,41),(92,360,41),(37,147,43),(65,259,43),(72,285,43),(114,449,44),(52,195,47),(99,397,48),(103,412,48),(45,176,49),(77,296,50),(94,368,50),(111,441,50),(12,42,51),(68,276,51),(42,168,52),(101,403,53),(34,138,54),(61,233,56),(104,422,57),(20,95,58),(46,179,58),(56,204,59),(5,13,61),(109,435,61),(67,269,62),(48,186,66),(84,332,66),(83,326,67),(60,232,68),(69,278,68),(44,173,69),(50,192,72),(21,96,73),(3,10,74),(93,363,74),(10,39,75),(62,235,75),(85,333,75),(53,196,76),(6,14,79),(38,148,79),(33,135,80),(43,170,80),(74,289,83),(112,443,86),(88,345,87),(39,149,88),(28,122,89),(86,338,89),(31,130,90),(75,293,91),(30,129,92),(113,445,92),(13,43,94),(91,352,94),(41,153,95),(90,347,95),(26,112,96),(29,124,96),(32,131,96),(100,399,96),(17,61,98),(25,110,98),(108,432,98),(107,429,99); /*!40000 ALTER TABLE `civicrm_activity_target` ENABLE KEYS */; UNLOCK TABLES; @@ -117,7 +117,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,47,1,1,0,'201O Caulder Rd SE',201,'O',NULL,'Caulder','Rd','SE',NULL,NULL,NULL,NULL,'Mount Orab',1,1034,NULL,'45154',NULL,1228,39.046589,-83.92245,0,NULL,NULL,NULL),(2,132,1,1,0,'725T Bay Way W',725,'T',NULL,'Bay','Way','W',NULL,NULL,NULL,NULL,'Springvale',1,1018,NULL,'04083',NULL,1228,43.467037,-70.80275,0,NULL,NULL,NULL),(3,106,1,1,0,'514Q Pine Ave SE',514,'Q',NULL,'Pine','Ave','SE',NULL,NULL,NULL,NULL,'Watsonville',1,1004,NULL,'95076',NULL,1228,36.922902,-121.77224,0,NULL,NULL,NULL),(4,136,1,1,0,'584J Beech Ln W',584,'J',NULL,'Beech','Ln','W',NULL,NULL,NULL,NULL,'Thomson',1,1009,NULL,'30824',NULL,1228,33.490536,-82.5028,0,NULL,NULL,NULL),(5,151,1,1,0,'430A Lincoln Pl SW',430,'A',NULL,'Lincoln','Pl','SW',NULL,NULL,NULL,NULL,'Pasadena',1,1004,NULL,'91126',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL),(6,12,1,1,0,'944M College St NW',944,'M',NULL,'College','St','NW',NULL,NULL,NULL,NULL,'Climbing Hill',1,1014,NULL,'51015',NULL,1228,42.345024,-96.087523,0,NULL,NULL,NULL),(7,156,1,1,0,'685Z Main Blvd SE',685,'Z',NULL,'Main','Blvd','SE',NULL,NULL,NULL,NULL,'Fort Mitchell',1,1000,NULL,'36856',NULL,1228,32.282085,-84.98389,0,NULL,NULL,NULL),(8,40,1,1,0,'613G Northpoint Path E',613,'G',NULL,'Northpoint','Path','E',NULL,NULL,NULL,NULL,'Singer',1,1017,NULL,'70660',NULL,1228,30.586251,-93.42135,0,NULL,NULL,NULL),(9,56,1,1,0,'868G Dowlen Dr SW',868,'G',NULL,'Dowlen','Dr','SW',NULL,NULL,NULL,NULL,'Magnolia',1,1023,NULL,'39652',NULL,1228,31.117097,-90.45287,0,NULL,NULL,NULL),(10,110,1,1,0,'473N Cadell Path W',473,'N',NULL,'Cadell','Path','W',NULL,NULL,NULL,NULL,'Sherrill',1,1014,NULL,'52073',NULL,1228,42.640962,-90.82532,0,NULL,NULL,NULL),(11,166,1,1,0,'349X Woodbridge St NE',349,'X',NULL,'Woodbridge','St','NE',NULL,NULL,NULL,NULL,'Nancy',1,1016,NULL,'42544',NULL,1228,37.029286,-84.81365,0,NULL,NULL,NULL),(12,131,1,1,0,'249U Dowlen Rd W',249,'U',NULL,'Dowlen','Rd','W',NULL,NULL,NULL,NULL,'Robeson',1,1037,NULL,'19524',NULL,1228,40.248684,-75.858731,0,NULL,NULL,NULL),(13,168,1,1,0,'55V Jackson Blvd SE',55,'V',NULL,'Jackson','Blvd','SE',NULL,NULL,NULL,NULL,'Mineral Springs',1,1032,NULL,'28108',NULL,1228,34.916253,-80.640383,0,NULL,NULL,NULL),(14,133,1,1,0,'81L Lincoln Blvd SE',81,'L',NULL,'Lincoln','Blvd','SE',NULL,NULL,NULL,NULL,'Norwood',1,1031,NULL,'13668',NULL,1228,44.752355,-74.98906,0,NULL,NULL,NULL),(15,119,1,1,0,'848B Woodbridge Path N',848,'B',NULL,'Woodbridge','Path','N',NULL,NULL,NULL,NULL,'Storrs Mansfield',1,1006,NULL,'06268',NULL,1228,41.806041,-72.26127,0,NULL,NULL,NULL),(16,188,1,1,0,'918W El Camino St N',918,'W',NULL,'El Camino','St','N',NULL,NULL,NULL,NULL,'Carmel',1,1018,NULL,'04419',NULL,1228,44.7896,-69.00587,0,NULL,NULL,NULL),(17,121,1,1,0,'694E Woodbridge Way SE',694,'E',NULL,'Woodbridge','Way','SE',NULL,NULL,NULL,NULL,'Brooklyn',1,1031,NULL,'11247',NULL,1228,40.645099,-73.945032,0,NULL,NULL,NULL),(18,114,1,1,0,'320I States Ln S',320,'I',NULL,'States','Ln','S',NULL,NULL,NULL,NULL,'Newark',1,1029,NULL,'07184',NULL,1228,40.79185,-74.245241,0,NULL,NULL,NULL),(19,31,1,1,0,'668N States Rd NE',668,'N',NULL,'States','Rd','NE',NULL,NULL,NULL,NULL,'Chicago',1,1012,NULL,'60693',NULL,1228,42.096428,-87.71791,0,NULL,NULL,NULL),(20,125,1,1,0,'504H Beech Ln N',504,'H',NULL,'Beech','Ln','N',NULL,NULL,NULL,NULL,'Dutzow',1,1024,NULL,'63342',NULL,1228,38.605967,-90.996216,0,NULL,NULL,NULL),(21,186,1,1,0,'452X Caulder Pl NW',452,'X',NULL,'Caulder','Pl','NW',NULL,NULL,NULL,NULL,'Tacoma',1,1046,NULL,'98408',NULL,1228,47.209021,-122.44498,0,NULL,NULL,NULL),(22,93,1,1,0,'390W Beech St E',390,'W',NULL,'Beech','St','E',NULL,NULL,NULL,NULL,'Venedocia',1,1034,NULL,'45894',NULL,1228,40.755619,-84.48041,0,NULL,NULL,NULL),(23,69,1,1,0,'470A Northpoint Path N',470,'A',NULL,'Northpoint','Path','N',NULL,NULL,NULL,NULL,'Parkersburg',1,1047,NULL,'26103',NULL,1228,39.236427,-81.540501,0,NULL,NULL,NULL),(24,8,1,1,0,'905P Martin Luther King Dr N',905,'P',NULL,'Martin Luther King','Dr','N',NULL,NULL,NULL,NULL,'North Berwick',1,1018,NULL,'03906',NULL,1228,43.327517,-70.7646,0,NULL,NULL,NULL),(25,117,1,1,0,'592Z El Camino St S',592,'Z',NULL,'El Camino','St','S',NULL,NULL,NULL,NULL,'Orlando',1,1008,NULL,'32822',NULL,1228,28.494931,-81.28949,0,NULL,NULL,NULL),(26,193,1,1,0,'390Y Pine Ave E',390,'Y',NULL,'Pine','Ave','E',NULL,NULL,NULL,NULL,'Brunswick',1,1034,NULL,'44212',NULL,1228,41.244051,-81.82836,0,NULL,NULL,NULL),(27,71,1,1,0,'752U Dowlen Ave SW',752,'U',NULL,'Dowlen','Ave','SW',NULL,NULL,NULL,NULL,'Irving',1,1042,NULL,'75016',NULL,1228,32.767268,-96.777626,0,NULL,NULL,NULL),(28,81,1,1,0,'799K Maple Blvd NW',799,'K',NULL,'Maple','Blvd','NW',NULL,NULL,NULL,NULL,'Southmayd',1,1042,NULL,'76268',NULL,1228,33.621928,-96.7649,0,NULL,NULL,NULL),(29,197,1,1,0,'924D Main Dr N',924,'D',NULL,'Main','Dr','N',NULL,NULL,NULL,NULL,'Miami',1,1008,NULL,'33243',NULL,1228,25.558428,-80.458168,0,NULL,NULL,NULL),(30,78,1,1,0,'700W Lincoln Rd E',700,'W',NULL,'Lincoln','Rd','E',NULL,NULL,NULL,NULL,'Boise',1,1011,NULL,'83708',NULL,1228,43.459855,-116.243984,0,NULL,NULL,NULL),(31,196,1,1,0,'285G Cadell Path S',285,'G',NULL,'Cadell','Path','S',NULL,NULL,NULL,NULL,'Riverhead',1,1031,NULL,'11901',NULL,1228,40.926595,-72.65327,0,NULL,NULL,NULL),(32,20,1,1,0,'344V Pine Ave E',344,'V',NULL,'Pine','Ave','E',NULL,NULL,NULL,NULL,'Tucson',1,1002,NULL,'85720',NULL,1228,31.970131,-111.890713,0,NULL,NULL,NULL),(33,92,1,1,0,'777Q Second St NE',777,'Q',NULL,'Second','St','NE',NULL,NULL,NULL,NULL,'Carson City',1,1027,NULL,'89703',NULL,1228,39.164966,-119.79382,0,NULL,NULL,NULL),(34,157,1,1,0,'669K Martin Luther King Blvd NE',669,'K',NULL,'Martin Luther King','Blvd','NE',NULL,NULL,NULL,NULL,'Montello',1,1048,NULL,'53949',NULL,1228,43.792518,-89.34061,0,NULL,NULL,NULL),(35,164,1,1,0,'813J Green Pl SE',813,'J',NULL,'Green','Pl','SE',NULL,NULL,NULL,NULL,'Raleigh',1,1032,NULL,'27635',NULL,1228,35.797692,-78.625265,0,NULL,NULL,NULL),(36,134,1,1,0,'267F Pine Pl SW',267,'F',NULL,'Pine','Pl','SW',NULL,NULL,NULL,NULL,'Crosby',1,1023,NULL,'39633',NULL,1228,31.296257,-91.12921,0,NULL,NULL,NULL),(37,128,1,1,0,'971N Northpoint Rd NW',971,'N',NULL,'Northpoint','Rd','NW',NULL,NULL,NULL,NULL,'Florence',1,1029,NULL,'08518',NULL,1228,40.11791,-74.8047,0,NULL,NULL,NULL),(38,76,1,1,0,'706N Beech Path E',706,'N',NULL,'Beech','Path','E',NULL,NULL,NULL,NULL,'Chignik',1,1001,NULL,'99564',NULL,1228,56.298297,-158.4044,0,NULL,NULL,NULL),(39,189,1,1,0,'433U Martin Luther King Pl SW',433,'U',NULL,'Martin Luther King','Pl','SW',NULL,NULL,NULL,NULL,'Richmond',1,1045,NULL,'23241',NULL,1228,37.524246,-77.493157,0,NULL,NULL,NULL),(40,54,1,1,0,'472Z Beech Way S',472,'Z',NULL,'Beech','Way','S',NULL,NULL,NULL,NULL,'San Jose',1,1004,NULL,'95160',NULL,1228,37.189396,-121.705327,0,NULL,NULL,NULL),(41,23,1,1,0,'37F Second Rd SW',37,'F',NULL,'Second','Rd','SW',NULL,NULL,NULL,NULL,'Blanco',1,1030,NULL,'87412',NULL,1228,36.681819,-107.48121,0,NULL,NULL,NULL),(42,79,1,1,0,'238K Bay Rd NW',238,'K',NULL,'Bay','Rd','NW',NULL,NULL,NULL,NULL,'Ashland',1,1016,NULL,'41102',NULL,1228,38.439526,-82.6932,0,NULL,NULL,NULL),(43,105,1,1,0,'267T Woodbridge Ln NE',267,'T',NULL,'Woodbridge','Ln','NE',NULL,NULL,NULL,NULL,'Los Angeles',1,1004,NULL,'90101',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL),(44,187,1,1,0,'974A Main Rd SE',974,'A',NULL,'Main','Rd','SE',NULL,NULL,NULL,NULL,'Sumner',1,1023,NULL,'38597',NULL,1228,33.969302,-90.371546,0,NULL,NULL,NULL),(45,162,1,1,0,'551D Van Ness Ln E',551,'D',NULL,'Van Ness','Ln','E',NULL,NULL,NULL,NULL,'Sedan',1,1030,NULL,'88436',NULL,1228,36.137255,-103.12311,0,NULL,NULL,NULL),(46,182,1,1,0,'110D Northpoint Way N',110,'D',NULL,'Northpoint','Way','N',NULL,NULL,NULL,NULL,'Medfield',1,1020,NULL,'02052',NULL,1228,42.185571,-71.30476,0,NULL,NULL,NULL),(47,72,1,1,0,'118O Caulder Pl NW',118,'O',NULL,'Caulder','Pl','NW',NULL,NULL,NULL,NULL,'Hagarstown',1,1012,NULL,'62247',NULL,1228,38.977111,-88.975507,0,NULL,NULL,NULL),(48,6,1,1,0,'737I Green Blvd W',737,'I',NULL,'Green','Blvd','W',NULL,NULL,NULL,NULL,'Silas',1,1000,NULL,'36919',NULL,1228,31.779344,-88.30045,0,NULL,NULL,NULL),(49,53,1,1,0,'523A Van Ness Blvd N',523,'A',NULL,'Van Ness','Blvd','N',NULL,NULL,NULL,NULL,'Lincoln',1,1026,NULL,'68529',NULL,1228,40.879752,-96.779796,0,NULL,NULL,NULL),(50,171,1,1,0,'491S Woodbridge Rd SE',491,'S',NULL,'Woodbridge','Rd','SE',NULL,NULL,NULL,NULL,'Maxwelton',1,1047,NULL,'24957',NULL,1228,37.869998,-80.41067,0,NULL,NULL,NULL),(51,140,1,1,0,'274C Second Path N',274,'C',NULL,'Second','Path','N',NULL,NULL,NULL,NULL,'Grasston',1,1022,NULL,'55030',NULL,1228,45.842603,-93.11924,0,NULL,NULL,NULL),(52,91,1,1,0,'367X Martin Luther King Pl N',367,'X',NULL,'Martin Luther King','Pl','N',NULL,NULL,NULL,NULL,'Pioneertown',1,1004,NULL,'92268',NULL,1228,34.203249,-116.56565,0,NULL,NULL,NULL),(53,165,1,1,0,'411W Woodbridge Ln N',411,'W',NULL,'Woodbridge','Ln','N',NULL,NULL,NULL,NULL,'Charlotte',1,1032,NULL,'28220',NULL,1228,35.26002,-80.804151,0,NULL,NULL,NULL),(54,25,1,1,0,'525U Green Blvd S',525,'U',NULL,'Green','Blvd','S',NULL,NULL,NULL,NULL,'Rosewood',1,1034,NULL,'43070',NULL,1228,40.217799,-83.96044,0,NULL,NULL,NULL),(55,61,1,1,0,'779A Dowlen Ave SE',779,'A',NULL,'Dowlen','Ave','SE',NULL,NULL,NULL,NULL,'Lanagan',1,1024,NULL,'64847',NULL,1228,36.61041,-94.4509,0,NULL,NULL,NULL),(56,22,1,1,0,'573I Beech Ln SW',573,'I',NULL,'Beech','Ln','SW',NULL,NULL,NULL,NULL,'Salamonia',1,1013,NULL,'47381',NULL,1228,40.382778,-84.86603,0,NULL,NULL,NULL),(57,99,1,1,0,'721N Woodbridge Rd N',721,'N',NULL,'Woodbridge','Rd','N',NULL,NULL,NULL,NULL,'Hardinsburg',1,1016,NULL,'40143',NULL,1228,37.777083,-86.48345,0,NULL,NULL,NULL),(58,104,1,1,0,'960P Beech Ave SW',960,'P',NULL,'Beech','Ave','SW',NULL,NULL,NULL,NULL,'Broughton',1,1012,NULL,'62817',NULL,1228,37.954727,-88.47128,0,NULL,NULL,NULL),(59,87,1,1,0,'681S Bay Blvd E',681,'S',NULL,'Bay','Blvd','E',NULL,NULL,NULL,NULL,'Durant',1,1023,NULL,'39063',NULL,1228,33.102777,-89.87579,0,NULL,NULL,NULL),(60,86,1,1,0,'318Y Beech St NW',318,'Y',NULL,'Beech','St','NW',NULL,NULL,NULL,NULL,'Fort Collins',1,1005,NULL,'80553',NULL,1228,40.628112,-105.569245,0,NULL,NULL,NULL),(61,147,1,1,0,'64J Maple Way NW',64,'J',NULL,'Maple','Way','NW',NULL,NULL,NULL,NULL,'Stuart',1,1008,NULL,'34994',NULL,1228,27.195291,-80.25225,0,NULL,NULL,NULL),(62,155,1,1,0,'994N Dowlen Ln N',994,'N',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Polson',1,1025,NULL,'59860',NULL,1228,47.696131,-114.16094,0,NULL,NULL,NULL),(63,57,1,1,0,'272D El Camino Path SE',272,'D',NULL,'El Camino','Path','SE',NULL,NULL,NULL,NULL,'Nalcrest',1,1008,NULL,'33856',NULL,1228,27.855686,-81.430915,0,NULL,NULL,NULL),(64,194,1,1,0,'67E Bay Pl SE',67,'E',NULL,'Bay','Pl','SE',NULL,NULL,NULL,NULL,'Raleigh',1,1032,NULL,'27608',NULL,1228,35.808451,-78.64667,0,NULL,NULL,NULL),(65,68,1,1,0,'557E Maple Blvd NE',557,'E',NULL,'Maple','Blvd','NE',NULL,NULL,NULL,NULL,'Welsh',1,1017,NULL,'70591',NULL,1228,30.246368,-92.83199,0,NULL,NULL,NULL),(66,51,1,1,0,'960G Northpoint Blvd N',960,'G',NULL,'Northpoint','Blvd','N',NULL,NULL,NULL,NULL,'Osborn',1,1024,NULL,'64474',NULL,1228,39.771525,-94.38471,0,NULL,NULL,NULL),(67,169,1,1,0,'452F Pine Ave E',452,'F',NULL,'Pine','Ave','E',NULL,NULL,NULL,NULL,'North Jackson',1,1034,NULL,'44451',NULL,1228,41.090089,-80.86736,0,NULL,NULL,NULL),(68,175,3,1,0,'778U Maple St S',778,'U',NULL,'Maple','St','S',NULL,'Community Relations',NULL,NULL,'Fort Pierce',1,1008,NULL,'34979',NULL,1228,27.382196,-80.409024,0,NULL,NULL,NULL),(69,39,3,1,0,'71H Martin Luther King Ave NW',71,'H',NULL,'Martin Luther King','Ave','NW',NULL,'c/o PO Plus',NULL,NULL,'Greenville',1,1012,NULL,'62246',NULL,1228,38.889355,-89.40987,0,NULL,NULL,NULL),(70,149,2,1,0,'71H Martin Luther King Ave NW',71,'H',NULL,'Martin Luther King','Ave','NW',NULL,'c/o PO Plus',NULL,NULL,'Greenville',1,1012,NULL,'62246',NULL,1228,38.889355,-89.40987,0,NULL,NULL,69),(71,141,3,1,0,'390K El Camino Way S',390,'K',NULL,'El Camino','Way','S',NULL,'Cuffe Parade',NULL,NULL,'Lake Orion',1,1021,NULL,'48359',NULL,1228,42.722932,-83.28537,0,NULL,NULL,NULL),(72,96,3,1,0,'896E States St NW',896,'E',NULL,'States','St','NW',NULL,'Editorial Dept',NULL,NULL,'Newport News',1,1045,NULL,'23602',NULL,1228,37.115698,-76.5183,0,NULL,NULL,NULL),(73,135,3,1,0,'55P Lincoln Blvd SW',55,'P',NULL,'Lincoln','Blvd','SW',NULL,'Disbursements',NULL,NULL,'French Camp',1,1023,NULL,'39745',NULL,1228,33.312695,-89.41628,0,NULL,NULL,NULL),(74,52,3,1,0,'42K El Camino Ave SW',42,'K',NULL,'El Camino','Ave','SW',NULL,'Attn: Development',NULL,NULL,'Alleman',1,1014,NULL,'50007',NULL,1228,41.804875,-93.60475,0,NULL,NULL,NULL),(75,166,2,0,0,'42K El Camino Ave SW',42,'K',NULL,'El Camino','Ave','SW',NULL,'Attn: Development',NULL,NULL,'Alleman',1,1014,NULL,'50007',NULL,1228,41.804875,-93.60475,0,NULL,NULL,74),(76,82,3,1,0,'529X Cadell Pl S',529,'X',NULL,'Cadell','Pl','S',NULL,'Cuffe Parade',NULL,NULL,'Paradise',1,1043,NULL,'84328',NULL,1228,41.508503,-111.79102,0,NULL,NULL,NULL),(77,59,3,1,0,'499L Van Ness Way SE',499,'L',NULL,'Van Ness','Way','SE',NULL,'Churchgate',NULL,NULL,'Napa',1,1004,NULL,'94559',NULL,1228,38.291164,-122.28671,0,NULL,NULL,NULL),(78,84,3,1,0,'102J States Ln S',102,'J',NULL,'States','Ln','S',NULL,'Disbursements',NULL,NULL,'Lennox',1,1040,NULL,'57039',NULL,1228,43.350093,-96.87487,0,NULL,NULL,NULL),(79,178,2,1,0,'102J States Ln S',102,'J',NULL,'States','Ln','S',NULL,'Disbursements',NULL,NULL,'Lennox',1,1040,NULL,'57039',NULL,1228,43.350093,-96.87487,0,NULL,NULL,78),(80,103,3,1,0,'559X Woodbridge Ave E',559,'X',NULL,'Woodbridge','Ave','E',NULL,'Payables Dept.',NULL,NULL,'Louisville',1,1016,NULL,'40285',NULL,1228,38.188962,-85.676819,0,NULL,NULL,NULL),(81,191,3,1,0,'494J College Rd SW',494,'J',NULL,'College','Rd','SW',NULL,'Mailstop 101',NULL,NULL,'Sealevel',1,1032,NULL,'28577',NULL,1228,34.868975,-76.38149,0,NULL,NULL,NULL),(82,37,3,1,0,'331W Jackson Dr NW',331,'W',NULL,'Jackson','Dr','NW',NULL,'Donor Relations',NULL,NULL,'Bethel Park',1,1037,NULL,'15102',NULL,1228,40.324535,-80.03864,0,NULL,NULL,NULL),(83,188,2,0,0,'331W Jackson Dr NW',331,'W',NULL,'Jackson','Dr','NW',NULL,'Donor Relations',NULL,NULL,'Bethel Park',1,1037,NULL,'15102',NULL,1228,40.324535,-80.03864,0,NULL,NULL,82),(84,200,3,1,0,'500F College St N',500,'F',NULL,'College','St','N',NULL,'Mailstop 101',NULL,NULL,'New Diggings',1,1048,NULL,'53886',NULL,1228,42.522232,-90.340446,0,NULL,NULL,NULL),(85,78,2,0,0,'500F College St N',500,'F',NULL,'College','St','N',NULL,'Mailstop 101',NULL,NULL,'New Diggings',1,1048,NULL,'53886',NULL,1228,42.522232,-90.340446,0,NULL,NULL,84),(86,120,3,1,0,'226X El Camino Blvd S',226,'X',NULL,'El Camino','Blvd','S',NULL,'c/o PO Plus',NULL,NULL,'East Greenwich',1,1038,NULL,'02818',NULL,1228,41.649733,-71.46815,0,NULL,NULL,NULL),(87,7,2,1,0,'226X El Camino Blvd S',226,'X',NULL,'El Camino','Blvd','S',NULL,'c/o PO Plus',NULL,NULL,'East Greenwich',1,1038,NULL,'02818',NULL,1228,41.649733,-71.46815,0,NULL,NULL,86),(88,139,3,1,0,'221Y Jackson Pl S',221,'Y',NULL,'Jackson','Pl','S',NULL,'Urgent',NULL,NULL,'Stephenville',1,1042,NULL,'76401',NULL,1228,32.242816,-98.21058,0,NULL,NULL,NULL),(89,20,2,0,0,'221Y Jackson Pl S',221,'Y',NULL,'Jackson','Pl','S',NULL,'Urgent',NULL,NULL,'Stephenville',1,1042,NULL,'76401',NULL,1228,32.242816,-98.21058,0,NULL,NULL,88),(90,38,3,1,0,'823D Woodbridge St SE',823,'D',NULL,'Woodbridge','St','SE',NULL,'Payables Dept.',NULL,NULL,'Bloomington',1,1013,NULL,'47402',NULL,1228,39.173234,-86.501543,0,NULL,NULL,NULL),(91,72,2,0,0,'823D Woodbridge St SE',823,'D',NULL,'Woodbridge','St','SE',NULL,'Payables Dept.',NULL,NULL,'Bloomington',1,1013,NULL,'47402',NULL,1228,39.173234,-86.501543,0,NULL,NULL,90),(92,172,3,1,0,'705M Beech Pl SE',705,'M',NULL,'Beech','Pl','SE',NULL,'Churchgate',NULL,NULL,'Edina',1,1024,NULL,'63537',NULL,1228,40.164349,-92.1671,0,NULL,NULL,NULL),(93,113,3,1,0,'456V Northpoint Ln E',456,'V',NULL,'Northpoint','Ln','E',NULL,'c/o OPDC',NULL,NULL,'Edroy',1,1042,NULL,'78352',NULL,1228,27.973465,-97.68169,0,NULL,NULL,NULL),(94,148,2,1,0,'456V Northpoint Ln E',456,'V',NULL,'Northpoint','Ln','E',NULL,'c/o OPDC',NULL,NULL,'Edroy',1,1042,NULL,'78352',NULL,1228,27.973465,-97.68169,0,NULL,NULL,93),(95,152,3,1,0,'44D Bay Pl W',44,'D',NULL,'Bay','Pl','W',NULL,'Attn: Development',NULL,NULL,'Litchfield',1,1022,NULL,'55355',NULL,1228,45.104473,-94.52868,0,NULL,NULL,NULL),(96,190,2,1,0,'44D Bay Pl W',44,'D',NULL,'Bay','Pl','W',NULL,'Attn: Development',NULL,NULL,'Litchfield',1,1022,NULL,'55355',NULL,1228,45.104473,-94.52868,0,NULL,NULL,95),(97,127,3,1,0,'799J Pine Dr N',799,'J',NULL,'Pine','Dr','N',NULL,'Donor Relations',NULL,NULL,'Woburn',1,1020,NULL,'01888',NULL,1228,42.446396,-71.459405,0,NULL,NULL,NULL),(98,114,2,0,0,'799J Pine Dr N',799,'J',NULL,'Pine','Dr','N',NULL,'Donor Relations',NULL,NULL,'Woburn',1,1020,NULL,'01888',NULL,1228,42.446396,-71.459405,0,NULL,NULL,97),(99,148,1,0,0,'737I Green Blvd W',737,'I',NULL,'Green','Blvd','W',NULL,NULL,NULL,NULL,'Silas',1,1000,NULL,'36919',NULL,1228,31.779344,-88.30045,0,NULL,NULL,48),(100,44,1,1,0,'737I Green Blvd W',737,'I',NULL,'Green','Blvd','W',NULL,NULL,NULL,NULL,'Silas',1,1000,NULL,'36919',NULL,1228,31.779344,-88.30045,0,NULL,NULL,48),(101,143,1,1,0,'737I Green Blvd W',737,'I',NULL,'Green','Blvd','W',NULL,NULL,NULL,NULL,'Silas',1,1000,NULL,'36919',NULL,1228,31.779344,-88.30045,0,NULL,NULL,48),(102,72,1,0,0,'737I Green Blvd W',737,'I',NULL,'Green','Blvd','W',NULL,NULL,NULL,NULL,'Silas',1,1000,NULL,'36919',NULL,1228,31.779344,-88.30045,0,NULL,NULL,48),(103,195,1,1,0,'523A Van Ness Blvd N',523,'A',NULL,'Van Ness','Blvd','N',NULL,NULL,NULL,NULL,'Lincoln',1,1026,NULL,'68529',NULL,1228,40.879752,-96.779796,0,NULL,NULL,49),(104,173,1,1,0,'523A Van Ness Blvd N',523,'A',NULL,'Van Ness','Blvd','N',NULL,NULL,NULL,NULL,'Lincoln',1,1026,NULL,'68529',NULL,1228,40.879752,-96.779796,0,NULL,NULL,49),(105,63,1,1,0,'523A Van Ness Blvd N',523,'A',NULL,'Van Ness','Blvd','N',NULL,NULL,NULL,NULL,'Lincoln',1,1026,NULL,'68529',NULL,1228,40.879752,-96.779796,0,NULL,NULL,49),(106,41,1,1,0,'523A Van Ness Blvd N',523,'A',NULL,'Van Ness','Blvd','N',NULL,NULL,NULL,NULL,'Lincoln',1,1026,NULL,'68529',NULL,1228,40.879752,-96.779796,0,NULL,NULL,49),(107,35,1,1,0,'491S Woodbridge Rd SE',491,'S',NULL,'Woodbridge','Rd','SE',NULL,NULL,NULL,NULL,'Maxwelton',1,1047,NULL,'24957',NULL,1228,37.869998,-80.41067,0,NULL,NULL,50),(108,7,1,0,0,'491S Woodbridge Rd SE',491,'S',NULL,'Woodbridge','Rd','SE',NULL,NULL,NULL,NULL,'Maxwelton',1,1047,NULL,'24957',NULL,1228,37.869998,-80.41067,0,NULL,NULL,50),(109,97,1,1,0,'491S Woodbridge Rd SE',491,'S',NULL,'Woodbridge','Rd','SE',NULL,NULL,NULL,NULL,'Maxwelton',1,1047,NULL,'24957',NULL,1228,37.869998,-80.41067,0,NULL,NULL,50),(110,60,1,1,0,'491S Woodbridge Rd SE',491,'S',NULL,'Woodbridge','Rd','SE',NULL,NULL,NULL,NULL,'Maxwelton',1,1047,NULL,'24957',NULL,1228,37.869998,-80.41067,0,NULL,NULL,50),(111,19,1,1,0,'274C Second Path N',274,'C',NULL,'Second','Path','N',NULL,NULL,NULL,NULL,'Grasston',1,1022,NULL,'55030',NULL,1228,45.842603,-93.11924,0,NULL,NULL,51),(112,170,1,1,0,'274C Second Path N',274,'C',NULL,'Second','Path','N',NULL,NULL,NULL,NULL,'Grasston',1,1022,NULL,'55030',NULL,1228,45.842603,-93.11924,0,NULL,NULL,51),(113,50,1,1,0,'274C Second Path N',274,'C',NULL,'Second','Path','N',NULL,NULL,NULL,NULL,'Grasston',1,1022,NULL,'55030',NULL,1228,45.842603,-93.11924,0,NULL,NULL,51),(114,95,1,1,0,'298I Jackson Ave SW',298,'I',NULL,'Jackson','Ave','SW',NULL,NULL,NULL,NULL,'Glencliff',1,1028,NULL,'03238',NULL,1228,43.967542,-71.840883,0,NULL,NULL,NULL),(115,163,1,1,0,'367X Martin Luther King Pl N',367,'X',NULL,'Martin Luther King','Pl','N',NULL,NULL,NULL,NULL,'Pioneertown',1,1004,NULL,'92268',NULL,1228,34.203249,-116.56565,0,NULL,NULL,52),(116,177,1,1,0,'367X Martin Luther King Pl N',367,'X',NULL,'Martin Luther King','Pl','N',NULL,NULL,NULL,NULL,'Pioneertown',1,1004,NULL,'92268',NULL,1228,34.203249,-116.56565,0,NULL,NULL,52),(117,34,1,1,0,'367X Martin Luther King Pl N',367,'X',NULL,'Martin Luther King','Pl','N',NULL,NULL,NULL,NULL,'Pioneertown',1,1004,NULL,'92268',NULL,1228,34.203249,-116.56565,0,NULL,NULL,52),(118,13,1,1,0,'367X Martin Luther King Pl N',367,'X',NULL,'Martin Luther King','Pl','N',NULL,NULL,NULL,NULL,'Pioneertown',1,1004,NULL,'92268',NULL,1228,34.203249,-116.56565,0,NULL,NULL,52),(119,9,1,1,0,'411W Woodbridge Ln N',411,'W',NULL,'Woodbridge','Ln','N',NULL,NULL,NULL,NULL,'Charlotte',1,1032,NULL,'28220',NULL,1228,35.26002,-80.804151,0,NULL,NULL,53),(120,43,1,1,0,'411W Woodbridge Ln N',411,'W',NULL,'Woodbridge','Ln','N',NULL,NULL,NULL,NULL,'Charlotte',1,1032,NULL,'28220',NULL,1228,35.26002,-80.804151,0,NULL,NULL,53),(121,55,1,1,0,'411W Woodbridge Ln N',411,'W',NULL,'Woodbridge','Ln','N',NULL,NULL,NULL,NULL,'Charlotte',1,1032,NULL,'28220',NULL,1228,35.26002,-80.804151,0,NULL,NULL,53),(122,159,1,1,0,'411W Woodbridge Ln N',411,'W',NULL,'Woodbridge','Ln','N',NULL,NULL,NULL,NULL,'Charlotte',1,1032,NULL,'28220',NULL,1228,35.26002,-80.804151,0,NULL,NULL,53),(123,137,1,1,0,'525U Green Blvd S',525,'U',NULL,'Green','Blvd','S',NULL,NULL,NULL,NULL,'Rosewood',1,1034,NULL,'43070',NULL,1228,40.217799,-83.96044,0,NULL,NULL,54),(124,98,1,1,0,'525U Green Blvd S',525,'U',NULL,'Green','Blvd','S',NULL,NULL,NULL,NULL,'Rosewood',1,1034,NULL,'43070',NULL,1228,40.217799,-83.96044,0,NULL,NULL,54),(125,199,1,1,0,'525U Green Blvd S',525,'U',NULL,'Green','Blvd','S',NULL,NULL,NULL,NULL,'Rosewood',1,1034,NULL,'43070',NULL,1228,40.217799,-83.96044,0,NULL,NULL,54),(126,167,1,1,0,'525U Green Blvd S',525,'U',NULL,'Green','Blvd','S',NULL,NULL,NULL,NULL,'Rosewood',1,1034,NULL,'43070',NULL,1228,40.217799,-83.96044,0,NULL,NULL,54),(127,32,1,1,0,'779A Dowlen Ave SE',779,'A',NULL,'Dowlen','Ave','SE',NULL,NULL,NULL,NULL,'Lanagan',1,1024,NULL,'64847',NULL,1228,36.61041,-94.4509,0,NULL,NULL,55),(128,146,1,1,0,'779A Dowlen Ave SE',779,'A',NULL,'Dowlen','Ave','SE',NULL,NULL,NULL,NULL,'Lanagan',1,1024,NULL,'64847',NULL,1228,36.61041,-94.4509,0,NULL,NULL,55),(129,2,1,1,0,'779A Dowlen Ave SE',779,'A',NULL,'Dowlen','Ave','SE',NULL,NULL,NULL,NULL,'Lanagan',1,1024,NULL,'64847',NULL,1228,36.61041,-94.4509,0,NULL,NULL,55),(130,80,1,1,0,'779A Dowlen Ave SE',779,'A',NULL,'Dowlen','Ave','SE',NULL,NULL,NULL,NULL,'Lanagan',1,1024,NULL,'64847',NULL,1228,36.61041,-94.4509,0,NULL,NULL,55),(131,74,1,1,0,'573I Beech Ln SW',573,'I',NULL,'Beech','Ln','SW',NULL,NULL,NULL,NULL,'Salamonia',1,1013,NULL,'47381',NULL,1228,40.382778,-84.86603,0,NULL,NULL,56),(132,130,1,1,0,'573I Beech Ln SW',573,'I',NULL,'Beech','Ln','SW',NULL,NULL,NULL,NULL,'Salamonia',1,1013,NULL,'47381',NULL,1228,40.382778,-84.86603,0,NULL,NULL,56),(133,90,1,1,0,'573I Beech Ln SW',573,'I',NULL,'Beech','Ln','SW',NULL,NULL,NULL,NULL,'Salamonia',1,1013,NULL,'47381',NULL,1228,40.382778,-84.86603,0,NULL,NULL,56),(134,201,1,1,0,'573I Beech Ln SW',573,'I',NULL,'Beech','Ln','SW',NULL,NULL,NULL,NULL,'Salamonia',1,1013,NULL,'47381',NULL,1228,40.382778,-84.86603,0,NULL,NULL,56),(135,158,1,1,0,'721N Woodbridge Rd N',721,'N',NULL,'Woodbridge','Rd','N',NULL,NULL,NULL,NULL,'Hardinsburg',1,1016,NULL,'40143',NULL,1228,37.777083,-86.48345,0,NULL,NULL,57),(136,153,1,1,0,'721N Woodbridge Rd N',721,'N',NULL,'Woodbridge','Rd','N',NULL,NULL,NULL,NULL,'Hardinsburg',1,1016,NULL,'40143',NULL,1228,37.777083,-86.48345,0,NULL,NULL,57),(137,17,1,1,0,'721N Woodbridge Rd N',721,'N',NULL,'Woodbridge','Rd','N',NULL,NULL,NULL,NULL,'Hardinsburg',1,1016,NULL,'40143',NULL,1228,37.777083,-86.48345,0,NULL,NULL,57),(138,28,1,1,0,'717J Lincoln Dr N',717,'J',NULL,'Lincoln','Dr','N',NULL,NULL,NULL,NULL,'Jacksonville',1,1008,NULL,'32203',NULL,1228,30.32281,-81.547044,0,NULL,NULL,NULL),(139,108,1,1,0,'960P Beech Ave SW',960,'P',NULL,'Beech','Ave','SW',NULL,NULL,NULL,NULL,'Broughton',1,1012,NULL,'62817',NULL,1228,37.954727,-88.47128,0,NULL,NULL,58),(140,183,1,1,0,'960P Beech Ave SW',960,'P',NULL,'Beech','Ave','SW',NULL,NULL,NULL,NULL,'Broughton',1,1012,NULL,'62817',NULL,1228,37.954727,-88.47128,0,NULL,NULL,58),(141,174,1,1,0,'960P Beech Ave SW',960,'P',NULL,'Beech','Ave','SW',NULL,NULL,NULL,NULL,'Broughton',1,1012,NULL,'62817',NULL,1228,37.954727,-88.47128,0,NULL,NULL,58),(142,24,1,1,0,'378R Maple Ave NE',378,'R',NULL,'Maple','Ave','NE',NULL,NULL,NULL,NULL,'Des Moines',1,1014,NULL,'50328',NULL,1228,41.672687,-93.572173,0,NULL,NULL,NULL),(143,89,1,1,0,'681S Bay Blvd E',681,'S',NULL,'Bay','Blvd','E',NULL,NULL,NULL,NULL,'Durant',1,1023,NULL,'39063',NULL,1228,33.102777,-89.87579,0,NULL,NULL,59),(144,122,1,1,0,'681S Bay Blvd E',681,'S',NULL,'Bay','Blvd','E',NULL,NULL,NULL,NULL,'Durant',1,1023,NULL,'39063',NULL,1228,33.102777,-89.87579,0,NULL,NULL,59),(145,184,1,1,0,'681S Bay Blvd E',681,'S',NULL,'Bay','Blvd','E',NULL,NULL,NULL,NULL,'Durant',1,1023,NULL,'39063',NULL,1228,33.102777,-89.87579,0,NULL,NULL,59),(146,160,1,1,0,'681S Bay Blvd E',681,'S',NULL,'Bay','Blvd','E',NULL,NULL,NULL,NULL,'Durant',1,1023,NULL,'39063',NULL,1228,33.102777,-89.87579,0,NULL,NULL,59),(147,64,1,1,0,'318Y Beech St NW',318,'Y',NULL,'Beech','St','NW',NULL,NULL,NULL,NULL,'Fort Collins',1,1005,NULL,'80553',NULL,1228,40.628112,-105.569245,0,NULL,NULL,60),(148,123,1,1,0,'318Y Beech St NW',318,'Y',NULL,'Beech','St','NW',NULL,NULL,NULL,NULL,'Fort Collins',1,1005,NULL,'80553',NULL,1228,40.628112,-105.569245,0,NULL,NULL,60),(149,29,1,1,0,'318Y Beech St NW',318,'Y',NULL,'Beech','St','NW',NULL,NULL,NULL,NULL,'Fort Collins',1,1005,NULL,'80553',NULL,1228,40.628112,-105.569245,0,NULL,NULL,60),(150,198,1,1,0,'318Y Beech St NW',318,'Y',NULL,'Beech','St','NW',NULL,NULL,NULL,NULL,'Fort Collins',1,1005,NULL,'80553',NULL,1228,40.628112,-105.569245,0,NULL,NULL,60),(151,83,1,1,0,'64J Maple Way NW',64,'J',NULL,'Maple','Way','NW',NULL,NULL,NULL,NULL,'Stuart',1,1008,NULL,'34994',NULL,1228,27.195291,-80.25225,0,NULL,NULL,61),(152,190,1,0,0,'64J Maple Way NW',64,'J',NULL,'Maple','Way','NW',NULL,NULL,NULL,NULL,'Stuart',1,1008,NULL,'34994',NULL,1228,27.195291,-80.25225,0,NULL,NULL,61),(153,85,1,1,0,'64J Maple Way NW',64,'J',NULL,'Maple','Way','NW',NULL,NULL,NULL,NULL,'Stuart',1,1008,NULL,'34994',NULL,1228,27.195291,-80.25225,0,NULL,NULL,61),(154,62,1,1,0,'64J Maple Way NW',64,'J',NULL,'Maple','Way','NW',NULL,NULL,NULL,NULL,'Stuart',1,1008,NULL,'34994',NULL,1228,27.195291,-80.25225,0,NULL,NULL,61),(155,88,1,1,0,'994N Dowlen Ln N',994,'N',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Polson',1,1025,NULL,'59860',NULL,1228,47.696131,-114.16094,0,NULL,NULL,62),(156,67,1,1,0,'994N Dowlen Ln N',994,'N',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Polson',1,1025,NULL,'59860',NULL,1228,47.696131,-114.16094,0,NULL,NULL,62),(157,102,1,1,0,'994N Dowlen Ln N',994,'N',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Polson',1,1025,NULL,'59860',NULL,1228,47.696131,-114.16094,0,NULL,NULL,62),(158,11,1,1,0,'353Y Beech Pl W',353,'Y',NULL,'Beech','Pl','W',NULL,NULL,NULL,NULL,'Balsam Lake',1,1048,NULL,'54810',NULL,1228,45.455304,-92.40153,0,NULL,NULL,NULL),(159,129,1,1,0,'272D El Camino Path SE',272,'D',NULL,'El Camino','Path','SE',NULL,NULL,NULL,NULL,'Nalcrest',1,1008,NULL,'33856',NULL,1228,27.855686,-81.430915,0,NULL,NULL,63),(160,18,1,1,0,'272D El Camino Path SE',272,'D',NULL,'El Camino','Path','SE',NULL,NULL,NULL,NULL,'Nalcrest',1,1008,NULL,'33856',NULL,1228,27.855686,-81.430915,0,NULL,NULL,63),(161,3,1,1,0,'272D El Camino Path SE',272,'D',NULL,'El Camino','Path','SE',NULL,NULL,NULL,NULL,'Nalcrest',1,1008,NULL,'33856',NULL,1228,27.855686,-81.430915,0,NULL,NULL,63),(162,73,1,1,0,'272D El Camino Path SE',272,'D',NULL,'El Camino','Path','SE',NULL,NULL,NULL,NULL,'Nalcrest',1,1008,NULL,'33856',NULL,1228,27.855686,-81.430915,0,NULL,NULL,63),(163,42,1,1,0,'67E Bay Pl SE',67,'E',NULL,'Bay','Pl','SE',NULL,NULL,NULL,NULL,'Raleigh',1,1032,NULL,'27608',NULL,1228,35.808451,-78.64667,0,NULL,NULL,64),(164,21,1,1,0,'67E Bay Pl SE',67,'E',NULL,'Bay','Pl','SE',NULL,NULL,NULL,NULL,'Raleigh',1,1032,NULL,'27608',NULL,1228,35.808451,-78.64667,0,NULL,NULL,64),(165,16,1,1,0,'67E Bay Pl SE',67,'E',NULL,'Bay','Pl','SE',NULL,NULL,NULL,NULL,'Raleigh',1,1032,NULL,'27608',NULL,1228,35.808451,-78.64667,0,NULL,NULL,64),(166,181,1,1,0,'943C Green Ln W',943,'C',NULL,'Green','Ln','W',NULL,NULL,NULL,NULL,'Dolph',1,1003,NULL,'72528',NULL,1228,36.245162,-92.12962,0,NULL,NULL,NULL),(167,115,1,1,0,'557E Maple Blvd NE',557,'E',NULL,'Maple','Blvd','NE',NULL,NULL,NULL,NULL,'Welsh',1,1017,NULL,'70591',NULL,1228,30.246368,-92.83199,0,NULL,NULL,65),(168,126,1,1,0,'557E Maple Blvd NE',557,'E',NULL,'Maple','Blvd','NE',NULL,NULL,NULL,NULL,'Welsh',1,1017,NULL,'70591',NULL,1228,30.246368,-92.83199,0,NULL,NULL,65),(169,77,1,1,0,'557E Maple Blvd NE',557,'E',NULL,'Maple','Blvd','NE',NULL,NULL,NULL,NULL,'Welsh',1,1017,NULL,'70591',NULL,1228,30.246368,-92.83199,0,NULL,NULL,65),(170,65,1,1,0,'557E Maple Blvd NE',557,'E',NULL,'Maple','Blvd','NE',NULL,NULL,NULL,NULL,'Welsh',1,1017,NULL,'70591',NULL,1228,30.246368,-92.83199,0,NULL,NULL,65),(171,161,1,1,0,'960G Northpoint Blvd N',960,'G',NULL,'Northpoint','Blvd','N',NULL,NULL,NULL,NULL,'Osborn',1,1024,NULL,'64474',NULL,1228,39.771525,-94.38471,0,NULL,NULL,66),(172,116,1,1,0,'960G Northpoint Blvd N',960,'G',NULL,'Northpoint','Blvd','N',NULL,NULL,NULL,NULL,'Osborn',1,1024,NULL,'64474',NULL,1228,39.771525,-94.38471,0,NULL,NULL,66),(173,46,1,1,0,'960G Northpoint Blvd N',960,'G',NULL,'Northpoint','Blvd','N',NULL,NULL,NULL,NULL,'Osborn',1,1024,NULL,'64474',NULL,1228,39.771525,-94.38471,0,NULL,NULL,66),(174,124,1,1,0,'960G Northpoint Blvd N',960,'G',NULL,'Northpoint','Blvd','N',NULL,NULL,NULL,NULL,'Osborn',1,1024,NULL,'64474',NULL,1228,39.771525,-94.38471,0,NULL,NULL,66),(175,75,1,1,0,'452F Pine Ave E',452,'F',NULL,'Pine','Ave','E',NULL,NULL,NULL,NULL,'North Jackson',1,1034,NULL,'44451',NULL,1228,41.090089,-80.86736,0,NULL,NULL,67),(176,138,1,1,0,'452F Pine Ave E',452,'F',NULL,'Pine','Ave','E',NULL,NULL,NULL,NULL,'North Jackson',1,1034,NULL,'44451',NULL,1228,41.090089,-80.86736,0,NULL,NULL,67),(177,185,1,1,0,'452F Pine Ave E',452,'F',NULL,'Pine','Ave','E',NULL,NULL,NULL,NULL,'North Jackson',1,1034,NULL,'44451',NULL,1228,41.090089,-80.86736,0,NULL,NULL,67),(178,142,1,1,0,'452F Pine Ave E',452,'F',NULL,'Pine','Ave','E',NULL,NULL,NULL,NULL,'North Jackson',1,1034,NULL,'44451',NULL,1228,41.090089,-80.86736,0,NULL,NULL,67),(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,82,1,1,0,'34Y College Path N',34,'Y',NULL,'College','Path','N',NULL,NULL,NULL,NULL,'Branch',1,1048,NULL,'54203',NULL,1228,44.109853,-87.483874,0,NULL,NULL,NULL),(2,181,1,1,0,'990H Main Blvd NE',990,'H',NULL,'Main','Blvd','NE',NULL,NULL,NULL,NULL,'Virginia Beach',1,1045,NULL,'23461',NULL,1228,36.795328,-75.97768,0,NULL,NULL,NULL),(3,125,1,1,0,'226Y College Ln E',226,'Y',NULL,'College','Ln','E',NULL,NULL,NULL,NULL,'Niles',1,1012,NULL,'60714',NULL,1228,42.032379,-87.81563,0,NULL,NULL,NULL),(4,159,1,1,0,'520D Beech Pl SE',520,'D',NULL,'Beech','Pl','SE',NULL,NULL,NULL,NULL,'Julesburg',1,1005,NULL,'80737',NULL,1228,40.916929,-102.21858,0,NULL,NULL,NULL),(5,201,1,1,0,'787R Jackson Dr S',787,'R',NULL,'Jackson','Dr','S',NULL,NULL,NULL,NULL,'Seattle',1,1046,NULL,'98101',NULL,1228,47.61067,-122.33438,0,NULL,NULL,NULL),(6,80,1,1,0,'482K Dowlen Pl S',482,'K',NULL,'Dowlen','Pl','S',NULL,NULL,NULL,NULL,'Tynan',1,1042,NULL,'78391',NULL,1228,28.169309,-97.75404,0,NULL,NULL,NULL),(7,105,1,1,0,'894C Cadell Path E',894,'C',NULL,'Cadell','Path','E',NULL,NULL,NULL,NULL,'Rolla',1,1024,NULL,'65402',NULL,1228,37.963208,-91.817936,0,NULL,NULL,NULL),(8,20,1,1,0,'370P College Rd S',370,'P',NULL,'College','Rd','S',NULL,NULL,NULL,NULL,'Phoenix',1,1002,NULL,'85027',NULL,1228,33.698731,-112.11429,0,NULL,NULL,NULL),(9,103,1,1,0,'981H Dowlen Ln NW',981,'H',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'Whitesville',1,1047,NULL,'25209',NULL,1228,37.978232,-81.53288,0,NULL,NULL,NULL),(10,98,1,1,0,'360D Van Ness Path SW',360,'D',NULL,'Van Ness','Path','SW',NULL,NULL,NULL,NULL,'Wichita',1,1015,NULL,'67201',NULL,1228,37.651974,-97.258997,0,NULL,NULL,NULL),(11,138,1,1,0,'455K El Camino Ln S',455,'K',NULL,'El Camino','Ln','S',NULL,NULL,NULL,NULL,'Pasadena',1,1004,NULL,'91189',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL),(12,158,1,1,0,'199B Martin Luther King Path E',199,'B',NULL,'Martin Luther King','Path','E',NULL,NULL,NULL,NULL,'Hampton',1,1026,NULL,'68843',NULL,1228,40.894366,-97.89355,0,NULL,NULL,NULL),(13,95,1,1,0,'413Z Dowlen Pl S',413,'Z',NULL,'Dowlen','Pl','S',NULL,NULL,NULL,NULL,'Vaughnsville',1,1034,NULL,'45893',NULL,1228,40.882077,-84.148028,0,NULL,NULL,NULL),(14,55,1,1,0,'140U Caulder Pl NW',140,'U',NULL,'Caulder','Pl','NW',NULL,NULL,NULL,NULL,'Sylvester',1,1047,NULL,'25193',NULL,1228,38.018753,-81.55106,0,NULL,NULL,NULL),(15,135,1,1,0,'334Z Pine Pl N',334,'Z',NULL,'Pine','Pl','N',NULL,NULL,NULL,NULL,'Annandale',1,1045,NULL,'22003',NULL,1228,38.830345,-77.21387,0,NULL,NULL,NULL),(16,87,1,1,0,'559W Bay St N',559,'W',NULL,'Bay','St','N',NULL,NULL,NULL,NULL,'Dryden',1,1021,NULL,'48428',NULL,1228,42.936145,-83.13471,0,NULL,NULL,NULL),(17,112,1,1,0,'910G Second Pl NE',910,'G',NULL,'Second','Pl','NE',NULL,NULL,NULL,NULL,'Glenn Dale',1,1019,NULL,'20769',NULL,1228,38.984107,-76.81544,0,NULL,NULL,NULL),(18,171,1,1,0,'627Z Woodbridge Way SE',627,'Z',NULL,'Woodbridge','Way','SE',NULL,NULL,NULL,NULL,'Memphis',1,1008,NULL,'34211',NULL,1228,27.437698,-82.372125,0,NULL,NULL,NULL),(19,153,1,1,0,'725E Beech Way NW',725,'E',NULL,'Beech','Way','NW',NULL,NULL,NULL,NULL,'Salisbury Mills',1,1031,NULL,'12577',NULL,1228,41.433856,-74.11963,0,NULL,NULL,NULL),(20,2,1,1,0,'460C Dowlen St S',460,'C',NULL,'Dowlen','St','S',NULL,NULL,NULL,NULL,'Saint Louis',1,1024,NULL,'63157',NULL,1228,38.6531,-90.243462,0,NULL,NULL,NULL),(21,89,1,1,0,'307C Beech Pl SE',307,'C',NULL,'Beech','Pl','SE',NULL,NULL,NULL,NULL,'Raymond',1,1012,NULL,'62560',NULL,1228,39.312686,-89.59541,0,NULL,NULL,NULL),(22,163,1,1,0,'457Q Jackson Dr E',457,'Q',NULL,'Jackson','Dr','E',NULL,NULL,NULL,NULL,'Hialeah',1,1008,NULL,'33010',NULL,1228,25.832374,-80.27874,0,NULL,NULL,NULL),(23,144,1,1,0,'800C Northpoint Pl W',800,'C',NULL,'Northpoint','Pl','W',NULL,NULL,NULL,NULL,'Gruver',1,1014,NULL,'51344',NULL,1228,43.393113,-94.70471,0,NULL,NULL,NULL),(24,78,1,1,0,'455Z Lincoln Rd E',455,'Z',NULL,'Lincoln','Rd','E',NULL,NULL,NULL,NULL,'San Jose',1,1004,NULL,'95172',NULL,1228,37.189396,-121.705327,0,NULL,NULL,NULL),(25,8,1,1,0,'361N Van Ness Pl NE',361,'N',NULL,'Van Ness','Pl','NE',NULL,NULL,NULL,NULL,'Terrell',1,1032,NULL,'28682',NULL,1228,35.585074,-80.96141,0,NULL,NULL,NULL),(26,126,1,1,0,'768S Pine Blvd E',768,'S',NULL,'Pine','Blvd','E',NULL,NULL,NULL,NULL,'Metairie',1,1017,NULL,'70001',NULL,1228,29.984096,-90.16902,0,NULL,NULL,NULL),(27,50,1,1,0,'30R El Camino Blvd NW',30,'R',NULL,'El Camino','Blvd','NW',NULL,NULL,NULL,NULL,'Lumber City',1,1009,NULL,'31549',NULL,1228,31.928525,-82.69332,0,NULL,NULL,NULL),(28,166,1,1,0,'435R Second Ave SE',435,'R',NULL,'Second','Ave','SE',NULL,NULL,NULL,NULL,'Renick',1,1024,NULL,'65278',NULL,1228,39.342316,-92.41251,0,NULL,NULL,NULL),(29,27,1,1,0,'740C Main Path NW',740,'C',NULL,'Main','Path','NW',NULL,NULL,NULL,NULL,'Judsonia',1,1003,NULL,'78081',NULL,1228,29.542778,-98.20799,0,NULL,NULL,NULL),(30,110,1,1,0,'557G El Camino St S',557,'G',NULL,'El Camino','St','S',NULL,NULL,NULL,NULL,'Montrose',1,1021,NULL,'48457',NULL,1228,43.182851,-83.89507,0,NULL,NULL,NULL),(31,150,1,1,0,'746Z Main Rd E',746,'Z',NULL,'Main','Rd','E',NULL,NULL,NULL,NULL,'Gurley',1,1026,NULL,'69141',NULL,1228,41.318554,-102.97377,0,NULL,NULL,NULL),(32,10,1,1,0,'466R Martin Luther King Blvd E',466,'R',NULL,'Martin Luther King','Blvd','E',NULL,NULL,NULL,NULL,'Northridge',1,1004,NULL,'91326',NULL,1228,34.276154,-118.54581,0,NULL,NULL,NULL),(33,37,1,1,0,'50E Martin Luther King Way S',50,'E',NULL,'Martin Luther King','Way','S',NULL,NULL,NULL,NULL,'Westbrook',1,1042,NULL,'79565',NULL,1228,32.358785,-101.07207,0,NULL,NULL,NULL),(34,132,1,1,0,'977V Pine Ln N',977,'V',NULL,'Pine','Ln','N',NULL,NULL,NULL,NULL,'Corpus Christi',1,1042,NULL,'78466',NULL,1228,27.777,-97.463213,0,NULL,NULL,NULL),(35,46,1,1,0,'828Z Lincoln Ave NE',828,'Z',NULL,'Lincoln','Ave','NE',NULL,NULL,NULL,NULL,'Des Moines',1,1014,NULL,'50336',NULL,1228,41.672687,-93.572173,0,NULL,NULL,NULL),(36,134,1,1,0,'831H Bay Ln N',831,'H',NULL,'Bay','Ln','N',NULL,NULL,NULL,NULL,'Las Vegas',1,1027,NULL,'89152',NULL,1228,35.927901,-114.972061,0,NULL,NULL,NULL),(37,182,1,1,0,'526O Maple Ave W',526,'O',NULL,'Maple','Ave','W',NULL,NULL,NULL,NULL,'Sacramento',1,1004,NULL,'94237',NULL,1228,38.377411,-121.444429,0,NULL,NULL,NULL),(38,86,1,1,0,'908C Main Pl NW',908,'C',NULL,'Main','Pl','NW',NULL,NULL,NULL,NULL,'Readyville',1,1041,NULL,'37149',NULL,1228,35.800108,-86.19391,0,NULL,NULL,NULL),(39,49,1,1,0,'694C Green Ln N',694,'C',NULL,'Green','Ln','N',NULL,NULL,NULL,NULL,'Fountain',1,1021,NULL,'49410',NULL,1228,44.016249,-86.14028,0,NULL,NULL,NULL),(40,92,1,1,0,'957C States St N',957,'C',NULL,'States','St','N',NULL,NULL,NULL,NULL,'Los Angeles',1,1004,NULL,'90056',NULL,1228,33.986212,-118.37099,0,NULL,NULL,NULL),(41,149,1,1,0,'894U Main Rd S',894,'U',NULL,'Main','Rd','S',NULL,NULL,NULL,NULL,'Derrick City',1,1037,NULL,'16727',NULL,1228,41.976763,-78.53541,0,NULL,NULL,NULL),(42,57,1,1,0,'859P Green Dr SW',859,'P',NULL,'Green','Dr','SW',NULL,NULL,NULL,NULL,'Saint George',1,1015,NULL,'66535',NULL,1228,39.21939,-96.43346,0,NULL,NULL,NULL),(43,106,1,1,0,'985X States Pl SW',985,'X',NULL,'States','Pl','SW',NULL,NULL,NULL,NULL,'Millington',1,1012,NULL,'60537',NULL,1228,41.56253,-88.59921,0,NULL,NULL,NULL),(44,165,1,1,0,'393Y Jackson Blvd N',393,'Y',NULL,'Jackson','Blvd','N',NULL,NULL,NULL,NULL,'Borup',1,1022,NULL,'56519',NULL,1228,47.158015,-96.51487,0,NULL,NULL,NULL),(45,66,1,1,0,'228I Cadell Path NW',228,'I',NULL,'Cadell','Path','NW',NULL,NULL,NULL,NULL,'Bozeman',1,1025,NULL,'59719',NULL,1228,45.627982,-110.90128,0,NULL,NULL,NULL),(46,56,1,1,0,'575E Dowlen Ave NE',575,'E',NULL,'Dowlen','Ave','NE',NULL,NULL,NULL,NULL,'Pittsburgh',1,1037,NULL,'15228',NULL,1228,40.372802,-80.0448,0,NULL,NULL,NULL),(47,76,1,1,0,'309N Lincoln Blvd NW',309,'N',NULL,'Lincoln','Blvd','NW',NULL,NULL,NULL,NULL,'Gowen',1,1035,NULL,'74545',NULL,1228,34.877067,-95.47832,0,NULL,NULL,NULL),(48,157,1,1,0,'311U Lincoln Way W',311,'U',NULL,'Lincoln','Way','W',NULL,NULL,NULL,NULL,'Germantown',1,1019,NULL,'20874',NULL,1228,39.169859,-77.27564,0,NULL,NULL,NULL),(49,41,1,1,0,'565R States Rd W',565,'R',NULL,'States','Rd','W',NULL,NULL,NULL,NULL,'Sumner',1,1024,NULL,'64681',NULL,1228,39.647537,-93.23128,0,NULL,NULL,NULL),(50,53,1,1,0,'854U Caulder Pl E',854,'U',NULL,'Caulder','Pl','E',NULL,NULL,NULL,NULL,'Freeburg',1,1012,NULL,'62243',NULL,1228,38.425949,-89.90389,0,NULL,NULL,NULL),(51,187,1,1,0,'410P Dowlen Way E',410,'P',NULL,'Dowlen','Way','E',NULL,NULL,NULL,NULL,'Erie',1,1037,NULL,'16522',NULL,1228,42.182748,-80.064915,0,NULL,NULL,NULL),(52,38,1,1,0,'30H Caulder Blvd W',30,'H',NULL,'Caulder','Blvd','W',NULL,NULL,NULL,NULL,'McIntosh',1,1040,NULL,'57641',NULL,1228,45.869314,-101.318,0,NULL,NULL,NULL),(53,74,1,1,0,'325Z College St N',325,'Z',NULL,'College','St','N',NULL,NULL,NULL,NULL,'Jackson',1,1021,NULL,'49201',NULL,1228,42.252268,-84.38842,0,NULL,NULL,NULL),(54,14,1,1,0,'182I College Ln NE',182,'I',NULL,'College','Ln','NE',NULL,NULL,NULL,NULL,'Piedmont',1,1000,NULL,'36272',NULL,1228,33.948018,-85.61491,0,NULL,NULL,NULL),(55,129,1,1,0,'699Q Bay Path W',699,'Q',NULL,'Bay','Path','W',NULL,NULL,NULL,NULL,'Alexandria',1,1045,NULL,'22310',NULL,1228,38.782013,-77.12125,0,NULL,NULL,NULL),(56,152,1,1,0,'750K Green St NW',750,'K',NULL,'Green','St','NW',NULL,NULL,NULL,NULL,'Carmi',1,1012,NULL,'62821',NULL,1228,38.087838,-88.15583,0,NULL,NULL,NULL),(57,19,1,1,0,'21S Lincoln Path E',21,'S',NULL,'Lincoln','Path','E',NULL,NULL,NULL,NULL,'Stockton',1,1022,NULL,'55988',NULL,1228,44.025446,-91.77304,0,NULL,NULL,NULL),(58,107,1,1,0,'578K El Camino Pl N',578,'K',NULL,'El Camino','Pl','N',NULL,NULL,NULL,NULL,'Pasadena',1,1004,NULL,'91107',NULL,1228,34.151066,-118.08974,0,NULL,NULL,NULL),(59,43,1,1,0,'599Z Pine Rd NW',599,'Z',NULL,'Pine','Rd','NW',NULL,NULL,NULL,NULL,'Whittier',1,1004,NULL,'90606',NULL,1228,33.978312,-118.06778,0,NULL,NULL,NULL),(60,93,1,1,0,'819I Pine Ave NW',819,'I',NULL,'Pine','Ave','NW',NULL,NULL,NULL,NULL,'Harviell',1,1024,NULL,'63945',NULL,1228,36.637085,-90.52687,0,NULL,NULL,NULL),(61,186,1,1,0,'898W Jackson Path W',898,'W',NULL,'Jackson','Path','W',NULL,NULL,NULL,NULL,'New Orleans',1,1017,NULL,'70190',NULL,1228,30.032997,-89.882564,0,NULL,NULL,NULL),(62,94,1,1,0,'411M Pine St S',411,'M',NULL,'Pine','St','S',NULL,NULL,NULL,NULL,'New Eagle',1,1037,NULL,'15067',NULL,1228,40.207526,-79.95304,0,NULL,NULL,NULL),(63,17,1,1,0,'884O Green Ave SE',884,'O',NULL,'Green','Ave','SE',NULL,NULL,NULL,NULL,'Syria',1,1045,NULL,'22743',NULL,1228,38.509556,-78.33721,0,NULL,NULL,NULL),(64,39,1,1,0,'443B Jackson Way S',443,'B',NULL,'Jackson','Way','S',NULL,NULL,NULL,NULL,'Southampton',1,1037,NULL,'18966',NULL,1228,40.184745,-75.00831,0,NULL,NULL,NULL),(65,58,1,1,0,'234Z Main Ln N',234,'Z',NULL,'Main','Ln','N',NULL,NULL,NULL,NULL,'Bruni',1,1042,NULL,'78344',NULL,1228,27.43254,-98.81271,0,NULL,NULL,NULL),(66,54,1,1,0,'47O Martin Luther King Dr S',47,'O',NULL,'Martin Luther King','Dr','S',NULL,NULL,NULL,NULL,'Willisburg',1,1016,NULL,'40078',NULL,1228,37.840066,-85.12572,0,NULL,NULL,NULL),(67,7,1,1,0,'506P Cadell Path N',506,'P',NULL,'Cadell','Path','N',NULL,NULL,NULL,NULL,'Harrisburg',1,1037,NULL,'17126',NULL,1228,40.26179,-76.880021,0,NULL,NULL,NULL),(68,183,1,1,0,'326S Dowlen Pl W',326,'S',NULL,'Dowlen','Pl','W',NULL,NULL,NULL,NULL,'Birmingham',1,1000,NULL,'35294',NULL,1228,33.544622,-86.929208,0,NULL,NULL,NULL),(69,175,1,1,0,'596J Northpoint Dr W',596,'J',NULL,'Northpoint','Dr','W',NULL,NULL,NULL,NULL,'Vance',1,1039,NULL,'29163',NULL,1228,33.434712,-80.43046,0,NULL,NULL,NULL),(70,21,1,1,0,'979I Beech Pl S',979,'I',NULL,'Beech','Pl','S',NULL,NULL,NULL,NULL,'Houston',1,1042,NULL,'77042',NULL,1228,29.741565,-95.55996,0,NULL,NULL,NULL),(71,85,1,1,0,'786K Beech Pl N',786,'K',NULL,'Beech','Pl','N',NULL,NULL,NULL,NULL,'Blytheville',1,1003,NULL,'72315',NULL,1228,35.925991,-89.91767,0,NULL,NULL,NULL),(72,123,1,1,0,'652I Cadell Ave W',652,'I',NULL,'Cadell','Ave','W',NULL,NULL,NULL,NULL,'Newman',1,1012,NULL,'61942',NULL,1228,39.802798,-87.99744,0,NULL,NULL,NULL),(73,146,1,1,0,'954Z Martin Luther King Ln SW',954,'Z',NULL,'Martin Luther King','Ln','SW',NULL,NULL,NULL,NULL,'Fernandina Beach',1,1008,NULL,'32035',NULL,1228,30.551558,-81.698422,0,NULL,NULL,NULL),(74,192,3,1,0,'997A College Ave W',997,'A',NULL,'College','Ave','W',NULL,'Churchgate',NULL,NULL,'Beverly',1,1016,NULL,'40913',NULL,1228,36.942094,-83.53262,0,NULL,NULL,NULL),(75,42,3,1,0,'826Q Pine Ln SE',826,'Q',NULL,'Pine','Ln','SE',NULL,'Donor Relations',NULL,NULL,'Onia',1,1003,NULL,'72663',NULL,1228,35.927802,-92.32249,0,NULL,NULL,NULL),(76,16,2,1,0,'826Q Pine Ln SE',826,'Q',NULL,'Pine','Ln','SE',NULL,'Donor Relations',NULL,NULL,'Onia',1,1003,NULL,'72663',NULL,1228,35.927802,-92.32249,0,NULL,NULL,75),(77,18,3,1,0,'897I Northpoint Rd N',897,'I',NULL,'Northpoint','Rd','N',NULL,'Mailstop 101',NULL,NULL,'Baltimore',1,1019,NULL,'21265',NULL,1228,39.284707,-76.620489,0,NULL,NULL,NULL),(78,67,3,1,0,'802X Main Path NW',802,'X',NULL,'Main','Path','NW',NULL,'Receiving',NULL,NULL,'Mineral',1,1046,NULL,'98355',NULL,1228,46.711036,-122.0348,0,NULL,NULL,NULL),(79,13,2,1,0,'802X Main Path NW',802,'X',NULL,'Main','Path','NW',NULL,'Receiving',NULL,NULL,'Mineral',1,1046,NULL,'98355',NULL,1228,46.711036,-122.0348,0,NULL,NULL,78),(80,47,3,1,0,'183L States Path N',183,'L',NULL,'States','Path','N',NULL,'Editorial Dept',NULL,NULL,'Mikana',1,1048,NULL,'54857',NULL,1228,45.591546,-91.60046,0,NULL,NULL,NULL),(81,122,2,1,0,'183L States Path N',183,'L',NULL,'States','Path','N',NULL,'Editorial Dept',NULL,NULL,'Mikana',1,1048,NULL,'54857',NULL,1228,45.591546,-91.60046,0,NULL,NULL,80),(82,99,3,1,0,'74Z Lincoln Blvd S',74,'Z',NULL,'Lincoln','Blvd','S',NULL,'c/o PO Plus',NULL,NULL,'Asheville',1,1032,NULL,'28814',NULL,1228,35.664752,-82.492664,0,NULL,NULL,NULL),(83,128,2,1,0,'74Z Lincoln Blvd S',74,'Z',NULL,'Lincoln','Blvd','S',NULL,'c/o PO Plus',NULL,NULL,'Asheville',1,1032,NULL,'28814',NULL,1228,35.664752,-82.492664,0,NULL,NULL,82),(84,26,3,1,0,'24A Beech Rd NW',24,'A',NULL,'Beech','Rd','NW',NULL,'Cuffe Parade',NULL,NULL,'Linn',1,1015,NULL,'66953',NULL,1228,39.689909,-97.10565,0,NULL,NULL,NULL),(85,25,2,1,0,'24A Beech Rd NW',24,'A',NULL,'Beech','Rd','NW',NULL,'Cuffe Parade',NULL,NULL,'Linn',1,1015,NULL,'66953',NULL,1228,39.689909,-97.10565,0,NULL,NULL,84),(86,118,3,1,0,'754O Woodbridge Path SW',754,'O',NULL,'Woodbridge','Path','SW',NULL,'Attn: Accounting',NULL,NULL,'Gateway',1,1003,NULL,'72733',NULL,1228,36.486424,-93.927748,0,NULL,NULL,NULL),(87,180,2,1,0,'754O Woodbridge Path SW',754,'O',NULL,'Woodbridge','Path','SW',NULL,'Attn: Accounting',NULL,NULL,'Gateway',1,1003,NULL,'72733',NULL,1228,36.486424,-93.927748,0,NULL,NULL,86),(88,101,3,1,0,'467Z States St S',467,'Z',NULL,'States','St','S',NULL,'Subscriptions Dept',NULL,NULL,'Fancy Farm',1,1016,NULL,'42039',NULL,1228,36.800353,-88.83224,0,NULL,NULL,NULL),(89,82,2,0,0,'467Z States St S',467,'Z',NULL,'States','St','S',NULL,'Subscriptions Dept',NULL,NULL,'Fancy Farm',1,1016,NULL,'42039',NULL,1228,36.800353,-88.83224,0,NULL,NULL,88),(90,36,3,1,0,'163G Cadell Way SE',163,'G',NULL,'Cadell','Way','SE',NULL,'c/o OPDC',NULL,NULL,'Grand Island',1,1026,NULL,'68801',NULL,1228,40.922826,-98.33087,0,NULL,NULL,NULL),(91,28,3,1,0,'313U Martin Luther King Pl W',313,'U',NULL,'Martin Luther King','Pl','W',NULL,'Attn: Accounting',NULL,NULL,'Lineville',1,1014,NULL,'50147',NULL,1228,40.60243,-93.52778,0,NULL,NULL,NULL),(92,86,2,0,0,'313U Martin Luther King Pl W',313,'U',NULL,'Martin Luther King','Pl','W',NULL,'Attn: Accounting',NULL,NULL,'Lineville',1,1014,NULL,'50147',NULL,1228,40.60243,-93.52778,0,NULL,NULL,91),(93,188,3,1,0,'695L Beech Ave W',695,'L',NULL,'Beech','Ave','W',NULL,'Attn: Development',NULL,NULL,'Saint Martin',1,1022,NULL,'56376',NULL,1228,45.498506,-94.66271,0,NULL,NULL,NULL),(94,30,3,1,0,'952P Northpoint Path N',952,'P',NULL,'Northpoint','Path','N',NULL,'Community Relations',NULL,NULL,'Opheim',1,1012,NULL,'61468',NULL,1228,41.254936,-90.40384,0,NULL,NULL,NULL),(95,79,2,1,0,'952P Northpoint Path N',952,'P',NULL,'Northpoint','Path','N',NULL,'Community Relations',NULL,NULL,'Opheim',1,1012,NULL,'61468',NULL,1228,41.254936,-90.40384,0,NULL,NULL,94),(96,133,3,1,0,'202C Caulder Way N',202,'C',NULL,'Caulder','Way','N',NULL,'Disbursements',NULL,NULL,'Hampstead',1,1032,NULL,'28443',NULL,1228,34.407677,-77.65238,0,NULL,NULL,NULL),(97,53,2,0,0,'202C Caulder Way N',202,'C',NULL,'Caulder','Way','N',NULL,'Disbursements',NULL,NULL,'Hampstead',1,1032,NULL,'28443',NULL,1228,34.407677,-77.65238,0,NULL,NULL,96),(98,111,3,1,0,'756U Second Blvd E',756,'U',NULL,'Second','Blvd','E',NULL,'Attn: Accounting',NULL,NULL,'Whitewood',1,1045,NULL,'24657',NULL,1228,37.226416,-81.86739,0,NULL,NULL,NULL),(99,73,3,1,0,'526U States Path S',526,'U',NULL,'States','Path','S',NULL,'Receiving',NULL,NULL,'Hersey',1,1021,NULL,'49639',NULL,1228,43.84716,-85.40908,0,NULL,NULL,NULL),(100,142,2,1,0,'526U States Path S',526,'U',NULL,'States','Path','S',NULL,'Receiving',NULL,NULL,'Hersey',1,1021,NULL,'49639',NULL,1228,43.84716,-85.40908,0,NULL,NULL,99),(101,140,3,1,0,'185H Martin Luther King Ave W',185,'H',NULL,'Martin Luther King','Ave','W',NULL,'Donor Relations',NULL,NULL,'South Jamesport',1,1031,NULL,'11970',NULL,1228,40.941363,-72.57502,0,NULL,NULL,NULL),(102,197,2,1,0,'185H Martin Luther King Ave W',185,'H',NULL,'Martin Luther King','Ave','W',NULL,'Donor Relations',NULL,NULL,'South Jamesport',1,1031,NULL,'11970',NULL,1228,40.941363,-72.57502,0,NULL,NULL,101),(103,91,3,1,0,'763E Woodbridge Ave SW',763,'E',NULL,'Woodbridge','Ave','SW',NULL,'c/o OPDC',NULL,NULL,'Sullivan',1,1012,NULL,'61951',NULL,1228,39.582494,-88.6021,0,NULL,NULL,NULL),(104,12,3,1,0,'755Q Van Ness Rd W',755,'Q',NULL,'Van Ness','Rd','W',NULL,'Urgent',NULL,NULL,'Oakland',1,1022,NULL,'56076',NULL,1228,43.671266,-93.11918,0,NULL,NULL,NULL),(105,81,2,1,0,'755Q Van Ness Rd W',755,'Q',NULL,'Van Ness','Rd','W',NULL,'Urgent',NULL,NULL,'Oakland',1,1022,NULL,'56076',NULL,1228,43.671266,-93.11918,0,NULL,NULL,104),(106,45,3,1,0,'63U Beech Pl S',63,'U',NULL,'Beech','Pl','S',NULL,'Payables Dept.',NULL,NULL,'Bretton Woods',1,1028,NULL,'03575',NULL,1228,44.695648,-71.387387,0,NULL,NULL,NULL),(107,29,1,1,0,'182I College Ln NE',182,'I',NULL,'College','Ln','NE',NULL,NULL,NULL,NULL,'Piedmont',1,1000,NULL,'36272',NULL,1228,33.948018,-85.61491,0,NULL,NULL,54),(108,51,1,1,0,'182I College Ln NE',182,'I',NULL,'College','Ln','NE',NULL,NULL,NULL,NULL,'Piedmont',1,1000,NULL,'36272',NULL,1228,33.948018,-85.61491,0,NULL,NULL,54),(109,61,1,1,0,'182I College Ln NE',182,'I',NULL,'College','Ln','NE',NULL,NULL,NULL,NULL,'Piedmont',1,1000,NULL,'36272',NULL,1228,33.948018,-85.61491,0,NULL,NULL,54),(110,74,1,0,0,'182I College Ln NE',182,'I',NULL,'College','Ln','NE',NULL,NULL,NULL,NULL,'Piedmont',1,1000,NULL,'36272',NULL,1228,33.948018,-85.61491,0,NULL,NULL,54),(111,151,1,1,0,'699Q Bay Path W',699,'Q',NULL,'Bay','Path','W',NULL,NULL,NULL,NULL,'Alexandria',1,1045,NULL,'22310',NULL,1228,38.782013,-77.12125,0,NULL,NULL,55),(112,190,1,1,0,'699Q Bay Path W',699,'Q',NULL,'Bay','Path','W',NULL,NULL,NULL,NULL,'Alexandria',1,1045,NULL,'22310',NULL,1228,38.782013,-77.12125,0,NULL,NULL,55),(113,48,1,1,0,'699Q Bay Path W',699,'Q',NULL,'Bay','Path','W',NULL,NULL,NULL,NULL,'Alexandria',1,1045,NULL,'22310',NULL,1228,38.782013,-77.12125,0,NULL,NULL,55),(114,100,1,1,0,'879F Second Ln W',879,'F',NULL,'Second','Ln','W',NULL,NULL,NULL,NULL,'Modesto',1,1004,NULL,'95357',NULL,1228,37.667196,-120.9061,0,NULL,NULL,NULL),(115,128,1,0,0,'750K Green St NW',750,'K',NULL,'Green','St','NW',NULL,NULL,NULL,NULL,'Carmi',1,1012,NULL,'62821',NULL,1228,38.087838,-88.15583,0,NULL,NULL,56),(116,33,1,1,0,'750K Green St NW',750,'K',NULL,'Green','St','NW',NULL,NULL,NULL,NULL,'Carmi',1,1012,NULL,'62821',NULL,1228,38.087838,-88.15583,0,NULL,NULL,56),(117,96,1,1,0,'750K Green St NW',750,'K',NULL,'Green','St','NW',NULL,NULL,NULL,NULL,'Carmi',1,1012,NULL,'62821',NULL,1228,38.087838,-88.15583,0,NULL,NULL,56),(118,72,1,1,0,'312E States Path NE',312,'E',NULL,'States','Path','NE',NULL,NULL,NULL,NULL,'Hernando',1,1008,NULL,'34442',NULL,1228,28.932925,-82.39477,0,NULL,NULL,NULL),(119,131,1,1,0,'21S Lincoln Path E',21,'S',NULL,'Lincoln','Path','E',NULL,NULL,NULL,NULL,'Stockton',1,1022,NULL,'55988',NULL,1228,44.025446,-91.77304,0,NULL,NULL,57),(120,59,1,1,0,'21S Lincoln Path E',21,'S',NULL,'Lincoln','Path','E',NULL,NULL,NULL,NULL,'Stockton',1,1022,NULL,'55988',NULL,1228,44.025446,-91.77304,0,NULL,NULL,57),(121,121,1,1,0,'21S Lincoln Path E',21,'S',NULL,'Lincoln','Path','E',NULL,NULL,NULL,NULL,'Stockton',1,1022,NULL,'55988',NULL,1228,44.025446,-91.77304,0,NULL,NULL,57),(122,83,1,1,0,'153R Cadell Ln N',153,'R',NULL,'Cadell','Ln','N',NULL,NULL,NULL,NULL,'Downing',1,1024,NULL,'63536',NULL,1228,40.486993,-92.36284,0,NULL,NULL,NULL),(123,52,1,1,0,'578K El Camino Pl N',578,'K',NULL,'El Camino','Pl','N',NULL,NULL,NULL,NULL,'Pasadena',1,1004,NULL,'91107',NULL,1228,34.151066,-118.08974,0,NULL,NULL,58),(124,68,1,1,0,'578K El Camino Pl N',578,'K',NULL,'El Camino','Pl','N',NULL,NULL,NULL,NULL,'Pasadena',1,1004,NULL,'91107',NULL,1228,34.151066,-118.08974,0,NULL,NULL,58),(125,60,1,1,0,'578K El Camino Pl N',578,'K',NULL,'El Camino','Pl','N',NULL,NULL,NULL,NULL,'Pasadena',1,1004,NULL,'91107',NULL,1228,34.151066,-118.08974,0,NULL,NULL,58),(126,62,1,1,0,'475X Northpoint Way N',475,'X',NULL,'Northpoint','Way','N',NULL,NULL,NULL,NULL,'Winterthur',1,1007,NULL,'19735',NULL,1228,39.794396,-75.597598,0,NULL,NULL,NULL),(127,77,1,1,0,'599Z Pine Rd NW',599,'Z',NULL,'Pine','Rd','NW',NULL,NULL,NULL,NULL,'Whittier',1,1004,NULL,'90606',NULL,1228,33.978312,-118.06778,0,NULL,NULL,59),(128,130,1,1,0,'599Z Pine Rd NW',599,'Z',NULL,'Pine','Rd','NW',NULL,NULL,NULL,NULL,'Whittier',1,1004,NULL,'90606',NULL,1228,33.978312,-118.06778,0,NULL,NULL,59),(129,81,1,0,0,'599Z Pine Rd NW',599,'Z',NULL,'Pine','Rd','NW',NULL,NULL,NULL,NULL,'Whittier',1,1004,NULL,'90606',NULL,1228,33.978312,-118.06778,0,NULL,NULL,59),(130,127,1,1,0,'61N Beech Pl SE',61,'N',NULL,'Beech','Pl','SE',NULL,NULL,NULL,NULL,'Lafayette',1,1017,NULL,'70502',NULL,1228,30.319799,-92.026969,0,NULL,NULL,NULL),(131,139,1,1,0,'819I Pine Ave NW',819,'I',NULL,'Pine','Ave','NW',NULL,NULL,NULL,NULL,'Harviell',1,1024,NULL,'63945',NULL,1228,36.637085,-90.52687,0,NULL,NULL,60),(132,172,1,1,0,'819I Pine Ave NW',819,'I',NULL,'Pine','Ave','NW',NULL,NULL,NULL,NULL,'Harviell',1,1024,NULL,'63945',NULL,1228,36.637085,-90.52687,0,NULL,NULL,60),(133,15,1,1,0,'819I Pine Ave NW',819,'I',NULL,'Pine','Ave','NW',NULL,NULL,NULL,NULL,'Harviell',1,1024,NULL,'63945',NULL,1228,36.637085,-90.52687,0,NULL,NULL,60),(134,115,1,1,0,'819I Pine Ave NW',819,'I',NULL,'Pine','Ave','NW',NULL,NULL,NULL,NULL,'Harviell',1,1024,NULL,'63945',NULL,1228,36.637085,-90.52687,0,NULL,NULL,60),(135,147,1,1,0,'898W Jackson Path W',898,'W',NULL,'Jackson','Path','W',NULL,NULL,NULL,NULL,'New Orleans',1,1017,NULL,'70190',NULL,1228,30.032997,-89.882564,0,NULL,NULL,61),(136,137,1,1,0,'898W Jackson Path W',898,'W',NULL,'Jackson','Path','W',NULL,NULL,NULL,NULL,'New Orleans',1,1017,NULL,'70190',NULL,1228,30.032997,-89.882564,0,NULL,NULL,61),(137,120,1,1,0,'898W Jackson Path W',898,'W',NULL,'Jackson','Path','W',NULL,NULL,NULL,NULL,'New Orleans',1,1017,NULL,'70190',NULL,1228,30.032997,-89.882564,0,NULL,NULL,61),(138,114,1,1,0,'898W Jackson Path W',898,'W',NULL,'Jackson','Path','W',NULL,NULL,NULL,NULL,'New Orleans',1,1017,NULL,'70190',NULL,1228,30.032997,-89.882564,0,NULL,NULL,61),(139,170,1,1,0,'411M Pine St S',411,'M',NULL,'Pine','St','S',NULL,NULL,NULL,NULL,'New Eagle',1,1037,NULL,'15067',NULL,1228,40.207526,-79.95304,0,NULL,NULL,62),(140,6,1,1,0,'411M Pine St S',411,'M',NULL,'Pine','St','S',NULL,NULL,NULL,NULL,'New Eagle',1,1037,NULL,'15067',NULL,1228,40.207526,-79.95304,0,NULL,NULL,62),(141,31,1,1,0,'411M Pine St S',411,'M',NULL,'Pine','St','S',NULL,NULL,NULL,NULL,'New Eagle',1,1037,NULL,'15067',NULL,1228,40.207526,-79.95304,0,NULL,NULL,62),(142,64,1,1,0,'411M Pine St S',411,'M',NULL,'Pine','St','S',NULL,NULL,NULL,NULL,'New Eagle',1,1037,NULL,'15067',NULL,1228,40.207526,-79.95304,0,NULL,NULL,62),(143,122,1,0,0,'884O Green Ave SE',884,'O',NULL,'Green','Ave','SE',NULL,NULL,NULL,NULL,'Syria',1,1045,NULL,'22743',NULL,1228,38.509556,-78.33721,0,NULL,NULL,63),(144,23,1,1,0,'884O Green Ave SE',884,'O',NULL,'Green','Ave','SE',NULL,NULL,NULL,NULL,'Syria',1,1045,NULL,'22743',NULL,1228,38.509556,-78.33721,0,NULL,NULL,63),(145,22,1,1,0,'884O Green Ave SE',884,'O',NULL,'Green','Ave','SE',NULL,NULL,NULL,NULL,'Syria',1,1045,NULL,'22743',NULL,1228,38.509556,-78.33721,0,NULL,NULL,63),(146,189,1,1,0,'884O Green Ave SE',884,'O',NULL,'Green','Ave','SE',NULL,NULL,NULL,NULL,'Syria',1,1045,NULL,'22743',NULL,1228,38.509556,-78.33721,0,NULL,NULL,63),(147,197,1,0,0,'443B Jackson Way S',443,'B',NULL,'Jackson','Way','S',NULL,NULL,NULL,NULL,'Southampton',1,1037,NULL,'18966',NULL,1228,40.184745,-75.00831,0,NULL,NULL,64),(148,4,1,1,0,'443B Jackson Way S',443,'B',NULL,'Jackson','Way','S',NULL,NULL,NULL,NULL,'Southampton',1,1037,NULL,'18966',NULL,1228,40.184745,-75.00831,0,NULL,NULL,64),(149,84,1,1,0,'443B Jackson Way S',443,'B',NULL,'Jackson','Way','S',NULL,NULL,NULL,NULL,'Southampton',1,1037,NULL,'18966',NULL,1228,40.184745,-75.00831,0,NULL,NULL,64),(150,108,1,1,0,'443B Jackson Way S',443,'B',NULL,'Jackson','Way','S',NULL,NULL,NULL,NULL,'Southampton',1,1037,NULL,'18966',NULL,1228,40.184745,-75.00831,0,NULL,NULL,64),(151,13,1,0,0,'234Z Main Ln N',234,'Z',NULL,'Main','Ln','N',NULL,NULL,NULL,NULL,'Bruni',1,1042,NULL,'78344',NULL,1228,27.43254,-98.81271,0,NULL,NULL,65),(152,70,1,1,0,'234Z Main Ln N',234,'Z',NULL,'Main','Ln','N',NULL,NULL,NULL,NULL,'Bruni',1,1042,NULL,'78344',NULL,1228,27.43254,-98.81271,0,NULL,NULL,65),(153,177,1,1,0,'234Z Main Ln N',234,'Z',NULL,'Main','Ln','N',NULL,NULL,NULL,NULL,'Bruni',1,1042,NULL,'78344',NULL,1228,27.43254,-98.81271,0,NULL,NULL,65),(154,143,1,1,0,'234Z Main Ln N',234,'Z',NULL,'Main','Ln','N',NULL,NULL,NULL,NULL,'Bruni',1,1042,NULL,'78344',NULL,1228,27.43254,-98.81271,0,NULL,NULL,65),(155,180,1,0,0,'47O Martin Luther King Dr S',47,'O',NULL,'Martin Luther King','Dr','S',NULL,NULL,NULL,NULL,'Willisburg',1,1016,NULL,'40078',NULL,1228,37.840066,-85.12572,0,NULL,NULL,66),(156,161,1,1,0,'47O Martin Luther King Dr S',47,'O',NULL,'Martin Luther King','Dr','S',NULL,NULL,NULL,NULL,'Willisburg',1,1016,NULL,'40078',NULL,1228,37.840066,-85.12572,0,NULL,NULL,66),(157,169,1,1,0,'47O Martin Luther King Dr S',47,'O',NULL,'Martin Luther King','Dr','S',NULL,NULL,NULL,NULL,'Willisburg',1,1016,NULL,'40078',NULL,1228,37.840066,-85.12572,0,NULL,NULL,66),(158,141,1,1,0,'47O Martin Luther King Dr S',47,'O',NULL,'Martin Luther King','Dr','S',NULL,NULL,NULL,NULL,'Willisburg',1,1016,NULL,'40078',NULL,1228,37.840066,-85.12572,0,NULL,NULL,66),(159,40,1,1,0,'506P Cadell Path N',506,'P',NULL,'Cadell','Path','N',NULL,NULL,NULL,NULL,'Harrisburg',1,1037,NULL,'17126',NULL,1228,40.26179,-76.880021,0,NULL,NULL,67),(160,173,1,1,0,'506P Cadell Path N',506,'P',NULL,'Cadell','Path','N',NULL,NULL,NULL,NULL,'Harrisburg',1,1037,NULL,'17126',NULL,1228,40.26179,-76.880021,0,NULL,NULL,67),(161,104,1,1,0,'506P Cadell Path N',506,'P',NULL,'Cadell','Path','N',NULL,NULL,NULL,NULL,'Harrisburg',1,1037,NULL,'17126',NULL,1228,40.26179,-76.880021,0,NULL,NULL,67),(162,116,1,1,0,'506P Cadell Path N',506,'P',NULL,'Cadell','Path','N',NULL,NULL,NULL,NULL,'Harrisburg',1,1037,NULL,'17126',NULL,1228,40.26179,-76.880021,0,NULL,NULL,67),(163,25,1,0,0,'326S Dowlen Pl W',326,'S',NULL,'Dowlen','Pl','W',NULL,NULL,NULL,NULL,'Birmingham',1,1000,NULL,'35294',NULL,1228,33.544622,-86.929208,0,NULL,NULL,68),(164,194,1,1,0,'326S Dowlen Pl W',326,'S',NULL,'Dowlen','Pl','W',NULL,NULL,NULL,NULL,'Birmingham',1,1000,NULL,'35294',NULL,1228,33.544622,-86.929208,0,NULL,NULL,68),(165,174,1,1,0,'326S Dowlen Pl W',326,'S',NULL,'Dowlen','Pl','W',NULL,NULL,NULL,NULL,'Birmingham',1,1000,NULL,'35294',NULL,1228,33.544622,-86.929208,0,NULL,NULL,68),(166,142,1,0,0,'992D Second Dr NE',992,'D',NULL,'Second','Dr','NE',NULL,NULL,NULL,NULL,'Jacksonville',1,1008,NULL,'32246',NULL,1228,30.296911,-81.52228,0,NULL,NULL,NULL),(167,184,1,1,0,'596J Northpoint Dr W',596,'J',NULL,'Northpoint','Dr','W',NULL,NULL,NULL,NULL,'Vance',1,1039,NULL,'29163',NULL,1228,33.434712,-80.43046,0,NULL,NULL,69),(168,164,1,1,0,'596J Northpoint Dr W',596,'J',NULL,'Northpoint','Dr','W',NULL,NULL,NULL,NULL,'Vance',1,1039,NULL,'29163',NULL,1228,33.434712,-80.43046,0,NULL,NULL,69),(169,44,1,1,0,'596J Northpoint Dr W',596,'J',NULL,'Northpoint','Dr','W',NULL,NULL,NULL,NULL,'Vance',1,1039,NULL,'29163',NULL,1228,33.434712,-80.43046,0,NULL,NULL,69),(170,90,1,1,0,'596J Northpoint Dr W',596,'J',NULL,'Northpoint','Dr','W',NULL,NULL,NULL,NULL,'Vance',1,1039,NULL,'29163',NULL,1228,33.434712,-80.43046,0,NULL,NULL,69),(171,156,1,1,0,'979I Beech Pl S',979,'I',NULL,'Beech','Pl','S',NULL,NULL,NULL,NULL,'Houston',1,1042,NULL,'77042',NULL,1228,29.741565,-95.55996,0,NULL,NULL,70),(172,200,1,1,0,'979I Beech Pl S',979,'I',NULL,'Beech','Pl','S',NULL,NULL,NULL,NULL,'Houston',1,1042,NULL,'77042',NULL,1228,29.741565,-95.55996,0,NULL,NULL,70),(173,124,1,1,0,'979I Beech Pl S',979,'I',NULL,'Beech','Pl','S',NULL,NULL,NULL,NULL,'Houston',1,1042,NULL,'77042',NULL,1228,29.741565,-95.55996,0,NULL,NULL,70),(174,119,1,1,0,'979I Beech Pl S',979,'I',NULL,'Beech','Pl','S',NULL,NULL,NULL,NULL,'Houston',1,1042,NULL,'77042',NULL,1228,29.741565,-95.55996,0,NULL,NULL,70),(175,199,1,1,0,'786K Beech Pl N',786,'K',NULL,'Beech','Pl','N',NULL,NULL,NULL,NULL,'Blytheville',1,1003,NULL,'72315',NULL,1228,35.925991,-89.91767,0,NULL,NULL,71),(176,24,1,1,0,'786K Beech Pl N',786,'K',NULL,'Beech','Pl','N',NULL,NULL,NULL,NULL,'Blytheville',1,1003,NULL,'72315',NULL,1228,35.925991,-89.91767,0,NULL,NULL,71),(177,35,1,1,0,'786K Beech Pl N',786,'K',NULL,'Beech','Pl','N',NULL,NULL,NULL,NULL,'Blytheville',1,1003,NULL,'72315',NULL,1228,35.925991,-89.91767,0,NULL,NULL,71),(178,5,1,1,0,'786K Beech Pl N',786,'K',NULL,'Beech','Pl','N',NULL,NULL,NULL,NULL,'Blytheville',1,1003,NULL,'72315',NULL,1228,35.925991,-89.91767,0,NULL,NULL,71),(179,145,1,1,0,'652I Cadell Ave W',652,'I',NULL,'Cadell','Ave','W',NULL,NULL,NULL,NULL,'Newman',1,1012,NULL,'61942',NULL,1228,39.802798,-87.99744,0,NULL,NULL,72),(180,178,1,1,0,'652I Cadell Ave W',652,'I',NULL,'Cadell','Ave','W',NULL,NULL,NULL,NULL,'Newman',1,1012,NULL,'61942',NULL,1228,39.802798,-87.99744,0,NULL,NULL,72),(181,16,1,0,0,'652I Cadell Ave W',652,'I',NULL,'Cadell','Ave','W',NULL,NULL,NULL,NULL,'Newman',1,1012,NULL,'61942',NULL,1228,39.802798,-87.99744,0,NULL,NULL,72),(182,71,1,1,0,'450J Dowlen Ave SW',450,'J',NULL,'Dowlen','Ave','SW',NULL,NULL,NULL,NULL,'Lampasas',1,1042,NULL,'76550',NULL,1228,31.06639,-98.19192,0,NULL,NULL,NULL),(183,97,1,1,0,'954Z Martin Luther King Ln SW',954,'Z',NULL,'Martin Luther King','Ln','SW',NULL,NULL,NULL,NULL,'Fernandina Beach',1,1008,NULL,'32035',NULL,1228,30.551558,-81.698422,0,NULL,NULL,73),(184,155,1,1,0,'954Z Martin Luther King Ln SW',954,'Z',NULL,'Martin Luther King','Ln','SW',NULL,NULL,NULL,NULL,'Fernandina Beach',1,1008,NULL,'32035',NULL,1228,30.551558,-81.698422,0,NULL,NULL,73),(185,11,1,1,0,'954Z Martin Luther King Ln SW',954,'Z',NULL,'Martin Luther King','Ln','SW',NULL,NULL,NULL,NULL,'Fernandina Beach',1,1008,NULL,'32035',NULL,1228,30.551558,-81.698422,0,NULL,NULL,73),(186,109,1,1,0,'954Z Martin Luther King Ln SW',954,'Z',NULL,'Martin Luther King','Ln','SW',NULL,NULL,NULL,NULL,'Fernandina Beach',1,1008,NULL,'32035',NULL,1228,30.551558,-81.698422,0,NULL,NULL,73),(187,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),(188,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),(189,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; @@ -145,7 +145,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:72:{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:486:\"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/webtools-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:16:\"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:4:\"Text\";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\";N;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\";N;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\";N;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:12:{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: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\";N;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:12:\"versionCheck\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";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:36:\"Version Check & Statistics Reporting\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:847:\"If enabled, CiviCRM automatically checks availablity of a newer version of the software. New version alerts will be displayed on the main CiviCRM Administration page.\nWhen enabled, statistics about your CiviCRM installation are reported anonymously to the CiviCRM team to assist in prioritizing ongoing development efforts. The following information is gathered: CiviCRM version, versions of PHP, MySQL and framework (Drupal/Joomla/standalone), and default language. Counts (but no actual data) of the following record types are reported: contacts, activities, cases, relationships, contributions, contribution pages, contribution products, contribution widgets, discounts, price sets, profiles, events, participants, tell-a-friend pages, grants, mailings, memberships, membership blocks, pledges, pledge blocks and active payment processor types.\";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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:256;}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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:3;s:9:\"maxlength\";i:5;}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:16:{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: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:7;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: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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}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:0:\"\";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:13:\"debug_enabled\";a:15:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:13:\"debug_enabled\";s:11:\"config_only\";i:1;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:14:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:20:\"userFrameworkLogging\";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: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.\nIn 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:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:9:\"backtrace\";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: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:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_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:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:4:\"text\";s:7:\"default\";s:4:\"null\";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\";N;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: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\";N;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\";N;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\";N;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\";N;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\";N;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: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\";N;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\";N;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\";N;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: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:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:10:\"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:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:15:\"domain_group_id\";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:10:{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: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:10:{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: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:24:\"userFrameworkResourceURL\";a:12:{s:5:\"group\";s:14:\"UrlPreferences\";s:10:\"group_name\";s:3:\"url\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";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:12:{s:5:\"group\";s:14:\"UrlPreferences\";s:10:\"group_name\";s:3:\"url\";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:12:{s:5:\"group\";s:14:\"UrlPreferences\";s:10:\"group_name\";s:3:\"url\";s:4:\"name\";s:12:\"customCSSURL\";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,'2013-02-26 10:50:01',NULL),(2,'CiviCRM setting Specs','settingsMetadata__1','a:72:{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:486:\"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/webtools-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:16:\"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:4:\"Text\";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\";N;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\";N;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\";N;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:12:{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: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\";N;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:12:\"versionCheck\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";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:36:\"Version Check & Statistics Reporting\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:847:\"If enabled, CiviCRM automatically checks availablity of a newer version of the software. New version alerts will be displayed on the main CiviCRM Administration page.\nWhen enabled, statistics about your CiviCRM installation are reported anonymously to the CiviCRM team to assist in prioritizing ongoing development efforts. The following information is gathered: CiviCRM version, versions of PHP, MySQL and framework (Drupal/Joomla/standalone), and default language. Counts (but no actual data) of the following record types are reported: contacts, activities, cases, relationships, contributions, contribution pages, contribution products, contribution widgets, discounts, price sets, profiles, events, participants, tell-a-friend pages, grants, mailings, memberships, membership blocks, pledges, pledge blocks and active payment processor types.\";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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:256;}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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:3;s:9:\"maxlength\";i:5;}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:16:{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: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:7;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: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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}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:0:\"\";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:13:\"debug_enabled\";a:15:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:13:\"debug_enabled\";s:11:\"config_only\";i:1;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:14:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:20:\"userFrameworkLogging\";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: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.\nIn 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:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:9:\"backtrace\";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: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:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_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:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:4:\"text\";s:7:\"default\";s:4:\"null\";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\";N;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: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\";N;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\";N;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\";N;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\";N;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\";N;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: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\";N;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\";N;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\";N;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: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:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:10:\"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:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:15:\"domain_group_id\";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:10:{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: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:10:{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: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:24:\"userFrameworkResourceURL\";a:12:{s:5:\"group\";s:14:\"UrlPreferences\";s:10:\"group_name\";s:3:\"url\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";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:12:{s:5:\"group\";s:14:\"UrlPreferences\";s:10:\"group_name\";s:3:\"url\";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:12:{s:5:\"group\";s:14:\"UrlPreferences\";s:10:\"group_name\";s:3:\"url\";s:4:\"name\";s:12:\"customCSSURL\";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,'2013-02-26 10:50:08',NULL),(3,'contact fields','custom importableFields Domain_0_0_0_0__0__0__0_7acce319','a:0:{}',NULL,'2013-02-26 10:50:01',NULL),(4,'CiviCRM setting Specs','settingsMetadata_1__name_address_standardization_provider1','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:486:\"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/webtools-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,'2013-02-26 10:50:01',NULL),(5,'CiviCRM setting Specs','settingsMetadata_1__name_address_standardization_userid1','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,'2013-02-26 10:50:03',NULL),(6,'CiviCRM setting Specs','settingsMetadata_1__name_address_standardization_url1','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:16:\"Web service URL.\";s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2013-02-26 10:50:03',NULL),(7,'CiviCRM setting Specs','settingsMetadata_1__name_cvv_backoffice_required1','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,'2013-02-26 10:50:04',NULL),(8,'CiviCRM setting Specs','settingsMetadata___name_cvv_backoffice_required1','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,'2013-02-26 10:50:04',NULL),(9,'CiviCRM setting Specs','settingsMetadata_1__name_max_attachments1','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,'2013-02-26 10:50:05',NULL),(10,'CiviCRM setting Specs','settingsMetadata___name_max_attachments1','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,'2013-02-26 10:50:05',NULL),(11,'CiviCRM setting Specs','settingsMetadata_1__name_contact_undelete1','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,'2013-02-26 10:50:05',NULL),(12,'CiviCRM setting Specs','settingsMetadata___name_contact_undelete1','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,'2013-02-26 10:50:06',NULL),(13,'CiviCRM setting Specs','settingsMetadata_1__name_verifySSL1','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:0:\"\";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,'2013-02-26 10:50:06',NULL),(14,'CiviCRM setting Specs','settingsMetadata___name_verifySSL1','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:0:\"\";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,'2013-02-26 10:50:06',NULL),(15,'CiviCRM setting Specs','settingsMetadata_1__name_event_enable_cart1','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,'2013-02-26 10:50:06',NULL),(16,'CiviCRM setting Specs','settingsMetadata___name_event_enable_cart1','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,'2013-02-26 10:50:07',NULL),(17,'CiviCRM setting Specs','settingsMetadata_1__name_default_renewal_contribution_page1','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,'2013-02-26 10:50:07',NULL),(18,'CiviCRM setting Specs','settingsMetadata_1__name_search_autocomplete_count1','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,'2013-02-26 10:50:08',NULL),(19,'CiviCRM setting Specs','settingsMetadata___name_search_autocomplete_count1','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,'2013-02-26 10:50:08',NULL); +INSERT INTO `civicrm_cache` (`id`, `group_name`, `path`, `data`, `component_id`, `created_date`, `expired_date`) VALUES (1,'CiviCRM setting Spec','All','a:72:{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:486:\"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/webtools-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:16:\"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:4:\"Text\";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\";N;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\";N;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\";N;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:12:{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: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\";N;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:12:\"versionCheck\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";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:36:\"Version Check & Statistics Reporting\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:847:\"If enabled, CiviCRM automatically checks availablity of a newer version of the software. New version alerts will be displayed on the main CiviCRM Administration page.\nWhen enabled, statistics about your CiviCRM installation are reported anonymously to the CiviCRM team to assist in prioritizing ongoing development efforts. The following information is gathered: CiviCRM version, versions of PHP, MySQL and framework (Drupal/Joomla/standalone), and default language. Counts (but no actual data) of the following record types are reported: contacts, activities, cases, relationships, contributions, contribution pages, contribution products, contribution widgets, discounts, price sets, profiles, events, participants, tell-a-friend pages, grants, mailings, memberships, membership blocks, pledges, pledge blocks and active payment processor types.\";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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:256;}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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:3;s:9:\"maxlength\";i:5;}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:16:{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: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:7;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: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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}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:0:\"\";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:13:\"debug_enabled\";a:15:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:13:\"debug_enabled\";s:11:\"config_only\";i:1;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:14:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:20:\"userFrameworkLogging\";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: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.\nIn 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:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:9:\"backtrace\";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: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:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_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:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:4:\"text\";s:7:\"default\";s:4:\"null\";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\";N;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: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\";N;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\";N;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\";N;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\";N;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\";N;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: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\";N;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\";N;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\";N;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: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:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:10:\"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:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:15:\"domain_group_id\";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:10:{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: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:10:{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: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:24:\"userFrameworkResourceURL\";a:12:{s:5:\"group\";s:14:\"UrlPreferences\";s:10:\"group_name\";s:3:\"url\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";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:12:{s:5:\"group\";s:14:\"UrlPreferences\";s:10:\"group_name\";s:3:\"url\";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:12:{s:5:\"group\";s:14:\"UrlPreferences\";s:10:\"group_name\";s:3:\"url\";s:4:\"name\";s:12:\"customCSSURL\";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,'2013-03-01 10:56:02',NULL),(2,'CiviCRM setting Specs','settingsMetadata__1','a:72:{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:486:\"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/webtools-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:16:\"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:4:\"Text\";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\";N;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\";N;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\";N;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:12:{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: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\";N;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:12:\"versionCheck\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";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:36:\"Version Check & Statistics Reporting\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:847:\"If enabled, CiviCRM automatically checks availablity of a newer version of the software. New version alerts will be displayed on the main CiviCRM Administration page.\nWhen enabled, statistics about your CiviCRM installation are reported anonymously to the CiviCRM team to assist in prioritizing ongoing development efforts. The following information is gathered: CiviCRM version, versions of PHP, MySQL and framework (Drupal/Joomla/standalone), and default language. Counts (but no actual data) of the following record types are reported: contacts, activities, cases, relationships, contributions, contribution pages, contribution products, contribution widgets, discounts, price sets, profiles, events, participants, tell-a-friend pages, grants, mailings, memberships, membership blocks, pledges, pledge blocks and active payment processor types.\";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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:256;}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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:3;s:9:\"maxlength\";i:5;}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:16:{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: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:7;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: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:9:\"html_type\";s:4:\"Text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}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:0:\"\";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:13:\"debug_enabled\";a:15:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:13:\"debug_enabled\";s:11:\"config_only\";i:1;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:14:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:20:\"userFrameworkLogging\";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: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.\nIn 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:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:9:\"backtrace\";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: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:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_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:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:4:\"text\";s:7:\"default\";s:4:\"null\";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\";N;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: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\";N;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\";N;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\";N;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\";N;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\";N;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: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\";N;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\";N;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\";N;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: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:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:10:\"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:10:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:15:\"domain_group_id\";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:10:{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: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:10:{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: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:24:\"userFrameworkResourceURL\";a:12:{s:5:\"group\";s:14:\"UrlPreferences\";s:10:\"group_name\";s:3:\"url\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";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:12:{s:5:\"group\";s:14:\"UrlPreferences\";s:10:\"group_name\";s:3:\"url\";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:12:{s:5:\"group\";s:14:\"UrlPreferences\";s:10:\"group_name\";s:3:\"url\";s:4:\"name\";s:12:\"customCSSURL\";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,'2013-03-01 10:56:06',NULL),(3,'contact fields','custom importableFields Domain_0_0_0_0__0__0__0_7acce319','a:0:{}',NULL,'2013-03-01 10:56:02',NULL),(4,'CiviCRM setting Specs','settingsMetadata_1__name_address_standardization_provider1','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:486:\"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/webtools-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,'2013-03-01 10:56:02',NULL),(5,'CiviCRM setting Specs','settingsMetadata_1__name_address_standardization_userid1','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,'2013-03-01 10:56:02',NULL),(6,'CiviCRM setting Specs','settingsMetadata_1__name_address_standardization_url1','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:16:\"Web service URL.\";s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2013-03-01 10:56:03',NULL),(7,'CiviCRM setting Specs','settingsMetadata_1__name_cvv_backoffice_required1','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,'2013-03-01 10:56:03',NULL),(8,'CiviCRM setting Specs','settingsMetadata___name_cvv_backoffice_required1','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,'2013-03-01 10:56:03',NULL),(9,'CiviCRM setting Specs','settingsMetadata_1__name_max_attachments1','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,'2013-03-01 10:56:04',NULL),(10,'CiviCRM setting Specs','settingsMetadata___name_max_attachments1','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,'2013-03-01 10:56:04',NULL),(11,'CiviCRM setting Specs','settingsMetadata_1__name_contact_undelete1','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,'2013-03-01 10:56:04',NULL),(12,'CiviCRM setting Specs','settingsMetadata___name_contact_undelete1','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,'2013-03-01 10:56:04',NULL),(13,'CiviCRM setting Specs','settingsMetadata_1__name_verifySSL1','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:0:\"\";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,'2013-03-01 10:56:05',NULL),(14,'CiviCRM setting Specs','settingsMetadata___name_verifySSL1','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:0:\"\";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,'2013-03-01 10:56:05',NULL),(15,'CiviCRM setting Specs','settingsMetadata_1__name_event_enable_cart1','a:1:{s:17:\"event_enable_cart\";a:12:{s:4:\"name\";s:11:\"enable_cart\";s:10:\"group_name\";s:17:\"Event Preferences\";s:5:\"group\";s:5:\"event\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:7:\"default\";i:0;s:3:\"add\";d:4.0999999999999996;s:5:\"title\";s:17:\"Enable Event Cart\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:1;s:11:\"description\";s:8:\"WRITE ME\";s:9:\"help_text\";s:8:\"WRITE ME\";}}',NULL,'2013-03-01 10:56:05',NULL),(16,'CiviCRM setting Specs','settingsMetadata___name_event_enable_cart1','a:1:{s:17:\"event_enable_cart\";a:12:{s:4:\"name\";s:11:\"enable_cart\";s:10:\"group_name\";s:17:\"Event Preferences\";s:5:\"group\";s:5:\"event\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:7:\"default\";i:0;s:3:\"add\";d:4.0999999999999996;s:5:\"title\";s:17:\"Enable Event Cart\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:1;s:11:\"description\";s:8:\"WRITE ME\";s:9:\"help_text\";s:8:\"WRITE ME\";}}',NULL,'2013-03-01 10:56:05',NULL),(17,'CiviCRM setting Specs','settingsMetadata_1__name_default_renewal_contribution_page1','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,'2013-03-01 10:56:06',NULL),(18,'CiviCRM setting Specs','settingsMetadata_1__name_search_autocomplete_count1','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,'2013-03-01 10:56:06',NULL),(19,'CiviCRM setting Specs','settingsMetadata___name_search_autocomplete_count1','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,'2013-03-01 10:56:06',NULL); /*!40000 ALTER TABLE `civicrm_cache` ENABLE KEYS */; UNLOCK TABLES; @@ -210,7 +210,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`, `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,0,NULL,NULL,NULL,'Default Organization',NULL,NULL,NULL,0,NULL,'2013-02-26 05:17:54'),(2,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Parker-Wilson, Tanya','Tanya Parker-Wilson',NULL,NULL,NULL,'5',NULL,'Both','-54886678',NULL,NULL,'Tanya','L','Parker-Wilson',NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Parker-Wilson',NULL,1,'1982-12-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:29'),(3,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Sanford','Sanford Adams',NULL,NULL,NULL,NULL,NULL,'Both','-1766165084',NULL,NULL,'Sanford','','Adams',NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Adams',NULL,2,'2001-11-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:32'),(4,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Łąchowski, Mei','Mei Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','16480830',NULL,NULL,'Mei','','Łąchowski',NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei Łąchowski',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:18'),(5,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Ivanov, Russell','Russell Ivanov Sr.',NULL,NULL,NULL,NULL,NULL,'Both','624189081',NULL,NULL,'Russell','','Ivanov',NULL,2,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Ivanov Sr.',NULL,NULL,'1961-07-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:25'),(6,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen family','Jensen family',NULL,NULL,NULL,'2',NULL,'Both','797435572',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,'2013-02-26 05:18:35'),(7,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jones, Miguel','Miguel Jones Jr.',NULL,NULL,NULL,NULL,NULL,'Both','-1058579721',NULL,NULL,'Miguel','B','Jones',NULL,1,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Jones Jr.',NULL,2,NULL,0,NULL,NULL,NULL,'El Camino Wellness Partners',NULL,NULL,120,0,NULL,'2013-02-26 05:18:39'),(8,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Heidi','Ms. Heidi Jameson',NULL,NULL,NULL,'5',NULL,'Both','1155008282',NULL,NULL,'Heidi','R','Jameson',2,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Ms. Heidi Jameson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:19'),(9,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Angelika','Angelika Roberts',NULL,NULL,NULL,NULL,NULL,'Both','-1077269103',NULL,NULL,'Angelika','C','Roberts',NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Roberts',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:28'),(10,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Lee, Laree','Laree Lee',NULL,NULL,NULL,NULL,NULL,'Both','-1963188073',NULL,NULL,'Laree','T','Lee',NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Laree Lee',NULL,NULL,'1979-09-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:15'),(11,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cruz, Clint','Clint Cruz Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-617107654',NULL,NULL,'Clint','C','Cruz',NULL,2,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Cruz Sr.',NULL,2,'1966-06-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:32'),(12,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Toby','Toby Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','247886444',NULL,NULL,'Toby','','Jacobs',NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Toby Jacobs',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:16'),(13,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Kenny','Kenny Parker',NULL,NULL,NULL,'2',NULL,'Both','2118469131',NULL,NULL,'Kenny','T','Parker',NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Parker',NULL,NULL,'1973-04-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:28'),(14,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'elbertg47@fakemail.net','elbertg47@fakemail.net',NULL,NULL,NULL,'3',NULL,'Both','1593590342',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'Dear elbertg47@fakemail.net',1,NULL,'Dear elbertg47@fakemail.net',1,NULL,'elbertg47@fakemail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:21'),(15,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Lou','Dr. Lou Wattson',NULL,NULL,NULL,NULL,NULL,'Both','-2099796930',NULL,NULL,'Lou','','Wattson',4,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Dr. Lou Wattson',NULL,2,'1981-04-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:24'),(16,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samson, Bob','Bob Samson Sr.',NULL,NULL,NULL,'3',NULL,'Both','-490109784',NULL,NULL,'Bob','','Samson',NULL,2,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Samson Sr.',NULL,2,'1983-05-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:33'),(17,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'shermanmcreynolds-bachman@fishmail.co.in','shermanmcreynolds-bachman@fishmail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','-1197487450',NULL,NULL,NULL,NULL,NULL,NULL,2,1,NULL,'Dear shermanmcreynolds-bachman@fishmail.co.in',1,NULL,'Dear shermanmcreynolds-bachman@fishmail.co.in',1,NULL,'shermanmcreynolds-bachman@fishmail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:30'),(18,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Ivey','Ivey Adams',NULL,NULL,NULL,'2',NULL,'Both','1336379028',NULL,NULL,'Ivey','','Adams',NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Adams',NULL,NULL,'2009-10-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:32'),(19,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Jina','Jina Müller',NULL,NULL,NULL,'4',NULL,'Both','-691725000',NULL,NULL,'Jina','','Müller',NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Müller',NULL,1,'1953-04-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:27'),(20,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Irvin','Irvin Grant',NULL,NULL,NULL,NULL,NULL,'Both','-825010798',NULL,NULL,'Irvin','','Grant',NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Irvin Grant',NULL,2,'1964-06-25',0,NULL,NULL,NULL,'Sierra Empowerment Association',NULL,NULL,139,0,NULL,'2013-02-26 05:18:39'),(21,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Samson, Juliann','Juliann Samson',NULL,NULL,NULL,NULL,NULL,'Both','1799778538',NULL,NULL,'Juliann','H','Samson',NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Samson',NULL,1,'2004-11-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:32'),(22,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner-Dimitrov family','Wagner-Dimitrov family',NULL,NULL,NULL,'3',NULL,'Both','-556498802',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wagner-Dimitrov family',5,NULL,'Dear Wagner-Dimitrov family',2,NULL,'Wagner-Dimitrov family',NULL,NULL,NULL,0,NULL,'Wagner-Dimitrov family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:35'),(23,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Jina','Jina Deforest',NULL,NULL,NULL,'4',NULL,'Both','-2092268245',NULL,NULL,'Jina','','Deforest',NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Deforest',NULL,1,'1990-06-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:24'),(24,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'jgrant40@notmail.co.in','jgrant40@notmail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','791060721',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jgrant40@notmail.co.in',1,NULL,'Dear jgrant40@notmail.co.in',1,NULL,'jgrant40@notmail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:30'),(25,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest-Samuels family','Deforest-Samuels family',NULL,NULL,NULL,'1',NULL,'Both','977335074',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Deforest-Samuels family',5,NULL,'Dear Deforest-Samuels family',2,NULL,'Deforest-Samuels family',NULL,NULL,NULL,0,NULL,'Deforest-Samuels family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:35'),(26,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Bob','Bob Parker Sr.',NULL,NULL,NULL,'1',NULL,'Both','2003359801',NULL,NULL,'Bob','M','Parker',NULL,2,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Parker Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:16'),(27,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Barkley, Erik','Erik Barkley II',NULL,NULL,NULL,NULL,NULL,'Both','-1845982879',NULL,NULL,'Erik','E','Barkley',NULL,3,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Barkley II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:22'),(28,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'McReynolds, Jay','Jay McReynolds II',NULL,NULL,NULL,'2',NULL,'Both','-132351048',NULL,NULL,'Jay','','McReynolds',NULL,3,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay McReynolds II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:30'),(29,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Miguel','Miguel Smith',NULL,NULL,NULL,NULL,NULL,'Both','-796111965',NULL,NULL,'Miguel','O','Smith',NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Smith',NULL,2,'2011-01-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:31'),(30,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Craig','Craig Díaz II',NULL,NULL,NULL,NULL,NULL,'Both','-1510146019',NULL,NULL,'Craig','','Díaz',NULL,3,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Díaz II',NULL,NULL,'1935-09-16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:25'),(31,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wilson, Carylon','Carylon Wilson',NULL,NULL,NULL,'5',NULL,'Both','-1675621622',NULL,NULL,'Carylon','','Wilson',NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Wilson',NULL,1,'1991-03-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:18'),(32,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wilson, Ivey','Ivey Wilson',NULL,NULL,NULL,NULL,NULL,'Both','-24839050',NULL,NULL,'Ivey','','Wilson',NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Wilson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:29'),(33,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wilson, Norris','Norris Wilson',NULL,NULL,NULL,NULL,NULL,'Both','1089092056',NULL,NULL,'Norris','','Wilson',NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Wilson',NULL,2,'1927-08-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:20'),(34,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Parker, Truman','Truman Parker',NULL,NULL,NULL,'3',NULL,'Both','-928959906',NULL,NULL,'Truman','','Parker',NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Parker',NULL,2,'1985-04-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:28'),(35,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'bzope-jones17@mymail.org','bzope-jones17@mymail.org',NULL,NULL,NULL,NULL,NULL,'Both','-1730613689',NULL,NULL,NULL,NULL,NULL,2,NULL,1,NULL,'Dear bzope-jones17@mymail.org',1,NULL,'Dear bzope-jones17@mymail.org',1,NULL,'bzope-jones17@mymail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:27'),(36,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'billyb@infomail.net','billyb@infomail.net',NULL,NULL,NULL,NULL,NULL,'Both','-1302593533',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear billyb@infomail.net',1,NULL,'Dear billyb@infomail.net',1,NULL,'billyb@infomail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:23'),(37,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Local Literacy Partnership','Local Literacy Partnership',NULL,NULL,NULL,NULL,NULL,'Both','-637063588',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Literacy Partnership',NULL,NULL,NULL,0,NULL,NULL,188,'Local Literacy Partnership',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:39'),(38,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Woodbridge Agriculture Network','Woodbridge Agriculture Network',NULL,NULL,NULL,'4',NULL,'Both','675053539',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Woodbridge Agriculture Network',NULL,NULL,NULL,0,NULL,NULL,72,'Woodbridge Agriculture Network',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:39'),(39,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Illinois Sustainability Center','Illinois Sustainability Center',NULL,NULL,NULL,'4',NULL,'Both','10478248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Illinois Sustainability Center',NULL,NULL,NULL,0,NULL,NULL,149,'Illinois Sustainability Center',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:36'),(40,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'mariat58@fishmail.info','mariat58@fishmail.info',NULL,NULL,NULL,NULL,NULL,'Both','2024134938',NULL,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'Dear mariat58@fishmail.info',1,NULL,'Dear mariat58@fishmail.info',1,NULL,'mariat58@fishmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:17'),(41,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Shad','Dr. Shad Smith',NULL,NULL,NULL,NULL,NULL,'Both','-693436380',NULL,NULL,'Shad','','Smith',4,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Dr. Shad Smith',NULL,2,'1968-11-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:26'),(42,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Teresa','Dr. Teresa Samson',NULL,NULL,NULL,'1',NULL,'Both','719335163',NULL,NULL,'Teresa','I','Samson',4,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Dr. Teresa Samson',NULL,NULL,'1947-01-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:32'),(43,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Olsen-Roberts, Sharyn','Sharyn Olsen-Roberts',NULL,NULL,NULL,'5',NULL,'Both','-2127473809',NULL,NULL,'Sharyn','','Olsen-Roberts',NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Olsen-Roberts',NULL,1,'2006-01-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:28'),(44,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Kathleen','Kathleen Jensen',NULL,NULL,NULL,NULL,NULL,'Both','-1881175633',NULL,NULL,'Kathleen','Q','Jensen',NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Kathleen Jensen',NULL,1,'1986-01-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:26'),(45,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'mroberts25@spamalot.net','mroberts25@spamalot.net',NULL,NULL,NULL,'4',NULL,'Both','-1175017880',NULL,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'Dear mroberts25@spamalot.net',1,NULL,'Dear mroberts25@spamalot.net',1,NULL,'mroberts25@spamalot.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:16'),(46,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'bo.jameson@infomail.co.pl','bo.jameson@infomail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','-519598650',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear bo.jameson@infomail.co.pl',1,NULL,'Dear bo.jameson@infomail.co.pl',1,NULL,'bo.jameson@infomail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:34'),(47,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Josefa','Dr. Josefa Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','-701901873',NULL,NULL,'Josefa','','Blackwell',4,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Dr. Josefa Blackwell',NULL,NULL,'1959-08-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:15'),(48,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Russell','Mr. Russell Nielsen',NULL,NULL,NULL,'1',NULL,'Both','-2114247513',NULL,NULL,'Russell','','Nielsen',3,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Mr. Russell Nielsen',NULL,2,'1972-03-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:25'),(49,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Robertson, Allan','Allan Robertson III',NULL,NULL,NULL,'3',NULL,'Both','-1708673543',NULL,NULL,'Allan','','Robertson',NULL,4,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Robertson III',NULL,2,'1939-03-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:16'),(50,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Müller, Iris','Mrs. Iris Müller',NULL,NULL,NULL,NULL,NULL,'Both','1761286600',NULL,NULL,'Iris','','Müller',1,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Mrs. Iris Müller',NULL,1,'1972-09-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:28'),(51,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson family','Jameson family',NULL,NULL,NULL,NULL,NULL,'Both','-2039317527',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson family',5,NULL,'Dear Jameson family',2,NULL,'Jameson family',NULL,NULL,NULL,0,NULL,'Jameson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:36'),(52,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'El Camino Culture Association','El Camino Culture Association',NULL,NULL,NULL,NULL,NULL,'Both','-193608293',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'El Camino Culture Association',NULL,NULL,NULL,0,NULL,NULL,166,'El Camino Culture Association',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:37'),(53,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Smith family','Smith family',NULL,NULL,NULL,'5',NULL,'Both','-212194651',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Smith family',5,NULL,'Dear Smith family',2,NULL,'Smith family',NULL,NULL,NULL,0,NULL,'Smith family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:35'),(54,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Merrie','Mrs. Merrie Jacobs',NULL,NULL,NULL,'1',NULL,'Both','-1923572169',NULL,NULL,'Merrie','K','Jacobs',1,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Mrs. Merrie Jacobs',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:24'),(55,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Olsen-Roberts, Teddy','Teddy Olsen-Roberts Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-633953939',NULL,NULL,'Teddy','','Olsen-Roberts',NULL,2,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Olsen-Roberts Sr.',NULL,2,'1978-02-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:28'),(56,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Princess','Princess Müller',NULL,NULL,NULL,'2',NULL,'Both','1686008496',NULL,NULL,'Princess','T','Müller',NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Müller',NULL,1,'1934-12-11',1,'2012-03-10',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:17'),(57,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Adams family','Adams family',NULL,NULL,NULL,'1',NULL,'Both','1515323104',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,'2013-02-26 05:18:36'),(58,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Omar','Dr. Omar Jacobs',NULL,NULL,NULL,'1',NULL,'Both','916847831',NULL,NULL,'Omar','X','Jacobs',4,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Dr. Omar Jacobs',NULL,NULL,'1943-01-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:24'),(59,'Organization',NULL,1,1,0,0,1,0,NULL,NULL,'Friends Sports Fund','Friends Sports Fund',NULL,NULL,NULL,'3',NULL,'Both','-1055471473',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Sports Fund',NULL,NULL,NULL,0,NULL,NULL,94,'Friends Sports Fund',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:38'),(60,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Shad','Shad Jones II',NULL,NULL,NULL,'3',NULL,'Both','-1236484577',NULL,NULL,'Shad','I','Jones',NULL,3,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Jones II',NULL,NULL,'1966-04-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:27'),(61,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Parker-Wilson family','Parker-Wilson family',NULL,NULL,NULL,NULL,NULL,'Both','-526770842',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Parker-Wilson family',5,NULL,'Dear Parker-Wilson family',2,NULL,'Parker-Wilson family',NULL,NULL,NULL,0,NULL,'Parker-Wilson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:35'),(62,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Esta','Dr. Esta Parker',NULL,NULL,NULL,NULL,NULL,'Both','599165417',NULL,NULL,'Esta','T','Parker',4,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Dr. Esta Parker',NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:31'),(63,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Smith, Sanford','Sanford Smith',NULL,NULL,NULL,NULL,NULL,'Both','-1710591710',NULL,NULL,'Sanford','','Smith',NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Smith',NULL,2,'2011-09-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:26'),(64,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Smith, Juliann','Mrs. Juliann Smith',NULL,NULL,NULL,NULL,NULL,'Both','-560713011',NULL,NULL,'Juliann','R','Smith',1,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Mrs. Juliann Smith',NULL,1,'1982-08-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:31'),(65,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Barkley, Andrew','Andrew Barkley',NULL,NULL,NULL,NULL,NULL,'Both','-1599282769',NULL,NULL,'Andrew','C','Barkley',NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Barkley',NULL,2,'1953-09-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:33'),(66,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cruz, Margaret','Mrs. Margaret Cruz',NULL,NULL,NULL,NULL,NULL,'Both','680750633',NULL,NULL,'Margaret','','Cruz',1,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Mrs. Margaret Cruz',NULL,1,'1956-02-09',0,NULL,NULL,NULL,'Kentucky Literacy Network',NULL,NULL,103,0,NULL,'2013-02-26 05:18:38'),(67,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Beula','Mrs. Beula Cruz',NULL,NULL,NULL,'4',NULL,'Both','-779610755',NULL,NULL,'Beula','','Cruz',1,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Mrs. Beula Cruz',NULL,NULL,'1990-03-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:32'),(68,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Barkley-Zope family','Barkley-Zope family',NULL,NULL,NULL,'4',NULL,'Both','-2051470717',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Barkley-Zope family',5,NULL,'Dear Barkley-Zope family',2,NULL,'Barkley-Zope family',NULL,NULL,NULL,0,NULL,'Barkley-Zope family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:36'),(69,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Dimitrov, Kenny','Kenny Dimitrov III',NULL,NULL,NULL,NULL,NULL,'Both','-1596099917',NULL,NULL,'Kenny','','Dimitrov',NULL,4,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Dimitrov III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:19'),(70,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Bachman, Magan','Magan Bachman',NULL,NULL,NULL,'1',NULL,'Both','177125687',NULL,NULL,'Magan','O','Bachman',NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Bachman',NULL,NULL,NULL,1,'2012-10-10',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:25'),(71,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jones, Junko','Dr. Junko Jones',NULL,NULL,NULL,'4',NULL,'Both','-1040780468',NULL,NULL,'Junko','M','Jones',4,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Dr. Junko Jones',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:20'),(72,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Ashlie','Ms. Ashlie Parker',NULL,NULL,NULL,NULL,NULL,'Both','1516256819',NULL,NULL,'Ashlie','','Parker',2,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ms. Ashlie Parker',NULL,NULL,'1951-05-20',0,NULL,NULL,NULL,'Woodbridge Agriculture Network',NULL,NULL,38,0,NULL,'2013-02-26 05:18:39'),(73,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Craig','Craig Adams',NULL,NULL,NULL,'4',NULL,'Both','2128666326',NULL,NULL,'Craig','','Adams',NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Adams',NULL,2,'1963-08-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:32'),(74,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Dimitrov, Kathlyn','Kathlyn Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','-360045861',NULL,NULL,'Kathlyn','L','Dimitrov',NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Kathlyn Dimitrov',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:30'),(75,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Lee, Jina','Jina Lee',NULL,NULL,NULL,'3',NULL,'Both','1558289528',NULL,NULL,'Jina','K','Lee',NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Lee',NULL,1,'1966-06-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:34'),(76,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Herminia','Herminia Deforest',NULL,NULL,NULL,'2',NULL,'Both','1898104374',NULL,NULL,'Herminia','R','Deforest',NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Deforest',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:23'),(77,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley-Zope, Carylon','Dr. Carylon Barkley-Zope',NULL,NULL,NULL,'2',NULL,'Both','-1242480910',NULL,NULL,'Carylon','J','Barkley-Zope',4,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Dr. Carylon Barkley-Zope',NULL,1,'1977-04-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:34'),(78,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Parker, Josefa','Dr. Josefa Parker',NULL,NULL,NULL,NULL,NULL,'Both','-1651800140',NULL,NULL,'Josefa','','Parker',4,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Dr. Josefa Parker',NULL,1,NULL,0,NULL,NULL,NULL,'Rural Arts Initiative',NULL,NULL,200,0,NULL,'2013-02-26 05:18:39'),(79,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'eleonorterrell41@testing.co.pl','eleonorterrell41@testing.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','-420047573',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear eleonorterrell41@testing.co.pl',1,NULL,'Dear eleonorterrell41@testing.co.pl',1,NULL,'eleonorterrell41@testing.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:24'),(80,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Parker, Maxwell','Maxwell Parker',NULL,NULL,NULL,'3',NULL,'Both','-1626206461',NULL,NULL,'Maxwell','','Parker',NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Parker',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:29'),(81,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cruz, Laree','Dr. Laree Cruz',NULL,NULL,NULL,'5',NULL,'Both','842683806',NULL,NULL,'Laree','','Cruz',4,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Dr. Laree Cruz',NULL,NULL,'1944-06-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:20'),(82,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Utah Sustainability Alliance','Utah Sustainability Alliance',NULL,NULL,NULL,NULL,NULL,'Both','2096684577',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Utah Sustainability Alliance',NULL,NULL,NULL,0,NULL,NULL,NULL,'Utah Sustainability Alliance',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:38'),(83,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cruz-Parker, Santina','Santina Cruz-Parker',NULL,NULL,NULL,NULL,NULL,'Both','992595415',NULL,NULL,'Santina','B','Cruz-Parker',NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Cruz-Parker',NULL,1,'1974-12-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:31'),(84,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Lennox Poetry Services','Lennox Poetry Services',NULL,NULL,NULL,'4',NULL,'Both','-2056716563',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Lennox Poetry Services',NULL,NULL,NULL,0,NULL,NULL,178,'Lennox Poetry Services',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:38'),(85,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Parker, Winford','Winford Parker Sr.',NULL,NULL,NULL,'5',NULL,'Both','1625763341',NULL,NULL,'Winford','','Parker',NULL,2,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Parker Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:31'),(86,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Smith family','Smith family',NULL,NULL,NULL,'3',NULL,'Both','-212194651',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Smith family',5,NULL,'Dear Smith family',2,NULL,'Smith family',NULL,NULL,NULL,0,NULL,'Smith family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:36'),(87,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'González family','González family',NULL,NULL,NULL,'4',NULL,'Both','-1031243538',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear González family',5,NULL,'Dear González family',2,NULL,'González family',NULL,NULL,NULL,0,NULL,'González family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:35'),(88,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Esta','Dr. Esta Cruz',NULL,NULL,NULL,'1',NULL,'Both','-556902812',NULL,NULL,'Esta','','Cruz',4,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Dr. Esta Cruz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:32'),(89,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'González, Laree','Ms. Laree González',NULL,NULL,NULL,'3',NULL,'Both','2048787569',NULL,NULL,'Laree','I','González',2,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Ms. Laree González',NULL,1,'1957-09-29',1,'2012-09-20',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:31'),(90,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wagner-Dimitrov, Carylon','Dr. Carylon Wagner-Dimitrov',NULL,NULL,NULL,'2',NULL,'Both','221409772',NULL,NULL,'Carylon','T','Wagner-Dimitrov',4,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Dr. Carylon Wagner-Dimitrov',NULL,1,'1992-02-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:30'),(91,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Parker family','Parker family',NULL,NULL,NULL,'3',NULL,'Both','425242179',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Parker family',5,NULL,'Dear Parker family',2,NULL,'Parker family',NULL,NULL,NULL,0,NULL,'Parker family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:35'),(92,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'González, Errol','Dr. Errol González',NULL,NULL,NULL,'5',NULL,'Both','-1231958433',NULL,NULL,'Errol','','González',4,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Dr. Errol González',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:21'),(93,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Deforest, Mei','Ms. Mei Deforest',NULL,NULL,NULL,'5',NULL,'Both','-1577824134',NULL,NULL,'Mei','E','Deforest',2,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Ms. Mei Deforest',NULL,NULL,'1931-06-11',1,'2012-04-06',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:19'),(94,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Łąchowski, Delana','Delana Łąchowski',NULL,NULL,NULL,'4',NULL,'Both','-1241203606',NULL,NULL,'Delana','A','Łąchowski',NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Łąchowski',NULL,NULL,'1992-06-30',0,NULL,NULL,NULL,'Friends Sports Fund',NULL,NULL,59,0,NULL,'2013-02-26 05:18:38'),(95,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Müller, Laree','Laree Müller',NULL,NULL,NULL,'3',NULL,'Both','-55949946',NULL,NULL,'Laree','Q','Müller',NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Laree Müller',NULL,NULL,'1979-11-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:27'),(96,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'States Software Center','States Software Center',NULL,NULL,NULL,'5',NULL,'Both','1787771625',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'States Software Center',NULL,NULL,NULL,0,NULL,NULL,118,'States Software Center',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:37'),(97,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Rebekah','Rebekah Jones',NULL,NULL,NULL,'5',NULL,'Both','1945051638',NULL,NULL,'Rebekah','G','Jones',NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Rebekah Jones',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:27'),(98,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Deforest-Samuels, Toby','Toby Deforest-Samuels',NULL,NULL,NULL,'2',NULL,'Both','283185265',NULL,NULL,'Toby','V','Deforest-Samuels',NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Toby Deforest-Samuels',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:29'),(99,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'McReynolds-Bachman family','McReynolds-Bachman family',NULL,NULL,NULL,'5',NULL,'Both','43867661',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear McReynolds-Bachman family',5,NULL,'Dear McReynolds-Bachman family',2,NULL,'McReynolds-Bachman family',NULL,NULL,NULL,0,NULL,'McReynolds-Bachman family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:35'),(100,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Rebekah','Rebekah Díaz',NULL,NULL,NULL,'3',NULL,'Both','1512894919',NULL,NULL,'Rebekah','O','Díaz',NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Rebekah Díaz',NULL,1,'1948-04-08',1,'2012-02-27',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:20'),(101,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Omar','Dr. Omar Yadav III',NULL,NULL,NULL,NULL,NULL,'Both','874321976',NULL,NULL,'Omar','','Yadav',4,4,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Dr. Omar Yadav III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:25'),(102,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cruz, Errol','Dr. Errol Cruz II',NULL,NULL,NULL,NULL,NULL,'Both','-21651536',NULL,NULL,'Errol','U','Cruz',4,3,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Dr. Errol Cruz II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:32'),(103,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Kentucky Literacy Network','Kentucky Literacy Network',NULL,NULL,NULL,'3',NULL,'Both','1959870759',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Kentucky Literacy Network',NULL,NULL,NULL,0,NULL,NULL,66,'Kentucky Literacy Network',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:38'),(104,'Household',NULL,0,1,0,0,1,0,NULL,NULL,'Grant family','Grant family',NULL,NULL,NULL,'3',NULL,'Both','-1066966956',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,'2013-02-26 05:18:35'),(105,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Blackwell, Daren','Daren Blackwell Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-1595114320',NULL,NULL,'Daren','C','Blackwell',NULL,2,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Blackwell Sr.',NULL,2,'1965-04-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:24'),(106,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Jacob','Mr. Jacob Ivanov III',NULL,NULL,NULL,'4',NULL,'Both','-592783687',NULL,NULL,'Jacob','','Ivanov',3,4,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Mr. Jacob Ivanov III',NULL,2,'1961-06-08',1,'2012-05-05',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:15'),(107,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Margaret','Ms. Margaret Jensen',NULL,NULL,NULL,'4',NULL,'Both','198729910',NULL,NULL,'Margaret','V','Jensen',2,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Ms. Margaret Jensen',NULL,1,'1927-02-19',1,'2013-01-28',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:19'),(108,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Dimitrov-Grant, Justina','Justina Dimitrov-Grant',NULL,NULL,NULL,'1',NULL,'Both','-580651418',NULL,NULL,'Justina','','Dimitrov-Grant',NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Dimitrov-Grant',NULL,NULL,'1959-09-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:30'),(109,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Laree','Laree McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','206927507',NULL,NULL,'Laree','','McReynolds',NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Laree McReynolds',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:23'),(110,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terrell, Bryon','Mr. Bryon Terrell III',NULL,NULL,NULL,NULL,NULL,'Both','1742337325',NULL,NULL,'Bryon','','Terrell',3,4,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Mr. Bryon Terrell III',NULL,2,'1986-09-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:17'),(111,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Princess','Dr. Princess Samuels',NULL,NULL,NULL,'1',NULL,'Both','-1797635259',NULL,NULL,'Princess','','Samuels',4,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Dr. Princess Samuels',NULL,1,'1953-10-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:19'),(112,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Zope, Scarlet','Mrs. Scarlet Zope',NULL,NULL,NULL,'2',NULL,'Both','-986789315',NULL,NULL,'Scarlet','','Zope',1,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Mrs. Scarlet Zope',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:17'),(113,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Friends Education School','Friends Education School',NULL,NULL,NULL,'5',NULL,'Both','848731202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Education School',NULL,NULL,NULL,0,NULL,NULL,148,'Friends Education School',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:40'),(114,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Ivanov, Brent','Brent Ivanov III',NULL,NULL,NULL,NULL,NULL,'Both','1194630571',NULL,NULL,'Brent','','Ivanov',NULL,4,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Ivanov III',NULL,2,NULL,0,NULL,NULL,NULL,'Woburn Music Academy',NULL,NULL,127,0,NULL,'2013-02-26 05:18:40'),(115,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Zope, Junko','Ms. Junko Zope',NULL,NULL,NULL,NULL,NULL,'Both','-510891860',NULL,NULL,'Junko','','Zope',2,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Ms. Junko Zope',NULL,NULL,'1973-01-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:33'),(116,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'jamesonm@fishmail.info','jamesonm@fishmail.info',NULL,NULL,NULL,'3',NULL,'Both','-941871195',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jamesonm@fishmail.info',1,NULL,'Dear jamesonm@fishmail.info',1,NULL,'jamesonm@fishmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:34'),(117,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Jay','Mr. Jay Barkley Jr.',NULL,NULL,NULL,'1',NULL,'Both','-460615480',NULL,NULL,'Jay','','Barkley',3,1,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Mr. Jay Barkley Jr.',NULL,NULL,'1947-06-22',1,'2012-12-12',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:19'),(118,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Jackson','Dr. Jackson Patel II',NULL,NULL,NULL,'4',NULL,'Both','2060230662',NULL,NULL,'Jackson','','Patel',4,3,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Dr. Jackson Patel II',NULL,2,NULL,0,NULL,NULL,NULL,'States Software Center',NULL,NULL,96,0,NULL,'2013-02-26 05:18:37'),(119,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'patel.rodrigo@spamalot.net','patel.rodrigo@spamalot.net',NULL,NULL,NULL,'1',NULL,'Both','-1404992717',NULL,NULL,NULL,NULL,NULL,3,2,1,NULL,'Dear patel.rodrigo@spamalot.net',1,NULL,'Dear patel.rodrigo@spamalot.net',1,NULL,'patel.rodrigo@spamalot.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:18'),(120,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'El Camino Wellness Partners','El Camino Wellness Partners',NULL,NULL,NULL,'2',NULL,'Both','-1127284251',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'El Camino Wellness Partners',NULL,NULL,NULL,0,NULL,NULL,7,'El Camino Wellness Partners',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:39'),(121,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'reynoldsj23@testing.co.pl','reynoldsj23@testing.co.pl',NULL,NULL,NULL,'5',NULL,'Both','662808785',NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,'Dear reynoldsj23@testing.co.pl',1,NULL,'Dear reynoldsj23@testing.co.pl',1,NULL,'reynoldsj23@testing.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:18'),(122,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Roland','Roland González',NULL,NULL,NULL,NULL,NULL,'Both','1836226899',NULL,NULL,'Roland','','González',NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland González',NULL,NULL,'1969-12-15',1,'2012-08-07',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:31'),(123,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Smith, Rosario','Dr. Rosario Smith',NULL,NULL,NULL,'5',NULL,'Both','701125213',NULL,NULL,'Rosario','','Smith',4,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Dr. Rosario Smith',NULL,NULL,'1979-05-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:31'),(124,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson, Winford','Dr. Winford Jameson',NULL,NULL,NULL,NULL,NULL,'Both','-1028209889',NULL,NULL,'Winford','','Jameson',4,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Dr. Winford Jameson',NULL,2,'1957-11-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:34'),(125,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Betty','Ms. Betty Bachman',NULL,NULL,NULL,'4',NULL,'Both','-1380268213',NULL,NULL,'Betty','','Bachman',2,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Ms. Betty Bachman',NULL,1,'1947-01-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:18'),(126,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Barkley-Zope, Irvin','Irvin Barkley-Zope II',NULL,NULL,NULL,'3',NULL,'Both','-1962066107',NULL,NULL,'Irvin','','Barkley-Zope',NULL,3,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Irvin Barkley-Zope II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:34'),(127,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Woburn Music Academy','Woburn Music Academy',NULL,NULL,NULL,NULL,NULL,'Both','2630560',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Woburn Music Academy',NULL,NULL,NULL,0,NULL,NULL,114,'Woburn Music Academy',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:40'),(128,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Betty','Dr. Betty Roberts',NULL,NULL,NULL,NULL,NULL,'Both','-1231876258',NULL,NULL,'Betty','','Roberts',4,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Dr. Betty Roberts',NULL,1,'1930-08-01',1,'2013-01-22',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:23'),(129,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Adams, Justina','Justina Adams',NULL,NULL,NULL,NULL,NULL,'Both','206304627',NULL,NULL,'Justina','','Adams',NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Adams',NULL,NULL,'1966-05-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:32'),(130,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner-Dimitrov, Sanford','Sanford Wagner-Dimitrov Jr.',NULL,NULL,NULL,'4',NULL,'Both','-629544141',NULL,NULL,'Sanford','','Wagner-Dimitrov',NULL,1,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Wagner-Dimitrov Jr.',NULL,2,'1995-05-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:30'),(131,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Brzęczysław','Brzęczysław Smith Sr.',NULL,NULL,NULL,'3',NULL,'Both','-530646570',NULL,NULL,'Brzęczysław','X','Smith',NULL,2,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Smith Sr.',NULL,NULL,'1934-12-01',1,'2012-05-16',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:17'),(132,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Nielsen, Bryon','Dr. Bryon Nielsen Sr.',NULL,NULL,NULL,'3',NULL,'Both','164626710',NULL,NULL,'Bryon','C','Nielsen',4,2,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Dr. Bryon Nielsen Sr.',NULL,2,'1977-12-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:15'),(133,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wattson, Sherman','Mr. Sherman Wattson',NULL,NULL,NULL,NULL,NULL,'Both','-1717012186',NULL,NULL,'Sherman','T','Wattson',3,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Mr. Sherman Wattson',NULL,2,NULL,1,'2012-12-14',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:17'),(134,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Rodrigo','Rodrigo Cruz',NULL,NULL,NULL,NULL,NULL,'Both','1681182976',NULL,NULL,'Rodrigo','','Cruz',NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Cruz',NULL,NULL,'1991-03-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:21'),(135,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Mississippi Advocacy Partnership','Mississippi Advocacy Partnership',NULL,NULL,NULL,'2',NULL,'Both','717166376',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Mississippi Advocacy Partnership',NULL,NULL,NULL,0,NULL,NULL,176,'Mississippi Advocacy Partnership',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:37'),(136,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Ashlie','Mrs. Ashlie Adams',NULL,NULL,NULL,NULL,NULL,'Both','368887089',NULL,NULL,'Ashlie','','Adams',1,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Mrs. Ashlie Adams',NULL,1,'1984-06-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:16'),(137,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Samuels, Santina','Santina Samuels',NULL,NULL,NULL,NULL,NULL,'Both','-1780048438',NULL,NULL,'Santina','P','Samuels',NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Samuels',NULL,1,'1962-01-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:29'),(138,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'valene@spamalot.net','valene@spamalot.net',NULL,NULL,NULL,NULL,NULL,'Both','1590050514',NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,'Dear valene@spamalot.net',1,NULL,'Dear valene@spamalot.net',1,NULL,'valene@spamalot.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:35'),(139,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Sierra Empowerment Association','Sierra Empowerment Association',NULL,NULL,NULL,'2',NULL,'Both','-2076690433',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Sierra Empowerment Association',NULL,NULL,NULL,0,NULL,NULL,20,'Sierra Empowerment Association',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:39'),(140,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Müller family','Müller family',NULL,NULL,NULL,NULL,NULL,'Both','1144797465',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,'2013-02-26 05:18:35'),(141,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Global Wellness Trust','Global Wellness Trust',NULL,NULL,NULL,'3',NULL,'Both','43589731',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Wellness Trust',NULL,NULL,NULL,0,NULL,NULL,NULL,'Global Wellness Trust',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:37'),(142,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Craig','Craig Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','-1412942415',NULL,NULL,'Craig','','Łąchowski',NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Łąchowski',NULL,2,'1956-03-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:34'),(143,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Ivey','Ivey Jensen',NULL,NULL,NULL,NULL,NULL,'Both','-216248746',NULL,NULL,'Ivey','','Jensen',NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Jensen',NULL,NULL,'1991-11-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:26'),(144,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Müller, Troy','Troy Müller',NULL,NULL,NULL,NULL,NULL,'Both','2080888850',NULL,NULL,'Troy','N','Müller',NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Müller',NULL,2,'1941-11-29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:20'),(145,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'deforest.heidi@testmail.co.pl','deforest.heidi@testmail.co.pl',NULL,NULL,NULL,'2',NULL,'Both','-1434717929',NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,'Dear deforest.heidi@testmail.co.pl',1,NULL,'Dear deforest.heidi@testmail.co.pl',1,NULL,'deforest.heidi@testmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:21'),(146,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker-Wilson, Brittney','Brittney Parker-Wilson',NULL,NULL,NULL,NULL,NULL,'Both','-594092167',NULL,NULL,'Brittney','F','Parker-Wilson',NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Parker-Wilson',NULL,NULL,'1995-09-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:29'),(147,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Parker family','Parker family',NULL,NULL,NULL,NULL,NULL,'Both','425242179',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Parker family',5,NULL,'Dear Parker family',2,NULL,'Parker family',NULL,NULL,NULL,0,NULL,'Parker family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:36'),(148,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Ivey','Dr. Ivey Jensen',NULL,NULL,NULL,NULL,NULL,'Both','-216248746',NULL,NULL,'Ivey','G','Jensen',4,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Dr. Ivey Jensen',NULL,1,'1955-05-14',1,'2012-07-31',NULL,NULL,'Friends Education School',NULL,NULL,113,0,NULL,'2013-02-26 05:18:40'),(149,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'delanaparker@testmail.com','delanaparker@testmail.com',NULL,NULL,NULL,'5',NULL,'Both','-1653865360',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear delanaparker@testmail.com',1,NULL,'Dear delanaparker@testmail.com',1,NULL,'delanaparker@testmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,'Illinois Sustainability Center',NULL,NULL,39,0,NULL,'2013-02-26 05:18:36'),(150,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Jina','Mrs. Jina Terry',NULL,NULL,NULL,NULL,NULL,'Both','506826080',NULL,NULL,'Jina','','Terry',1,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Mrs. Jina Terry',NULL,1,'1926-05-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:23'),(151,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Toby','Mr. Toby Ivanov',NULL,NULL,NULL,'3',NULL,'Both','606506972',NULL,NULL,'Toby','D','Ivanov',3,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Mr. Toby Ivanov',NULL,2,'1941-01-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:16'),(152,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Litchfield Literacy Partnership','Litchfield Literacy Partnership',NULL,NULL,NULL,NULL,NULL,'Both','1626427867',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Litchfield Literacy Partnership',NULL,NULL,NULL,0,NULL,NULL,190,'Litchfield Literacy Partnership',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:40'),(153,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds-Bachman, Delana','Delana McReynolds-Bachman',NULL,NULL,NULL,NULL,NULL,'Both','-1142672865',NULL,NULL,'Delana','T','McReynolds-Bachman',NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana McReynolds-Bachman',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:30'),(154,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Sharyn','Dr. Sharyn McReynolds',NULL,NULL,NULL,'2',NULL,'Both','1394669244',NULL,NULL,'Sharyn','J','McReynolds',4,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Dr. Sharyn McReynolds',NULL,NULL,'1946-05-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:17'),(155,'Household',NULL,0,1,0,0,1,0,NULL,NULL,'Cruz family','Cruz family',NULL,NULL,NULL,'1',NULL,'Both','-1968428799',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,'2013-02-26 05:18:36'),(156,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Toby','Mr. Toby Bachman',NULL,NULL,NULL,'5',NULL,'Both','-924239414',NULL,NULL,'Toby','E','Bachman',3,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Mr. Toby Bachman',NULL,2,'1978-12-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:16'),(157,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Betty','Dr. Betty Müller',NULL,NULL,NULL,'3',NULL,'Both','-1884459171',NULL,NULL,'Betty','','Müller',4,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Dr. Betty Müller',NULL,1,NULL,1,'2012-08-07',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:21'),(158,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Allen','Allen Bachman II',NULL,NULL,NULL,'2',NULL,'Both','1429054990',NULL,NULL,'Allen','B','Bachman',NULL,3,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Allen Bachman II',NULL,NULL,'1964-09-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:30'),(159,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Craig','Craig Olsen',NULL,NULL,NULL,NULL,NULL,'Both','1378827194',NULL,NULL,'Craig','E','Olsen',NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Olsen',NULL,2,'1954-07-09',1,'2012-04-23',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:28'),(160,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'González, Clint','Clint González Jr.',NULL,NULL,NULL,NULL,NULL,'Both','-1827406123',NULL,NULL,'Clint','','González',NULL,1,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint González Jr.',NULL,NULL,'1950-09-09',1,'2012-11-20',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:31'),(161,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Ivey','Ivey Jameson',NULL,NULL,NULL,'2',NULL,'Both','-1171308358',NULL,NULL,'Ivey','','Jameson',NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Jameson',NULL,1,'1950-07-31',1,'2013-02-19',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:34'),(162,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Clint','Clint Wagner Jr.',NULL,NULL,NULL,'4',NULL,'Both','205032941',NULL,NULL,'Clint','K','Wagner',NULL,1,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Wagner Jr.',NULL,2,'1983-09-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:25'),(163,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Samuels-Parker, Merrie','Ms. Merrie Samuels-Parker',NULL,NULL,NULL,NULL,NULL,'Both','-1945746160',NULL,NULL,'Merrie','X','Samuels-Parker',2,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Ms. Merrie Samuels-Parker',NULL,NULL,'1971-10-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:28'),(164,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Ray','Ray Samuels II',NULL,NULL,NULL,'1',NULL,'Both','-118948469',NULL,NULL,'Ray','','Samuels',NULL,3,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Samuels II',NULL,NULL,'1962-04-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:21'),(165,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Olsen-Roberts family','Olsen-Roberts family',NULL,NULL,NULL,'2',NULL,'Both','-1461509078',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Olsen-Roberts family',5,NULL,'Dear Olsen-Roberts family',2,NULL,'Olsen-Roberts family',NULL,NULL,NULL,0,NULL,'Olsen-Roberts family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:35'),(166,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Alexia','Alexia Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','1389353396',NULL,NULL,'Alexia','','Reynolds',NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Reynolds',NULL,NULL,'1973-01-26',0,NULL,NULL,NULL,'El Camino Culture Association',NULL,NULL,52,0,NULL,'2013-02-26 05:18:37'),(167,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Deforest, Lawerence','Mr. Lawerence Deforest Jr.',NULL,NULL,NULL,'3',NULL,'Both','-1332450644',NULL,NULL,'Lawerence','N','Deforest',3,1,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Mr. Lawerence Deforest Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:29'),(168,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Delana','Dr. Delana Parker',NULL,NULL,NULL,NULL,NULL,'Both','714840952',NULL,NULL,'Delana','','Parker',4,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Dr. Delana Parker',NULL,1,'1985-12-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:17'),(169,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Łąchowski-Lee family','Łąchowski-Lee family',NULL,NULL,NULL,'4',NULL,'Both','-1686370975',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Łąchowski-Lee family',5,NULL,'Dear Łąchowski-Lee family',2,NULL,'Łąchowski-Lee family',NULL,NULL,NULL,0,NULL,'Łąchowski-Lee family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:36'),(170,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'mllera40@example.com','mllera40@example.com',NULL,NULL,NULL,'2',NULL,'Both','-1700623382',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'Dear mllera40@example.com',1,NULL,'Dear mllera40@example.com',1,NULL,'mllera40@example.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:27'),(171,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jones family','Jones family',NULL,NULL,NULL,NULL,NULL,'Both','1110516799',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,'2013-02-26 05:18:35'),(172,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Sierra Music Solutions','Sierra Music Solutions',NULL,NULL,NULL,NULL,NULL,'Both','237111497',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Sierra Music Solutions',NULL,NULL,NULL,0,NULL,NULL,NULL,'Sierra Music Solutions',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:40'),(173,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Kathleen','Ms. Kathleen Smith',NULL,NULL,NULL,NULL,NULL,'Both','219575839',NULL,NULL,'Kathleen','','Smith',2,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Ms. Kathleen Smith',NULL,1,'1973-04-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:26'),(174,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Clint','Dr. Clint Grant Jr.',NULL,NULL,NULL,NULL,NULL,'Both','-1845696913',NULL,NULL,'Clint','','Grant',4,1,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Dr. Clint Grant Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:30'),(175,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Fort Pierce Wellness Center','Fort Pierce Wellness Center',NULL,NULL,NULL,NULL,NULL,'Both','-1582701567',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Fort Pierce Wellness Center',NULL,NULL,NULL,0,NULL,NULL,NULL,'Fort Pierce Wellness Center',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:36'),(176,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Ashley','Ashley Adams III',NULL,NULL,NULL,'4',NULL,'Both','-1387735438',NULL,NULL,'Ashley','','Adams',NULL,4,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Adams III',NULL,2,'1991-03-17',0,NULL,NULL,NULL,'Mississippi Advocacy Partnership',NULL,NULL,135,0,NULL,'2013-02-26 05:18:37'),(177,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'parker.carylon@infomail.net','parker.carylon@infomail.net',NULL,NULL,NULL,'2',NULL,'Both','1292175188',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear parker.carylon@infomail.net',1,NULL,'Dear parker.carylon@infomail.net',1,NULL,'parker.carylon@infomail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:28'),(178,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jones, Sanford','Sanford Jones',NULL,NULL,NULL,'4',NULL,'Both','-165900322',NULL,NULL,'Sanford','K','Jones',NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Jones',NULL,NULL,'1966-11-20',0,NULL,NULL,NULL,'Lennox Poetry Services',NULL,NULL,84,0,NULL,'2013-02-26 05:18:38'),(179,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Brent','Brent Jones',NULL,NULL,NULL,NULL,NULL,'Both','-1760144772',NULL,NULL,'Brent','E','Jones',NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Jones',NULL,NULL,'1954-01-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:17'),(180,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Blackwell, Lou','Mr. Lou Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','-1769798448',NULL,NULL,'Lou','','Blackwell',3,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Mr. Lou Blackwell',NULL,2,'1971-03-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:15'),(181,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'carlossamson@testmail.biz','carlossamson@testmail.biz',NULL,NULL,NULL,'2',NULL,'Both','-1986966639',NULL,NULL,NULL,NULL,NULL,3,NULL,1,NULL,'Dear carlossamson@testmail.biz',1,NULL,'Dear carlossamson@testmail.biz',1,NULL,'carlossamson@testmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:32'),(182,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Kandace','Ms. Kandace Deforest',NULL,NULL,NULL,NULL,NULL,'Both','1547944287',NULL,NULL,'Kandace','C','Deforest',2,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Ms. Kandace Deforest',NULL,1,'1966-08-07',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:25'),(183,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Grant, Clint','Clint Grant III',NULL,NULL,NULL,NULL,NULL,'Both','-1845696913',NULL,NULL,'Clint','','Grant',NULL,4,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Grant III',NULL,2,'1972-08-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:30'),(184,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Toby','Toby González Jr.',NULL,NULL,NULL,'4',NULL,'Both','-1161513556',NULL,NULL,'Toby','','González',NULL,1,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Toby González Jr.',NULL,2,'1993-11-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:31'),(185,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Łąchowski-Lee, Kandace','Dr. Kandace Łąchowski-Lee',NULL,NULL,NULL,NULL,NULL,'Both','1312101049',NULL,NULL,'Kandace','R','Łąchowski-Lee',4,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Dr. Kandace Łąchowski-Lee',NULL,1,'1974-12-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:35'),(186,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'ivanov.b.toby@testmail.co.uk','ivanov.b.toby@testmail.co.uk',NULL,NULL,NULL,'1',NULL,'Both','409212379',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear ivanov.b.toby@testmail.co.uk',1,NULL,'Dear ivanov.b.toby@testmail.co.uk',1,NULL,'ivanov.b.toby@testmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:19'),(187,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Kathlyn','Mrs. Kathlyn Jones',NULL,NULL,NULL,'4',NULL,'Both','1774529515',NULL,NULL,'Kathlyn','N','Jones',1,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Mrs. Kathlyn Jones',NULL,NULL,'1956-06-17',1,'2012-08-11',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:25'),(188,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samuels, Bob','Bob Samuels Jr.',NULL,NULL,NULL,'1',NULL,'Both','-265766247',NULL,NULL,'Bob','','Samuels',NULL,1,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Samuels Jr.',NULL,2,NULL,0,NULL,NULL,NULL,'Local Literacy Partnership',NULL,NULL,37,0,NULL,'2013-02-26 05:18:38'),(189,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terry, Margaret','Margaret Terry',NULL,NULL,NULL,NULL,NULL,'Both','-222156360',NULL,NULL,'Margaret','Q','Terry',NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Terry',NULL,NULL,'1988-01-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:23'),(190,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'parker.landon@airmail.net','parker.landon@airmail.net',NULL,NULL,NULL,NULL,NULL,'Both','1766377009',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'Dear parker.landon@airmail.net',1,NULL,'Dear parker.landon@airmail.net',1,NULL,'parker.landon@airmail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,'Litchfield Literacy Partnership',NULL,NULL,152,0,NULL,'2013-02-26 05:18:40'),(191,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'North Carolina Agriculture Collective','North Carolina Agriculture Collective',NULL,NULL,NULL,NULL,NULL,'Both','-491530714',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'North Carolina Agriculture Collective',NULL,NULL,NULL,0,NULL,NULL,NULL,'North Carolina Agriculture Collective',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:38'),(192,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Lou','Dr. Lou Díaz III',NULL,NULL,NULL,'4',NULL,'Both','1546158286',NULL,NULL,'Lou','T','Díaz',4,4,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Dr. Lou Díaz III',NULL,2,'1946-08-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:24'),(193,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'py.grant@testing.biz','py.grant@testing.biz',NULL,NULL,NULL,'2',NULL,'Both','1333773161',NULL,NULL,NULL,NULL,NULL,2,NULL,1,NULL,'Dear py.grant@testing.biz',1,NULL,'Dear py.grant@testing.biz',1,NULL,'py.grant@testing.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:20'),(194,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Samson family','Samson family',NULL,NULL,NULL,'1',NULL,'Both','333421926',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,'2013-02-26 05:18:36'),(195,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Smith, Winford','Winford Smith',NULL,NULL,NULL,'4',NULL,'Both','-2112432292',NULL,NULL,'Winford','V','Smith',NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Smith',NULL,2,'1971-04-12',1,'2012-03-22',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:26'),(196,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Prentice, Rebekah','Ms. Rebekah Prentice',NULL,NULL,NULL,NULL,NULL,'Both','961021134',NULL,NULL,'Rebekah','','Prentice',2,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Ms. Rebekah Prentice',NULL,1,'1975-10-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:21'),(197,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Jed','Jed Jones Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-204849088',NULL,NULL,'Jed','R','Jones',NULL,2,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Jones Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:20'),(198,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Allan','Dr. Allan Smith Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-1540302688',NULL,NULL,'Allan','','Smith',4,2,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Dr. Allan Smith Sr.',NULL,2,'1988-12-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:31'),(199,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest-Samuels, Winford','Winford Deforest-Samuels',NULL,NULL,NULL,NULL,NULL,'Both','165378746',NULL,NULL,'Winford','','Deforest-Samuels',NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Deforest-Samuels',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:29'),(200,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Rural Arts Initiative','Rural Arts Initiative',NULL,NULL,NULL,NULL,NULL,'Both','-1855314564',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rural Arts Initiative',NULL,NULL,NULL,0,NULL,NULL,78,'Rural Arts Initiative',NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:39'),(201,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Wagner, Brent','Dr. Brent Wagner III',NULL,NULL,NULL,'3',NULL,'Both','-2004583019',NULL,NULL,'Brent','P','Wagner',4,4,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Dr. Brent Wagner III',NULL,2,'1944-03-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-02-26 05:18:29'); +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`, `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,0,NULL,NULL,NULL,'Default Organization',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:21'),(2,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Carylon','Carylon Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','2719489073',NULL,NULL,'Carylon','N','Dimitrov',NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Dimitrov',NULL,1,'1992-03-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(3,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Lincoln','Lincoln Zope III',NULL,NULL,NULL,NULL,NULL,'Both','2972737085',NULL,NULL,'Lincoln','','Zope',NULL,4,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Lincoln Zope III',NULL,NULL,'1976-05-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(4,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'beulag@notmail.biz','beulag@notmail.biz',NULL,NULL,NULL,'2',NULL,'Both','1741461965',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear beulag@notmail.biz',1,NULL,'Dear beulag@notmail.biz',1,NULL,'beulag@notmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(5,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Troy','Troy Zope Sr.',NULL,NULL,NULL,NULL,NULL,'Both','3534860834',NULL,NULL,'Troy','','Zope',NULL,2,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Zope Sr.',NULL,NULL,'1966-02-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(6,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Troy','Troy Jameson',NULL,NULL,NULL,'4',NULL,'Both','3854208942',NULL,NULL,'Troy','','Jameson',NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Jameson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(7,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov family','Ivanov family',NULL,NULL,NULL,'2',NULL,'Both','2450779112',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,'2013-03-01 18:55:38'),(8,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Ivanov, Lou','Lou Ivanov Jr.',NULL,NULL,NULL,NULL,NULL,'Both','211844515',NULL,NULL,'Lou','','Ivanov',NULL,1,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Ivanov Jr.',NULL,2,'1954-11-07',1,'2012-06-09',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(9,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'González, Teresa','Teresa González',NULL,NULL,NULL,'2',NULL,'Both','3377623564',NULL,NULL,'Teresa','','González',NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa González',NULL,NULL,'1995-01-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(10,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Princess','Princess Müller',NULL,NULL,NULL,'3',NULL,'Both','1686008496',NULL,NULL,'Princess','S','Müller',NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Müller',NULL,1,'1975-02-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(11,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wilson, Kenny','Kenny Wilson',NULL,NULL,NULL,'2',NULL,'Both','1945745030',NULL,NULL,'Kenny','S','Wilson',NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Wilson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:38'),(12,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Oakland Poetry Academy','Oakland Poetry Academy',NULL,NULL,NULL,'5',NULL,'Both','3875863186',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Oakland Poetry Academy',NULL,NULL,NULL,0,NULL,NULL,81,'Oakland Poetry Academy',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(13,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Díaz, Merrie','Merrie Díaz',NULL,NULL,NULL,'3',NULL,'Both','2834257935',NULL,NULL,'Merrie','Q','Díaz',NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Díaz',NULL,NULL,'1967-08-02',0,NULL,NULL,NULL,'Washington Music Systems',NULL,NULL,67,0,NULL,'2013-03-01 18:55:38'),(14,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Samuels family','Samuels family',NULL,NULL,NULL,'5',NULL,'Both','350459294',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samuels family',5,NULL,'Dear Samuels family',2,NULL,'Samuels family',NULL,NULL,NULL,0,NULL,'Samuels family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:38'),(15,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wattson, Mei','Mei Wattson',NULL,NULL,NULL,NULL,NULL,'Both','1845197516',NULL,NULL,'Mei','','Wattson',NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei Wattson',NULL,NULL,'1979-06-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(16,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Scarlet','Scarlet Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','2964954269',NULL,NULL,'Scarlet','S','Reynolds',NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Reynolds',NULL,NULL,'1999-02-17',0,NULL,NULL,NULL,'Pine Agriculture Network',NULL,NULL,42,0,NULL,'2013-03-01 18:55:38'),(17,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav-Barkley family','Yadav-Barkley family',NULL,NULL,NULL,NULL,NULL,'Both','62545664',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Yadav-Barkley family',5,NULL,'Dear Yadav-Barkley family',2,NULL,'Yadav-Barkley family',NULL,NULL,NULL,0,NULL,'Yadav-Barkley family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:38'),(18,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Baltimore Technology Alliance','Baltimore Technology Alliance',NULL,NULL,NULL,NULL,NULL,'Both','3553529245',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Baltimore Technology Alliance',NULL,NULL,NULL,0,NULL,NULL,165,'Baltimore Technology Alliance',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:38'),(19,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav family','Yadav family',NULL,NULL,NULL,NULL,NULL,'Both','1777336212',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,'2013-03-01 18:55:38'),(20,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Jensen, Angelika','Angelika Jensen',NULL,NULL,NULL,NULL,NULL,'Both','2460194929',NULL,NULL,'Angelika','K','Jensen',NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Jensen',NULL,1,'1981-03-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(21,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav family','Yadav family',NULL,NULL,NULL,'5',NULL,'Both','1777336212',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,'2013-03-01 18:55:38'),(22,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'sanfordy71@airmail.org','sanfordy71@airmail.org',NULL,NULL,NULL,'4',NULL,'Both','3834606861',NULL,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'Dear sanfordy71@airmail.org',1,NULL,'Dear sanfordy71@airmail.org',1,NULL,'sanfordy71@airmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(23,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'ab.yadav-barkley@testmail.net','ab.yadav-barkley@testmail.net',NULL,NULL,NULL,NULL,NULL,'Both','2404615934',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear ab.yadav-barkley@testmail.net',1,NULL,'Dear ab.yadav-barkley@testmail.net',1,NULL,'ab.yadav-barkley@testmail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(24,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Elbert','Elbert Zope',NULL,NULL,NULL,NULL,NULL,'Both','2036957323',NULL,NULL,'Elbert','L','Zope',NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Zope',NULL,2,'2004-07-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(25,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Nielsen, Alexia','Alexia Nielsen',NULL,NULL,NULL,'5',NULL,'Both','164186955',NULL,NULL,'Alexia','','Nielsen',NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Nielsen',NULL,1,'1949-11-30',0,NULL,NULL,NULL,'Beech Music Partners',NULL,NULL,26,0,NULL,'2013-03-01 18:55:39'),(26,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Beech Music Partners','Beech Music Partners',NULL,NULL,NULL,NULL,NULL,'Both','2792862197',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Beech Music Partners',NULL,NULL,NULL,0,NULL,NULL,25,'Beech Music Partners',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(27,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Junko','Junko Smith',NULL,NULL,NULL,'4',NULL,'Both','1889402326',NULL,NULL,'Junko','','Smith',NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko Smith',NULL,1,'1996-08-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(28,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Iowa Education Association','Iowa Education Association',NULL,NULL,NULL,NULL,NULL,'Both','208222581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Iowa Education Association',NULL,NULL,NULL,0,NULL,NULL,86,'Iowa Education Association',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(29,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Samuels, Iris','Dr. Iris Samuels',NULL,NULL,NULL,'3',NULL,'Both','2988876472',NULL,NULL,'Iris','','Samuels',4,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Dr. Iris Samuels',NULL,1,'1953-09-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(30,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Opheim Education Systems','Opheim Education Systems',NULL,NULL,NULL,'4',NULL,'Both','2208084455',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Opheim Education Systems',NULL,NULL,NULL,0,NULL,NULL,79,'Opheim Education Systems',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(31,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Jameson, Kiara','Kiara Jameson',NULL,NULL,NULL,'3',NULL,'Both','1442754095',NULL,NULL,'Kiara','L','Jameson',NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Jameson',NULL,1,'1984-08-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(32,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jensen, Ashley','Dr. Ashley Jensen',NULL,NULL,NULL,NULL,NULL,'Both','3241907591',NULL,NULL,'Ashley','','Jensen',4,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Dr. Ashley Jensen',NULL,1,'1928-07-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(33,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell-Reynolds, Scarlet','Scarlet Terrell-Reynolds',NULL,NULL,NULL,'1',NULL,'Both','2702886854',NULL,NULL,'Scarlet','M','Terrell-Reynolds',NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Terrell-Reynolds',NULL,1,'1999-01-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(34,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'gonzlez.esta@spamalot.co.in','gonzlez.esta@spamalot.co.in',NULL,NULL,NULL,'4',NULL,'Both','355201715',NULL,NULL,NULL,NULL,NULL,2,NULL,1,NULL,'Dear gonzlez.esta@spamalot.co.in',1,NULL,'Dear gonzlez.esta@spamalot.co.in',1,NULL,'gonzlez.esta@spamalot.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(35,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Zope, Lashawnda','Lashawnda Zope',NULL,NULL,NULL,'3',NULL,'Both','465899624',NULL,NULL,'Lashawnda','','Zope',NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Zope',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(36,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'United Poetry Network','United Poetry Network',NULL,NULL,NULL,'4',NULL,'Both','1160936390',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'United Poetry Network',NULL,NULL,NULL,0,NULL,NULL,201,'United Poetry Network',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(37,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Irvin','Mr. Irvin Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','3379867453',NULL,NULL,'Irvin','','Dimitrov',3,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Mr. Irvin Dimitrov',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(38,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Magan','Mrs. Magan Olsen',NULL,NULL,NULL,'1',NULL,'Both','440087476',NULL,NULL,'Magan','Z','Olsen',1,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Mrs. Magan Olsen',NULL,1,'1953-07-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(39,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Grant family','Grant family',NULL,NULL,NULL,'4',NULL,'Both','3228000340',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,'2013-03-01 18:55:38'),(40,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz-Ivanov, Kathlyn','Mrs. Kathlyn Díaz-Ivanov',NULL,NULL,NULL,'1',NULL,'Both','3871489314',NULL,NULL,'Kathlyn','R','Díaz-Ivanov',1,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Mrs. Kathlyn Díaz-Ivanov',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(41,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Blackwell, Kacey','Mrs. Kacey Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','3163269089',NULL,NULL,'Kacey','','Blackwell',1,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Mrs. Kacey Blackwell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(42,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Pine Agriculture Network','Pine Agriculture Network',NULL,NULL,NULL,'4',NULL,'Both','4247762355',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Pine Agriculture Network',NULL,NULL,NULL,0,NULL,NULL,16,'Pine Agriculture Network',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:38'),(43,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley family','Barkley family',NULL,NULL,NULL,'3',NULL,'Both','2888062109',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,'2013-03-01 18:55:38'),(44,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'jones.kenny80@testing.co.in','jones.kenny80@testing.co.in',NULL,NULL,NULL,'3',NULL,'Both','630365736',NULL,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'Dear jones.kenny80@testing.co.in',1,NULL,'Dear jones.kenny80@testing.co.in',1,NULL,'jones.kenny80@testing.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(45,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Beech Action Services','Beech Action Services',NULL,NULL,NULL,'2',NULL,'Both','2729511544',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Beech Action Services',NULL,NULL,NULL,0,NULL,NULL,63,'Beech Action Services',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(46,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Daren','Mr. Daren Dimitrov Sr.',NULL,NULL,NULL,NULL,NULL,'Both','3639899181',NULL,NULL,'Daren','','Dimitrov',3,2,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Mr. Daren Dimitrov Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(47,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Mikana Education Association','Mikana Education Association',NULL,NULL,NULL,'5',NULL,'Both','118441072',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Mikana Education Association',NULL,NULL,NULL,0,NULL,NULL,122,'Mikana Education Association',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:38'),(48,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Heidi','Heidi Parker',NULL,NULL,NULL,'4',NULL,'Both','3690123952',NULL,NULL,'Heidi','Y','Parker',NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Heidi Parker',NULL,1,'1994-09-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(49,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Barkley, Merrie','Merrie Barkley',NULL,NULL,NULL,'5',NULL,'Both','2327848642',NULL,NULL,'Merrie','T','Barkley',NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Barkley',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(50,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Adams, Winford','Winford Adams Jr.',NULL,NULL,NULL,'4',NULL,'Both','2393297882',NULL,NULL,'Winford','','Adams',NULL,1,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Adams Jr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(51,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samuels, Ashley','Mrs. Ashley Samuels',NULL,NULL,NULL,NULL,NULL,'Both','448477218',NULL,NULL,'Ashley','','Samuels',1,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mrs. Ashley Samuels',NULL,1,'1974-11-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(52,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Terrell, Alexia','Mrs. Alexia Terrell',NULL,NULL,NULL,'4',NULL,'Both','3098323867',NULL,NULL,'Alexia','','Terrell',1,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Mrs. Alexia Terrell',NULL,NULL,'1945-01-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(53,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Ashley','Mrs. Ashley Bachman',NULL,NULL,NULL,NULL,NULL,'Both','2646692852',NULL,NULL,'Ashley','S','Bachman',1,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mrs. Ashley Bachman',NULL,1,'1957-06-18',0,NULL,NULL,NULL,'Global Family Alliance',NULL,NULL,133,0,NULL,'2013-03-01 18:55:39'),(54,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Terry family','Terry family',NULL,NULL,NULL,'5',NULL,'Both','558108751',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,'2013-03-01 18:55:38'),(55,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Dimitrov, Troy','Mr. Troy Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','1394736389',NULL,NULL,'Troy','','Dimitrov',3,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Mr. Troy Dimitrov',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(56,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Parker, Angelika','Angelika Parker',NULL,NULL,NULL,'2',NULL,'Both','216332122',NULL,NULL,'Angelika','','Parker',NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Parker',NULL,1,'1988-01-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(57,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Clint','Mr. Clint Wattson',NULL,NULL,NULL,NULL,NULL,'Both','4167597443',NULL,NULL,'Clint','','Wattson',3,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Mr. Clint Wattson',NULL,2,'1928-06-25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(58,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Díaz family','Díaz family',NULL,NULL,NULL,'1',NULL,'Both','2169249835',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,'2013-03-01 18:55:38'),(59,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Errol','Dr. Errol Yadav III',NULL,NULL,NULL,'1',NULL,'Both','502679845',NULL,NULL,'Errol','U','Yadav',4,4,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Dr. Errol Yadav III',NULL,2,'1969-05-28',1,'2012-10-19',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(60,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper-Terrell, Herminia','Herminia Cooper-Terrell',NULL,NULL,NULL,NULL,NULL,'Both','1592177769',NULL,NULL,'Herminia','P','Cooper-Terrell',NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Cooper-Terrell',NULL,1,'2000-08-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(61,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Samuels, Betty','Betty Samuels',NULL,NULL,NULL,'3',NULL,'Both','3748840410',NULL,NULL,'Betty','N','Samuels',NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Samuels',NULL,1,'1993-07-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(62,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'tw.cooper66@example.co.in','tw.cooper66@example.co.in',NULL,NULL,NULL,NULL,NULL,'Both','2142924840',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear tw.cooper66@example.co.in',1,NULL,'Dear tw.cooper66@example.co.in',1,NULL,'tw.cooper66@example.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(63,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'González, Ivey','Ivey González',NULL,NULL,NULL,NULL,NULL,'Both','1140929750',NULL,NULL,'Ivey','F','González',NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey González',NULL,1,'1963-07-27',0,NULL,NULL,NULL,'Beech Action Services',NULL,NULL,45,0,NULL,'2013-03-01 18:55:39'),(64,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Megan','Megan Jameson',NULL,NULL,NULL,'1',NULL,'Both','1706411142',NULL,NULL,'Megan','','Jameson',NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Jameson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(65,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Jackson','Dr. Jackson Ivanov',NULL,NULL,NULL,'3',NULL,'Both','3246901602',NULL,NULL,'Jackson','','Ivanov',4,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Dr. Jackson Ivanov',NULL,2,'1958-10-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(66,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Barry','Barry Samson',NULL,NULL,NULL,'5',NULL,'Both','100370241',NULL,NULL,'Barry','J','Samson',NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Barry Samson',NULL,2,'1997-11-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(67,'Organization',NULL,1,0,0,0,1,0,NULL,NULL,'Washington Music Systems','Washington Music Systems',NULL,NULL,NULL,NULL,NULL,'Both','2361080031',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Washington Music Systems',NULL,NULL,NULL,0,NULL,NULL,13,'Washington Music Systems',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:38'),(68,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Cooper-Terrell, Carlos','Dr. Carlos Cooper-Terrell',NULL,NULL,NULL,'2',NULL,'Both','1537165519',NULL,NULL,'Carlos','','Cooper-Terrell',4,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Dr. Carlos Cooper-Terrell',NULL,2,'1975-10-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(69,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Lou','Dr. Lou Jensen Jr.',NULL,NULL,NULL,NULL,NULL,'Both','707335642',NULL,NULL,'Lou','Z','Jensen',4,1,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Dr. Lou Jensen Jr.',NULL,NULL,'1985-06-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(70,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Díaz, Andrew','Andrew Díaz III',NULL,NULL,NULL,'2',NULL,'Both','2189664098',NULL,NULL,'Andrew','','Díaz',NULL,4,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Díaz III',NULL,2,'1997-12-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(71,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Reynolds, Bryon','Bryon Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','3521962921',NULL,NULL,'Bryon','','Reynolds',NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Reynolds',NULL,NULL,'1962-12-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(72,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'terrell.sherman@example.org','terrell.sherman@example.org',NULL,NULL,NULL,'2',NULL,'Both','947591401',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear terrell.sherman@example.org',1,NULL,'Dear terrell.sherman@example.org',1,NULL,'terrell.sherman@example.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(73,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Hersey Arts Center','Hersey Arts Center',NULL,NULL,NULL,'5',NULL,'Both','2089558481',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Hersey Arts Center',NULL,NULL,NULL,0,NULL,NULL,142,'Hersey Arts Center',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(74,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Ray','Dr. Ray Parker',NULL,NULL,NULL,'1',NULL,'Both','2141757227',NULL,NULL,'Ray','','Parker',4,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Dr. Ray Parker',NULL,NULL,'1964-05-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(75,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Brigette','Brigette Cooper',NULL,NULL,NULL,NULL,NULL,'Both','1627670122',NULL,NULL,'Brigette','','Cooper',NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette Cooper',NULL,1,'2002-05-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(76,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Allan','Allan Wilson',NULL,NULL,NULL,NULL,NULL,'Both','1133423819',NULL,NULL,'Allan','','Wilson',NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Wilson',NULL,2,'1946-08-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(77,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz-Barkley, Iris','Dr. Iris Díaz-Barkley',NULL,NULL,NULL,'1',NULL,'Both','1296785924',NULL,NULL,'Iris','N','Díaz-Barkley',4,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Dr. Iris Díaz-Barkley',NULL,1,NULL,1,'2012-05-13',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(78,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'grant.b.kiara@fakemail.com','grant.b.kiara@fakemail.com',NULL,NULL,NULL,'4',NULL,'Both','3535507168',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear grant.b.kiara@fakemail.com',1,NULL,'Dear grant.b.kiara@fakemail.com',1,NULL,'grant.b.kiara@fakemail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(79,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Olsen, Clint','Dr. Clint Olsen II',NULL,NULL,NULL,'3',NULL,'Both','654679479',NULL,NULL,'Clint','','Olsen',4,3,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Dr. Clint Olsen II',NULL,2,NULL,1,'2012-09-04',NULL,NULL,'Opheim Education Systems',NULL,NULL,30,0,NULL,'2013-03-01 18:55:39'),(80,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Irvin','Mr. Irvin Terry',NULL,NULL,NULL,NULL,NULL,'Both','804267401',NULL,NULL,'Irvin','U','Terry',3,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Mr. Irvin Terry',NULL,2,NULL,1,'2012-05-24',NULL,NULL,'Saint Martin Agriculture Association',NULL,NULL,188,0,NULL,'2013-03-01 18:55:39'),(81,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Shad','Dr. Shad Barkley',NULL,NULL,NULL,NULL,NULL,'Both','2908565533',NULL,NULL,'Shad','','Barkley',4,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Dr. Shad Barkley',NULL,2,'1972-11-14',0,NULL,NULL,NULL,'Oakland Poetry Academy',NULL,NULL,12,0,NULL,'2013-03-01 18:55:39'),(82,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Ashlie','Ashlie Lee',NULL,NULL,NULL,NULL,NULL,'Both','3141899481',NULL,NULL,'Ashlie','S','Lee',NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Lee',NULL,NULL,'1923-10-06',1,'2012-08-27',NULL,NULL,'Kentucky Agriculture School',NULL,NULL,101,0,NULL,'2013-03-01 18:55:39'),(83,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav, Billy','Mr. Billy Yadav',NULL,NULL,NULL,NULL,NULL,'Both','2022079737',NULL,NULL,'Billy','X','Yadav',3,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Mr. Billy Yadav',NULL,NULL,'1945-06-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(84,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Toby','Toby Grant',NULL,NULL,NULL,'1',NULL,'Both','944702831',NULL,NULL,'Toby','J','Grant',NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Toby Grant',NULL,2,'1983-07-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(85,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Zope family','Zope family',NULL,NULL,NULL,NULL,NULL,'Both','1649131487',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,'2013-03-01 18:55:38'),(86,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Adams, Jay','Mr. Jay Adams',NULL,NULL,NULL,'5',NULL,'Both','1692061820',NULL,NULL,'Jay','','Adams',3,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Mr. Jay Adams',NULL,2,NULL,1,'2012-05-04',NULL,NULL,'Iowa Education Association',NULL,NULL,28,0,NULL,'2013-03-01 18:55:39'),(87,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Müller, Valene','Dr. Valene Müller',NULL,NULL,NULL,'2',NULL,'Both','444739216',NULL,NULL,'Valene','O','Müller',4,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Dr. Valene Müller',NULL,1,'1942-12-19',1,'2012-08-02',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(88,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samson, Margaret','Margaret Samson',NULL,NULL,NULL,NULL,NULL,'Both','749664303',NULL,NULL,'Margaret','','Samson',NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Samson',NULL,1,NULL,1,'2013-01-15',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(89,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Ashlie','Ashlie Prentice',NULL,NULL,NULL,NULL,NULL,'Both','2064126922',NULL,NULL,'Ashlie','','Prentice',NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Prentice',NULL,NULL,'1967-04-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(90,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Rodrigo','Rodrigo Jones Jr.',NULL,NULL,NULL,'2',NULL,'Both','1530953309',NULL,NULL,'Rodrigo','T','Jones',NULL,1,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Jones Jr.',NULL,2,'1992-01-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(91,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Progressive Environmental Partners','Progressive Environmental Partners',NULL,NULL,NULL,NULL,NULL,'Both','2373825008',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Progressive Environmental Partners',NULL,NULL,NULL,0,NULL,NULL,105,'Progressive Environmental Partners',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(92,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Bryon','Dr. Bryon Samuels',NULL,NULL,NULL,'5',NULL,'Both','813789682',NULL,NULL,'Bryon','','Samuels',4,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Dr. Bryon Samuels',NULL,2,'1925-10-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(93,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson family','Wattson family',NULL,NULL,NULL,NULL,NULL,'Both','2851339192',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,'2013-03-01 18:55:38'),(94,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson family','Jameson family',NULL,NULL,NULL,NULL,NULL,'Both','2255649769',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson family',5,NULL,'Dear Jameson family',2,NULL,'Jameson family',NULL,NULL,NULL,0,NULL,'Jameson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:38'),(95,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Tanya','Tanya Samuels',NULL,NULL,NULL,'1',NULL,'Both','147060242',NULL,NULL,'Tanya','G','Samuels',NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Samuels',NULL,NULL,'1984-04-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(96,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell-Reynolds, Josefa','Josefa Terrell-Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','1005351123',NULL,NULL,'Josefa','','Terrell-Reynolds',NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Terrell-Reynolds',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(97,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav-Wilson, Alida','Mrs. Alida Yadav-Wilson',NULL,NULL,NULL,'4',NULL,'Both','1016944221',NULL,NULL,'Alida','S','Yadav-Wilson',1,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Mrs. Alida Yadav-Wilson',NULL,1,'1941-07-21',1,'2013-01-12',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(98,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Cruz, Bob','Mr. Bob Cruz',NULL,NULL,NULL,NULL,NULL,'Both','1833840419',NULL,NULL,'Bob','','Cruz',3,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Mr. Bob Cruz',NULL,NULL,'1990-09-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(99,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'North Carolina Sustainability Alliance','North Carolina Sustainability Alliance',NULL,NULL,NULL,NULL,NULL,'Both','1097860546',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'North Carolina Sustainability Alliance',NULL,NULL,NULL,0,NULL,NULL,128,'North Carolina Sustainability Alliance',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(100,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Norris','Norris Parker',NULL,NULL,NULL,'4',NULL,'Both','3555621557',NULL,NULL,'Norris','E','Parker',NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Parker',NULL,2,'1959-11-09',1,'2012-04-10',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(101,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Kentucky Agriculture School','Kentucky Agriculture School',NULL,NULL,NULL,NULL,NULL,'Both','2408369507',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Kentucky Agriculture School',NULL,NULL,NULL,0,NULL,NULL,82,'Kentucky Agriculture School',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(102,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Zope, Angelika','Ms. Angelika Zope',NULL,NULL,NULL,'5',NULL,'Both','797627515',NULL,NULL,'Angelika','','Zope',2,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Ms. Angelika Zope',NULL,1,'1943-07-13',1,'2012-03-25',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(103,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Ashley','Mr. Ashley Deforest',NULL,NULL,NULL,NULL,NULL,'Both','4128046694',NULL,NULL,'Ashley','Q','Deforest',3,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mr. Ashley Deforest',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(104,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Ivanov, Herminia','Mrs. Herminia Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','3410851077',NULL,NULL,'Herminia','','Ivanov',1,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Mrs. Herminia Ivanov',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(105,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wattson, Juliann','Juliann Wattson',NULL,NULL,NULL,'2',NULL,'Both','3492603450',NULL,NULL,'Juliann','','Wattson',NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Wattson',NULL,1,'1930-11-03',1,'2012-11-23',NULL,NULL,'Progressive Environmental Partners',NULL,NULL,91,0,NULL,'2013-03-01 18:55:39'),(106,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Rebekah','Mrs. Rebekah Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','4037028038',NULL,NULL,'Rebekah','W','Dimitrov',1,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Mrs. Rebekah Dimitrov',NULL,1,NULL,1,'2012-07-22',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(107,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper-Terrell family','Cooper-Terrell family',NULL,NULL,NULL,'1',NULL,'Both','1163729907',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper-Terrell family',5,NULL,'Dear Cooper-Terrell family',2,NULL,'Cooper-Terrell family',NULL,NULL,NULL,0,NULL,'Cooper-Terrell family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:38'),(108,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Grant, Justina','Justina Grant',NULL,NULL,NULL,'2',NULL,'Both','2606086842',NULL,NULL,'Justina','O','Grant',NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Grant',NULL,1,'1947-09-04',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(109,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'lterry-wilson@airmail.co.pl','lterry-wilson@airmail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','758838355',NULL,NULL,NULL,NULL,NULL,3,NULL,1,NULL,'Dear lterry-wilson@airmail.co.pl',1,NULL,'Dear lterry-wilson@airmail.co.pl',1,NULL,'lterry-wilson@airmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(110,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Lee, Daren','Daren Lee',NULL,NULL,NULL,NULL,NULL,'Both','761180894',NULL,NULL,'Daren','','Lee',NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Lee',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(111,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Second Education Solutions','Second Education Solutions',NULL,NULL,NULL,NULL,NULL,'Both','2452736466',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Second Education Solutions',NULL,NULL,NULL,0,NULL,NULL,NULL,'Second Education Solutions',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(112,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Princess','Ms. Princess Samuels',NULL,NULL,NULL,NULL,NULL,'Both','2497332037',NULL,NULL,'Princess','','Samuels',2,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Ms. Princess Samuels',NULL,1,'1926-07-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(113,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'terry.scott30@fishmail.co.uk','terry.scott30@fishmail.co.uk',NULL,NULL,NULL,'3',NULL,'Both','4070133167',NULL,NULL,NULL,NULL,NULL,4,NULL,1,NULL,'Dear terry.scott30@fishmail.co.uk',1,NULL,'Dear terry.scott30@fishmail.co.uk',1,NULL,'terry.scott30@fishmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(114,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Yadav, Maria','Maria Yadav',NULL,NULL,NULL,'5',NULL,'Both','1203839406',NULL,NULL,'Maria','','Yadav',NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Maria Yadav',NULL,NULL,'1958-11-30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(115,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Wattson, Teddy','Teddy Wattson Jr.',NULL,NULL,NULL,'3',NULL,'Both','3676733183',NULL,NULL,'Teddy','Q','Wattson',NULL,1,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Wattson Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(116,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Teddy','Dr. Teddy Ivanov Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3771100847',NULL,NULL,'Teddy','','Ivanov',4,1,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Dr. Teddy Ivanov Jr.',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(117,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Jay','Mr. Jay Jones',NULL,NULL,NULL,NULL,NULL,'Both','4104186269',NULL,NULL,'Jay','','Jones',3,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Mr. Jay Jones',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(118,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Arkansas Music Partnership','Arkansas Music Partnership',NULL,NULL,NULL,'4',NULL,'Both','2289453387',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Arkansas Music Partnership',NULL,NULL,NULL,0,NULL,NULL,180,'Arkansas Music Partnership',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(119,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav, Brzęczysław','Brzęczysław Yadav Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2171812768',NULL,NULL,'Brzęczysław','','Yadav',NULL,2,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Yadav Sr.',NULL,2,'1940-06-19',1,'2012-09-23',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(120,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav, Miguel','Mr. Miguel Yadav Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2177433164',NULL,NULL,'Miguel','T','Yadav',3,2,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Mr. Miguel Yadav Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(121,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav, Barry','Mr. Barry Yadav Sr.',NULL,NULL,NULL,'5',NULL,'Both','2144069043',NULL,NULL,'Barry','C','Yadav',3,2,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Mr. Barry Yadav Sr.',NULL,NULL,'1973-09-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(122,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Ashlie','Ashlie Barkley',NULL,NULL,NULL,NULL,NULL,'Both','1002355994',NULL,NULL,'Ashlie','','Barkley',NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Barkley',NULL,NULL,NULL,1,'2012-10-02',NULL,NULL,'Mikana Education Association',NULL,NULL,47,0,NULL,'2013-03-01 18:55:38'),(123,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds family','Reynolds family',NULL,NULL,NULL,'5',NULL,'Both','4119726021',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Reynolds family',5,NULL,'Dear Reynolds family',2,NULL,'Reynolds family',NULL,NULL,NULL,0,NULL,'Reynolds family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:38'),(124,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Yadav, Jacob','Jacob Yadav',NULL,NULL,NULL,NULL,NULL,'Both','659997381',NULL,NULL,'Jacob','','Yadav',NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob Yadav',NULL,2,'1967-01-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(125,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terry, Kenny','Kenny Terry II',NULL,NULL,NULL,NULL,NULL,'Both','1180301319',NULL,NULL,'Kenny','W','Terry',NULL,3,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Terry II',NULL,NULL,'1962-04-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(126,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Roland','Roland Nielsen II',NULL,NULL,NULL,'1',NULL,'Both','2600465555',NULL,NULL,'Roland','','Nielsen',NULL,3,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland Nielsen II',NULL,NULL,'1927-10-04',1,'2012-07-07',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(127,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Kenny','Mr. Kenny Barkley',NULL,NULL,NULL,'4',NULL,'Both','3409558741',NULL,NULL,'Kenny','','Barkley',3,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Mr. Kenny Barkley',NULL,2,'1961-08-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(128,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Reynolds, Ashley','Ashley Reynolds',NULL,NULL,NULL,'3',NULL,'Both','3873693132',NULL,NULL,'Ashley','','Reynolds',NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Reynolds',NULL,NULL,'1941-05-03',0,NULL,NULL,NULL,'North Carolina Sustainability Alliance',NULL,NULL,99,0,NULL,'2013-03-01 18:55:39'),(129,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Parker family','Parker family',NULL,NULL,NULL,NULL,NULL,'Both','425242179',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Parker family',5,NULL,'Dear Parker family',2,NULL,'Parker family',NULL,NULL,NULL,0,NULL,'Parker family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:38'),(130,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'landonb@mymail.info','landonb@mymail.info',NULL,NULL,NULL,NULL,NULL,'Both','1544347053',NULL,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'Dear landonb@mymail.info',1,NULL,'Dear landonb@mymail.info',1,NULL,'landonb@mymail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(131,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Yadav, Iris','Iris Yadav',NULL,NULL,NULL,NULL,NULL,'Both','3117553975',NULL,NULL,'Iris','Y','Yadav',NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Yadav',NULL,1,'1958-12-12',1,'2012-09-15',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(132,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'bachmanl@sample.co.in','bachmanl@sample.co.in',NULL,NULL,NULL,NULL,NULL,'Both','305782516',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear bachmanl@sample.co.in',1,NULL,'Dear bachmanl@sample.co.in',1,NULL,'bachmanl@sample.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(133,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Global Family Alliance','Global Family Alliance',NULL,NULL,NULL,NULL,NULL,'Both','3239972742',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Family Alliance',NULL,NULL,NULL,0,NULL,NULL,53,'Global Family Alliance',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(134,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Olsen, Delana','Delana Olsen',NULL,NULL,NULL,NULL,NULL,'Both','556761836',NULL,NULL,'Delana','','Olsen',NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Olsen',NULL,1,'1924-12-09',1,'2012-08-23',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(135,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'jinab@infomail.com','jinab@infomail.com',NULL,NULL,NULL,NULL,NULL,'Both','2487750320',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jinab@infomail.com',1,NULL,'Dear jinab@infomail.com',1,NULL,'jinab@infomail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(136,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wilson, Ray','Ray Wilson',NULL,NULL,NULL,NULL,NULL,'Both','1585243279',NULL,NULL,'Ray','','Wilson',NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Wilson',NULL,2,'1994-10-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(137,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Kandace','Kandace Yadav',NULL,NULL,NULL,'4',NULL,'Both','2056711888',NULL,NULL,'Kandace','Q','Yadav',NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Kandace Yadav',NULL,1,'1971-04-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(138,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Smith, Justina','Justina Smith',NULL,NULL,NULL,NULL,NULL,'Both','16511477',NULL,NULL,'Justina','','Smith',NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Smith',NULL,1,'1985-11-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(139,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Kathleen','Kathleen Wattson',NULL,NULL,NULL,'5',NULL,'Both','784443764',NULL,NULL,'Kathleen','C','Wattson',NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Kathleen Wattson',NULL,NULL,'1987-07-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(140,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Martin Luther King Arts Services','Martin Luther King Arts Services',NULL,NULL,NULL,NULL,NULL,'Both','3961805700',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Martin Luther King Arts Services',NULL,NULL,NULL,0,NULL,NULL,197,'Martin Luther King Arts Services',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(141,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'terry.s.herminia98@notmail.info','terry.s.herminia98@notmail.info',NULL,NULL,NULL,'1',NULL,'Both','1666969381',NULL,NULL,NULL,NULL,NULL,4,NULL,1,NULL,'Dear terry.s.herminia98@notmail.info',1,NULL,'Dear terry.s.herminia98@notmail.info',1,NULL,'terry.s.herminia98@notmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(142,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Billy','Mr. Billy Wattson',NULL,NULL,NULL,NULL,NULL,'Both','3097131221',NULL,NULL,'Billy','','Wattson',3,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Mr. Billy Wattson',NULL,2,'1947-08-18',1,NULL,NULL,NULL,'Hersey Arts Center',NULL,NULL,73,0,NULL,'2013-03-01 18:55:39'),(143,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Jed','Dr. Jed Díaz III',NULL,NULL,NULL,NULL,NULL,'Both','3371840516',NULL,NULL,'Jed','','Díaz',4,4,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Dr. Jed Díaz III',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(144,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Scarlet','Mrs. Scarlet Jones',NULL,NULL,NULL,'2',NULL,'Both','4237120359',NULL,NULL,'Scarlet','Y','Jones',1,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Mrs. Scarlet Jones',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(145,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'iveyd@notmail.info','iveyd@notmail.info',NULL,NULL,NULL,'4',NULL,'Both','423488933',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear iveyd@notmail.info',1,NULL,'Dear iveyd@notmail.info',1,NULL,'iveyd@notmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(146,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson family','Wilson family',NULL,NULL,NULL,NULL,NULL,'Both','350510798',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,'2013-03-01 18:55:38'),(147,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Megan','Mrs. Megan Yadav',NULL,NULL,NULL,'2',NULL,'Both','2317893883',NULL,NULL,'Megan','Z','Yadav',1,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Mrs. Megan Yadav',NULL,1,NULL,1,'2012-12-31',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(148,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'wagner.delana@testmail.co.pl','wagner.delana@testmail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','2726027557',NULL,NULL,NULL,NULL,NULL,2,NULL,1,NULL,'Dear wagner.delana@testmail.co.pl',1,NULL,'Dear wagner.delana@testmail.co.pl',1,NULL,'wagner.delana@testmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(149,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Rodrigo','Dr. Rodrigo Wattson III',NULL,NULL,NULL,NULL,NULL,'Both','971920470',NULL,NULL,'Rodrigo','C','Wattson',4,4,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Dr. Rodrigo Wattson III',NULL,NULL,NULL,1,'2012-08-16',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(150,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Sharyn','Ms. Sharyn Jacobs',NULL,NULL,NULL,'4',NULL,'Both','3551005381',NULL,NULL,'Sharyn','M','Jacobs',2,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Ms. Sharyn Jacobs',NULL,NULL,'1979-05-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(151,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Margaret','Dr. Margaret Parker',NULL,NULL,NULL,NULL,NULL,'Both','2510229405',NULL,NULL,'Margaret','T','Parker',4,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Dr. Margaret Parker',NULL,NULL,'1954-12-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(152,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell-Reynolds family','Terrell-Reynolds family',NULL,NULL,NULL,'5',NULL,'Both','3271077606',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terrell-Reynolds family',5,NULL,'Dear Terrell-Reynolds family',2,NULL,'Terrell-Reynolds family',NULL,NULL,NULL,0,NULL,'Terrell-Reynolds family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:38'),(153,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Jackson','Jackson Grant Sr.',NULL,NULL,NULL,'2',NULL,'Both','4087160842',NULL,NULL,'Jackson','','Grant',NULL,2,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Jackson Grant Sr.',NULL,2,'1986-11-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(154,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'grantb@lol.co.nz','grantb@lol.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','3570836128',NULL,NULL,NULL,NULL,NULL,3,NULL,1,NULL,'Dear grantb@lol.co.nz',1,NULL,'Dear grantb@lol.co.nz',1,NULL,'grantb@lol.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(155,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'norriswilson71@mymail.co.uk','norriswilson71@mymail.co.uk',NULL,NULL,NULL,'3',NULL,'Both','3831094556',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear norriswilson71@mymail.co.uk',1,NULL,'Dear norriswilson71@mymail.co.uk',1,NULL,'norriswilson71@mymail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(156,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Roberts-Yadav, Josefa','Mrs. Josefa Roberts-Yadav',NULL,NULL,NULL,'5',NULL,'Both','151979713',NULL,NULL,'Josefa','X','Roberts-Yadav',1,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Mrs. Josefa Roberts-Yadav',NULL,1,'1970-08-10',1,'2013-01-16',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(157,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Zope, Rolando','Rolando Zope Sr.',NULL,NULL,NULL,'3',NULL,'Both','1046286833',NULL,NULL,'Rolando','','Zope',NULL,2,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Zope Sr.',NULL,2,'1934-10-22',1,'2013-02-11',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(158,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Scott','Scott Díaz Jr.',NULL,NULL,NULL,'3',NULL,'Both','1559537581',NULL,NULL,'Scott','','Díaz',NULL,1,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Díaz Jr.',NULL,2,'1996-02-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(159,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'jacobt37@notmail.co.pl','jacobt37@notmail.co.pl',NULL,NULL,NULL,'4',NULL,'Both','3351799187',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jacobt37@notmail.co.pl',1,NULL,'Dear jacobt37@notmail.co.pl',1,NULL,'jacobt37@notmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(160,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Jones, Daren','Daren Jones Jr.',NULL,NULL,NULL,'5',NULL,'Both','1560660713',NULL,NULL,'Daren','Q','Jones',NULL,1,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Jones Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(161,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terry, Carlos','Carlos Terry Sr.',NULL,NULL,NULL,'5',NULL,'Both','2569842275',NULL,NULL,'Carlos','H','Terry',NULL,2,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Terry Sr.',NULL,NULL,'1996-10-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(162,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Tanya','Ms. Tanya Jensen',NULL,NULL,NULL,'3',NULL,'Both','866616632',NULL,NULL,'Tanya','I','Jensen',2,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Ms. Tanya Jensen',NULL,1,'1927-04-11',1,'2012-04-08',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(163,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'szope@sample.net','szope@sample.net',NULL,NULL,NULL,'3',NULL,'Both','4009771881',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear szope@sample.net',1,NULL,'Dear szope@sample.net',1,NULL,'szope@sample.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(164,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Teddy','Dr. Teddy Jones',NULL,NULL,NULL,NULL,NULL,'Both','820289912',NULL,NULL,'Teddy','B','Jones',4,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Dr. Teddy Jones',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(165,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Zope, Carlos','Dr. Carlos Zope',NULL,NULL,NULL,'4',NULL,'Both','1767912072',NULL,NULL,'Carlos','P','Zope',4,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Dr. Carlos Zope',NULL,2,'1981-12-01',0,NULL,NULL,NULL,'Baltimore Technology Alliance',NULL,NULL,18,0,NULL,'2013-03-01 18:55:38'),(166,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cruz, Jerome','Jerome Cruz',NULL,NULL,NULL,'5',NULL,'Both','516469839',NULL,NULL,'Jerome','X','Cruz',NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Cruz',NULL,2,'1977-11-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(167,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Patel, Jina','Mrs. Jina Patel',NULL,NULL,NULL,NULL,NULL,'Both','2542120009',NULL,NULL,'Jina','P','Patel',1,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Mrs. Jina Patel',NULL,NULL,'1969-06-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(168,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wilson, Bryon','Bryon Wilson',NULL,NULL,NULL,NULL,NULL,'Both','814135970',NULL,NULL,'Bryon','','Wilson',NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Wilson',NULL,2,'1923-06-30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(169,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Ray','Ray Terry III',NULL,NULL,NULL,NULL,NULL,'Both','1646953938',NULL,NULL,'Ray','','Terry',NULL,4,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Terry III',NULL,2,'1987-03-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(170,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Olsen-Jameson, Clint','Dr. Clint Olsen-Jameson',NULL,NULL,NULL,NULL,NULL,'Both','34111714',NULL,NULL,'Clint','','Olsen-Jameson',4,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Dr. Clint Olsen-Jameson',NULL,2,'1989-10-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(171,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samuels, Kathleen','Dr. Kathleen Samuels',NULL,NULL,NULL,NULL,NULL,'Both','4106798550',NULL,NULL,'Kathleen','','Samuels',4,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Dr. Kathleen Samuels',NULL,NULL,'1960-09-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(172,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Bernadette','Bernadette Wattson',NULL,NULL,NULL,'5',NULL,'Both','1191372822',NULL,NULL,'Bernadette','','Wattson',NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Bernadette Wattson',NULL,1,'1986-03-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(173,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Kathlyn','Kathlyn Ivanov',NULL,NULL,NULL,'1',NULL,'Both','2892461872',NULL,NULL,'Kathlyn','','Ivanov',NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Kathlyn Ivanov',NULL,NULL,'1992-12-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(174,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wattson-Nielsen, Brittney','Brittney Wattson-Nielsen',NULL,NULL,NULL,'1',NULL,'Both','2496479571',NULL,NULL,'Brittney','','Wattson-Nielsen',NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Wattson-Nielsen',NULL,1,'1998-07-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(175,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jones family','Jones family',NULL,NULL,NULL,NULL,NULL,'Both','1110516799',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,'2013-03-01 18:55:38'),(176,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Daren','Daren Müller',NULL,NULL,NULL,'5',NULL,'Both','1527306191',NULL,NULL,'Daren','','Müller',NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Müller',NULL,NULL,'1993-03-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(177,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Díaz, Nicole','Mrs. Nicole Díaz',NULL,NULL,NULL,'1',NULL,'Both','1789342524',NULL,NULL,'Nicole','K','Díaz',1,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Mrs. Nicole Díaz',NULL,1,'1982-11-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(178,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Reynolds, Allan','Allan Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','2732914112',NULL,NULL,'Allan','E','Reynolds',NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Reynolds',NULL,2,'1975-10-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(179,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Miguel','Miguel Jones Jr.',NULL,NULL,NULL,'5',NULL,'Both','3236387575',NULL,NULL,'Miguel','L','Jones',NULL,1,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Jones Jr.',NULL,NULL,'2000-12-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(180,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'vivanov-terry@sample.org','vivanov-terry@sample.org',NULL,NULL,NULL,NULL,NULL,'Both','2129347042',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear vivanov-terry@sample.org',1,NULL,'Dear vivanov-terry@sample.org',1,NULL,'vivanov-terry@sample.org',NULL,NULL,NULL,0,NULL,NULL,NULL,'Arkansas Music Partnership',NULL,NULL,118,0,NULL,'2013-03-01 18:55:39'),(181,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Kiara','Kiara Cooper',NULL,NULL,NULL,NULL,NULL,'Both','2416218460',NULL,NULL,'Kiara','Z','Cooper',NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Cooper',NULL,1,'1927-02-03',1,'2012-10-04',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:32'),(182,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Brittney','Brittney Smith',NULL,NULL,NULL,'3',NULL,'Both','1142724087',NULL,NULL,'Brittney','B','Smith',NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Smith',NULL,1,'1967-05-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:34'),(183,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson-Nielsen family','Wattson-Nielsen family',NULL,NULL,NULL,'2',NULL,'Both','1169922006',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wattson-Nielsen family',5,NULL,'Dear Wattson-Nielsen family',2,NULL,'Wattson-Nielsen family',NULL,NULL,NULL,0,NULL,'Wattson-Nielsen family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:38'),(184,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'McReynolds-Jones, Iris','Mrs. Iris McReynolds-Jones',NULL,NULL,NULL,'1',NULL,'Both','3718495644',NULL,NULL,'Iris','','McReynolds-Jones',1,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Mrs. Iris McReynolds-Jones',NULL,1,'1951-07-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(185,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Ashley','Ashley Díaz II',NULL,NULL,NULL,NULL,NULL,'Both','2703610004',NULL,NULL,'Ashley','I','Díaz',NULL,3,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Díaz II',NULL,NULL,'1990-08-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(186,'Household',NULL,0,1,0,0,1,0,NULL,NULL,'Yadav family','Yadav family',NULL,NULL,NULL,'4',NULL,'Both','1777336212',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,'2013-03-01 18:55:38'),(187,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Smith, Esta','Esta Smith',NULL,NULL,NULL,'3',NULL,'Both','4101330541',NULL,NULL,'Esta','B','Smith',NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Esta Smith',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(188,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Saint Martin Agriculture Association','Saint Martin Agriculture Association',NULL,NULL,NULL,NULL,NULL,'Both','2713733374',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Saint Martin Agriculture Association',NULL,NULL,NULL,0,NULL,NULL,80,'Saint Martin Agriculture Association',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:39'),(189,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Bob','Dr. Bob Yadav',NULL,NULL,NULL,NULL,NULL,'Both','3746305110',NULL,NULL,'Bob','L','Yadav',4,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Dr. Bob Yadav',NULL,2,'1980-10-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:36'),(190,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Parker, Scarlet','Ms. Scarlet Parker',NULL,NULL,NULL,'3',NULL,'Both','1919571146',NULL,NULL,'Scarlet','','Parker',2,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Ms. Scarlet Parker',NULL,1,'1973-12-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(191,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Ray','Ray Roberts III',NULL,NULL,NULL,NULL,NULL,'Both','1321167237',NULL,NULL,'Ray','N','Roberts',NULL,4,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Roberts III',NULL,2,NULL,1,'2013-02-14',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(192,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Beverly Advocacy Academy','Beverly Advocacy Academy',NULL,NULL,NULL,'4',NULL,'Both','3484218109',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Beverly Advocacy Academy',NULL,NULL,NULL,0,NULL,NULL,NULL,'Beverly Advocacy Academy',NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:38'),(193,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams, Lashawnda','Lashawnda Adams',NULL,NULL,NULL,'3',NULL,'Both','1526357293',NULL,NULL,'Lashawnda','','Adams',NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Adams',NULL,NULL,'1966-03-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(194,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson-Nielsen, Scott','Scott Wattson-Nielsen',NULL,NULL,NULL,'4',NULL,'Both','2550337616',NULL,NULL,'Scott','','Wattson-Nielsen',NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Wattson-Nielsen',NULL,NULL,'1987-01-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(195,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Elbert','Mr. Elbert Yadav III',NULL,NULL,NULL,NULL,NULL,'Both','2557263059',NULL,NULL,'Elbert','','Yadav',3,4,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Mr. Elbert Yadav III',NULL,2,'1978-06-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(196,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Irvin','Mr. Irvin Wilson',NULL,NULL,NULL,'5',NULL,'Both','441477896',NULL,NULL,'Irvin','D','Wilson',3,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Mr. Irvin Wilson',NULL,2,'1989-11-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:35'),(197,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Heidi','Mrs. Heidi Grant',NULL,NULL,NULL,'2',NULL,'Both','46996647',NULL,NULL,'Heidi','','Grant',1,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Mrs. Heidi Grant',NULL,1,'1973-08-06',0,NULL,NULL,NULL,'Martin Luther King Arts Services',NULL,NULL,140,0,NULL,'2013-03-01 18:55:39'),(198,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Elizabeth','Ms. Elizabeth Cruz',NULL,NULL,NULL,NULL,NULL,'Both','2040804546',NULL,NULL,'Elizabeth','G','Cruz',2,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Ms. Elizabeth Cruz',NULL,1,'1931-10-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:33'),(199,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Damaris','Damaris Zope',NULL,NULL,NULL,'1',NULL,'Both','2309654739',NULL,NULL,'Damaris','','Zope',NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Damaris Zope',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(200,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Maria','Maria Yadav Sr.',NULL,NULL,NULL,'4',NULL,'Both','1203839406',NULL,NULL,'Maria','','Yadav',NULL,2,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Maria Yadav Sr.',NULL,NULL,'1984-04-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-03-01 18:55:37'),(201,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson, Russell','Russell Jameson III',NULL,NULL,NULL,NULL,NULL,'Both','3424708861',NULL,NULL,'Russell','','Jameson',NULL,4,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Jameson III',NULL,NULL,'1999-07-31',0,NULL,NULL,NULL,'United Poetry Network',NULL,NULL,36,0,NULL,'2013-03-01 18:55:39'); /*!40000 ALTER TABLE `civicrm_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -230,7 +230,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`, `honor_contact_id`, `is_test`, `is_pay_later`, `contribution_status_id`, `honor_type_id`, `address_id`, `check_number`, `campaign_id`) 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,NULL,0,0,1,NULL,NULL,'1041',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,NULL,0,0,1,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,NULL,0,0,1,NULL,NULL,'2095',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,NULL,0,0,1,NULL,NULL,'10552',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,NULL,0,0,1,NULL,NULL,'509',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,NULL,0,0,1,NULL,NULL,'102',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,NULL,0,0,1,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,NULL,0,0,1,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,NULL,0,0,1,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,NULL,0,0,1,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,NULL,0,0,1,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,NULL,0,0,1,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,NULL,0,0,1,NULL,NULL,NULL,NULL),(14,97,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(15,167,2,NULL,NULL,'2013-02-26 10:49:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(16,168,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(17,119,2,NULL,NULL,'2013-02-26 10:49:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(18,118,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(19,100,2,NULL,NULL,'2013-02-26 10:49:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(20,197,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(21,46,2,NULL,NULL,'2013-02-26 10:49:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(22,76,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(23,164,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(24,42,2,NULL,NULL,'2013-02-26 10:49:30',0.00,1200.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(25,195,2,NULL,NULL,'2013-02-26 10:49:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(26,163,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(27,184,2,NULL,NULL,'2013-02-26 10:49:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(28,170,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(29,40,2,NULL,NULL,'2013-02-26 10:49:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(30,112,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(31,109,2,NULL,NULL,'2013-02-26 10:49:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(32,131,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(33,116,2,NULL,NULL,'2013-02-26 10:49:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(34,154,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(35,132,2,NULL,NULL,'2013-02-26 10:49:30',0.00,1200.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(36,93,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(37,45,2,NULL,NULL,'2013-02-26 10:49:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(38,34,2,NULL,NULL,'2013-02-26 10:49:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(39,153,2,NULL,NULL,'2013-02-26 10:49:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(40,7,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(41,70,2,NULL,NULL,'2013-02-26 10:49:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(42,185,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(43,179,2,NULL,NULL,'2013-02-26 10:49:30',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(45,3,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(46,8,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(47,9,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(48,25,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(49,29,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(50,30,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(51,34,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(52,47,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(53,48,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(54,53,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(55,54,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(56,55,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(57,58,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(58,62,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(59,67,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(60,69,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(61,72,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(62,76,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(63,77,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(64,86,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(65,87,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(66,91,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(67,92,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(68,96,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(69,101,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(70,103,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(71,106,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(72,117,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(73,125,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(74,127,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(75,131,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(76,132,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(77,135,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(78,136,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(79,142,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(80,148,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(81,152,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(82,160,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(83,172,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(84,181,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(85,184,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(86,185,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(87,186,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(88,189,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(89,191,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(90,192,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(91,194,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(92,196,4,NULL,NULL,'2013-02-26 10:49:37',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(93,197,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(94,201,4,NULL,NULL,'2013-02-26 10:49:37',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-02-26 10:49:37',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,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`, `honor_contact_id`, `is_test`, `is_pay_later`, `contribution_status_id`, `honor_type_id`, `address_id`, `check_number`, `campaign_id`) 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,NULL,0,0,1,NULL,NULL,'1041',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,NULL,0,0,1,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,NULL,0,0,1,NULL,NULL,'2095',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,NULL,0,0,1,NULL,NULL,'10552',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,NULL,0,0,1,NULL,NULL,'509',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,NULL,0,0,1,NULL,NULL,'102',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,NULL,0,0,1,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,NULL,0,0,1,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,NULL,0,0,1,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,NULL,0,0,1,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,NULL,0,0,1,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,NULL,0,0,1,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,NULL,0,0,1,NULL,NULL,NULL,NULL),(14,4,2,NULL,NULL,'2013-03-01 10:55:52',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(15,11,2,NULL,NULL,'2013-03-01 10:55:52',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(16,35,2,NULL,NULL,'2013-03-01 10:55:52',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(17,115,2,NULL,NULL,'2013-03-01 10:55:52',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(18,120,2,NULL,NULL,'2013-03-01 10:55:52',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(19,59,2,NULL,NULL,'2013-03-01 10:55:52',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(20,164,2,NULL,NULL,'2013-03-01 10:55:52',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(21,108,2,NULL,NULL,'2013-03-01 10:55:52',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(22,105,2,NULL,NULL,'2013-03-01 10:55:52',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(23,88,2,NULL,NULL,'2013-03-01 10:55:52',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(24,195,2,NULL,NULL,'2013-03-01 10:55:52',0.00,1200.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(25,40,2,NULL,NULL,'2013-03-01 10:55:52',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(26,161,2,NULL,NULL,'2013-03-01 10:55:52',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(27,155,2,NULL,NULL,'2013-03-01 10:55:52',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(28,38,2,NULL,NULL,'2013-03-01 10:55:52',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(29,176,2,NULL,NULL,'2013-03-01 10:55:52',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(30,132,2,NULL,NULL,'2013-03-01 10:55:52',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(31,2,2,NULL,NULL,'2013-03-01 10:55:52',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(32,168,2,NULL,NULL,'2013-03-01 10:55:52',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(33,181,2,NULL,NULL,'2013-03-01 10:55:52',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(34,52,2,NULL,NULL,'2013-03-01 10:55:52',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(35,135,2,NULL,NULL,'2013-03-01 10:55:52',0.00,1200.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(36,51,2,NULL,NULL,'2013-03-01 10:55:52',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(37,57,2,NULL,NULL,'2013-03-01 10:55:52',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(38,151,2,NULL,NULL,'2013-03-01 10:55:52',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(39,53,2,NULL,NULL,'2013-03-01 10:55:52',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(40,13,2,NULL,NULL,'2013-03-01 10:55:52',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(41,148,2,NULL,NULL,'2013-03-01 10:55:52',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(42,23,2,NULL,NULL,'2013-03-01 10:55:52',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(43,103,2,NULL,NULL,'2013-03-01 10:55:52',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(45,15,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(46,19,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(47,22,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(48,28,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(49,31,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(50,32,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(51,36,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(52,37,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(53,47,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(54,49,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(55,52,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(56,55,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(57,60,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(58,61,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(59,65,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(60,68,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(61,72,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(62,89,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(63,95,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(64,96,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(65,101,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(66,102,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(67,103,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(68,106,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(69,107,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(70,109,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(71,110,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(72,112,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(73,116,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(74,117,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(75,126,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(76,128,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(77,130,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(78,138,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(79,139,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(80,140,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(81,143,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(82,149,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(83,158,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(84,160,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(85,161,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(86,164,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(87,174,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(88,177,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(89,180,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(90,182,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(91,187,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(92,196,4,NULL,NULL,'2013-03-01 10:55:54',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(93,198,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(94,199,4,NULL,NULL,'2013-03-01 10:55:54',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-03-01 10:55:54',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_contribution` ENABLE KEYS */; UNLOCK TABLES; @@ -268,7 +268,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`) VALUES (1,8,180,10.00,'USD',1,1,'Jones Family','Helping Hands'),(2,9,180,250.00,'USD',1,1,'Annie and the kids','Annie Helps'); +INSERT INTO `civicrm_contribution_soft` (`id`, `contribution_id`, `contact_id`, `amount`, `currency`, `pcp_id`, `pcp_display_in_roll`, `pcp_roll_nickname`, `pcp_personal_note`) VALUES (1,8,181,10.00,'USD',1,1,'Jones Family','Helping Hands'),(2,9,181,250.00,'USD',1,1,'Annie and the kids','Annie Helps'); /*!40000 ALTER TABLE `civicrm_contribution_soft` ENABLE KEYS */; UNLOCK TABLES; @@ -402,7 +402,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,94,1,'chowski.delana@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(3,94,1,'da.chowski@example.com',0,0,0,0,NULL,NULL,NULL,NULL),(4,47,1,'josefablackwell55@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),(5,180,1,'loublackwell@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(6,180,1,'loublackwell92@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL),(7,132,1,'nielsenb@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(8,132,1,'bryonnielsen@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL),(9,136,1,'ashlieadams@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(10,136,1,'aadams25@fishmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(11,45,1,'mroberts25@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(12,12,1,'jacobs.toby@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(13,156,1,'te.bachman@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),(14,156,1,'te.bachman52@fakemail.net',0,0,0,0,NULL,NULL,NULL,NULL),(15,40,1,'mariat58@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(16,112,1,'zope.scarlet@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(17,110,1,'terrellb@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL),(18,166,1,'alexiar@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(19,166,1,'reynolds.alexia@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL),(20,168,1,'parkerd@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(21,168,1,'parker.delana@notmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(22,133,1,'wattsons@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(23,133,1,'shermanwattson84@fakemail.net',0,0,0,0,NULL,NULL,NULL,NULL),(24,119,1,'rodrigop@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),(25,119,1,'patel.rodrigo@spamalot.net',0,0,0,0,NULL,NULL,NULL,NULL),(26,188,1,'samuels.bob57@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL),(27,121,1,'reynolds.junko73@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(28,121,1,'reynoldsj23@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(29,114,1,'ivanovb@example.biz',1,0,0,0,NULL,NULL,NULL,NULL),(30,4,1,'meichowski@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),(31,186,1,'tb.ivanov65@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(32,186,1,'ivanov.b.toby@testmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(33,93,1,'me.deforest@example.com',1,0,0,0,NULL,NULL,NULL,NULL),(34,69,1,'kennyd17@lol.com',1,0,0,0,NULL,NULL,NULL,NULL),(35,8,1,'heidijameson41@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(36,8,1,'heidij@sample.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(37,117,1,'jaybarkley60@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(38,117,1,'jayb@notmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(39,111,1,'princesss@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(40,111,1,'samuelsp73@sample.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(41,100,1,'daz.o.rebekah96@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(42,100,1,'daz.o.rebekah@sample.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(43,193,1,'grant.princess@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(44,193,1,'py.grant@testing.biz',0,0,0,0,NULL,NULL,NULL,NULL),(45,71,1,'jm.jones@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(46,81,1,'cruz.laree@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(47,81,1,'cruz.laree@testing.org',0,0,0,0,NULL,NULL,NULL,NULL),(48,78,1,'parker.josefa@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(49,20,1,'granti@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),(50,20,1,'igrant@fakemail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(51,145,1,'hdeforest@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(52,145,1,'deforest.heidi@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(53,164,1,'samuels.ray@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(54,164,1,'raysamuels@lol.net',0,0,0,0,NULL,NULL,NULL,NULL),(55,14,1,'elbertg47@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(56,134,1,'cruzr99@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(57,27,1,'barkleye34@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(58,176,1,'ashleyadams@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(59,176,1,'ashleyadams66@airmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(60,36,1,'blackwellb@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(61,36,1,'billyb@infomail.net',0,0,0,0,NULL,NULL,NULL,NULL),(62,128,1,'bettyroberts@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(63,128,1,'bettyroberts57@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(64,76,1,'herminiad@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(65,118,1,'jacksonpatel76@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(66,54,1,'merriej@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(67,149,1,'dparker22@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(68,149,1,'delanaparker@testmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(69,15,1,'wattsonl74@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(70,15,1,'wattson.lou@fishmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(71,192,1,'loudaz@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(72,79,1,'eleonorterrell41@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(73,58,1,'omarj@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(74,58,1,'jacobso@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(75,70,1,'bachman.o.magan19@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(76,70,1,'mo.bachman@testmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(77,187,1,'jones.kathlyn@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(78,30,1,'craigd@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(79,101,1,'oyadav@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(80,5,1,'russellivanov@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(81,5,1,'ivanovr47@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(82,72,1,'parker.ashlie@lol.com',1,0,0,0,NULL,NULL,NULL,NULL),(83,72,1,'aparker@fishmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(84,44,1,'kathleenjensen@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(85,44,1,'kq.jensen@notmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(86,41,1,'shadsmith@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(87,41,1,'smith.shad41@mymail.com',0,0,0,0,NULL,NULL,NULL,NULL),(88,195,1,'smith.v.winford@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),(89,195,1,'smith.winford@mymail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(90,173,1,'ksmith92@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(91,63,1,'smith.sanford57@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(92,63,1,'sanfords@lol.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(93,60,1,'shadj@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(94,60,1,'shadjones@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(95,35,1,'zope-jonesb@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(96,35,1,'bzope-jones17@mymail.org',0,0,0,0,NULL,NULL,NULL,NULL),(97,7,1,'migueljones@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL),(98,7,1,'migueljones68@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(99,95,1,'lareem@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(100,95,1,'lareemller14@testing.info',0,0,0,0,NULL,NULL,NULL,NULL),(101,170,1,'mller.allen@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),(102,170,1,'mllera40@example.com',0,0,0,0,NULL,NULL,NULL,NULL),(103,50,1,'mlleri33@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(104,50,1,'irismller@fakemail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(105,13,1,'kennyparker@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(106,13,1,'parker.t.kenny@mymail.com',0,0,0,0,NULL,NULL,NULL,NULL),(107,177,1,'parker.carylon@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(108,177,1,'parker.carylon@infomail.net',0,0,0,0,NULL,NULL,NULL,NULL),(109,159,1,'olsenc@lol.com',1,0,0,0,NULL,NULL,NULL,NULL),(110,159,1,'craigolsen@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(111,43,1,'olsen-robertss31@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL),(112,43,1,'sharyno@lol.org',0,0,0,0,NULL,NULL,NULL,NULL),(113,55,1,'teddyo@lol.net',1,0,0,0,NULL,NULL,NULL,NULL),(114,167,1,'lawerencedeforest77@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(115,167,1,'ln.deforest19@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(116,137,1,'santinasamuels32@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(117,137,1,'samuels.santina@spamalot.biz',0,0,0,0,NULL,NULL,NULL,NULL),(118,98,1,'deforest-samuelst@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(119,199,1,'winforddeforest-samuels@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(120,80,1,'maxwellp9@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(121,146,1,'parker-wilsonb19@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(122,2,1,'parker-wilson.tanya@lol.com',1,0,0,0,NULL,NULL,NULL,NULL),(123,201,1,'wagner.p.brent@example.com',1,0,0,0,NULL,NULL,NULL,NULL),(124,74,1,'kathlynd77@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(125,90,1,'ct.wagner-dimitrov@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(126,28,1,'mcreynolds.jay73@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(127,28,1,'jaym@lol.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(128,17,1,'shermanmcreynolds-bachman@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(129,24,1,'jgrant40@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(130,108,1,'dimitrov-grant.justina59@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),(131,108,1,'jdimitrov-grant@testing.net',0,0,0,0,NULL,NULL,NULL,NULL),(132,160,1,'gonzlezc@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(133,160,1,'gonzlezc@spamalot.info',0,0,0,0,NULL,NULL,NULL,NULL),(134,184,1,'gonzlez.toby@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(135,29,1,'smithm@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(136,29,1,'miguels@airmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(137,190,1,'parker.landon@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(138,85,1,'parker.winford90@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(139,11,1,'cruz.clint@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(140,11,1,'cruz.clint12@testmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(141,67,1,'cruz.beula76@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(142,67,1,'cruz.beula82@mymail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(143,102,1,'cruz.errol@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(144,102,1,'errolcruz@mymail.com',0,0,0,0,NULL,NULL,NULL,NULL),(145,73,1,'craiga69@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(146,73,1,'craiga17@mymail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(147,3,1,'sadams52@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(148,3,1,'adams.sanford28@lol.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(149,181,1,'csamson@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(150,181,1,'carlossamson@testmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(151,21,1,'samsonj9@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(152,65,1,'ac.barkley46@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL),(153,115,1,'zopej@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(154,115,1,'junkozope@fishmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(155,124,1,'jameson.winford@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(156,161,1,'iveyjameson@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(157,116,1,'miguelj23@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL),(158,116,1,'jamesonm@fishmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(159,46,1,'bo.jameson73@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(160,46,1,'bo.jameson@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(161,142,1,'craig@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(162,138,1,'valene86@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(163,138,1,'valene@spamalot.net',0,0,0,0,NULL,NULL,NULL,NULL),(164,185,1,'chowski-leek91@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),(165,185,1,'chowski-leek50@notmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(166,175,3,'service@fpwellnesscenter.org',1,0,0,0,NULL,NULL,NULL,NULL),(167,39,3,'service@illinoissustainabilitycenter.org',1,0,0,0,NULL,NULL,NULL,NULL),(168,149,2,'40@illinoissustainabilitycenter.org',0,0,0,0,NULL,NULL,NULL,NULL),(169,141,3,'info@globalwellness.org',1,0,0,0,NULL,NULL,NULL,NULL),(170,96,3,'feedback@statessoftwarecenter.org',1,0,0,0,NULL,NULL,NULL,NULL),(171,118,2,'patelj80@statessoftwarecenter.org',0,0,0,0,NULL,NULL,NULL,NULL),(172,135,3,'service@mississippipartnership.org',1,0,0,0,NULL,NULL,NULL,NULL),(173,176,2,'adams.ashley65@mississippipartnership.org',0,0,0,0,NULL,NULL,NULL,NULL),(174,52,3,'service@eccultureassociation.org',1,0,0,0,NULL,NULL,NULL,NULL),(175,166,2,'alexiareynolds29@eccultureassociation.org',0,0,0,0,NULL,NULL,NULL,NULL),(176,82,3,'info@utahsustainability.org',1,0,0,0,NULL,NULL,NULL,NULL),(177,59,3,'feedback@friendssports.org',1,0,0,0,NULL,NULL,NULL,NULL),(178,94,2,'chowskid83@friendssports.org',0,0,0,0,NULL,NULL,NULL,NULL),(179,84,3,'contact@lennoxpoetryservices.org',1,0,0,0,NULL,NULL,NULL,NULL),(180,178,2,'jones.sanford84@lennoxpoetryservices.org',1,0,0,0,NULL,NULL,NULL,NULL),(181,103,3,'info@kentuckyliteracy.org',1,0,0,0,NULL,NULL,NULL,NULL),(182,66,2,'margaretcruz@kentuckyliteracy.org',1,0,0,0,NULL,NULL,NULL,NULL),(183,191,3,'sales@ncagriculturecollective.org',1,0,0,0,NULL,NULL,NULL,NULL),(184,120,3,'feedback@ecwellnesspartners.org',1,0,0,0,NULL,NULL,NULL,NULL),(185,7,2,'jonesm99@ecwellnesspartners.org',0,0,0,0,NULL,NULL,NULL,NULL),(186,139,3,'sales@sierraempowermentassociation.org',1,0,0,0,NULL,NULL,NULL,NULL),(187,20,2,'irvingrant@sierraempowermentassociation.org',0,0,0,0,NULL,NULL,NULL,NULL),(188,172,3,'service@sierramusic.org',1,0,0,0,NULL,NULL,NULL,NULL),(189,113,3,'feedback@friendsschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(190,148,2,'jensen.ivey@friendsschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(191,127,3,'sales@woburnmusic.org',1,0,0,0,NULL,NULL,NULL,NULL),(192,114,2,'ivanovb78@woburnmusic.org',0,0,0,0,NULL,NULL,NULL,NULL),(193,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(194,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(195,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,136,1,'rayw59@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(3,125,1,'kennyterry@fakemail.com',1,0,0,0,NULL,NULL,NULL,NULL),(4,159,1,'jacobt37@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(5,80,1,'irvinterry38@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(6,105,1,'juliannwattson60@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(7,105,1,'juliannw@fakemail.info',0,0,0,0,NULL,NULL,NULL,NULL),(8,117,1,'jones.jay15@testmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(9,103,1,'ashleyd@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(10,103,1,'aq.deforest@fakemail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(11,138,1,'justinasmith@example.biz',1,0,0,0,NULL,NULL,NULL,NULL),(12,138,1,'justinas@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(13,179,1,'miguelj72@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL),(14,179,1,'jonesm@fishmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(15,95,1,'samuelst@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(16,95,1,'tanyas@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(17,55,1,'troyd22@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(18,55,1,'dimitrovt@lol.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(19,9,1,'gonzlez.teresa7@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL),(20,162,1,'tanyajensen@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(21,162,1,'ti.jensen75@notmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(22,135,1,'jinab@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL),(23,87,1,'mller.o.valene@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(24,87,1,'valenem65@lol.info',0,0,0,0,NULL,NULL,NULL,NULL),(25,113,1,'scottt48@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(26,113,1,'terry.scott30@fishmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(27,198,1,'eg.cruz@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(28,198,1,'elizabethc63@example.net',0,0,0,0,NULL,NULL,NULL,NULL),(29,171,1,'kathleens83@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),(30,171,1,'samuels.kathleen@notmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(31,153,1,'grant.jackson3@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(32,89,1,'ashlieprentice@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(33,89,1,'ashliep@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(34,79,1,'olsenc7@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(35,163,1,'zope.santina@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(36,163,1,'szope@sample.net',0,0,0,0,NULL,NULL,NULL,NULL),(37,78,1,'grant.b.kiara@fakemail.com',1,0,0,0,NULL,NULL,NULL,NULL),(38,154,1,'grantb@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(39,65,1,'jacksoni@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(40,65,1,'ivanov.jackson@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(41,166,1,'cruz.x.jerome55@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(42,75,1,'brigettecooper6@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(43,75,1,'cooper.brigette80@sample.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(44,27,1,'smith.junko@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(45,27,1,'smith.junko66@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(46,34,1,'gonzlez.esta@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(47,150,1,'jacobss@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),(48,150,1,'sm.jacobs@sample.org',0,0,0,0,NULL,NULL,NULL,NULL),(49,10,1,'mllerp69@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(50,10,1,'ps.mller75@mymail.org',0,0,0,0,NULL,NULL,NULL,NULL),(51,37,1,'dimitrov.irvin@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL),(52,37,1,'dimitrov.irvin@testmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(53,132,1,'bachmanl@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(54,46,1,'dimitrov.daren48@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(55,46,1,'ddimitrov@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(56,182,1,'smith.brittney@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(57,182,1,'smithb@testing.net',0,0,0,0,NULL,NULL,NULL,NULL),(58,63,1,'if.gonzlez41@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(59,63,1,'if.gonzlez@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(60,86,1,'jaya@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(61,86,1,'adamsj@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL),(62,49,1,'barkleym@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL),(63,92,1,'samuels.bryon@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(64,92,1,'samuels.bryon44@example.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(65,32,1,'jensen.ashley@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL),(66,57,1,'cwattson@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(67,148,1,'wagner.delana@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(68,148,1,'wagner.delana@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(69,106,1,'dimitrovr@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(70,106,1,'rebekahdimitrov83@notmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(71,165,1,'carloszope28@lol.net',1,0,0,0,NULL,NULL,NULL,NULL),(72,66,1,'samson.j.barry50@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(73,56,1,'parker.angelika@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(74,76,1,'allanw@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(75,157,1,'rolandozope81@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(76,41,1,'blackwell.kacey@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(77,53,1,'bachman.ashley33@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(78,187,1,'smith.b.esta@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),(79,38,1,'olsen.magan15@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(80,176,1,'dmller96@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(81,176,1,'darenmller98@mymail.net',0,0,0,0,NULL,NULL,NULL,NULL),(82,100,1,'parker.e.norris94@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL),(83,100,1,'parker.norris54@airmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(84,190,1,'parkers83@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(85,48,1,'heidiparker35@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL),(86,48,1,'heidiparker@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(87,72,1,'terrell.sherman@example.org',1,0,0,0,NULL,NULL,NULL,NULL),(88,128,1,'reynolds.ashley@lol.com',1,0,0,0,NULL,NULL,NULL,NULL),(89,128,1,'reynolds.ashley@fishmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(90,96,1,'terrell-reynoldsj@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(91,96,1,'jterrell-reynolds@testmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(92,83,1,'bx.yadav@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(93,83,1,'bx.yadav49@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(94,131,1,'yadav.iris@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(95,131,1,'yadav.iris94@example.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(96,59,1,'yadave13@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(97,121,1,'barryyadav@fakemail.com',1,0,0,0,NULL,NULL,NULL,NULL),(98,62,1,'tw.cooper66@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(99,52,1,'aterrell@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(100,127,1,'kennyb@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(101,77,1,'daz-barkleyi69@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(102,130,1,'landonb@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(103,81,1,'shadbarkley71@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(104,139,1,'kc.wattson93@example.biz',1,0,0,0,NULL,NULL,NULL,NULL),(105,139,1,'kathleenw17@spamalot.com',0,0,0,0,NULL,NULL,NULL,NULL),(106,147,1,'megany40@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(107,147,1,'megany93@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(108,120,1,'yadavm@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(109,120,1,'yadavm@sample.biz',0,0,0,0,NULL,NULL,NULL,NULL),(110,64,1,'jameson.megan@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(111,64,1,'jameson.megan@example.biz',0,0,0,0,NULL,NULL,NULL,NULL),(112,170,1,'olsen-jamesonc87@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),(113,6,1,'troyjameson70@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(114,31,1,'jameson.l.kiara@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(115,122,1,'abarkley62@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(116,122,1,'barkley.ashlie67@fishmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(117,23,1,'ab.yadav-barkley@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL),(118,23,1,'ab.yadav-barkley@testmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(119,22,1,'si.yadav-barkley63@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(120,22,1,'sanfordy71@airmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(121,108,1,'jo.grant@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(122,108,1,'justinagrant@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(123,197,1,'heidigrant77@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(124,4,1,'beulagrant36@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(125,4,1,'beulag@notmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(126,84,1,'grant.j.toby83@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),(127,13,1,'merried@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(128,13,1,'dazm5@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(129,141,1,'herminiat44@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(130,141,1,'terry.s.herminia98@notmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(131,180,1,'vivanov-terry@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),(132,169,1,'terryr49@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(133,116,1,'teddyi@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(134,173,1,'ivanovk@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(135,25,1,'nielsen.alexia22@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(136,25,1,'alexianielsen91@testing.org',0,0,0,0,NULL,NULL,NULL,NULL),(137,194,1,'wattson-nielsen.scott11@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(138,194,1,'wattson-nielsen.scott@sample.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(139,174,1,'brittneywattson-nielsen@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(140,174,1,'wattson-nielsen.brittney@airmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(141,184,1,'mcreynolds-jones.iris@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(142,164,1,'jones.teddy17@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(143,164,1,'tb.jones52@notmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(144,44,1,'jones.kenny80@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(145,119,1,'yadavb@example.biz',1,0,0,0,NULL,NULL,NULL,NULL),(146,156,1,'roberts-yadav.x.josefa@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(147,200,1,'mariay@notmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(148,200,1,'mariayadav34@sample.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(149,124,1,'jacoby@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(150,124,1,'jyadav2@notmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(151,5,1,'zope.troy@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(152,5,1,'zopet@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL),(153,199,1,'zoped54@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(154,35,1,'zope.lashawnda41@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),(155,71,1,'reynolds.bryon65@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(156,145,1,'deforest-reynolds.ivey@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(157,145,1,'iveyd@notmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(158,178,1,'ae.reynolds@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(159,16,1,'reynolds.scarlet9@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL),(160,109,1,'lincolnt@testing.info',1,0,0,0,NULL,NULL,NULL,NULL),(161,109,1,'lterry-wilson@airmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(162,155,1,'norriswilson71@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(163,11,1,'kennywilson@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL),(164,11,1,'ks.wilson@spamalot.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(165,192,3,'feedback@beverlyacademy.org',1,0,0,0,NULL,NULL,NULL,NULL),(166,42,3,'sales@pineagriculturenetwork.org',1,0,0,0,NULL,NULL,NULL,NULL),(167,16,2,'scarletreynolds28@pineagriculturenetwork.org',0,0,0,0,NULL,NULL,NULL,NULL),(168,18,3,'contact@baltimoretechnologyalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(169,165,2,'zope.carlos@baltimoretechnologyalliance.org',0,0,0,0,NULL,NULL,NULL,NULL),(170,67,3,'info@washingtonsystems.org',1,0,0,0,NULL,NULL,NULL,NULL),(171,13,2,'daz.merrie18@washingtonsystems.org',0,0,0,0,NULL,NULL,NULL,NULL),(172,47,3,'service@mikanaassociation.org',1,0,0,0,NULL,NULL,NULL,NULL),(173,122,2,'barkley.ashlie9@mikanaassociation.org',0,0,0,0,NULL,NULL,NULL,NULL),(174,99,3,'service@ncsustainabilityalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(175,128,2,'reynolds.ashley@ncsustainabilityalliance.org',0,0,0,0,NULL,NULL,NULL,NULL),(176,26,3,'contact@beechpartners.org',1,0,0,0,NULL,NULL,NULL,NULL),(177,25,2,'nielsena5@beechpartners.org',0,0,0,0,NULL,NULL,NULL,NULL),(178,118,3,'service@arkansaspartnership.org',1,0,0,0,NULL,NULL,NULL,NULL),(179,180,2,'@arkansaspartnership.org',0,0,0,0,NULL,NULL,NULL,NULL),(180,101,3,'service@kentuckyagricultureschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(181,82,2,'lee.ashlie@kentuckyagricultureschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(182,36,3,'sales@unitedpoetry.org',1,0,0,0,NULL,NULL,NULL,NULL),(183,201,2,'russellj@unitedpoetry.org',1,0,0,0,NULL,NULL,NULL,NULL),(184,28,3,'sales@iowaeducationassociation.org',1,0,0,0,NULL,NULL,NULL,NULL),(185,86,2,'jadams@iowaeducationassociation.org',0,0,0,0,NULL,NULL,NULL,NULL),(186,188,3,'contact@smagricultureassociation.org',1,0,0,0,NULL,NULL,NULL,NULL),(187,80,2,'irvinterry@smagricultureassociation.org',0,0,0,0,NULL,NULL,NULL,NULL),(188,30,3,'sales@opheimeducationsystems.org',1,0,0,0,NULL,NULL,NULL,NULL),(189,79,2,'olsen.clint@opheimeducationsystems.org',0,0,0,0,NULL,NULL,NULL,NULL),(190,133,3,'feedback@globalfamilyalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(191,53,2,'bachmana47@globalfamilyalliance.org',0,0,0,0,NULL,NULL,NULL,NULL),(192,73,3,'feedback@herseycenter.org',1,0,0,0,NULL,NULL,NULL,NULL),(193,142,2,'wattson.billy@herseycenter.org',1,0,0,0,NULL,NULL,NULL,NULL),(194,140,3,'sales@mlkingarts.org',1,0,0,0,NULL,NULL,NULL,NULL),(195,197,2,'hgrant47@mlkingarts.org',0,0,0,0,NULL,NULL,NULL,NULL),(196,45,3,'feedback@beechaction.org',1,0,0,0,NULL,NULL,NULL,NULL),(197,63,2,'gonzlez.ivey@beechaction.org',0,0,0,0,NULL,NULL,NULL,NULL),(198,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(199,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(200,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_email` ENABLE KEYS */; UNLOCK TABLES; @@ -440,7 +440,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',14,14,100.00),(28,'civicrm_financial_item',14,14,100.00),(29,'civicrm_contribution',16,15,100.00),(30,'civicrm_financial_item',15,15,100.00),(31,'civicrm_contribution',18,16,100.00),(32,'civicrm_financial_item',16,16,100.00),(33,'civicrm_contribution',20,17,100.00),(34,'civicrm_financial_item',17,17,100.00),(35,'civicrm_contribution',22,18,100.00),(36,'civicrm_financial_item',18,18,100.00),(37,'civicrm_contribution',23,19,100.00),(38,'civicrm_financial_item',19,19,100.00),(39,'civicrm_contribution',26,20,100.00),(40,'civicrm_financial_item',20,20,100.00),(41,'civicrm_contribution',28,21,100.00),(42,'civicrm_financial_item',21,21,100.00),(43,'civicrm_contribution',30,22,100.00),(44,'civicrm_financial_item',22,22,100.00),(45,'civicrm_contribution',32,23,100.00),(46,'civicrm_financial_item',23,23,100.00),(47,'civicrm_contribution',34,24,100.00),(48,'civicrm_financial_item',24,24,100.00),(49,'civicrm_contribution',36,25,100.00),(50,'civicrm_financial_item',25,25,100.00),(51,'civicrm_contribution',40,26,100.00),(52,'civicrm_financial_item',26,26,100.00),(53,'civicrm_contribution',42,27,100.00),(54,'civicrm_financial_item',27,27,100.00),(55,'civicrm_contribution',43,28,100.00),(56,'civicrm_financial_item',28,28,100.00),(57,'civicrm_contribution',15,29,50.00),(58,'civicrm_financial_item',29,29,50.00),(59,'civicrm_contribution',17,30,50.00),(60,'civicrm_financial_item',30,30,50.00),(61,'civicrm_contribution',19,31,50.00),(62,'civicrm_financial_item',31,31,50.00),(63,'civicrm_contribution',21,32,50.00),(64,'civicrm_financial_item',32,32,50.00),(65,'civicrm_contribution',25,33,50.00),(66,'civicrm_financial_item',33,33,50.00),(67,'civicrm_contribution',27,34,50.00),(68,'civicrm_financial_item',34,34,50.00),(69,'civicrm_contribution',29,35,50.00),(70,'civicrm_financial_item',35,35,50.00),(71,'civicrm_contribution',31,36,50.00),(72,'civicrm_financial_item',36,36,50.00),(73,'civicrm_contribution',33,37,50.00),(74,'civicrm_financial_item',37,37,50.00),(75,'civicrm_contribution',37,38,50.00),(76,'civicrm_financial_item',38,38,50.00),(77,'civicrm_contribution',38,39,50.00),(78,'civicrm_financial_item',39,39,50.00),(79,'civicrm_contribution',39,40,50.00),(80,'civicrm_financial_item',40,40,50.00),(81,'civicrm_contribution',41,41,50.00),(82,'civicrm_financial_item',41,41,50.00),(83,'civicrm_contribution',24,42,1200.00),(84,'civicrm_financial_item',42,42,1200.00),(85,'civicrm_contribution',35,43,1200.00),(86,'civicrm_financial_item',43,43,1200.00),(87,'civicrm_contribution',94,44,50.00),(88,'civicrm_financial_item',44,44,50.00),(89,'civicrm_contribution',76,45,50.00),(90,'civicrm_financial_item',45,45,50.00),(91,'civicrm_contribution',77,46,50.00),(92,'civicrm_financial_item',46,46,50.00),(93,'civicrm_contribution',86,47,50.00),(94,'civicrm_financial_item',47,47,50.00),(95,'civicrm_contribution',93,48,50.00),(96,'civicrm_financial_item',48,48,50.00),(97,'civicrm_contribution',57,49,50.00),(98,'civicrm_financial_item',49,49,50.00),(99,'civicrm_contribution',65,50,50.00),(100,'civicrm_financial_item',50,50,50.00),(101,'civicrm_contribution',63,51,50.00),(102,'civicrm_financial_item',51,51,50.00),(103,'civicrm_contribution',59,52,50.00),(104,'civicrm_financial_item',52,52,50.00),(105,'civicrm_contribution',78,53,50.00),(106,'civicrm_financial_item',53,53,50.00),(107,'civicrm_contribution',60,54,50.00),(108,'civicrm_financial_item',54,54,50.00),(109,'civicrm_contribution',66,55,50.00),(110,'civicrm_financial_item',55,55,50.00),(111,'civicrm_contribution',79,56,50.00),(112,'civicrm_financial_item',56,56,50.00),(113,'civicrm_contribution',62,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',84,59,50.00),(118,'civicrm_financial_item',59,59,50.00),(119,'civicrm_contribution',71,60,800.00),(120,'civicrm_financial_item',60,60,800.00),(121,'civicrm_contribution',56,61,800.00),(122,'civicrm_financial_item',61,61,800.00),(123,'civicrm_contribution',92,62,800.00),(124,'civicrm_financial_item',62,62,800.00),(125,'civicrm_contribution',49,63,800.00),(126,'civicrm_financial_item',63,63,800.00),(127,'civicrm_contribution',83,64,800.00),(128,'civicrm_financial_item',64,64,800.00),(129,'civicrm_contribution',74,65,800.00),(130,'civicrm_financial_item',65,65,800.00),(131,'civicrm_contribution',80,66,800.00),(132,'civicrm_financial_item',66,66,800.00),(133,'civicrm_contribution',64,67,800.00),(134,'civicrm_financial_item',67,67,800.00),(135,'civicrm_contribution',73,68,800.00),(136,'civicrm_financial_item',68,68,800.00),(137,'civicrm_contribution',82,69,800.00),(138,'civicrm_financial_item',69,69,800.00),(139,'civicrm_contribution',67,70,800.00),(140,'civicrm_financial_item',70,70,800.00),(141,'civicrm_contribution',70,71,800.00),(142,'civicrm_financial_item',71,71,800.00),(143,'civicrm_contribution',50,72,800.00),(144,'civicrm_financial_item',72,72,800.00),(145,'civicrm_contribution',54,73,800.00),(146,'civicrm_financial_item',73,73,800.00),(147,'civicrm_contribution',72,74,800.00),(148,'civicrm_financial_item',74,74,800.00),(149,'civicrm_contribution',90,75,800.00),(150,'civicrm_financial_item',75,75,800.00),(151,'civicrm_contribution',85,76,800.00),(152,'civicrm_financial_item',76,76,800.00),(153,'civicrm_contribution',88,77,800.00),(154,'civicrm_financial_item',77,77,800.00),(155,'civicrm_contribution',55,78,50.00),(156,'civicrm_financial_item',78,78,50.00),(157,'civicrm_contribution',45,79,50.00),(158,'civicrm_financial_item',79,79,50.00),(159,'civicrm_contribution',91,80,50.00),(160,'civicrm_financial_item',80,80,50.00),(161,'civicrm_contribution',87,81,50.00),(162,'civicrm_financial_item',81,81,50.00),(163,'civicrm_contribution',68,82,50.00),(164,'civicrm_financial_item',82,82,50.00),(165,'civicrm_contribution',75,83,50.00),(166,'civicrm_financial_item',83,83,50.00),(167,'civicrm_contribution',52,84,50.00),(168,'civicrm_financial_item',84,84,50.00),(169,'civicrm_contribution',51,85,50.00),(170,'civicrm_financial_item',85,85,50.00),(171,'civicrm_contribution',89,86,50.00),(172,'civicrm_financial_item',86,86,50.00),(173,'civicrm_contribution',47,87,50.00),(174,'civicrm_financial_item',87,87,50.00),(175,'civicrm_contribution',69,88,50.00),(176,'civicrm_financial_item',88,88,50.00),(177,'civicrm_contribution',46,89,50.00),(178,'civicrm_financial_item',89,89,50.00),(179,'civicrm_contribution',48,90,50.00),(180,'civicrm_financial_item',90,90,50.00),(181,'civicrm_contribution',81,91,50.00),(182,'civicrm_financial_item',91,91,50.00),(183,'civicrm_contribution',61,92,50.00),(184,'civicrm_financial_item',92,92,50.00),(185,'civicrm_contribution',58,93,50.00),(186,'civicrm_financial_item',93,93,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',14,14,100.00),(28,'civicrm_financial_item',14,14,100.00),(29,'civicrm_contribution',16,15,100.00),(30,'civicrm_financial_item',15,15,100.00),(31,'civicrm_contribution',20,16,100.00),(32,'civicrm_financial_item',16,16,100.00),(33,'civicrm_contribution',22,17,100.00),(34,'civicrm_financial_item',17,17,100.00),(35,'civicrm_contribution',23,18,100.00),(36,'civicrm_financial_item',18,18,100.00),(37,'civicrm_contribution',26,19,100.00),(38,'civicrm_financial_item',19,19,100.00),(39,'civicrm_contribution',30,20,100.00),(40,'civicrm_financial_item',20,20,100.00),(41,'civicrm_contribution',32,21,100.00),(42,'civicrm_financial_item',21,21,100.00),(43,'civicrm_contribution',33,22,100.00),(44,'civicrm_financial_item',22,22,100.00),(45,'civicrm_contribution',34,23,100.00),(46,'civicrm_financial_item',23,23,100.00),(47,'civicrm_contribution',36,24,100.00),(48,'civicrm_financial_item',24,24,100.00),(49,'civicrm_contribution',38,25,100.00),(50,'civicrm_financial_item',25,25,100.00),(51,'civicrm_contribution',40,26,100.00),(52,'civicrm_financial_item',26,26,100.00),(53,'civicrm_contribution',42,27,100.00),(54,'civicrm_financial_item',27,27,100.00),(55,'civicrm_contribution',15,28,50.00),(56,'civicrm_financial_item',28,28,50.00),(57,'civicrm_contribution',17,29,50.00),(58,'civicrm_financial_item',29,29,50.00),(59,'civicrm_contribution',18,30,50.00),(60,'civicrm_financial_item',30,30,50.00),(61,'civicrm_contribution',19,31,50.00),(62,'civicrm_financial_item',31,31,50.00),(63,'civicrm_contribution',21,32,50.00),(64,'civicrm_financial_item',32,32,50.00),(65,'civicrm_contribution',25,33,50.00),(66,'civicrm_financial_item',33,33,50.00),(67,'civicrm_contribution',27,34,50.00),(68,'civicrm_financial_item',34,34,50.00),(69,'civicrm_contribution',28,35,50.00),(70,'civicrm_financial_item',35,35,50.00),(71,'civicrm_contribution',29,36,50.00),(72,'civicrm_financial_item',36,36,50.00),(73,'civicrm_contribution',31,37,50.00),(74,'civicrm_financial_item',37,37,50.00),(75,'civicrm_contribution',37,38,50.00),(76,'civicrm_financial_item',38,38,50.00),(77,'civicrm_contribution',39,39,50.00),(78,'civicrm_financial_item',39,39,50.00),(79,'civicrm_contribution',41,40,50.00),(80,'civicrm_financial_item',40,40,50.00),(81,'civicrm_contribution',43,41,50.00),(82,'civicrm_financial_item',41,41,50.00),(83,'civicrm_contribution',24,42,1200.00),(84,'civicrm_financial_item',42,42,1200.00),(85,'civicrm_contribution',35,43,1200.00),(86,'civicrm_financial_item',43,43,1200.00),(87,'civicrm_contribution',86,44,50.00),(88,'civicrm_financial_item',44,44,50.00),(89,'civicrm_contribution',91,45,50.00),(90,'civicrm_financial_item',45,45,50.00),(91,'civicrm_contribution',73,46,50.00),(92,'civicrm_financial_item',46,46,50.00),(93,'civicrm_contribution',53,47,50.00),(94,'civicrm_financial_item',47,47,50.00),(95,'civicrm_contribution',89,48,50.00),(96,'civicrm_financial_item',48,48,50.00),(97,'civicrm_contribution',72,49,50.00),(98,'civicrm_financial_item',49,49,50.00),(99,'civicrm_contribution',71,50,50.00),(100,'civicrm_financial_item',50,50,50.00),(101,'civicrm_contribution',64,51,50.00),(102,'civicrm_financial_item',51,51,50.00),(103,'civicrm_contribution',78,52,50.00),(104,'civicrm_financial_item',52,52,50.00),(105,'civicrm_contribution',60,53,50.00),(106,'civicrm_financial_item',53,53,50.00),(107,'civicrm_contribution',55,54,50.00),(108,'civicrm_financial_item',54,54,50.00),(109,'civicrm_contribution',90,55,50.00),(110,'civicrm_financial_item',55,55,50.00),(111,'civicrm_contribution',67,56,50.00),(112,'civicrm_financial_item',56,56,50.00),(113,'civicrm_contribution',88,57,50.00),(114,'civicrm_financial_item',57,57,50.00),(115,'civicrm_contribution',77,58,50.00),(116,'civicrm_financial_item',58,58,50.00),(117,'civicrm_contribution',54,59,50.00),(118,'civicrm_financial_item',59,59,50.00),(119,'civicrm_contribution',48,60,800.00),(120,'civicrm_financial_item',60,60,800.00),(121,'civicrm_contribution',47,61,800.00),(122,'civicrm_financial_item',61,61,800.00),(123,'civicrm_contribution',70,62,800.00),(124,'civicrm_financial_item',62,62,800.00),(125,'civicrm_contribution',49,63,800.00),(126,'civicrm_financial_item',63,63,800.00),(127,'civicrm_contribution',74,64,800.00),(128,'civicrm_financial_item',64,64,800.00),(129,'civicrm_contribution',66,65,800.00),(130,'civicrm_financial_item',65,65,800.00),(131,'civicrm_contribution',57,66,800.00),(132,'civicrm_financial_item',66,66,800.00),(133,'civicrm_contribution',61,67,800.00),(134,'civicrm_financial_item',67,67,800.00),(135,'civicrm_contribution',87,68,800.00),(136,'civicrm_financial_item',68,68,800.00),(137,'civicrm_contribution',63,69,800.00),(138,'civicrm_financial_item',69,69,800.00),(139,'civicrm_contribution',79,70,800.00),(140,'civicrm_financial_item',70,70,800.00),(141,'civicrm_contribution',92,71,800.00),(142,'civicrm_financial_item',71,71,800.00),(143,'civicrm_contribution',69,72,800.00),(144,'civicrm_financial_item',72,72,800.00),(145,'civicrm_contribution',62,73,800.00),(146,'civicrm_financial_item',73,73,800.00),(147,'civicrm_contribution',85,74,800.00),(148,'civicrm_financial_item',74,74,800.00),(149,'civicrm_contribution',84,75,800.00),(150,'civicrm_financial_item',75,75,800.00),(151,'civicrm_contribution',45,76,800.00),(152,'civicrm_financial_item',76,76,800.00),(153,'civicrm_contribution',58,77,800.00),(154,'civicrm_financial_item',77,77,800.00),(155,'civicrm_contribution',65,78,50.00),(156,'civicrm_financial_item',78,78,50.00),(157,'civicrm_contribution',80,79,50.00),(158,'civicrm_financial_item',79,79,50.00),(159,'civicrm_contribution',76,80,50.00),(160,'civicrm_financial_item',80,80,50.00),(161,'civicrm_contribution',46,81,50.00),(162,'civicrm_financial_item',81,81,50.00),(163,'civicrm_contribution',56,82,50.00),(164,'civicrm_financial_item',82,82,50.00),(165,'civicrm_contribution',68,83,50.00),(166,'civicrm_financial_item',83,83,50.00),(167,'civicrm_contribution',50,84,50.00),(168,'civicrm_financial_item',84,84,50.00),(169,'civicrm_contribution',93,85,50.00),(170,'civicrm_financial_item',85,85,50.00),(171,'civicrm_contribution',81,86,50.00),(172,'civicrm_financial_item',86,86,50.00),(173,'civicrm_contribution',51,87,50.00),(174,'civicrm_financial_item',87,87,50.00),(175,'civicrm_contribution',83,88,50.00),(176,'civicrm_financial_item',88,88,50.00),(177,'civicrm_contribution',75,89,50.00),(178,'civicrm_financial_item',89,89,50.00),(179,'civicrm_contribution',59,90,50.00),(180,'civicrm_financial_item',90,90,50.00),(181,'civicrm_contribution',82,91,50.00),(182,'civicrm_financial_item',91,91,50.00),(183,'civicrm_contribution',94,92,50.00),(184,'civicrm_financial_item',92,92,50.00),(185,'civicrm_contribution',52,93,50.00),(186,'civicrm_financial_item',93,93,50.00); /*!40000 ALTER TABLE `civicrm_entity_financial_trxn` ENABLE KEYS */; UNLOCK TABLES; @@ -450,7 +450,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 (28,'civicrm_contact',4,4),(73,'civicrm_contact',7,5),(32,'civicrm_contact',8,4),(14,'civicrm_contact',10,5),(104,'civicrm_contact',11,5),(76,'civicrm_contact',13,5),(43,'civicrm_contact',14,5),(54,'civicrm_contact',15,4),(55,'civicrm_contact',15,5),(107,'civicrm_contact',18,4),(108,'civicrm_contact',18,5),(110,'civicrm_contact',21,4),(111,'civicrm_contact',21,5),(92,'civicrm_contact',24,4),(93,'civicrm_contact',24,5),(16,'civicrm_contact',26,4),(44,'civicrm_contact',27,4),(45,'civicrm_contact',27,5),(89,'civicrm_contact',28,4),(61,'civicrm_contact',30,4),(62,'civicrm_contact',30,5),(20,'civicrm_contact',40,5),(69,'civicrm_contact',41,5),(81,'civicrm_contact',43,4),(68,'civicrm_contact',44,4),(52,'civicrm_contact',54,4),(53,'civicrm_contact',54,5),(71,'civicrm_contact',60,4),(72,'civicrm_contact',60,5),(102,'civicrm_contact',62,4),(112,'civicrm_contact',65,5),(12,'civicrm_contact',66,4),(13,'civicrm_contact',66,5),(105,'civicrm_contact',67,5),(60,'civicrm_contact',70,4),(38,'civicrm_contact',71,4),(66,'civicrm_contact',72,4),(67,'civicrm_contact',72,5),(106,'civicrm_contact',73,4),(84,'civicrm_contact',80,5),(4,'civicrm_contact',82,2),(5,'civicrm_contact',84,3),(30,'civicrm_contact',93,4),(31,'civicrm_contact',93,5),(11,'civicrm_contact',94,5),(74,'civicrm_contact',95,4),(83,'civicrm_contact',98,5),(58,'civicrm_contact',105,4),(59,'civicrm_contact',105,5),(15,'civicrm_contact',106,5),(33,'civicrm_contact',111,4),(34,'civicrm_contact',111,5),(21,'civicrm_contact',112,5),(116,'civicrm_contact',116,4),(26,'civicrm_contact',119,4),(27,'civicrm_contact',121,4),(97,'civicrm_contact',122,4),(100,'civicrm_contact',123,4),(101,'civicrm_contact',123,5),(115,'civicrm_contact',124,4),(29,'civicrm_contact',125,4),(113,'civicrm_contact',126,4),(114,'civicrm_contact',126,5),(47,'civicrm_contact',128,5),(88,'civicrm_contact',130,5),(3,'civicrm_contact',135,2),(118,'civicrm_contact',138,4),(119,'civicrm_contact',138,5),(8,'civicrm_contact',139,1),(2,'civicrm_contact',141,1),(117,'civicrm_contact',142,5),(35,'civicrm_contact',144,4),(36,'civicrm_contact',144,5),(41,'civicrm_contact',145,4),(85,'civicrm_contact',146,4),(50,'civicrm_contact',150,4),(51,'civicrm_contact',150,5),(17,'civicrm_contact',151,5),(10,'civicrm_contact',152,3),(90,'civicrm_contact',153,4),(91,'civicrm_contact',153,5),(25,'civicrm_contact',154,5),(18,'civicrm_contact',156,4),(19,'civicrm_contact',156,5),(42,'civicrm_contact',157,4),(79,'civicrm_contact',159,4),(80,'civicrm_contact',159,5),(96,'civicrm_contact',160,4),(63,'civicrm_contact',162,4),(64,'civicrm_contact',162,5),(22,'civicrm_contact',166,5),(82,'civicrm_contact',167,5),(23,'civicrm_contact',168,4),(24,'civicrm_contact',168,5),(75,'civicrm_contact',170,4),(9,'civicrm_contact',172,2),(70,'civicrm_contact',173,5),(1,'civicrm_contact',175,3),(77,'civicrm_contact',177,4),(78,'civicrm_contact',177,5),(46,'civicrm_contact',178,5),(109,'civicrm_contact',181,5),(65,'civicrm_contact',182,5),(94,'civicrm_contact',183,4),(95,'civicrm_contact',183,5),(48,'civicrm_contact',189,4),(49,'civicrm_contact',189,5),(103,'civicrm_contact',190,5),(6,'civicrm_contact',191,3),(56,'civicrm_contact',192,4),(57,'civicrm_contact',192,5),(37,'civicrm_contact',193,4),(40,'civicrm_contact',196,5),(39,'civicrm_contact',197,4),(98,'civicrm_contact',198,4),(99,'civicrm_contact',198,5),(7,'civicrm_contact',200,2),(86,'civicrm_contact',201,4),(87,'civicrm_contact',201,5); +INSERT INTO `civicrm_entity_tag` (`id`, `entity_table`, `entity_id`, `tag_id`) VALUES (34,'civicrm_contact',2,5),(29,'civicrm_contact',3,4),(30,'civicrm_contact',3,5),(95,'civicrm_contact',4,4),(110,'civicrm_contact',5,4),(88,'civicrm_contact',6,4),(89,'civicrm_contact',6,5),(47,'civicrm_contact',10,4),(10,'civicrm_contact',12,2),(2,'civicrm_contact',18,2),(92,'civicrm_contact',23,4),(111,'civicrm_contact',24,4),(112,'civicrm_contact',24,5),(4,'civicrm_contact',26,1),(44,'civicrm_contact',27,4),(45,'civicrm_contact',27,5),(6,'civicrm_contact',28,3),(7,'civicrm_contact',30,1),(54,'civicrm_contact',32,5),(74,'civicrm_contact',33,4),(75,'civicrm_contact',33,5),(3,'civicrm_contact',47,2),(53,'civicrm_contact',49,4),(68,'civicrm_contact',51,4),(69,'civicrm_contact',51,5),(64,'civicrm_contact',53,4),(24,'civicrm_contact',55,5),(60,'civicrm_contact',56,5),(77,'civicrm_contact',59,4),(78,'civicrm_contact',62,4),(51,'civicrm_contact',63,4),(52,'civicrm_contact',63,5),(87,'civicrm_contact',64,4),(79,'civicrm_contact',68,4),(55,'civicrm_contact',69,4),(56,'civicrm_contact',69,5),(97,'civicrm_contact',70,5),(113,'civicrm_contact',71,4),(72,'civicrm_contact',72,4),(73,'civicrm_contact',72,5),(67,'civicrm_contact',74,5),(35,'civicrm_contact',79,5),(76,'civicrm_contact',83,5),(27,'civicrm_contact',87,4),(28,'civicrm_contact',87,5),(23,'civicrm_contact',88,5),(105,'civicrm_contact',90,4),(106,'civicrm_contact',90,5),(21,'civicrm_contact',98,5),(70,'civicrm_contact',100,4),(5,'civicrm_contact',101,1),(12,'civicrm_contact',102,4),(13,'civicrm_contact',102,5),(17,'civicrm_contact',105,4),(18,'civicrm_contact',105,5),(93,'civicrm_contact',108,4),(94,'civicrm_contact',108,5),(115,'civicrm_contact',109,5),(46,'civicrm_contact',110,4),(8,'civicrm_contact',111,1),(32,'civicrm_contact',112,4),(84,'civicrm_contact',114,4),(85,'civicrm_contact',114,5),(82,'civicrm_contact',115,5),(101,'civicrm_contact',116,4),(19,'civicrm_contact',117,4),(20,'civicrm_contact',117,5),(108,'civicrm_contact',119,5),(14,'civicrm_contact',125,4),(41,'civicrm_contact',126,4),(42,'civicrm_contact',126,5),(80,'civicrm_contact',127,5),(81,'civicrm_contact',130,5),(48,'civicrm_contact',132,4),(49,'civicrm_contact',132,5),(50,'civicrm_contact',134,4),(11,'civicrm_contact',136,4),(86,'civicrm_contact',137,5),(9,'civicrm_contact',140,1),(98,'civicrm_contact',141,4),(99,'civicrm_contact',141,5),(103,'civicrm_contact',142,4),(96,'civicrm_contact',143,4),(36,'civicrm_contact',144,4),(37,'civicrm_contact',144,5),(57,'civicrm_contact',148,5),(38,'civicrm_contact',154,5),(116,'civicrm_contact',155,4),(100,'civicrm_contact',161,5),(25,'civicrm_contact',162,4),(26,'civicrm_contact',162,5),(107,'civicrm_contact',164,5),(58,'civicrm_contact',165,4),(59,'civicrm_contact',165,5),(43,'civicrm_contact',166,5),(39,'civicrm_contact',168,4),(40,'civicrm_contact',168,5),(83,'civicrm_contact',172,4),(102,'civicrm_contact',173,4),(66,'civicrm_contact',176,4),(114,'civicrm_contact',178,5),(22,'civicrm_contact',179,5),(65,'civicrm_contact',187,5),(90,'civicrm_contact',189,4),(91,'civicrm_contact',189,5),(71,'civicrm_contact',190,5),(31,'civicrm_contact',191,4),(1,'civicrm_contact',192,3),(33,'civicrm_contact',193,5),(104,'civicrm_contact',194,5),(62,'civicrm_contact',195,4),(63,'civicrm_contact',195,5),(61,'civicrm_contact',196,4),(109,'civicrm_contact',200,5),(15,'civicrm_contact',201,4),(16,'civicrm_contact',201,5); /*!40000 ALTER TABLE `civicrm_entity_tag` ENABLE KEYS */; UNLOCK TABLES; @@ -460,7 +460,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`, `parent_event_id`, `slot_label_id`) 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,'2013-08-26 17:00:00','2013-08-28 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,NULL,NULL),(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,'2013-02-25 12:00:00','2013-02-25 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,NULL,NULL),(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,'2013-09-26 07:00:00','2013-09-29 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,NULL,NULL),(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,NULL,NULL),(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,NULL,NULL),(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,NULL,NULL); +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`, `parent_event_id`, `slot_label_id`) 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,'2013-09-01 17:00:00','2013-09-03 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,NULL,NULL),(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,'2013-02-28 12:00:00','2013-02-28 17:00:00',1,'Register Now',NULL,NULL,50,'We have all the singers we can handle. Come to the pavilion anyway and join in from the audience.',1,2,NULL,NULL,1,'Festival Fee',1,2,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','

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,NULL,NULL),(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,'2013-10-01 07:00:00','2013-10-04 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,NULL,NULL),(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,NULL,NULL),(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,NULL,NULL),(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,NULL,NULL); /*!40000 ALTER TABLE `civicrm_event` ENABLE KEYS */; UNLOCK TABLES; @@ -516,7 +516,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,'2013-02-26 05:19:32','2010-04-11 00:00:00',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),(2,'2013-02-26 05:19:32','2010-03-21 00:00:00',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),(3,'2013-02-26 05:19:32','2010-04-29 00:00:00',6,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',3),(4,'2013-02-26 05:19:32','2010-04-11 00:00:00',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),(5,'2013-02-26 05:19:32','2010-04-15 00:00:00',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',5),(6,'2013-02-26 05:19:32','2010-04-11 00:00:00',19,'Contribution Amount',175.00,'USD',1,1,'civicrm_line_item',6),(7,'2013-02-26 05:19:33','2010-03-27 00:00:00',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',7),(8,'2013-02-26 05:19:33','2010-03-08 00:00:00',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',8),(9,'2013-02-26 05:19:33','2010-04-22 00:00:00',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',9),(10,'2013-02-26 05:19:33','2009-07-01 11:53:50',71,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',10),(11,'2013-02-26 05:19:33','2009-07-01 12:55:41',43,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',11),(12,'2013-02-26 05:19:33','2009-10-01 11:53:50',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',12),(13,'2013-02-26 05:19:33','2009-12-01 12:55:41',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',13),(14,'2013-02-26 05:19:33','2013-02-26 10:49:30',97,'General',100.00,'USD',2,1,'civicrm_line_item',16),(15,'2013-02-26 05:19:34','2013-02-26 10:49:30',168,'General',100.00,'USD',2,1,'civicrm_line_item',17),(16,'2013-02-26 05:19:34','2013-02-26 10:49:30',118,'General',100.00,'USD',2,1,'civicrm_line_item',18),(17,'2013-02-26 05:19:34','2013-02-26 10:49:30',197,'General',100.00,'USD',2,1,'civicrm_line_item',19),(18,'2013-02-26 05:19:34','2013-02-26 10:49:30',76,'General',100.00,'USD',2,1,'civicrm_line_item',20),(19,'2013-02-26 05:19:34','2013-02-26 10:49:30',164,'General',100.00,'USD',2,1,'civicrm_line_item',21),(20,'2013-02-26 05:19:34','2013-02-26 10:49:30',163,'General',100.00,'USD',2,1,'civicrm_line_item',22),(21,'2013-02-26 05:19:34','2013-02-26 10:49:30',170,'General',100.00,'USD',2,1,'civicrm_line_item',23),(22,'2013-02-26 05:19:34','2013-02-26 10:49:30',112,'General',100.00,'USD',2,1,'civicrm_line_item',24),(23,'2013-02-26 05:19:35','2013-02-26 10:49:30',131,'General',100.00,'USD',2,1,'civicrm_line_item',25),(24,'2013-02-26 05:19:35','2013-02-26 10:49:30',154,'General',100.00,'USD',2,1,'civicrm_line_item',26),(25,'2013-02-26 05:19:35','2013-02-26 10:49:30',93,'General',100.00,'USD',2,1,'civicrm_line_item',27),(26,'2013-02-26 05:19:35','2013-02-26 10:49:30',7,'General',100.00,'USD',2,1,'civicrm_line_item',28),(27,'2013-02-26 05:19:35','2013-02-26 10:49:30',185,'General',100.00,'USD',2,1,'civicrm_line_item',29),(28,'2013-02-26 05:19:35','2013-02-26 10:49:30',179,'General',100.00,'USD',2,1,'civicrm_line_item',30),(29,'2013-02-26 05:19:35','2013-02-26 10:49:30',167,'Student',50.00,'USD',2,1,'civicrm_line_item',31),(30,'2013-02-26 05:19:36','2013-02-26 10:49:30',119,'Student',50.00,'USD',2,1,'civicrm_line_item',32),(31,'2013-02-26 05:19:36','2013-02-26 10:49:30',100,'Student',50.00,'USD',2,1,'civicrm_line_item',33),(32,'2013-02-26 05:19:36','2013-02-26 10:49:30',46,'Student',50.00,'USD',2,1,'civicrm_line_item',34),(33,'2013-02-26 05:19:36','2013-02-26 10:49:30',195,'Student',50.00,'USD',2,1,'civicrm_line_item',35),(34,'2013-02-26 05:19:36','2013-02-26 10:49:30',184,'Student',50.00,'USD',2,1,'civicrm_line_item',36),(35,'2013-02-26 05:19:36','2013-02-26 10:49:30',40,'Student',50.00,'USD',2,1,'civicrm_line_item',37),(36,'2013-02-26 05:19:36','2013-02-26 10:49:30',109,'Student',50.00,'USD',2,1,'civicrm_line_item',38),(37,'2013-02-26 05:19:37','2013-02-26 10:49:30',116,'Student',50.00,'USD',2,1,'civicrm_line_item',39),(38,'2013-02-26 05:19:37','2013-02-26 10:49:30',45,'Student',50.00,'USD',2,1,'civicrm_line_item',40),(39,'2013-02-26 05:19:37','2013-02-26 10:49:30',34,'Student',50.00,'USD',2,1,'civicrm_line_item',41),(40,'2013-02-26 05:19:37','2013-02-26 10:49:30',153,'Student',50.00,'USD',2,1,'civicrm_line_item',42),(41,'2013-02-26 05:19:37','2013-02-26 10:49:30',70,'Student',50.00,'USD',2,1,'civicrm_line_item',43),(42,'2013-02-26 05:19:37','2013-02-26 10:49:30',42,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',44),(43,'2013-02-26 05:19:37','2013-02-26 10:49:30',132,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',45),(44,'2013-02-26 05:19:38','2013-02-26 10:49:38',201,'Soprano',50.00,'USD',2,1,'civicrm_line_item',81),(45,'2013-02-26 05:19:38','2013-02-26 10:49:38',132,'Soprano',50.00,'USD',2,1,'civicrm_line_item',82),(46,'2013-02-26 05:19:38','2013-02-26 10:49:38',135,'Soprano',50.00,'USD',2,1,'civicrm_line_item',83),(47,'2013-02-26 05:19:38','2013-02-26 10:49:38',185,'Soprano',50.00,'USD',2,1,'civicrm_line_item',84),(48,'2013-02-26 05:19:38','2013-02-26 10:49:38',197,'Soprano',50.00,'USD',2,1,'civicrm_line_item',85),(49,'2013-02-26 05:19:38','2013-02-26 10:49:38',58,'Soprano',50.00,'USD',2,1,'civicrm_line_item',86),(50,'2013-02-26 05:19:39','2013-02-26 10:49:38',87,'Soprano',50.00,'USD',2,1,'civicrm_line_item',87),(51,'2013-02-26 05:19:39','2013-02-26 10:49:38',77,'Soprano',50.00,'USD',2,1,'civicrm_line_item',88),(52,'2013-02-26 05:19:39','2013-02-26 10:49:38',67,'Soprano',50.00,'USD',2,1,'civicrm_line_item',89),(53,'2013-02-26 05:19:39','2013-02-26 10:49:38',136,'Soprano',50.00,'USD',2,1,'civicrm_line_item',90),(54,'2013-02-26 05:19:39','2013-02-26 10:49:38',69,'Soprano',50.00,'USD',2,1,'civicrm_line_item',91),(55,'2013-02-26 05:19:39','2013-02-26 10:49:38',91,'Soprano',50.00,'USD',2,1,'civicrm_line_item',92),(56,'2013-02-26 05:19:40','2013-02-26 10:49:38',142,'Soprano',50.00,'USD',2,1,'civicrm_line_item',93),(57,'2013-02-26 05:19:40','2013-02-26 10:49:38',76,'Soprano',50.00,'USD',2,1,'civicrm_line_item',94),(58,'2013-02-26 05:19:40','2013-02-26 10:49:38',48,'Soprano',50.00,'USD',2,1,'civicrm_line_item',95),(59,'2013-02-26 05:19:40','2013-02-26 10:49:38',181,'Soprano',50.00,'USD',2,1,'civicrm_line_item',96),(60,'2013-02-26 05:19:41','2013-02-26 10:49:38',106,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',47),(61,'2013-02-26 05:19:41','2013-02-26 10:49:38',55,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',48),(62,'2013-02-26 05:19:41','2013-02-26 10:49:38',196,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',49),(63,'2013-02-26 05:19:41','2013-02-26 10:49:38',29,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',50),(64,'2013-02-26 05:19:41','2013-02-26 10:49:38',172,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',51),(65,'2013-02-26 05:19:41','2013-02-26 10:49:38',127,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',52),(66,'2013-02-26 05:19:41','2013-02-26 10:49:38',148,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',53),(67,'2013-02-26 05:19:41','2013-02-26 10:49:38',86,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',54),(68,'2013-02-26 05:19:42','2013-02-26 10:49:38',125,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',55),(69,'2013-02-26 05:19:42','2013-02-26 10:49:38',160,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',56),(70,'2013-02-26 05:19:42','2013-02-26 10:49:38',92,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',57),(71,'2013-02-26 05:19:42','2013-02-26 10:49:38',103,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',58),(72,'2013-02-26 05:19:42','2013-02-26 10:49:38',30,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',59),(73,'2013-02-26 05:19:42','2013-02-26 10:49:38',53,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',60),(74,'2013-02-26 05:19:42','2013-02-26 10:49:38',117,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',61),(75,'2013-02-26 05:19:43','2013-02-26 10:49:38',192,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',62),(76,'2013-02-26 05:19:43','2013-02-26 10:49:38',184,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),(77,'2013-02-26 05:19:43','2013-02-26 10:49:38',189,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),(78,'2013-02-26 05:19:43','2013-02-26 10:49:38',54,'Single',50.00,'USD',4,1,'civicrm_line_item',65),(79,'2013-02-26 05:19:43','2013-02-26 10:49:38',3,'Single',50.00,'USD',4,1,'civicrm_line_item',66),(80,'2013-02-26 05:19:43','2013-02-26 10:49:38',194,'Single',50.00,'USD',4,1,'civicrm_line_item',67),(81,'2013-02-26 05:19:43','2013-02-26 10:49:38',186,'Single',50.00,'USD',4,1,'civicrm_line_item',68),(82,'2013-02-26 05:19:43','2013-02-26 10:49:38',96,'Single',50.00,'USD',4,1,'civicrm_line_item',69),(83,'2013-02-26 05:19:44','2013-02-26 10:49:38',131,'Single',50.00,'USD',4,1,'civicrm_line_item',70),(84,'2013-02-26 05:19:44','2013-02-26 10:49:38',47,'Single',50.00,'USD',4,1,'civicrm_line_item',71),(85,'2013-02-26 05:19:44','2013-02-26 10:49:38',34,'Single',50.00,'USD',4,1,'civicrm_line_item',72),(86,'2013-02-26 05:19:44','2013-02-26 10:49:38',191,'Single',50.00,'USD',4,1,'civicrm_line_item',73),(87,'2013-02-26 05:19:44','2013-02-26 10:49:38',9,'Single',50.00,'USD',4,1,'civicrm_line_item',74),(88,'2013-02-26 05:19:44','2013-02-26 10:49:38',101,'Single',50.00,'USD',4,1,'civicrm_line_item',75),(89,'2013-02-26 05:19:44','2013-02-26 10:49:38',8,'Single',50.00,'USD',4,1,'civicrm_line_item',76),(90,'2013-02-26 05:19:44','2013-02-26 10:49:38',25,'Single',50.00,'USD',4,1,'civicrm_line_item',77),(91,'2013-02-26 05:19:45','2013-02-26 10:49:38',152,'Single',50.00,'USD',4,1,'civicrm_line_item',78),(92,'2013-02-26 05:19:45','2013-02-26 10:49:38',72,'Single',50.00,'USD',4,1,'civicrm_line_item',79),(93,'2013-02-26 05:19:45','2013-02-26 10:49:38',62,'Single',50.00,'USD',4,1,'civicrm_line_item',80); +INSERT INTO `civicrm_financial_item` (`id`, `created_date`, `transaction_date`, `contact_id`, `description`, `amount`, `currency`, `financial_account_id`, `status_id`, `entity_table`, `entity_id`) VALUES (1,'2013-03-01 18:55:52','2010-04-11 00:00:00',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),(2,'2013-03-01 18:55:52','2010-03-21 00:00:00',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),(3,'2013-03-01 18:55:52','2010-04-29 00:00:00',6,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',3),(4,'2013-03-01 18:55:52','2010-04-11 00:00:00',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),(5,'2013-03-01 18:55:52','2010-04-15 00:00:00',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',5),(6,'2013-03-01 18:55:52','2010-04-11 00:00:00',19,'Contribution Amount',175.00,'USD',1,1,'civicrm_line_item',6),(7,'2013-03-01 18:55:52','2010-03-27 00:00:00',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',7),(8,'2013-03-01 18:55:52','2010-03-08 00:00:00',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',8),(9,'2013-03-01 18:55:52','2010-04-22 00:00:00',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',9),(10,'2013-03-01 18:55:52','2009-07-01 11:53:50',71,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',10),(11,'2013-03-01 18:55:52','2009-07-01 12:55:41',43,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',11),(12,'2013-03-01 18:55:53','2009-10-01 11:53:50',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',12),(13,'2013-03-01 18:55:53','2009-12-01 12:55:41',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',13),(14,'2013-03-01 18:55:53','2013-03-01 10:55:52',4,'General',100.00,'USD',2,1,'civicrm_line_item',16),(15,'2013-03-01 18:55:53','2013-03-01 10:55:52',35,'General',100.00,'USD',2,1,'civicrm_line_item',17),(16,'2013-03-01 18:55:53','2013-03-01 10:55:52',164,'General',100.00,'USD',2,1,'civicrm_line_item',18),(17,'2013-03-01 18:55:53','2013-03-01 10:55:52',105,'General',100.00,'USD',2,1,'civicrm_line_item',19),(18,'2013-03-01 18:55:53','2013-03-01 10:55:52',88,'General',100.00,'USD',2,1,'civicrm_line_item',20),(19,'2013-03-01 18:55:53','2013-03-01 10:55:52',161,'General',100.00,'USD',2,1,'civicrm_line_item',21),(20,'2013-03-01 18:55:53','2013-03-01 10:55:52',132,'General',100.00,'USD',2,1,'civicrm_line_item',22),(21,'2013-03-01 18:55:53','2013-03-01 10:55:52',168,'General',100.00,'USD',2,1,'civicrm_line_item',23),(22,'2013-03-01 18:55:53','2013-03-01 10:55:52',181,'General',100.00,'USD',2,1,'civicrm_line_item',24),(23,'2013-03-01 18:55:53','2013-03-01 10:55:52',52,'General',100.00,'USD',2,1,'civicrm_line_item',25),(24,'2013-03-01 18:55:53','2013-03-01 10:55:52',51,'General',100.00,'USD',2,1,'civicrm_line_item',26),(25,'2013-03-01 18:55:53','2013-03-01 10:55:52',151,'General',100.00,'USD',2,1,'civicrm_line_item',27),(26,'2013-03-01 18:55:53','2013-03-01 10:55:52',13,'General',100.00,'USD',2,1,'civicrm_line_item',28),(27,'2013-03-01 18:55:53','2013-03-01 10:55:52',23,'General',100.00,'USD',2,1,'civicrm_line_item',29),(28,'2013-03-01 18:55:53','2013-03-01 10:55:52',11,'Student',50.00,'USD',2,1,'civicrm_line_item',30),(29,'2013-03-01 18:55:53','2013-03-01 10:55:52',115,'Student',50.00,'USD',2,1,'civicrm_line_item',31),(30,'2013-03-01 18:55:53','2013-03-01 10:55:52',120,'Student',50.00,'USD',2,1,'civicrm_line_item',32),(31,'2013-03-01 18:55:53','2013-03-01 10:55:52',59,'Student',50.00,'USD',2,1,'civicrm_line_item',33),(32,'2013-03-01 18:55:53','2013-03-01 10:55:52',108,'Student',50.00,'USD',2,1,'civicrm_line_item',34),(33,'2013-03-01 18:55:53','2013-03-01 10:55:52',40,'Student',50.00,'USD',2,1,'civicrm_line_item',35),(34,'2013-03-01 18:55:53','2013-03-01 10:55:52',155,'Student',50.00,'USD',2,1,'civicrm_line_item',36),(35,'2013-03-01 18:55:53','2013-03-01 10:55:52',38,'Student',50.00,'USD',2,1,'civicrm_line_item',37),(36,'2013-03-01 18:55:53','2013-03-01 10:55:52',176,'Student',50.00,'USD',2,1,'civicrm_line_item',38),(37,'2013-03-01 18:55:53','2013-03-01 10:55:52',2,'Student',50.00,'USD',2,1,'civicrm_line_item',39),(38,'2013-03-01 18:55:53','2013-03-01 10:55:52',57,'Student',50.00,'USD',2,1,'civicrm_line_item',40),(39,'2013-03-01 18:55:53','2013-03-01 10:55:52',53,'Student',50.00,'USD',2,1,'civicrm_line_item',41),(40,'2013-03-01 18:55:54','2013-03-01 10:55:52',148,'Student',50.00,'USD',2,1,'civicrm_line_item',42),(41,'2013-03-01 18:55:54','2013-03-01 10:55:52',103,'Student',50.00,'USD',2,1,'civicrm_line_item',43),(42,'2013-03-01 18:55:54','2013-03-01 10:55:52',195,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',44),(43,'2013-03-01 18:55:54','2013-03-01 10:55:52',135,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',45),(44,'2013-03-01 18:55:54','2013-03-01 10:55:54',164,'Soprano',50.00,'USD',2,1,'civicrm_line_item',81),(45,'2013-03-01 18:55:54','2013-03-01 10:55:54',187,'Soprano',50.00,'USD',2,1,'civicrm_line_item',82),(46,'2013-03-01 18:55:54','2013-03-01 10:55:54',116,'Soprano',50.00,'USD',2,1,'civicrm_line_item',83),(47,'2013-03-01 18:55:54','2013-03-01 10:55:54',47,'Soprano',50.00,'USD',2,1,'civicrm_line_item',84),(48,'2013-03-01 18:55:54','2013-03-01 10:55:54',180,'Soprano',50.00,'USD',2,1,'civicrm_line_item',85),(49,'2013-03-01 18:55:54','2013-03-01 10:55:54',112,'Soprano',50.00,'USD',2,1,'civicrm_line_item',86),(50,'2013-03-01 18:55:54','2013-03-01 10:55:54',110,'Soprano',50.00,'USD',2,1,'civicrm_line_item',87),(51,'2013-03-01 18:55:54','2013-03-01 10:55:54',96,'Soprano',50.00,'USD',2,1,'civicrm_line_item',88),(52,'2013-03-01 18:55:54','2013-03-01 10:55:54',138,'Soprano',50.00,'USD',2,1,'civicrm_line_item',89),(53,'2013-03-01 18:55:54','2013-03-01 10:55:54',68,'Soprano',50.00,'USD',2,1,'civicrm_line_item',90),(54,'2013-03-01 18:55:54','2013-03-01 10:55:54',52,'Soprano',50.00,'USD',2,1,'civicrm_line_item',91),(55,'2013-03-01 18:55:54','2013-03-01 10:55:54',182,'Soprano',50.00,'USD',2,1,'civicrm_line_item',92),(56,'2013-03-01 18:55:54','2013-03-01 10:55:54',103,'Soprano',50.00,'USD',2,1,'civicrm_line_item',93),(57,'2013-03-01 18:55:54','2013-03-01 10:55:54',177,'Soprano',50.00,'USD',2,1,'civicrm_line_item',94),(58,'2013-03-01 18:55:54','2013-03-01 10:55:54',130,'Soprano',50.00,'USD',2,1,'civicrm_line_item',95),(59,'2013-03-01 18:55:54','2013-03-01 10:55:54',49,'Soprano',50.00,'USD',2,1,'civicrm_line_item',96),(60,'2013-03-01 18:55:54','2013-03-01 10:55:54',28,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',47),(61,'2013-03-01 18:55:54','2013-03-01 10:55:54',22,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',48),(62,'2013-03-01 18:55:54','2013-03-01 10:55:54',109,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',49),(63,'2013-03-01 18:55:54','2013-03-01 10:55:54',31,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',50),(64,'2013-03-01 18:55:55','2013-03-01 10:55:54',117,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',51),(65,'2013-03-01 18:55:55','2013-03-01 10:55:54',102,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',52),(66,'2013-03-01 18:55:55','2013-03-01 10:55:54',60,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',53),(67,'2013-03-01 18:55:55','2013-03-01 10:55:54',72,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',54),(68,'2013-03-01 18:55:55','2013-03-01 10:55:54',174,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',55),(69,'2013-03-01 18:55:55','2013-03-01 10:55:54',95,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',56),(70,'2013-03-01 18:55:55','2013-03-01 10:55:54',139,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',57),(71,'2013-03-01 18:55:55','2013-03-01 10:55:54',196,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',58),(72,'2013-03-01 18:55:55','2013-03-01 10:55:54',107,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',59),(73,'2013-03-01 18:55:55','2013-03-01 10:55:54',89,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',60),(74,'2013-03-01 18:55:55','2013-03-01 10:55:54',161,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',61),(75,'2013-03-01 18:55:55','2013-03-01 10:55:54',160,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',62),(76,'2013-03-01 18:55:55','2013-03-01 10:55:54',15,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),(77,'2013-03-01 18:55:55','2013-03-01 10:55:54',61,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),(78,'2013-03-01 18:55:55','2013-03-01 10:55:54',101,'Single',50.00,'USD',4,1,'civicrm_line_item',65),(79,'2013-03-01 18:55:55','2013-03-01 10:55:54',140,'Single',50.00,'USD',4,1,'civicrm_line_item',66),(80,'2013-03-01 18:55:55','2013-03-01 10:55:54',128,'Single',50.00,'USD',4,1,'civicrm_line_item',67),(81,'2013-03-01 18:55:55','2013-03-01 10:55:54',19,'Single',50.00,'USD',4,1,'civicrm_line_item',68),(82,'2013-03-01 18:55:55','2013-03-01 10:55:54',55,'Single',50.00,'USD',4,1,'civicrm_line_item',69),(83,'2013-03-01 18:55:55','2013-03-01 10:55:54',106,'Single',50.00,'USD',4,1,'civicrm_line_item',70),(84,'2013-03-01 18:55:55','2013-03-01 10:55:54',32,'Single',50.00,'USD',4,1,'civicrm_line_item',71),(85,'2013-03-01 18:55:55','2013-03-01 10:55:54',198,'Single',50.00,'USD',4,1,'civicrm_line_item',72),(86,'2013-03-01 18:55:55','2013-03-01 10:55:54',143,'Single',50.00,'USD',4,1,'civicrm_line_item',73),(87,'2013-03-01 18:55:55','2013-03-01 10:55:54',36,'Single',50.00,'USD',4,1,'civicrm_line_item',74),(88,'2013-03-01 18:55:55','2013-03-01 10:55:54',158,'Single',50.00,'USD',4,1,'civicrm_line_item',75),(89,'2013-03-01 18:55:55','2013-03-01 10:55:54',126,'Single',50.00,'USD',4,1,'civicrm_line_item',76),(90,'2013-03-01 18:55:55','2013-03-01 10:55:54',65,'Single',50.00,'USD',4,1,'civicrm_line_item',77),(91,'2013-03-01 18:55:56','2013-03-01 10:55:54',149,'Single',50.00,'USD',4,1,'civicrm_line_item',78),(92,'2013-03-01 18:55:56','2013-03-01 10:55:54',199,'Single',50.00,'USD',4,1,'civicrm_line_item',79),(93,'2013-03-01 18:55:56','2013-03-01 10:55:54',37,'Single',50.00,'USD',4,1,'civicrm_line_item',80); /*!40000 ALTER TABLE `civicrm_financial_item` ENABLE KEYS */; UNLOCK TABLES; @@ -526,7 +526,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,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(15,NULL,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(16,NULL,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(17,NULL,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(18,NULL,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(19,NULL,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(20,NULL,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(21,NULL,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(22,NULL,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(23,NULL,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(24,NULL,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(25,NULL,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(26,NULL,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(27,NULL,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(28,NULL,6,'2013-02-26 10:49:30',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(29,NULL,6,'2013-02-26 10:49:30',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(30,NULL,6,'2013-02-26 10:49:30',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(31,NULL,6,'2013-02-26 10:49:30',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(32,NULL,6,'2013-02-26 10:49:30',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(33,NULL,6,'2013-02-26 10:49:30',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(34,NULL,6,'2013-02-26 10:49:30',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(35,NULL,6,'2013-02-26 10:49:30',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(36,NULL,6,'2013-02-26 10:49:30',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(37,NULL,6,'2013-02-26 10:49:30',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(38,NULL,6,'2013-02-26 10:49:30',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(39,NULL,6,'2013-02-26 10:49:30',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(40,NULL,6,'2013-02-26 10:49:30',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(41,NULL,6,'2013-02-26 10:49:30',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(42,NULL,6,'2013-02-26 10:49:30',1200.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(43,NULL,6,'2013-02-26 10:49:30',1200.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(44,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(45,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(46,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(47,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(48,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(49,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(50,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(51,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(52,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(53,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(54,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(55,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(56,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(57,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(58,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(59,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(60,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(61,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(62,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(63,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(64,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(65,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(66,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(67,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(68,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(69,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(70,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(71,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(72,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(73,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(74,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(75,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(76,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(77,NULL,6,'2013-02-26 10:49:38',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(78,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(79,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(80,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(81,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(82,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(83,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(84,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(85,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(86,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(87,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(88,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(89,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(90,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(91,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(92,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(93,NULL,6,'2013-02-26 10:49:38',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,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,6,'2013-03-01 10:55:52',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(15,NULL,6,'2013-03-01 10:55:52',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(16,NULL,6,'2013-03-01 10:55:52',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(17,NULL,6,'2013-03-01 10:55:52',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(18,NULL,6,'2013-03-01 10:55:52',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(19,NULL,6,'2013-03-01 10:55:52',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(20,NULL,6,'2013-03-01 10:55:52',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(21,NULL,6,'2013-03-01 10:55:52',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(22,NULL,6,'2013-03-01 10:55:52',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(23,NULL,6,'2013-03-01 10:55:52',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(24,NULL,6,'2013-03-01 10:55:52',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(25,NULL,6,'2013-03-01 10:55:52',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(26,NULL,6,'2013-03-01 10:55:52',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(27,NULL,6,'2013-03-01 10:55:52',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(28,NULL,6,'2013-03-01 10:55:52',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(29,NULL,6,'2013-03-01 10:55:52',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(30,NULL,6,'2013-03-01 10:55:52',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(31,NULL,6,'2013-03-01 10:55:52',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(32,NULL,6,'2013-03-01 10:55:52',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(33,NULL,6,'2013-03-01 10:55:52',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(34,NULL,6,'2013-03-01 10:55:52',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(35,NULL,6,'2013-03-01 10:55:52',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(36,NULL,6,'2013-03-01 10:55:52',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(37,NULL,6,'2013-03-01 10:55:52',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(38,NULL,6,'2013-03-01 10:55:52',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(39,NULL,6,'2013-03-01 10:55:52',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(40,NULL,6,'2013-03-01 10:55:52',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(41,NULL,6,'2013-03-01 10:55:52',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(42,NULL,6,'2013-03-01 10:55:52',1200.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(43,NULL,6,'2013-03-01 10:55:52',1200.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(44,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(45,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(46,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(47,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(48,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(49,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(50,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(51,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(52,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(53,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(54,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(55,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(56,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(57,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(58,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(59,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(60,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(61,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(62,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(63,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(64,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(65,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(66,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(67,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(68,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(69,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(70,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(71,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(72,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(73,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(74,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(75,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(76,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(77,NULL,6,'2013-03-01 10:55:54',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(78,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(79,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(80,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(81,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(82,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(83,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(84,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(85,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(86,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(87,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(88,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(89,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(90,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(91,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(92,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL),(93,NULL,6,'2013-03-01 10:55:54',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_financial_trxn` ENABLE KEYS */; UNLOCK TABLES; @@ -565,7 +565,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,94,'Added',NULL,NULL),(2,2,47,'Added',NULL,NULL),(3,2,66,'Added',NULL,NULL),(4,2,180,'Added',NULL,NULL),(5,2,10,'Added',NULL,NULL),(6,2,132,'Added',NULL,NULL),(7,2,106,'Added',NULL,NULL),(8,2,136,'Added',NULL,NULL),(9,2,26,'Added',NULL,NULL),(10,2,45,'Added',NULL,NULL),(11,2,151,'Added',NULL,NULL),(12,2,12,'Added',NULL,NULL),(13,2,156,'Added',NULL,NULL),(14,2,49,'Added',NULL,NULL),(15,2,40,'Added',NULL,NULL),(16,2,56,'Added',NULL,NULL),(17,2,112,'Added',NULL,NULL),(18,2,110,'Added',NULL,NULL),(19,2,166,'Added',NULL,NULL),(20,2,131,'Added',NULL,NULL),(21,2,168,'Added',NULL,NULL),(22,2,179,'Added',NULL,NULL),(23,2,154,'Added',NULL,NULL),(24,2,133,'Added',NULL,NULL),(25,2,119,'Added',NULL,NULL),(26,2,188,'Added',NULL,NULL),(27,2,121,'Added',NULL,NULL),(28,2,114,'Added',NULL,NULL),(29,2,4,'Added',NULL,NULL),(30,2,31,'Added',NULL,NULL),(31,2,125,'Added',NULL,NULL),(32,2,186,'Added',NULL,NULL),(33,2,93,'Added',NULL,NULL),(34,2,69,'Added',NULL,NULL),(35,2,8,'Added',NULL,NULL),(36,2,117,'Added',NULL,NULL),(37,2,111,'Added',NULL,NULL),(38,2,107,'Added',NULL,NULL),(39,2,144,'Added',NULL,NULL),(40,2,100,'Added',NULL,NULL),(41,2,193,'Added',NULL,NULL),(42,2,33,'Added',NULL,NULL),(43,2,71,'Added',NULL,NULL),(44,2,81,'Added',NULL,NULL),(45,2,197,'Added',NULL,NULL),(46,2,78,'Added',NULL,NULL),(47,2,196,'Added',NULL,NULL),(48,2,20,'Added',NULL,NULL),(49,2,145,'Added',NULL,NULL),(50,2,92,'Added',NULL,NULL),(51,2,157,'Added',NULL,NULL),(52,2,164,'Added',NULL,NULL),(53,2,14,'Added',NULL,NULL),(54,2,134,'Added',NULL,NULL),(55,2,27,'Added',NULL,NULL),(56,2,176,'Added',NULL,NULL),(57,2,178,'Added',NULL,NULL),(58,2,36,'Added',NULL,NULL),(59,2,128,'Added',NULL,NULL),(60,2,76,'Added',NULL,NULL),(61,3,189,'Added',NULL,NULL),(62,3,109,'Added',NULL,NULL),(63,3,150,'Added',NULL,NULL),(64,3,118,'Added',NULL,NULL),(65,3,54,'Added',NULL,NULL),(66,3,149,'Added',NULL,NULL),(67,3,15,'Added',NULL,NULL),(68,3,23,'Added',NULL,NULL),(69,3,192,'Added',NULL,NULL),(70,3,79,'Added',NULL,NULL),(71,3,105,'Added',NULL,NULL),(72,3,58,'Added',NULL,NULL),(73,3,70,'Added',NULL,NULL),(74,3,187,'Added',NULL,NULL),(75,3,30,'Added',NULL,NULL),(76,4,94,'Added',NULL,NULL),(77,4,136,'Added',NULL,NULL),(78,4,40,'Added',NULL,NULL),(79,4,179,'Added',NULL,NULL),(80,4,4,'Added',NULL,NULL),(81,4,117,'Added',NULL,NULL),(82,4,71,'Added',NULL,NULL),(83,4,92,'Added',NULL,NULL); +INSERT INTO `civicrm_group_contact` (`id`, `group_id`, `contact_id`, `status`, `location_id`, `email_id`) VALUES (1,2,136,'Added',NULL,NULL),(2,2,82,'Added',NULL,NULL),(3,2,102,'Added',NULL,NULL),(4,2,181,'Added',NULL,NULL),(5,2,125,'Added',NULL,NULL),(6,2,159,'Added',NULL,NULL),(7,2,201,'Added',NULL,NULL),(8,2,80,'Added',NULL,NULL),(9,2,105,'Added',NULL,NULL),(10,2,20,'Added',NULL,NULL),(11,2,117,'Added',NULL,NULL),(12,2,103,'Added',NULL,NULL),(13,2,98,'Added',NULL,NULL),(14,2,138,'Added',NULL,NULL),(15,2,179,'Added',NULL,NULL),(16,2,158,'Added',NULL,NULL),(17,2,88,'Added',NULL,NULL),(18,2,95,'Added',NULL,NULL),(19,2,55,'Added',NULL,NULL),(20,2,9,'Added',NULL,NULL),(21,2,162,'Added',NULL,NULL),(22,2,135,'Added',NULL,NULL),(23,2,87,'Added',NULL,NULL),(24,2,113,'Added',NULL,NULL),(25,2,3,'Added',NULL,NULL),(26,2,198,'Added',NULL,NULL),(27,2,191,'Added',NULL,NULL),(28,2,160,'Added',NULL,NULL),(29,2,112,'Added',NULL,NULL),(30,2,171,'Added',NULL,NULL),(31,2,193,'Added',NULL,NULL),(32,2,153,'Added',NULL,NULL),(33,2,2,'Added',NULL,NULL),(34,2,89,'Added',NULL,NULL),(35,2,79,'Added',NULL,NULL),(36,2,163,'Added',NULL,NULL),(37,2,144,'Added',NULL,NULL),(38,2,78,'Added',NULL,NULL),(39,2,154,'Added',NULL,NULL),(40,2,65,'Added',NULL,NULL),(41,2,168,'Added',NULL,NULL),(42,2,8,'Added',NULL,NULL),(43,2,126,'Added',NULL,NULL),(44,2,50,'Added',NULL,NULL),(45,2,166,'Added',NULL,NULL),(46,2,75,'Added',NULL,NULL),(47,2,27,'Added',NULL,NULL),(48,2,34,'Added',NULL,NULL),(49,2,110,'Added',NULL,NULL),(50,2,150,'Added',NULL,NULL),(51,2,10,'Added',NULL,NULL),(52,2,37,'Added',NULL,NULL),(53,2,132,'Added',NULL,NULL),(54,2,46,'Added',NULL,NULL),(55,2,134,'Added',NULL,NULL),(56,2,182,'Added',NULL,NULL),(57,2,63,'Added',NULL,NULL),(58,2,86,'Added',NULL,NULL),(59,2,49,'Added',NULL,NULL),(60,2,92,'Added',NULL,NULL),(61,3,32,'Added',NULL,NULL),(62,3,149,'Added',NULL,NULL),(63,3,69,'Added',NULL,NULL),(64,3,57,'Added',NULL,NULL),(65,3,148,'Added',NULL,NULL),(66,3,106,'Added',NULL,NULL),(67,3,165,'Added',NULL,NULL),(68,3,66,'Added',NULL,NULL),(69,3,56,'Added',NULL,NULL),(70,3,76,'Added',NULL,NULL),(71,3,196,'Added',NULL,NULL),(72,3,157,'Added',NULL,NULL),(73,3,195,'Added',NULL,NULL),(74,3,41,'Added',NULL,NULL),(75,3,53,'Added',NULL,NULL),(76,4,136,'Added',NULL,NULL),(77,4,80,'Added',NULL,NULL),(78,4,179,'Added',NULL,NULL),(79,4,135,'Added',NULL,NULL),(80,4,112,'Added',NULL,NULL),(81,4,163,'Added',NULL,NULL),(82,4,126,'Added',NULL,NULL),(83,4,150,'Added',NULL,NULL); /*!40000 ALTER TABLE `civicrm_group_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -630,7 +630,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`, `price_field_id`, `label`, `qty`, `unit_price`, `line_total`, `participant_count`, `price_field_value_id`, `financial_type_id`, `deductible_amount`) VALUES (1,'civicrm_contribution',1,1,'Contribution Amount',1,125.00,125.00,0,1,1,0.00),(2,'civicrm_contribution',2,1,'Contribution Amount',1,50.00,50.00,0,1,1,0.00),(3,'civicrm_contribution',3,1,'Contribution Amount',1,25.00,25.00,0,1,1,0.00),(4,'civicrm_contribution',4,1,'Contribution Amount',1,50.00,50.00,0,1,1,0.00),(5,'civicrm_contribution',5,1,'Contribution Amount',1,500.00,500.00,0,1,1,0.00),(6,'civicrm_contribution',6,1,'Contribution Amount',1,175.00,175.00,0,1,1,0.00),(7,'civicrm_contribution',7,1,'Contribution Amount',1,50.00,50.00,0,1,1,0.00),(8,'civicrm_contribution',8,1,'Contribution Amount',1,10.00,10.00,0,1,1,0.00),(9,'civicrm_contribution',9,1,'Contribution Amount',1,250.00,250.00,0,1,1,0.00),(10,'civicrm_contribution',10,1,'Contribution Amount',1,500.00,500.00,0,1,1,0.00),(11,'civicrm_contribution',11,1,'Contribution Amount',1,200.00,200.00,0,1,1,0.00),(12,'civicrm_contribution',12,1,'Contribution Amount',1,200.00,200.00,0,1,1,0.00),(13,'civicrm_contribution',13,1,'Contribution Amount',1,200.00,200.00,0,1,1,0.00),(16,'civicrm_contribution',14,4,'General',1,100.00,100.00,NULL,7,2,0.00),(17,'civicrm_contribution',16,4,'General',1,100.00,100.00,NULL,7,2,0.00),(18,'civicrm_contribution',18,4,'General',1,100.00,100.00,NULL,7,2,0.00),(19,'civicrm_contribution',20,4,'General',1,100.00,100.00,NULL,7,2,0.00),(20,'civicrm_contribution',22,4,'General',1,100.00,100.00,NULL,7,2,0.00),(21,'civicrm_contribution',23,4,'General',1,100.00,100.00,NULL,7,2,0.00),(22,'civicrm_contribution',26,4,'General',1,100.00,100.00,NULL,7,2,0.00),(23,'civicrm_contribution',28,4,'General',1,100.00,100.00,NULL,7,2,0.00),(24,'civicrm_contribution',30,4,'General',1,100.00,100.00,NULL,7,2,0.00),(25,'civicrm_contribution',32,4,'General',1,100.00,100.00,NULL,7,2,0.00),(26,'civicrm_contribution',34,4,'General',1,100.00,100.00,NULL,7,2,0.00),(27,'civicrm_contribution',36,4,'General',1,100.00,100.00,NULL,7,2,0.00),(28,'civicrm_contribution',40,4,'General',1,100.00,100.00,NULL,7,2,0.00),(29,'civicrm_contribution',42,4,'General',1,100.00,100.00,NULL,7,2,0.00),(30,'civicrm_contribution',43,4,'General',1,100.00,100.00,NULL,7,2,0.00),(31,'civicrm_contribution',15,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(32,'civicrm_contribution',17,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(33,'civicrm_contribution',19,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(34,'civicrm_contribution',21,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(35,'civicrm_contribution',25,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(36,'civicrm_contribution',27,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(37,'civicrm_contribution',29,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(38,'civicrm_contribution',31,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(39,'civicrm_contribution',33,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(40,'civicrm_contribution',37,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(41,'civicrm_contribution',38,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(42,'civicrm_contribution',39,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(43,'civicrm_contribution',41,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(44,'civicrm_contribution',24,4,'Lifetime',1,1200.00,1200.00,NULL,9,2,0.00),(45,'civicrm_contribution',35,4,'Lifetime',1,1200.00,1200.00,NULL,9,2,0.00),(47,'civicrm_participant',3,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(48,'civicrm_participant',6,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(49,'civicrm_participant',9,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(50,'civicrm_participant',12,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(51,'civicrm_participant',15,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(52,'civicrm_participant',18,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(53,'civicrm_participant',21,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(54,'civicrm_participant',24,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(55,'civicrm_participant',25,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(56,'civicrm_participant',28,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(57,'civicrm_participant',31,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(58,'civicrm_participant',34,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(59,'civicrm_participant',37,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(60,'civicrm_participant',40,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(61,'civicrm_participant',43,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(62,'civicrm_participant',46,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(63,'civicrm_participant',49,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(64,'civicrm_participant',50,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(65,'civicrm_participant',1,8,'Single',1,50.00,50.00,0,16,4,0.00),(66,'civicrm_participant',4,8,'Single',1,50.00,50.00,0,16,4,0.00),(67,'civicrm_participant',7,8,'Single',1,50.00,50.00,0,16,4,0.00),(68,'civicrm_participant',10,8,'Single',1,50.00,50.00,0,16,4,0.00),(69,'civicrm_participant',13,8,'Single',1,50.00,50.00,0,16,4,0.00),(70,'civicrm_participant',16,8,'Single',1,50.00,50.00,0,16,4,0.00),(71,'civicrm_participant',19,8,'Single',1,50.00,50.00,0,16,4,0.00),(72,'civicrm_participant',22,8,'Single',1,50.00,50.00,0,16,4,0.00),(73,'civicrm_participant',26,8,'Single',1,50.00,50.00,0,16,4,0.00),(74,'civicrm_participant',29,8,'Single',1,50.00,50.00,0,16,4,0.00),(75,'civicrm_participant',32,8,'Single',1,50.00,50.00,0,16,4,0.00),(76,'civicrm_participant',35,8,'Single',1,50.00,50.00,0,16,4,0.00),(77,'civicrm_participant',38,8,'Single',1,50.00,50.00,0,16,4,0.00),(78,'civicrm_participant',41,8,'Single',1,50.00,50.00,0,16,4,0.00),(79,'civicrm_participant',44,8,'Single',1,50.00,50.00,0,16,4,0.00),(80,'civicrm_participant',47,8,'Single',1,50.00,50.00,0,16,4,0.00),(81,'civicrm_participant',2,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(82,'civicrm_participant',5,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(83,'civicrm_participant',8,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(84,'civicrm_participant',11,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(85,'civicrm_participant',14,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(86,'civicrm_participant',17,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(87,'civicrm_participant',20,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(88,'civicrm_participant',23,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(89,'civicrm_participant',27,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(90,'civicrm_participant',30,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(91,'civicrm_participant',33,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(92,'civicrm_participant',36,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(93,'civicrm_participant',39,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(94,'civicrm_participant',42,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(95,'civicrm_participant',45,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(96,'civicrm_participant',48,9,'Soprano',1,50.00,50.00,0,21,2,0.00); +INSERT INTO `civicrm_line_item` (`id`, `entity_table`, `entity_id`, `price_field_id`, `label`, `qty`, `unit_price`, `line_total`, `participant_count`, `price_field_value_id`, `financial_type_id`, `deductible_amount`) VALUES (1,'civicrm_contribution',1,1,'Contribution Amount',1,125.00,125.00,0,1,1,0.00),(2,'civicrm_contribution',2,1,'Contribution Amount',1,50.00,50.00,0,1,1,0.00),(3,'civicrm_contribution',3,1,'Contribution Amount',1,25.00,25.00,0,1,1,0.00),(4,'civicrm_contribution',4,1,'Contribution Amount',1,50.00,50.00,0,1,1,0.00),(5,'civicrm_contribution',5,1,'Contribution Amount',1,500.00,500.00,0,1,1,0.00),(6,'civicrm_contribution',6,1,'Contribution Amount',1,175.00,175.00,0,1,1,0.00),(7,'civicrm_contribution',7,1,'Contribution Amount',1,50.00,50.00,0,1,1,0.00),(8,'civicrm_contribution',8,1,'Contribution Amount',1,10.00,10.00,0,1,1,0.00),(9,'civicrm_contribution',9,1,'Contribution Amount',1,250.00,250.00,0,1,1,0.00),(10,'civicrm_contribution',10,1,'Contribution Amount',1,500.00,500.00,0,1,1,0.00),(11,'civicrm_contribution',11,1,'Contribution Amount',1,200.00,200.00,0,1,1,0.00),(12,'civicrm_contribution',12,1,'Contribution Amount',1,200.00,200.00,0,1,1,0.00),(13,'civicrm_contribution',13,1,'Contribution Amount',1,200.00,200.00,0,1,1,0.00),(16,'civicrm_contribution',14,4,'General',1,100.00,100.00,NULL,7,2,0.00),(17,'civicrm_contribution',16,4,'General',1,100.00,100.00,NULL,7,2,0.00),(18,'civicrm_contribution',20,4,'General',1,100.00,100.00,NULL,7,2,0.00),(19,'civicrm_contribution',22,4,'General',1,100.00,100.00,NULL,7,2,0.00),(20,'civicrm_contribution',23,4,'General',1,100.00,100.00,NULL,7,2,0.00),(21,'civicrm_contribution',26,4,'General',1,100.00,100.00,NULL,7,2,0.00),(22,'civicrm_contribution',30,4,'General',1,100.00,100.00,NULL,7,2,0.00),(23,'civicrm_contribution',32,4,'General',1,100.00,100.00,NULL,7,2,0.00),(24,'civicrm_contribution',33,4,'General',1,100.00,100.00,NULL,7,2,0.00),(25,'civicrm_contribution',34,4,'General',1,100.00,100.00,NULL,7,2,0.00),(26,'civicrm_contribution',36,4,'General',1,100.00,100.00,NULL,7,2,0.00),(27,'civicrm_contribution',38,4,'General',1,100.00,100.00,NULL,7,2,0.00),(28,'civicrm_contribution',40,4,'General',1,100.00,100.00,NULL,7,2,0.00),(29,'civicrm_contribution',42,4,'General',1,100.00,100.00,NULL,7,2,0.00),(30,'civicrm_contribution',15,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(31,'civicrm_contribution',17,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(32,'civicrm_contribution',18,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(33,'civicrm_contribution',19,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(34,'civicrm_contribution',21,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(35,'civicrm_contribution',25,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(36,'civicrm_contribution',27,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(37,'civicrm_contribution',28,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(38,'civicrm_contribution',29,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(39,'civicrm_contribution',31,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(40,'civicrm_contribution',37,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(41,'civicrm_contribution',39,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(42,'civicrm_contribution',41,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(43,'civicrm_contribution',43,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(44,'civicrm_contribution',24,4,'Lifetime',1,1200.00,1200.00,NULL,9,2,0.00),(45,'civicrm_contribution',35,4,'Lifetime',1,1200.00,1200.00,NULL,9,2,0.00),(47,'civicrm_participant',3,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(48,'civicrm_participant',6,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(49,'civicrm_participant',9,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(50,'civicrm_participant',12,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(51,'civicrm_participant',15,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(52,'civicrm_participant',18,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(53,'civicrm_participant',21,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(54,'civicrm_participant',24,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(55,'civicrm_participant',25,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(56,'civicrm_participant',28,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(57,'civicrm_participant',31,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(58,'civicrm_participant',34,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(59,'civicrm_participant',37,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(60,'civicrm_participant',40,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(61,'civicrm_participant',43,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(62,'civicrm_participant',46,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(63,'civicrm_participant',49,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(64,'civicrm_participant',50,7,'Tiny-tots (ages 5-8)',1,800.00,800.00,0,13,4,0.00),(65,'civicrm_participant',1,8,'Single',1,50.00,50.00,0,16,4,0.00),(66,'civicrm_participant',4,8,'Single',1,50.00,50.00,0,16,4,0.00),(67,'civicrm_participant',7,8,'Single',1,50.00,50.00,0,16,4,0.00),(68,'civicrm_participant',10,8,'Single',1,50.00,50.00,0,16,4,0.00),(69,'civicrm_participant',13,8,'Single',1,50.00,50.00,0,16,4,0.00),(70,'civicrm_participant',16,8,'Single',1,50.00,50.00,0,16,4,0.00),(71,'civicrm_participant',19,8,'Single',1,50.00,50.00,0,16,4,0.00),(72,'civicrm_participant',22,8,'Single',1,50.00,50.00,0,16,4,0.00),(73,'civicrm_participant',26,8,'Single',1,50.00,50.00,0,16,4,0.00),(74,'civicrm_participant',29,8,'Single',1,50.00,50.00,0,16,4,0.00),(75,'civicrm_participant',32,8,'Single',1,50.00,50.00,0,16,4,0.00),(76,'civicrm_participant',35,8,'Single',1,50.00,50.00,0,16,4,0.00),(77,'civicrm_participant',38,8,'Single',1,50.00,50.00,0,16,4,0.00),(78,'civicrm_participant',41,8,'Single',1,50.00,50.00,0,16,4,0.00),(79,'civicrm_participant',44,8,'Single',1,50.00,50.00,0,16,4,0.00),(80,'civicrm_participant',47,8,'Single',1,50.00,50.00,0,16,4,0.00),(81,'civicrm_participant',2,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(82,'civicrm_participant',5,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(83,'civicrm_participant',8,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(84,'civicrm_participant',11,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(85,'civicrm_participant',14,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(86,'civicrm_participant',17,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(87,'civicrm_participant',20,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(88,'civicrm_participant',23,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(89,'civicrm_participant',27,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(90,'civicrm_participant',30,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(91,'civicrm_participant',33,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(92,'civicrm_participant',36,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(93,'civicrm_participant',39,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(94,'civicrm_participant',42,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(95,'civicrm_participant',45,9,'Soprano',1,50.00,50.00,0,21,2,0.00),(96,'civicrm_participant',48,9,'Soprano',1,50.00,50.00,0,21,2,0.00); /*!40000 ALTER TABLE `civicrm_line_item` ENABLE KEYS */; UNLOCK TABLES; @@ -640,7 +640,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,193,147,NULL,NULL,NULL,NULL,NULL),(2,180,194,148,NULL,NULL,NULL,NULL,NULL),(3,181,195,149,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,187,198,185,NULL,NULL,NULL,NULL,NULL),(2,188,199,186,NULL,NULL,NULL,NULL,NULL),(3,189,200,187,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_loc_block` ENABLE KEYS */; UNLOCK TABLES; @@ -880,7 +880,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,97,1,'2013-02-26','2013-02-26','2015-02-25','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(2,167,2,'2013-02-25','2013-02-25','2014-02-24','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(3,168,1,'2013-02-24','2013-02-24','2015-02-23','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(4,119,2,'2013-02-23','2013-02-23','2014-02-22','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(5,118,1,'2011-01-25','2011-01-25','2013-01-24','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(6,100,2,'2013-02-21','2013-02-21','2014-02-20','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(7,197,1,'2013-02-20','2013-02-20','2015-02-19','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(8,46,2,'2013-02-19','2013-02-19','2014-02-18','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(9,76,1,'2013-02-18','2013-02-18','2015-02-17','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(10,164,1,'2010-12-16','2010-12-16','2012-12-15','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(11,42,3,'2013-02-16','2013-02-16',NULL,'Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(12,195,2,'2013-02-15','2013-02-15','2014-02-14','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(13,163,1,'2013-02-14','2013-02-14','2015-02-13','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(14,184,2,'2013-02-13','2013-02-13','2014-02-12','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(15,170,1,'2010-11-06','2010-11-06','2012-11-05','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(16,40,2,'2013-02-11','2013-02-11','2014-02-10','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(17,112,1,'2013-02-10','2013-02-10','2015-02-09','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(18,109,2,'2013-02-09','2013-02-09','2014-02-08','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(19,131,1,'2013-02-08','2013-02-08','2015-02-07','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(20,116,2,'2012-02-07','2012-02-07','2013-02-06','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL),(21,154,1,'2013-02-06','2013-02-06','2015-02-05','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(22,132,3,'2013-02-05','2013-02-05',NULL,'Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(23,93,1,'2013-02-04','2013-02-04','2015-02-03','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(24,45,2,'2013-02-03','2013-02-03','2014-02-02','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(25,34,2,'2012-02-02','2012-02-02','2013-02-01','Payment',4,NULL,NULL,NULL,0,0,NULL,NULL),(26,153,2,'2013-02-01','2013-02-01','2014-01-31','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(27,7,1,'2013-01-31','2013-01-31','2015-01-30','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(28,70,2,'2013-01-30','2013-01-30','2014-01-29','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(29,185,1,'2013-01-29','2013-01-29','2015-01-28','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(30,179,1,'2010-07-09','2010-07-09','2012-07-08','Check',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,4,1,'2013-03-01','2013-03-01','2015-02-28','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(2,11,2,'2013-02-28','2013-02-28','2014-02-27','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(3,35,1,'2013-02-27','2013-02-27','2015-02-26','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(4,115,2,'2013-02-26','2013-02-26','2014-02-25','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(5,120,2,'2012-02-26','2012-02-26','2013-02-25','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL),(6,59,2,'2013-02-24','2013-02-24','2014-02-23','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(7,164,1,'2013-02-23','2013-02-23','2015-02-22','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(8,108,2,'2013-02-22','2013-02-22','2014-02-21','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(9,105,1,'2013-02-21','2013-02-21','2015-02-20','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(10,88,1,'2010-12-19','2010-12-19','2012-12-18','Donation',3,NULL,NULL,NULL,0,0,NULL,NULL),(11,195,3,'2013-02-19','2013-02-19',NULL,'Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(12,40,2,'2013-02-18','2013-02-18','2014-02-17','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(13,161,1,'2013-02-17','2013-02-17','2015-02-16','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(14,155,2,'2013-02-16','2013-02-16','2014-02-15','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(15,38,2,'2012-02-16','2012-02-16','2013-02-15','Payment',4,NULL,NULL,NULL,0,0,NULL,NULL),(16,176,2,'2013-02-14','2013-02-14','2014-02-13','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(17,132,1,'2013-02-13','2013-02-13','2015-02-12','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(18,2,2,'2013-02-12','2013-02-12','2014-02-11','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(19,168,1,'2013-02-11','2013-02-11','2015-02-10','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(20,181,1,'2010-09-30','2010-09-30','2012-09-29','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(21,52,1,'2013-02-09','2013-02-09','2015-02-08','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(22,135,3,'2013-02-08','2013-02-08',NULL,'Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(23,51,1,'2013-02-07','2013-02-07','2015-02-06','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(24,57,2,'2013-02-06','2013-02-06','2014-02-05','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(25,151,1,'2010-08-21','2010-08-21','2012-08-20','Payment',3,NULL,NULL,NULL,0,0,NULL,NULL),(26,53,2,'2013-02-04','2013-02-04','2014-02-03','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(27,13,1,'2013-02-03','2013-02-03','2015-02-02','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(28,148,2,'2013-02-02','2013-02-02','2014-02-01','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(29,23,1,'2013-02-01','2013-02-01','2015-01-31','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(30,103,2,'2012-02-01','2012-02-01','2013-01-31','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL); /*!40000 ALTER TABLE `civicrm_membership` ENABLE KEYS */; UNLOCK TABLES; @@ -900,7 +900,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,27,1,'2013-01-31','2015-01-30',7,'2013-02-26',1,NULL),(2,25,4,'2012-02-02','2013-02-01',34,'2013-02-26',2,NULL),(3,16,1,'2013-02-11','2014-02-10',40,'2013-02-26',2,NULL),(4,11,1,'2013-02-16',NULL,42,'2013-02-26',3,NULL),(5,24,1,'2013-02-03','2014-02-02',45,'2013-02-26',2,NULL),(6,8,1,'2013-02-19','2014-02-18',46,'2013-02-26',2,NULL),(7,28,1,'2013-01-30','2014-01-29',70,'2013-02-26',2,NULL),(8,9,1,'2013-02-18','2015-02-17',76,'2013-02-26',1,NULL),(9,23,1,'2013-02-04','2015-02-03',93,'2013-02-26',1,NULL),(10,1,1,'2013-02-26','2015-02-25',97,'2013-02-26',1,NULL),(11,6,1,'2013-02-21','2014-02-20',100,'2013-02-26',2,NULL),(12,18,1,'2013-02-09','2014-02-08',109,'2013-02-26',2,NULL),(13,17,1,'2013-02-10','2015-02-09',112,'2013-02-26',1,NULL),(14,20,4,'2012-02-07','2013-02-06',116,'2013-02-26',2,NULL),(15,5,3,'2011-01-25','2013-01-24',118,'2013-02-26',1,NULL),(16,4,1,'2013-02-23','2014-02-22',119,'2013-02-26',2,NULL),(17,19,1,'2013-02-08','2015-02-07',131,'2013-02-26',1,NULL),(18,22,1,'2013-02-05',NULL,132,'2013-02-26',3,NULL),(19,26,1,'2013-02-01','2014-01-31',153,'2013-02-26',2,NULL),(20,21,1,'2013-02-06','2015-02-05',154,'2013-02-26',1,NULL),(21,13,1,'2013-02-14','2015-02-13',163,'2013-02-26',1,NULL),(22,10,3,'2010-12-16','2012-12-15',164,'2013-02-26',1,NULL),(23,2,1,'2013-02-25','2014-02-24',167,'2013-02-26',2,NULL),(24,3,1,'2013-02-24','2015-02-23',168,'2013-02-26',1,NULL),(25,15,3,'2010-11-06','2012-11-05',170,'2013-02-26',1,NULL),(26,30,3,'2010-07-09','2012-07-08',179,'2013-02-26',1,NULL),(27,14,1,'2013-02-13','2014-02-12',184,'2013-02-26',2,NULL),(28,29,1,'2013-01-29','2015-01-28',185,'2013-02-26',1,NULL),(29,12,1,'2013-02-15','2014-02-14',195,'2013-02-26',2,NULL),(30,7,1,'2013-02-20','2015-02-19',197,'2013-02-26',1,NULL); +INSERT INTO `civicrm_membership_log` (`id`, `membership_id`, `status_id`, `start_date`, `end_date`, `modified_id`, `modified_date`, `membership_type_id`, `max_related`) VALUES (1,18,1,'2013-02-12','2014-02-11',2,'2013-03-01',2,NULL),(2,1,1,'2013-03-01','2015-02-28',4,'2013-03-01',1,NULL),(3,2,1,'2013-02-28','2014-02-27',11,'2013-03-01',2,NULL),(4,27,1,'2013-02-03','2015-02-02',13,'2013-03-01',1,NULL),(5,29,1,'2013-02-01','2015-01-31',23,'2013-03-01',1,NULL),(6,3,1,'2013-02-27','2015-02-26',35,'2013-03-01',1,NULL),(7,15,4,'2012-02-16','2013-02-15',38,'2013-03-01',2,NULL),(8,12,1,'2013-02-18','2014-02-17',40,'2013-03-01',2,NULL),(9,23,1,'2013-02-07','2015-02-06',51,'2013-03-01',1,NULL),(10,21,1,'2013-02-09','2015-02-08',52,'2013-03-01',1,NULL),(11,26,1,'2013-02-04','2014-02-03',53,'2013-03-01',2,NULL),(12,24,1,'2013-02-06','2014-02-05',57,'2013-03-01',2,NULL),(13,6,1,'2013-02-24','2014-02-23',59,'2013-03-01',2,NULL),(14,10,3,'2010-12-19','2012-12-18',88,'2013-03-01',1,NULL),(15,30,4,'2012-02-01','2013-01-31',103,'2013-03-01',2,NULL),(16,9,1,'2013-02-21','2015-02-20',105,'2013-03-01',1,NULL),(17,8,1,'2013-02-22','2014-02-21',108,'2013-03-01',2,NULL),(18,4,1,'2013-02-26','2014-02-25',115,'2013-03-01',2,NULL),(19,5,4,'2012-02-26','2013-02-25',120,'2013-03-01',2,NULL),(20,17,1,'2013-02-13','2015-02-12',132,'2013-03-01',1,NULL),(21,22,1,'2013-02-08',NULL,135,'2013-03-01',3,NULL),(22,28,1,'2013-02-02','2014-02-01',148,'2013-03-01',2,NULL),(23,25,3,'2010-08-21','2012-08-20',151,'2013-03-01',1,NULL),(24,14,1,'2013-02-16','2014-02-15',155,'2013-03-01',2,NULL),(25,13,1,'2013-02-17','2015-02-16',161,'2013-03-01',1,NULL),(26,7,1,'2013-02-23','2015-02-22',164,'2013-03-01',1,NULL),(27,19,1,'2013-02-11','2015-02-10',168,'2013-03-01',1,NULL),(28,16,1,'2013-02-14','2014-02-13',176,'2013-03-01',2,NULL),(29,20,3,'2010-09-30','2012-09-29',181,'2013-03-01',1,NULL),(30,11,1,'2013-02-19',NULL,195,'2013-03-01',3,NULL); /*!40000 ALTER TABLE `civicrm_membership_log` ENABLE KEYS */; UNLOCK TABLES; @@ -949,7 +949,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`, `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 this Activity{/ts} : {$editActURL}\n{/if}\n{if $viewActURL}\n{ts}View this 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 this activity{/ts}\n
\n {ts}View this 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,687,1,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 this Activity{/ts} : {$editActURL}\n{/if}\n{if $viewActURL}\n{ts}View this 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 this activity{/ts}\n
\n {ts}View this 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,687,0,1,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 \"CiviCRM >> Administer CiviCRM >> 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 \"CiviCRM >> Administer CiviCRM >> 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,688,1,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 \"CiviCRM >> Administer CiviCRM >> 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 \"CiviCRM >> Administer CiviCRM >> 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,688,0,1,NULL),(5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts}\n','{if $formValues.receipt_text}\n{$formValues.receipt_text}\n{else}{ts}Thanks 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{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{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\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\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{if $formValues.honor_first_name}\n\n===========================================================\n{$formValues.honor_type}\n===========================================================\n{$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}\n{if $formValues.honor_email}\n{ts}Honoree Email{/ts}: {$formValues.honor_email}\n{/if}\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}Thanks 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\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 $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.honor_first_name}\n \n \n \n \n \n \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 \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 {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.line_total|crmMoney:$currency}\n
\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 {$customName}\n
\n {$n}\n \n {$v}\n
\n {$formValues.honor_type}\n
\n {$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}
\n {if $formValues.honor_email}\n {ts}Honoree Email{/ts}: {$formValues.honor_email}\n {/if}\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,689,1,0,NULL),(6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts}\n','{if $formValues.receipt_text}\n{$formValues.receipt_text}\n{else}{ts}Thanks 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{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{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\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\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{if $formValues.honor_first_name}\n\n===========================================================\n{$formValues.honor_type}\n===========================================================\n{$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}\n{if $formValues.honor_email}\n{ts}Honoree Email{/ts}: {$formValues.honor_email}\n{/if}\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}Thanks 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\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 $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.honor_first_name}\n \n \n \n \n \n \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 \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 {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.line_total|crmMoney:$currency}\n
\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 {$customName}\n
\n {$n}\n \n {$v}\n
\n {$formValues.honor_type}\n
\n {$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}
\n {if $formValues.honor_email}\n {ts}Honoree Email{/ts}: {$formValues.honor_email}\n {/if}\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,689,0,1,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{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{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\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\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{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\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{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\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}Nick Name{/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}\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\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 \n \n \n \n\n {else}\n\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 \n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n \n \n \n {if $honor_email}\n \n \n \n \n {/if}\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}\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 \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 {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.line_total|crmMoney:$currency}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|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 {$honor_type}\n
\n {$honor_prefix} {$honor_first_name} {$honor_last_name}\n
\n {ts}Honoree Email{/ts}\n \n {$honor_email}\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}Nick Name{/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,690,1,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{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{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\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\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{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\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{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\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}Nick Name{/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}\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\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 \n \n \n \n\n {else}\n\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 \n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n \n \n \n {if $honor_email}\n \n \n \n \n {/if}\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}\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 \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 {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.line_total|crmMoney:$currency}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|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 {$honor_type}\n
\n {$honor_prefix} {$honor_first_name} {$honor_last_name}\n
\n {ts}Honoree Email{/ts}\n \n {$honor_email}\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}Nick Name{/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,690,0,1,NULL),(9,'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) for a total of %3 installment(s).{/ts}\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 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s) for a total of %3 installment(s).{/ts}

\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,691,1,0,NULL),(10,'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) for a total of %3 installment(s).{/ts}\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 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s) for a total of %3 installment(s).{/ts}

\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,691,0,1,NULL),(11,'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,692,1,0,NULL),(12,'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,692,0,1,NULL),(13,'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,693,1,0,NULL),(14,'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,693,0,1,NULL),(15,'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(s) %3{/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 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/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',1,694,1,0,NULL),(16,'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(s) %3{/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 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/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',1,694,0,1,NULL),(17,'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/contribute/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/contribute/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,695,1,0,NULL),(18,'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/contribute/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/contribute/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,695,0,1,NULL),(19,'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,696,1,0,NULL),(20,'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,696,0,1,NULL),(21,'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,697,1,0,NULL),(22,'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,697,0,1,NULL),(23,'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}\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{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 $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{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\"} {$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\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amount && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney} {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 $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 \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}\n\n {if $amount && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $isPrimary}\n \n \n \n \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}\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 \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/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.line_total|crmMoney}\n \n {$line.participant_count}\n
\n
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney} {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 {$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,698,1,0,NULL),(24,'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}\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{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 $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{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\"} {$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\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amount && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney} {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 $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 \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}\n\n {if $amount && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $isPrimary}\n \n \n \n \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}\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 \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/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.line_total|crmMoney}\n \n {$line.participant_count}\n
\n
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney} {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 {$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,698,0,1,NULL),(25,'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} for the following:\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}\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}\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{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\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{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\"} {$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\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}{$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amounts && !$lineItem}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\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 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 $isOnWaitlist}waitlisted{else}registered{/if} for the following:

\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}\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 \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}\n\n {if $amounts && !$lineItem}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\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 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}\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 \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount } {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/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.line_total|crmMoney:$currency}\n {$line.participant_count}
\n
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\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,699,1,0,NULL),(26,'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} for the following:\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}\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}\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{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\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{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\"} {$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\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}{$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amounts && !$lineItem}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\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 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 $isOnWaitlist}waitlisted{else}registered{/if} for the following:

\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}\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 \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}\n\n {if $amounts && !$lineItem}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\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 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}\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 \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount } {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/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.line_total|crmMoney:$currency}\n {$line.participant_count}
\n
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\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,699,0,1,NULL),(27,'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,700,1,0,NULL),(28,'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,700,0,1,NULL),(29,'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{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 $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 {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \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}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,701,1,0,NULL),(30,'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{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 $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 {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \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}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,701,0,1,NULL),(31,'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{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 $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 {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \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 {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,702,1,0,NULL),(32,'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{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 $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 {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \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 {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,702,0,1,NULL),(33,'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{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 $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 {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \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}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,703,1,0,NULL),(34,'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{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 $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 {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \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}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,703,0,1,NULL),(35,'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,704,1,0,NULL),(36,'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,704,0,1,NULL),(37,'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}Thanks 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}\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{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\"} {$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\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\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}Thanks 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}\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}\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 \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/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.start_date}\n \n {$line.end_date}\n
\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,705,1,0,NULL),(38,'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}Thanks 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}\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{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\"} {$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\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\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}Thanks 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}\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}\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 \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/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.start_date}\n \n {$line.end_date}\n
\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,705,0,1,NULL),(39,'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{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\"} {$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\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\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{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\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}Nick Name{/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}\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 \n \n \n {if $honor_email}\n \n \n \n \n {/if}\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 \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/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.start_date}\n \n {$line.end_date}\n
\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 {$honor_type}\n
\n {$honor_prefix} {$honor_first_name} {$honor_last_name}\n
\n {ts}Honoree Email{/ts}\n \n {$honor_email}\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}Nick Name{/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,706,1,0,NULL),(40,'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{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\"} {$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\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\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{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\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}Nick Name{/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}\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 \n \n \n {if $honor_email}\n \n \n \n \n {/if}\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 \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/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.start_date}\n \n {$line.end_date}\n
\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 {$honor_type}\n
\n {$honor_prefix} {$honor_first_name} {$honor_last_name}\n
\n {ts}Honoree Email{/ts}\n \n {$honor_email}\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}Nick Name{/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,706,0,1,NULL),(41,'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,707,1,0,NULL),(42,'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,707,0,1,NULL),(43,'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,708,1,0,NULL),(44,'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,708,0,1,NULL),(45,'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,709,1,0,NULL),(46,'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,709,0,1,NULL),(47,'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 $honor_block_is_active}\n===========================================================\n{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\n{/if}\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 {if $honor_block_is_active}\n \n \n \n \n \n \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}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 {$honor_type}\n
\n

{$honor_prefix} {$honor_first_name} {$honor_last_name}

\n {if $honor_email}\n

{ts}Honoree Email{/ts}: {$honor_email}

\n {/if}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,710,1,0,NULL),(48,'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 $honor_block_is_active}\n===========================================================\n{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\n{/if}\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 {if $honor_block_is_active}\n \n \n \n \n \n \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}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 {$honor_type}\n
\n

{$honor_prefix} {$honor_first_name} {$honor_last_name}

\n {if $honor_email}\n

{ts}Honoree Email{/ts}: {$honor_email}

\n {/if}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,710,0,1,NULL),(49,'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,711,1,0,NULL),(50,'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,711,0,1,NULL),(51,'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,712,1,0,NULL),(52,'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,712,0,1,NULL),(53,'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 email=true}\n',1,713,1,0,NULL),(54,'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 email=true}\n',1,713,0,1,NULL),(55,'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,714,1,0,NULL),(56,'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,714,0,1,NULL),(57,'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 \"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
',1,NULL,1,0,NULL); +INSERT INTO `civicrm_msg_template` (`id`, `msg_title`, `msg_subject`, `msg_text`, `msg_html`, `is_active`, `workflow_id`, `is_default`, `is_reserved`, `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 this Activity{/ts} : {$editActURL}\n{/if}\n{if $viewActURL}\n{ts}View this 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 this activity{/ts}\n
\n {ts}View this 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,687,1,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 this Activity{/ts} : {$editActURL}\n{/if}\n{if $viewActURL}\n{ts}View this 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 this activity{/ts}\n
\n {ts}View this 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,687,0,1,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 \"CiviCRM >> Administer CiviCRM >> 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 \"CiviCRM >> Administer CiviCRM >> 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,688,1,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 \"CiviCRM >> Administer CiviCRM >> 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 \"CiviCRM >> Administer CiviCRM >> 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,688,0,1,NULL),(5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts}\n','{if $formValues.receipt_text}\n{$formValues.receipt_text}\n{else}{ts}Thanks 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{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{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\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\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{if $formValues.honor_first_name}\n\n===========================================================\n{$formValues.honor_type}\n===========================================================\n{$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}\n{if $formValues.honor_email}\n{ts}Honoree Email{/ts}: {$formValues.honor_email}\n{/if}\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}Thanks 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\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 $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.honor_first_name}\n \n \n \n \n \n \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 \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 {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.line_total|crmMoney:$currency}\n
\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 {$customName}\n
\n {$n}\n \n {$v}\n
\n {$formValues.honor_type}\n
\n {$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}
\n {if $formValues.honor_email}\n {ts}Honoree Email{/ts}: {$formValues.honor_email}\n {/if}\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,689,1,0,NULL),(6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts}\n','{if $formValues.receipt_text}\n{$formValues.receipt_text}\n{else}{ts}Thanks 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{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{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\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\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{if $formValues.honor_first_name}\n\n===========================================================\n{$formValues.honor_type}\n===========================================================\n{$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}\n{if $formValues.honor_email}\n{ts}Honoree Email{/ts}: {$formValues.honor_email}\n{/if}\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}Thanks 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\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 $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.honor_first_name}\n \n \n \n \n \n \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 \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 {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.line_total|crmMoney:$currency}\n
\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 {$customName}\n
\n {$n}\n \n {$v}\n
\n {$formValues.honor_type}\n
\n {$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}
\n {if $formValues.honor_email}\n {ts}Honoree Email{/ts}: {$formValues.honor_email}\n {/if}\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,689,0,1,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{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{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\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\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{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\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{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\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}\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\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 \n \n \n \n\n {else}\n\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 \n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n \n \n \n {if $honor_email}\n \n \n \n \n {/if}\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}\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 \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 {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.line_total|crmMoney:$currency}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|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 {$honor_type}\n
\n {$honor_prefix} {$honor_first_name} {$honor_last_name}\n
\n {ts}Honoree Email{/ts}\n \n {$honor_email}\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,690,1,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{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{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\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\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{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\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{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\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}\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\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 \n \n \n \n\n {else}\n\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 \n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n \n \n \n {if $honor_email}\n \n \n \n \n {/if}\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}\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 \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 {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.line_total|crmMoney:$currency}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|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 {$honor_type}\n
\n {$honor_prefix} {$honor_first_name} {$honor_last_name}\n
\n {ts}Honoree Email{/ts}\n \n {$honor_email}\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,690,0,1,NULL),(9,'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) for a total of %3 installment(s).{/ts}\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 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s) for a total of %3 installment(s).{/ts}

\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,691,1,0,NULL),(10,'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) for a total of %3 installment(s).{/ts}\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 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s) for a total of %3 installment(s).{/ts}

\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,691,0,1,NULL),(11,'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,692,1,0,NULL),(12,'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,692,0,1,NULL),(13,'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,693,1,0,NULL),(14,'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,693,0,1,NULL),(15,'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(s) %3{/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 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/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',1,694,1,0,NULL),(16,'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(s) %3{/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 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/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',1,694,0,1,NULL),(17,'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/contribute/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/contribute/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,695,1,0,NULL),(18,'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/contribute/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/contribute/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,695,0,1,NULL),(19,'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,696,1,0,NULL),(20,'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,696,0,1,NULL),(21,'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,697,1,0,NULL),(22,'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,697,0,1,NULL),(23,'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}\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{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 $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{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\"} {$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\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amount && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney} {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 $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 \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}\n\n {if $amount && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $isPrimary}\n \n \n \n \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}\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 \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/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.line_total|crmMoney}\n \n {$line.participant_count}\n
\n
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney} {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 {$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,698,1,0,NULL),(24,'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}\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{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 $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{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\"} {$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\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amount && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney} {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 $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 \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}\n\n {if $amount && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $isPrimary}\n \n \n \n \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}\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 \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/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.line_total|crmMoney}\n \n {$line.participant_count}\n
\n
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney} {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 {$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,698,0,1,NULL),(25,'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} for the following:\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}\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}\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{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\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{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\"} {$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\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}{$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amounts && !$lineItem}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\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 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 $isOnWaitlist}waitlisted{else}registered{/if} for the following:

\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}\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 \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}\n\n {if $amounts && !$lineItem}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\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 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}\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 \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount } {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/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.line_total|crmMoney:$currency}\n {$line.participant_count}
\n
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\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,699,1,0,NULL),(26,'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} for the following:\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}\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}\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{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\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{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\"} {$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\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}{$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n{/if}\n{if $amounts && !$lineItem}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\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 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 $isOnWaitlist}waitlisted{else}registered{/if} for the following:

\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}\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 \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}\n\n {if $amounts && !$lineItem}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\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 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}\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 \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n \n {if $pricesetFieldsCount } {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/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.line_total|crmMoney:$currency}\n {$line.participant_count}
\n
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\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,699,0,1,NULL),(27,'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,700,1,0,NULL),(28,'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,700,0,1,NULL),(29,'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{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 $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 {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \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}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,701,1,0,NULL),(30,'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{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 $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 {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \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}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,701,0,1,NULL),(31,'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{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 $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 {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \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 {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,702,1,0,NULL),(32,'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{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 $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 {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \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 {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,702,0,1,NULL),(33,'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{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 $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 {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \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}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,703,1,0,NULL),(34,'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{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 $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 {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \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}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,703,0,1,NULL),(35,'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,704,1,0,NULL),(36,'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,704,0,1,NULL),(37,'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}Thanks 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}\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{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\"} {$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\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\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}Thanks 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}\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}\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 \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/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.start_date}\n \n {$line.end_date}\n
\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,705,1,0,NULL),(38,'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}Thanks 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}\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{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\"} {$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\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\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}Thanks 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}\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}\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 \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/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.start_date}\n \n {$line.end_date}\n
\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,705,0,1,NULL),(39,'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{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\"} {$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\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\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{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\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}\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 \n \n \n {if $honor_email}\n \n \n \n \n {/if}\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 \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/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.start_date}\n \n {$line.end_date}\n
\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 {$honor_type}\n
\n {$honor_prefix} {$honor_first_name} {$honor_last_name}\n
\n {ts}Honoree Email{/ts}\n \n {$honor_email}\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,706,1,0,NULL),(40,'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{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\"} {$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\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\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{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\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}\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 \n \n \n {if $honor_email}\n \n \n \n \n {/if}\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 \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/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.start_date}\n \n {$line.end_date}\n
\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 {$honor_type}\n
\n {$honor_prefix} {$honor_first_name} {$honor_last_name}\n
\n {ts}Honoree Email{/ts}\n \n {$honor_email}\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,706,0,1,NULL),(41,'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,707,1,0,NULL),(42,'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,707,0,1,NULL),(43,'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,708,1,0,NULL),(44,'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,708,0,1,NULL),(45,'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,709,1,0,NULL),(46,'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,709,0,1,NULL),(47,'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 $honor_block_is_active}\n===========================================================\n{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\n{/if}\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 {if $honor_block_is_active}\n \n \n \n \n \n \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}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 {$honor_type}\n
\n

{$honor_prefix} {$honor_first_name} {$honor_last_name}

\n {if $honor_email}\n

{ts}Honoree Email{/ts}: {$honor_email}

\n {/if}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,710,1,0,NULL),(48,'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 $honor_block_is_active}\n===========================================================\n{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\n{/if}\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 {if $honor_block_is_active}\n \n \n \n \n \n \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}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 {$honor_type}\n
\n

{$honor_prefix} {$honor_first_name} {$honor_last_name}

\n {if $honor_email}\n

{ts}Honoree Email{/ts}: {$honor_email}

\n {/if}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,710,0,1,NULL),(49,'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,711,1,0,NULL),(50,'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,711,0,1,NULL),(51,'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,712,1,0,NULL),(52,'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,712,0,1,NULL),(53,'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 email=true}\n',1,713,1,0,NULL),(54,'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 email=true}\n',1,713,0,1,NULL),(55,'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,714,1,0,NULL),(56,'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,714,0,1,NULL),(57,'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 \"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
',1,NULL,1,0,NULL); /*!40000 ALTER TABLE `civicrm_msg_template` ENABLE KEYS */; UNLOCK TABLES; @@ -969,7 +969,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',164,'Arrange for cricket match with Sunil Gavaskar',1,'2013-02-12',NULL,'0'),(2,'civicrm_contact',103,'Send newsletter for April 2005',1,'2013-02-25',NULL,'0'),(3,'civicrm_contact',48,'Reminder screening of \"Black\" on next Friday',1,'2012-06-08',NULL,'0'),(4,'civicrm_contact',87,'Send newsletter for April 2005',1,'2012-12-14',NULL,'0'),(5,'civicrm_contact',58,'Organize the Terry Fox run',1,'2012-12-27',NULL,'0'),(6,'civicrm_contact',171,'Reminder screening of \"Black\" on next Friday',1,'2012-08-31',NULL,'0'),(7,'civicrm_contact',200,'Get the registration done for NGO status',1,'2012-06-20',NULL,'0'),(8,'civicrm_contact',43,'Get the registration done for NGO status',1,'2013-02-21',NULL,'0'),(9,'civicrm_contact',145,'Arrange collection of funds from members',1,'2013-01-19',NULL,'0'),(10,'civicrm_contact',116,'Connect for presentation',1,'2012-03-23',NULL,'0'),(11,'civicrm_contact',155,'Contact the Commisioner of Charities',1,'2012-12-05',NULL,'0'),(12,'civicrm_contact',11,'Arrange collection of funds from members',1,'2012-10-08',NULL,'0'),(13,'civicrm_contact',28,'Reminder screening of \"Black\" on next Friday',1,'2012-07-05',NULL,'0'),(14,'civicrm_contact',52,'Contact the Commisioner of Charities',1,'2012-12-27',NULL,'0'),(15,'civicrm_contact',201,'Get the registration done for NGO status',1,'2012-07-09',NULL,'0'),(16,'civicrm_contact',61,'Arrange for cricket match with Sunil Gavaskar',1,'2012-11-01',NULL,'0'),(17,'civicrm_contact',162,'Reminder screening of \"Black\" on next Friday',1,'2012-10-28',NULL,'0'),(18,'civicrm_contact',35,'Send newsletter for April 2005',1,'2012-10-25',NULL,'0'),(19,'civicrm_contact',166,'Send newsletter for April 2005',1,'2013-02-02',NULL,'0'),(20,'civicrm_contact',96,'Send newsletter for April 2005',1,'2012-09-23',NULL,'0'); +INSERT INTO `civicrm_note` (`id`, `entity_table`, `entity_id`, `note`, `contact_id`, `modified_date`, `subject`, `privacy`) VALUES (1,'civicrm_contact',108,'Contact the Commisioner of Charities',1,'2012-07-08',NULL,'0'),(2,'civicrm_contact',132,'Contact the Commisioner of Charities',1,'2013-02-11',NULL,'0'),(3,'civicrm_contact',102,'Invite members for the Steve Prefontaine 10k dream run',1,'2012-12-21',NULL,'0'),(4,'civicrm_contact',53,'Reminder screening of \"Black\" on next Friday',1,'2013-01-05',NULL,'0'),(5,'civicrm_contact',184,'Contact the Commisioner of Charities',1,'2012-08-12',NULL,'0'),(6,'civicrm_contact',174,'Organize the Terry Fox run',1,'2012-11-27',NULL,'0'),(7,'civicrm_contact',197,'Reminder screening of \"Black\" on next Friday',1,'2012-12-20',NULL,'0'),(8,'civicrm_contact',101,'Contact the Commisioner of Charities',1,'2012-07-23',NULL,'0'),(9,'civicrm_contact',153,'Get the registration done for NGO status',1,'2012-12-30',NULL,'0'),(10,'civicrm_contact',50,'Arrange for cricket match with Sunil Gavaskar',1,'2013-01-31',NULL,'0'),(11,'civicrm_contact',178,'Arrange collection of funds from members',1,'2012-06-09',NULL,'0'),(12,'civicrm_contact',109,'Send reminder for annual dinner',1,'2012-05-11',NULL,'0'),(13,'civicrm_contact',130,'Arrange collection of funds from members',1,'2012-03-23',NULL,'0'),(14,'civicrm_contact',79,'Contact the Commisioner of Charities',1,'2012-08-06',NULL,'0'),(15,'civicrm_contact',99,'Send reminder for annual dinner',1,'2012-03-26',NULL,'0'),(16,'civicrm_contact',172,'Connect for presentation',1,'2012-11-29',NULL,'0'),(17,'civicrm_contact',103,'Arrange for cricket match with Sunil Gavaskar',1,'2013-02-18',NULL,'0'),(18,'civicrm_contact',96,'Chart out route map for next 10k run',1,'2012-10-11',NULL,'0'),(19,'civicrm_contact',133,'Reminder screening of \"Black\" on next Friday',1,'2012-09-29',NULL,'0'),(20,'civicrm_contact',172,'Reminder screening of \"Black\" on next Friday',1,'2012-09-17',NULL,'0'); /*!40000 ALTER TABLE `civicrm_note` ENABLE KEYS */; UNLOCK TABLES; @@ -1017,7 +1017,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_participant` WRITE; /*!40000 ALTER TABLE `civicrm_participant` DISABLE KEYS */; -INSERT INTO `civicrm_participant` (`id`, `contact_id`, `event_id`, `status_id`, `role_id`, `register_date`, `source`, `fee_level`, `is_test`, `is_pay_later`, `fee_amount`, `registered_by_id`, `discount_id`, `fee_currency`, `campaign_id`, `discount_amount`, `cart_id`, `must_wait`) VALUES (1,54,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(2,201,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(3,106,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,3,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(5,132,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(6,55,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,194,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(8,135,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(9,196,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,186,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(11,185,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(12,29,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,96,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(14,197,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(15,172,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,131,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(17,58,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(18,127,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,47,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(20,87,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(21,148,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,34,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(23,77,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(24,86,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,125,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,191,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(27,67,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(28,160,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,9,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(30,136,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(31,92,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,101,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(33,69,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(34,103,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,8,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(36,91,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(37,30,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,25,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(39,142,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(40,53,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,152,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(42,76,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(43,117,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,72,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(45,48,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(46,192,3,1,'4','2009-12-13 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(47,62,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(48,181,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(49,184,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,189,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,101,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(2,164,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(3,28,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,140,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(5,187,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(6,22,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,128,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(8,116,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(9,109,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,19,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(11,47,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(12,31,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,55,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(14,180,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(15,117,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,106,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(17,112,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(18,102,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,32,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(20,110,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(21,60,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,198,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(23,96,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(24,72,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,174,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,143,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(27,138,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(28,95,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,36,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(30,68,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(31,139,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,158,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(33,52,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(34,196,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,126,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(36,182,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(37,107,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,103,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(40,89,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,149,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(42,177,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(43,161,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,199,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(45,130,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(46,160,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,37,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(48,49,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(49,15,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,61,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 +1027,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,35,46),(3,29,47),(4,38,48),(5,12,49),(6,37,50),(7,22,51),(8,19,52),(9,45,53),(10,40,54),(11,1,55),(12,6,56),(13,17,57),(14,47,58),(15,27,59),(16,33,60),(17,44,61),(18,42,62),(19,23,63),(20,24,64),(21,20,65),(22,36,66),(23,31,67),(24,13,68),(25,32,69),(26,34,70),(27,3,71),(28,43,72),(29,25,73),(30,18,74),(31,16,75),(32,5,76),(33,8,77),(34,30,78),(35,39,79),(36,21,80),(37,41,81),(38,28,82),(39,15,83),(40,48,84),(41,49,85),(42,11,86),(43,10,87),(44,50,88),(45,26,89),(46,46,90),(47,7,91),(48,9,92),(49,14,93),(50,2,94); +INSERT INTO `civicrm_participant_payment` (`id`, `participant_id`, `contribution_id`) VALUES (1,49,45),(2,10,46),(3,6,47),(4,3,48),(5,12,49),(6,19,50),(7,29,51),(8,47,52),(9,11,53),(10,48,54),(11,33,55),(12,13,56),(13,21,57),(14,50,58),(15,38,59),(16,30,60),(17,24,61),(18,40,62),(19,28,63),(20,23,64),(21,1,65),(22,18,66),(23,39,67),(24,16,68),(25,37,69),(26,9,70),(27,20,71),(28,17,72),(29,8,73),(30,15,74),(31,35,75),(32,7,76),(33,45,77),(34,27,78),(35,31,79),(36,4,80),(37,26,81),(38,41,82),(39,32,83),(40,46,84),(41,43,85),(42,2,86),(43,25,87),(44,42,88),(45,14,89),(46,36,90),(47,5,91),(48,34,92),(49,22,93),(50,44,94); /*!40000 ALTER TABLE `civicrm_participant_payment` ENABLE KEYS */; UNLOCK TABLES; @@ -1066,7 +1066,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,180,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`) VALUES (1,181,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); /*!40000 ALTER TABLE `civicrm_pcp` ENABLE KEYS */; UNLOCK TABLES; @@ -1095,7 +1095,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,47,1,1,0,NULL,'(587) 512-3912',NULL,'5875123912',1),(2,66,1,1,0,NULL,'(518) 310-1859',NULL,'5183101859',1),(3,180,1,1,0,NULL,'813-7426',NULL,'8137426',2),(4,132,1,1,0,NULL,'(416) 554-6425',NULL,'4165546425',1),(5,106,1,1,0,NULL,'622-9203',NULL,'6229203',2),(6,106,1,0,0,NULL,'(594) 848-7474',NULL,'5948487474',2),(7,26,1,1,0,NULL,'678-6436',NULL,'6786436',1),(8,45,1,1,0,NULL,'(653) 767-6139',NULL,'6537676139',2),(9,12,1,1,0,NULL,'555-1233',NULL,'5551233',1),(10,12,1,0,0,NULL,'785-2002',NULL,'7852002',2),(11,156,1,1,0,NULL,'(635) 497-2936',NULL,'6354972936',2),(12,156,1,0,0,NULL,'306-2422',NULL,'3062422',1),(13,49,1,1,0,NULL,'391-6826',NULL,'3916826',2),(14,49,1,0,0,NULL,'(705) 214-3638',NULL,'7052143638',1),(15,40,1,1,0,NULL,'260-3888',NULL,'2603888',2),(16,166,1,1,0,NULL,'(803) 775-4434',NULL,'8037754434',2),(17,131,1,1,0,NULL,'777-4571',NULL,'7774571',2),(18,133,1,1,0,NULL,'(451) 602-8751',NULL,'4516028751',1),(19,119,1,1,0,NULL,'(404) 764-8634',NULL,'4047648634',2),(20,119,1,0,0,NULL,'(614) 406-2061',NULL,'6144062061',1),(21,188,1,1,0,NULL,'(792) 349-8998',NULL,'7923498998',1),(22,188,1,0,0,NULL,'(841) 482-4022',NULL,'8414824022',1),(23,121,1,1,0,NULL,'(459) 712-2366',NULL,'4597122366',1),(24,114,1,1,0,NULL,'738-8749',NULL,'7388749',2),(25,4,1,1,0,NULL,'(246) 693-2455',NULL,'2466932455',1),(26,125,1,1,0,NULL,'291-3229',NULL,'2913229',1),(27,125,1,0,0,NULL,'571-6325',NULL,'5716325',1),(28,186,1,1,0,NULL,'231-2857',NULL,'2312857',2),(29,186,1,0,0,NULL,'799-6640',NULL,'7996640',1),(30,93,1,1,0,NULL,'(732) 491-8355',NULL,'7324918355',2),(31,69,1,1,0,NULL,'671-4980',NULL,'6714980',2),(32,69,1,0,0,NULL,'(511) 415-3871',NULL,'5114153871',2),(33,8,1,1,0,NULL,'(419) 791-2139',NULL,'4197912139',1),(34,8,1,0,0,NULL,'504-4314',NULL,'5044314',2),(35,117,1,1,0,NULL,'824-9348',NULL,'8249348',2),(36,107,1,1,0,NULL,'(257) 751-3273',NULL,'2577513273',2),(37,144,1,1,0,NULL,'552-2685',NULL,'5522685',1),(38,144,1,0,0,NULL,'259-8957',NULL,'2598957',1),(39,100,1,1,0,NULL,'(833) 519-3446',NULL,'8335193446',1),(40,193,1,1,0,NULL,'(720) 275-7321',NULL,'7202757321',1),(41,81,1,1,0,NULL,'546-7520',NULL,'5467520',1),(42,81,1,0,0,NULL,'422-4687',NULL,'4224687',2),(43,197,1,1,0,NULL,'255-8392',NULL,'2558392',1),(44,197,1,0,0,NULL,'296-2121',NULL,'2962121',2),(45,196,1,1,0,NULL,'(879) 325-4103',NULL,'8793254103',1),(46,92,1,1,0,NULL,'(233) 425-5938',NULL,'2334255938',2),(47,164,1,1,0,NULL,'(892) 634-5935',NULL,'8926345935',1),(48,164,1,0,0,NULL,'(234) 225-8279',NULL,'2342258279',2),(49,14,1,1,0,NULL,'(213) 297-9997',NULL,'2132979997',2),(50,134,1,1,0,NULL,'(639) 271-8734',NULL,'6392718734',1),(51,27,1,1,0,NULL,'(667) 261-6644',NULL,'6672616644',2),(52,27,1,0,0,NULL,'525-2100',NULL,'5252100',2),(53,176,1,1,0,NULL,'703-5274',NULL,'7035274',2),(54,178,1,1,0,NULL,'(334) 573-1383',NULL,'3345731383',1),(55,36,1,1,0,NULL,'321-3825',NULL,'3213825',1),(56,128,1,1,0,NULL,'(557) 487-7594',NULL,'5574877594',1),(57,76,1,1,0,NULL,'(272) 430-2534',NULL,'2724302534',2),(58,76,1,0,0,NULL,'(316) 312-4767',NULL,'3163124767',1),(59,189,1,1,0,NULL,'(632) 647-5073',NULL,'6326475073',2),(60,109,1,1,0,NULL,'841-3033',NULL,'8413033',1),(61,54,1,1,0,NULL,'389-7030',NULL,'3897030',1),(62,149,1,1,0,NULL,'(870) 262-6784',NULL,'8702626784',1),(63,15,1,1,0,NULL,'588-7810',NULL,'5887810',2),(64,15,1,0,0,NULL,'240-9854',NULL,'2409854',1),(65,23,1,1,0,NULL,'(441) 605-7477',NULL,'4416057477',2),(66,70,1,1,0,NULL,'674-5171',NULL,'6745171',1),(67,70,1,0,0,NULL,'817-7653',NULL,'8177653',1),(68,30,1,1,0,NULL,'(797) 226-7705',NULL,'7972267705',2),(69,101,1,1,0,NULL,'478-9806',NULL,'4789806',2),(70,101,1,0,0,NULL,'533-4267',NULL,'5334267',1),(71,162,1,1,0,NULL,'(838) 238-5685',NULL,'8382385685',1),(72,182,1,1,0,NULL,'(341) 261-4270',NULL,'3412614270',2),(73,5,1,1,0,NULL,'737-2961',NULL,'7372961',1),(74,5,1,0,0,NULL,'(637) 661-2664',NULL,'6376612664',1),(75,148,1,1,0,NULL,'528-3126',NULL,'5283126',1),(76,148,1,0,0,NULL,'772-8223',NULL,'7728223',2),(77,44,1,1,0,NULL,'(806) 716-2643',NULL,'8067162643',2),(78,44,1,0,0,NULL,'279-7823',NULL,'2797823',1),(79,143,1,1,0,NULL,'828-2834',NULL,'8282834',1),(80,143,1,0,0,NULL,'727-3458',NULL,'7273458',1),(81,173,1,1,0,NULL,'(889) 302-7438',NULL,'8893027438',2),(82,173,1,0,0,NULL,'(554) 523-6095',NULL,'5545236095',1),(83,63,1,1,0,NULL,'(493) 661-9645',NULL,'4936619645',1),(84,60,1,1,0,NULL,'281-4151',NULL,'2814151',1),(85,60,1,0,0,NULL,'(317) 780-7270',NULL,'3177807270',2),(86,7,1,1,0,NULL,'646-1545',NULL,'6461545',1),(87,97,1,1,0,NULL,'(546) 777-6337',NULL,'5467776337',2),(88,95,1,1,0,NULL,'637-8825',NULL,'6378825',1),(89,19,1,1,0,NULL,'(819) 525-7261',NULL,'8195257261',1),(90,13,1,1,0,NULL,'649-8848',NULL,'6498848',2),(91,163,1,1,0,NULL,'635-7191',NULL,'6357191',1),(92,34,1,1,0,NULL,'(367) 573-4991',NULL,'3675734991',2),(93,34,1,0,0,NULL,'619-4618',NULL,'6194618',1),(94,9,1,1,0,NULL,'734-2232',NULL,'7342232',1),(95,9,1,0,0,NULL,'(599) 259-5586',NULL,'5992595586',1),(96,43,1,1,0,NULL,'(784) 729-8077',NULL,'7847298077',1),(97,55,1,1,0,NULL,'515-9744',NULL,'5159744',1),(98,167,1,1,0,NULL,'(856) 378-1584',NULL,'8563781584',2),(99,137,1,1,0,NULL,'363-2612',NULL,'3632612',1),(100,137,1,0,0,NULL,'870-8340',NULL,'8708340',2),(101,80,1,1,0,NULL,'(850) 271-9692',NULL,'8502719692',1),(102,32,1,1,0,NULL,'(740) 878-8524',NULL,'7408788524',2),(103,32,1,0,0,NULL,'472-4666',NULL,'4724666',2),(104,2,1,1,0,NULL,'792-9858',NULL,'7929858',2),(105,74,1,1,0,NULL,'831-9960',NULL,'8319960',2),(106,74,1,0,0,NULL,'(757) 762-4522',NULL,'7577624522',2),(107,130,1,1,0,NULL,'(767) 740-2288',NULL,'7677402288',1),(108,130,1,0,0,NULL,'589-5595',NULL,'5895595',2),(109,28,1,1,0,NULL,'580-4084',NULL,'5804084',1),(110,183,1,1,0,NULL,'(566) 309-6262',NULL,'5663096262',2),(111,160,1,1,0,NULL,'(621) 258-6794',NULL,'6212586794',1),(112,160,1,0,0,NULL,'(201) 814-8383',NULL,'2018148383',1),(113,122,1,1,0,NULL,'487-5269',NULL,'4875269',2),(114,184,1,1,0,NULL,'(377) 553-3596',NULL,'3775533596',1),(115,184,1,0,0,NULL,'(493) 833-7625',NULL,'4938337625',2),(116,198,1,1,0,NULL,'817-4550',NULL,'8174550',1),(117,198,1,0,0,NULL,'(779) 707-1550',NULL,'7797071550',1),(118,123,1,1,0,NULL,'683-6717',NULL,'6836717',1),(119,123,1,0,0,NULL,'(703) 282-6213',NULL,'7032826213',2),(120,62,1,1,0,NULL,'409-1710',NULL,'4091710',1),(121,62,1,0,0,NULL,'485-4022',NULL,'4854022',1),(122,83,1,1,0,NULL,'710-9297',NULL,'7109297',2),(123,190,1,1,0,NULL,'(227) 668-3127',NULL,'2276683127',1),(124,190,1,0,0,NULL,'(287) 851-6611',NULL,'2878516611',1),(125,88,1,1,0,NULL,'(570) 643-6745',NULL,'5706436745',2),(126,102,1,1,0,NULL,'747-8264',NULL,'7478264',1),(127,102,1,0,0,NULL,'(255) 551-2719',NULL,'2555512719',1),(128,129,1,1,0,NULL,'870-6240',NULL,'8706240',2),(129,129,1,0,0,NULL,'(445) 735-6873',NULL,'4457356873',2),(130,18,1,1,0,NULL,'286-8581',NULL,'2868581',2),(131,3,1,1,0,NULL,'307-4270',NULL,'3074270',1),(132,181,1,1,0,NULL,'698-4796',NULL,'6984796',2),(133,21,1,1,0,NULL,'403-1965',NULL,'4031965',1),(134,16,1,1,0,NULL,'(513) 648-5982',NULL,'5136485982',1),(135,16,1,0,0,NULL,'637-1847',NULL,'6371847',1),(136,65,1,1,0,NULL,'(655) 253-1037',NULL,'6552531037',2),(137,126,1,1,0,NULL,'337-1428',NULL,'3371428',1),(138,126,1,0,0,NULL,'(577) 582-1864',NULL,'5775821864',1),(139,77,1,1,0,NULL,'(539) 717-4505',NULL,'5397174505',1),(140,161,1,1,0,NULL,'359-6139',NULL,'3596139',1),(141,46,1,1,0,NULL,'(861) 688-7858',NULL,'8616887858',1),(142,46,1,0,0,NULL,'482-2669',NULL,'4822669',1),(143,138,1,1,0,NULL,'592-2409',NULL,'5922409',1),(144,138,1,0,0,NULL,'(566) 411-7317',NULL,'5664117317',1),(145,185,1,1,0,NULL,'848-9220',NULL,'8489220',2),(146,185,1,0,0,NULL,'396-7555',NULL,'3967555',1),(147,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),(148,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),(149,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,136,1,1,0,NULL,'504-2800',NULL,'5042800',2),(2,136,1,0,0,NULL,'(548) 224-3954',NULL,'5482243954',1),(3,82,1,1,0,NULL,'507-4613',NULL,'5074613',1),(4,102,1,1,0,NULL,'352-5894',NULL,'3525894',2),(5,102,1,0,0,NULL,'630-6389',NULL,'6306389',1),(6,125,1,1,0,NULL,'(899) 688-7203',NULL,'8996887203',2),(7,159,1,1,0,NULL,'398-9834',NULL,'3989834',1),(8,159,1,0,0,NULL,'(779) 698-7717',NULL,'7796987717',2),(9,105,1,1,0,NULL,'(830) 621-3351',NULL,'8306213351',2),(10,117,1,1,0,NULL,'230-9026',NULL,'2309026',2),(11,103,1,1,0,NULL,'833-1887',NULL,'8331887',2),(12,103,1,0,0,NULL,'742-4490',NULL,'7424490',1),(13,98,1,1,0,NULL,'(712) 606-2985',NULL,'7126062985',1),(14,138,1,1,0,NULL,'(646) 616-8048',NULL,'6466168048',2),(15,138,1,0,0,NULL,'(235) 661-6751',NULL,'2356616751',2),(16,179,1,1,0,NULL,'338-6518',NULL,'3386518',2),(17,179,1,0,0,NULL,'403-3441',NULL,'4033441',1),(18,158,1,1,0,NULL,'(694) 476-2916',NULL,'6944762916',2),(19,88,1,1,0,NULL,'657-1246',NULL,'6571246',1),(20,88,1,0,0,NULL,'(772) 775-9607',NULL,'7727759607',2),(21,95,1,1,0,NULL,'(658) 364-7280',NULL,'6583647280',1),(22,95,1,0,0,NULL,'(747) 647-7446',NULL,'7476477446',2),(23,9,1,1,0,NULL,'242-1673',NULL,'2421673',1),(24,9,1,0,0,NULL,'(875) 322-6313',NULL,'8753226313',1),(25,162,1,1,0,NULL,'(306) 355-7997',NULL,'3063557997',2),(26,135,1,1,0,NULL,'(224) 326-1680',NULL,'2243261680',2),(27,87,1,1,0,NULL,'(643) 484-5030',NULL,'6434845030',2),(28,87,1,0,0,NULL,'414-1631',NULL,'4141631',1),(29,198,1,1,0,NULL,'754-7137',NULL,'7547137',2),(30,198,1,0,0,NULL,'427-9609',NULL,'4279609',1),(31,191,1,1,0,NULL,'(687) 609-4330',NULL,'6876094330',1),(32,191,1,0,0,NULL,'549-2219',NULL,'5492219',1),(33,160,1,1,0,NULL,'(561) 805-7988',NULL,'5618057988',2),(34,193,1,1,0,NULL,'719-3565',NULL,'7193565',2),(35,193,1,0,0,NULL,'(704) 567-9670',NULL,'7045679670',1),(36,153,1,1,0,NULL,'312-1359',NULL,'3121359',2),(37,2,1,1,0,NULL,'(666) 559-3722',NULL,'6665593722',2),(38,89,1,1,0,NULL,'(272) 615-8768',NULL,'2726158768',2),(39,79,1,1,0,NULL,'296-2867',NULL,'2962867',1),(40,79,1,0,0,NULL,'(767) 301-4336',NULL,'7673014336',1),(41,163,1,1,0,NULL,'(485) 817-4528',NULL,'4858174528',2),(42,144,1,1,0,NULL,'464-3051',NULL,'4643051',1),(43,144,1,0,0,NULL,'623-3114',NULL,'6233114',2),(44,78,1,1,0,NULL,'391-9606',NULL,'3919606',1),(45,65,1,1,0,NULL,'507-6881',NULL,'5076881',1),(46,168,1,1,0,NULL,'450-9854',NULL,'4509854',1),(47,168,1,0,0,NULL,'644-2651',NULL,'6442651',2),(48,126,1,1,0,NULL,'821-1379',NULL,'8211379',1),(49,126,1,0,0,NULL,'(395) 696-1390',NULL,'3956961390',2),(50,50,1,1,0,NULL,'492-3243',NULL,'4923243',1),(51,75,1,1,0,NULL,'289-5252',NULL,'2895252',2),(52,27,1,1,0,NULL,'369-9438',NULL,'3699438',1),(53,27,1,0,0,NULL,'353-3914',NULL,'3533914',1),(54,34,1,1,0,NULL,'(529) 230-4051',NULL,'5292304051',1),(55,34,1,0,0,NULL,'637-7737',NULL,'6377737',2),(56,37,1,1,0,NULL,'560-9206',NULL,'5609206',1),(57,37,1,0,0,NULL,'216-9662',NULL,'2169662',1),(58,132,1,1,0,NULL,'(703) 310-3428',NULL,'7033103428',1),(59,132,1,0,0,NULL,'(246) 781-6450',NULL,'2467816450',2),(60,46,1,1,0,NULL,'406-8749',NULL,'4068749',2),(61,46,1,0,0,NULL,'724-7685',NULL,'7247685',1),(62,134,1,1,0,NULL,'811-5987',NULL,'8115987',1),(63,134,1,0,0,NULL,'778-4783',NULL,'7784783',1),(64,182,1,1,0,NULL,'703-6926',NULL,'7036926',1),(65,182,1,0,0,NULL,'226-3789',NULL,'2263789',1),(66,63,1,1,0,NULL,'(490) 518-1483',NULL,'4905181483',1),(67,63,1,0,0,NULL,'622-1829',NULL,'6221829',1),(68,49,1,1,0,NULL,'(869) 548-9137',NULL,'8695489137',2),(69,49,1,0,0,NULL,'(572) 332-1666',NULL,'5723321666',2),(70,92,1,1,0,NULL,'563-8927',NULL,'5638927',1),(71,32,1,1,0,NULL,'218-4474',NULL,'2184474',2),(72,57,1,1,0,NULL,'(560) 791-8244',NULL,'5607918244',1),(73,57,1,0,0,NULL,'711-7445',NULL,'7117445',2),(74,106,1,1,0,NULL,'503-4092',NULL,'5034092',1),(75,106,1,0,0,NULL,'665-7558',NULL,'6657558',2),(76,165,1,1,0,NULL,'(448) 712-3651',NULL,'4487123651',2),(77,165,1,0,0,NULL,'615-9490',NULL,'6159490',1),(78,66,1,1,0,NULL,'(235) 806-7651',NULL,'2358067651',2),(79,56,1,1,0,NULL,'(546) 622-8992',NULL,'5466228992',2),(80,76,1,1,0,NULL,'(670) 354-4914',NULL,'6703544914',2),(81,196,1,1,0,NULL,'(213) 439-9992',NULL,'2134399992',2),(82,195,1,1,0,NULL,'328-8861',NULL,'3288861',2),(83,41,1,1,0,NULL,'(574) 582-6873',NULL,'5745826873',1),(84,53,1,1,0,NULL,'819-1145',NULL,'8191145',2),(85,53,1,0,0,NULL,'(427) 223-9532',NULL,'4272239532',1),(86,38,1,1,0,NULL,'(519) 742-6071',NULL,'5197426071',1),(87,176,1,1,0,NULL,'712-8106',NULL,'7128106',1),(88,74,1,1,0,NULL,'(623) 803-9778',NULL,'6238039778',1),(89,29,1,1,0,NULL,'331-3463',NULL,'3313463',1),(90,29,1,0,0,NULL,'(646) 497-3737',NULL,'6464973737',1),(91,51,1,1,0,NULL,'(488) 220-3598',NULL,'4882203598',1),(92,61,1,1,0,NULL,'(742) 241-9519',NULL,'7422419519',2),(93,100,1,1,0,NULL,'(548) 846-8091',NULL,'5488468091',2),(94,151,1,1,0,NULL,'(315) 266-3762',NULL,'3152663762',1),(95,48,1,1,0,NULL,'245-3571',NULL,'2453571',1),(96,72,1,1,0,NULL,'835-1320',NULL,'8351320',2),(97,33,1,1,0,NULL,'308-3920',NULL,'3083920',1),(98,96,1,1,0,NULL,'447-7915',NULL,'4477915',2),(99,96,1,0,0,NULL,'657-9405',NULL,'6579405',2),(100,83,1,1,0,NULL,'(280) 480-7558',NULL,'2804807558',1),(101,131,1,1,0,NULL,'480-1076',NULL,'4801076',1),(102,59,1,1,0,NULL,'753-6403',NULL,'7536403',1),(103,59,1,0,0,NULL,'620-9697',NULL,'6209697',2),(104,121,1,1,0,NULL,'247-6614',NULL,'2476614',1),(105,121,1,0,0,NULL,'789-6432',NULL,'7896432',2),(106,62,1,1,0,NULL,'273-5611',NULL,'2735611',1),(107,62,1,0,0,NULL,'(586) 896-1653',NULL,'5868961653',2),(108,52,1,1,0,NULL,'(321) 798-6248',NULL,'3217986248',2),(109,68,1,1,0,NULL,'337-5455',NULL,'3375455',1),(110,68,1,0,0,NULL,'327-1940',NULL,'3271940',2),(111,127,1,1,0,NULL,'(533) 475-3378',NULL,'5334753378',1),(112,77,1,1,0,NULL,'(366) 526-7720',NULL,'3665267720',2),(113,81,1,1,0,NULL,'754-5250',NULL,'7545250',2),(114,115,1,1,0,NULL,'(458) 250-7544',NULL,'4582507544',2),(115,115,1,0,0,NULL,'861-3844',NULL,'8613844',2),(116,139,1,1,0,NULL,'(711) 890-9720',NULL,'7118909720',1),(117,139,1,0,0,NULL,'756-1896',NULL,'7561896',1),(118,172,1,1,0,NULL,'(359) 765-6787',NULL,'3597656787',2),(119,172,1,0,0,NULL,'238-6129',NULL,'2386129',1),(120,15,1,1,0,NULL,'(408) 842-7889',NULL,'4088427889',1),(121,15,1,0,0,NULL,'(509) 621-8171',NULL,'5096218171',1),(122,114,1,1,0,NULL,'(676) 855-2228',NULL,'6768552228',2),(123,137,1,1,0,NULL,'(646) 703-7288',NULL,'6467037288',2),(124,137,1,0,0,NULL,'602-6096',NULL,'6026096',1),(125,64,1,1,0,NULL,'(255) 364-1631',NULL,'2553641631',2),(126,64,1,0,0,NULL,'585-8060',NULL,'5858060',2),(127,170,1,1,0,NULL,'(443) 778-2624',NULL,'4437782624',2),(128,31,1,1,0,NULL,'(651) 621-5578',NULL,'6516215578',1),(129,31,1,0,0,NULL,'431-1359',NULL,'4311359',2),(130,189,1,1,0,NULL,'(301) 804-6150',NULL,'3018046150',1),(131,122,1,1,0,NULL,'(864) 661-7672',NULL,'8646617672',2),(132,122,1,0,0,NULL,'(392) 334-1645',NULL,'3923341645',2),(133,23,1,1,0,NULL,'862-5154',NULL,'8625154',2),(134,23,1,0,0,NULL,'(801) 682-5542',NULL,'8016825542',2),(135,22,1,1,0,NULL,'(202) 572-3316',NULL,'2025723316',2),(136,108,1,1,0,NULL,'(709) 299-4393',NULL,'7092994393',1),(137,197,1,1,0,NULL,'208-2457',NULL,'2082457',2),(138,197,1,0,0,NULL,'(849) 737-6111',NULL,'8497376111',2),(139,4,1,1,0,NULL,'(656) 492-7442',NULL,'6564927442',2),(140,4,1,0,0,NULL,'(552) 321-1645',NULL,'5523211645',2),(141,143,1,1,0,NULL,'(511) 212-3053',NULL,'5112123053',1),(142,143,1,0,0,NULL,'783-7999',NULL,'7837999',1),(143,70,1,1,0,NULL,'324-3956',NULL,'3243956',1),(144,177,1,1,0,NULL,'(876) 346-7259',NULL,'8763467259',1),(145,141,1,1,0,NULL,'(385) 896-6368',NULL,'3858966368',2),(146,180,1,1,0,NULL,'349-1356',NULL,'3491356',2),(147,161,1,1,0,NULL,'(896) 631-4253',NULL,'8966314253',2),(148,161,1,0,0,NULL,'458-7440',NULL,'4587440',2),(149,169,1,1,0,NULL,'530-5335',NULL,'5305335',1),(150,116,1,1,0,NULL,'(882) 727-3308',NULL,'8827273308',2),(151,116,1,0,0,NULL,'(734) 664-4742',NULL,'7346644742',1),(152,40,1,1,0,NULL,'503-6249',NULL,'5036249',2),(153,40,1,0,0,NULL,'(587) 646-2335',NULL,'5876462335',2),(154,25,1,1,0,NULL,'545-7379',NULL,'5457379',2),(155,25,1,0,0,NULL,'524-1431',NULL,'5241431',2),(156,194,1,1,0,NULL,'(515) 209-7024',NULL,'5152097024',1),(157,174,1,1,0,NULL,'730-6487',NULL,'7306487',2),(158,90,1,1,0,NULL,'861-3505',NULL,'8613505',2),(159,90,1,0,0,NULL,'(489) 816-5938',NULL,'4898165938',2),(160,184,1,1,0,NULL,'(391) 571-2260',NULL,'3915712260',2),(161,184,1,0,0,NULL,'(596) 457-7790',NULL,'5964577790',1),(162,164,1,1,0,NULL,'(878) 691-6872',NULL,'8786916872',2),(163,164,1,0,0,NULL,'(312) 780-8130',NULL,'3127808130',1),(164,44,1,1,0,NULL,'737-8400',NULL,'7378400',2),(165,44,1,0,0,NULL,'645-2044',NULL,'6452044',2),(166,156,1,1,0,NULL,'397-3363',NULL,'3973363',2),(167,156,1,0,0,NULL,'886-2442',NULL,'8862442',1),(168,200,1,1,0,NULL,'636-4950',NULL,'6364950',2),(169,200,1,0,0,NULL,'(672) 735-5585',NULL,'6727355585',1),(170,5,1,1,0,NULL,'483-2695',NULL,'4832695',1),(171,5,1,0,0,NULL,'666-6573',NULL,'6666573',2),(172,199,1,1,0,NULL,'(415) 890-7912',NULL,'4158907912',1),(173,35,1,1,0,NULL,'234-2297',NULL,'2342297',1),(174,35,1,0,0,NULL,'(302) 314-2527',NULL,'3023142527',1),(175,71,1,1,0,NULL,'455-5134',NULL,'4555134',1),(176,178,1,1,0,NULL,'847-7909',NULL,'8477909',1),(177,16,1,1,0,NULL,'573-1905',NULL,'5731905',1),(178,16,1,0,0,NULL,'(437) 294-3013',NULL,'4372943013',1),(179,109,1,1,0,NULL,'(566) 395-6630',NULL,'5663956630',2),(180,109,1,0,0,NULL,'(288) 313-8379',NULL,'2883138379',1),(181,155,1,1,0,NULL,'689-6723',NULL,'6896723',2),(182,155,1,0,0,NULL,'(367) 391-5045',NULL,'3673915045',1),(183,11,1,1,0,NULL,'480-8463',NULL,'4808463',2),(184,11,1,0,0,NULL,'462-7843',NULL,'4627843',1),(185,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),(186,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),(187,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1); /*!40000 ALTER TABLE `civicrm_phone` ENABLE KEYS */; UNLOCK TABLES; @@ -1242,7 +1242,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,44,72,1,NULL,NULL,1,NULL,0,0,NULL),(2,143,72,1,NULL,NULL,1,NULL,0,0,NULL),(3,44,148,1,NULL,NULL,1,NULL,0,0,NULL),(4,143,148,1,NULL,NULL,1,NULL,0,0,NULL),(5,143,44,3,NULL,NULL,1,NULL,0,0,NULL),(6,148,6,7,NULL,NULL,1,NULL,0,0,NULL),(7,44,6,7,NULL,NULL,1,NULL,0,0,NULL),(8,143,6,7,NULL,NULL,1,NULL,0,0,NULL),(9,72,6,6,NULL,NULL,1,NULL,0,0,NULL),(10,148,72,2,NULL,NULL,1,NULL,0,0,NULL),(11,173,41,1,NULL,NULL,1,NULL,0,0,NULL),(12,63,41,1,NULL,NULL,1,NULL,0,0,NULL),(13,173,195,1,NULL,NULL,1,NULL,0,0,NULL),(14,63,195,1,NULL,NULL,1,NULL,0,0,NULL),(15,63,173,3,NULL,NULL,1,NULL,0,0,NULL),(16,195,53,7,NULL,NULL,1,NULL,0,0,NULL),(17,173,53,7,NULL,NULL,1,NULL,0,0,NULL),(18,63,53,7,NULL,NULL,1,NULL,0,0,NULL),(19,41,53,6,NULL,NULL,1,NULL,0,0,NULL),(20,195,41,2,NULL,NULL,1,NULL,0,0,NULL),(21,7,60,1,NULL,NULL,1,NULL,0,0,NULL),(22,97,60,1,NULL,NULL,1,NULL,0,0,NULL),(23,7,35,1,NULL,NULL,1,NULL,0,0,NULL),(24,97,35,1,NULL,NULL,1,NULL,0,0,NULL),(25,97,7,3,NULL,NULL,1,NULL,0,0,NULL),(26,35,171,7,NULL,NULL,1,NULL,0,0,NULL),(27,7,171,7,NULL,NULL,1,NULL,0,0,NULL),(28,97,171,7,NULL,NULL,1,NULL,0,0,NULL),(29,60,171,6,NULL,NULL,1,NULL,0,0,NULL),(30,35,60,2,NULL,NULL,1,NULL,0,0,NULL),(31,170,95,1,NULL,NULL,1,NULL,0,0,NULL),(32,50,95,1,NULL,NULL,1,NULL,0,0,NULL),(33,170,19,1,NULL,NULL,1,NULL,0,0,NULL),(34,50,19,1,NULL,NULL,1,NULL,0,0,NULL),(35,50,170,3,NULL,NULL,1,NULL,0,0,NULL),(36,19,140,7,NULL,NULL,1,NULL,0,0,NULL),(37,170,140,7,NULL,NULL,1,NULL,0,0,NULL),(38,50,140,7,NULL,NULL,1,NULL,0,0,NULL),(39,95,140,6,NULL,NULL,0,NULL,0,0,NULL),(40,19,95,2,NULL,NULL,0,NULL,0,0,NULL),(41,177,13,1,NULL,NULL,1,NULL,0,0,NULL),(42,34,13,1,NULL,NULL,1,NULL,0,0,NULL),(43,177,163,1,NULL,NULL,1,NULL,0,0,NULL),(44,34,163,1,NULL,NULL,1,NULL,0,0,NULL),(45,34,177,3,NULL,NULL,1,NULL,0,0,NULL),(46,163,91,7,NULL,NULL,1,NULL,0,0,NULL),(47,177,91,7,NULL,NULL,1,NULL,0,0,NULL),(48,34,91,7,NULL,NULL,1,NULL,0,0,NULL),(49,13,91,6,NULL,NULL,1,NULL,0,0,NULL),(50,163,13,2,NULL,NULL,1,NULL,0,0,NULL),(51,43,159,1,NULL,NULL,1,NULL,0,0,NULL),(52,55,159,1,NULL,NULL,1,NULL,0,0,NULL),(53,43,9,1,NULL,NULL,1,NULL,0,0,NULL),(54,55,9,1,NULL,NULL,1,NULL,0,0,NULL),(55,55,43,3,NULL,NULL,1,NULL,0,0,NULL),(56,9,165,7,NULL,NULL,1,NULL,0,0,NULL),(57,43,165,7,NULL,NULL,1,NULL,0,0,NULL),(58,55,165,7,NULL,NULL,1,NULL,0,0,NULL),(59,159,165,6,NULL,NULL,1,NULL,0,0,NULL),(60,9,159,2,NULL,NULL,1,NULL,0,0,NULL),(61,98,167,1,NULL,NULL,1,NULL,0,0,NULL),(62,199,167,1,NULL,NULL,1,NULL,0,0,NULL),(63,98,137,1,NULL,NULL,1,NULL,0,0,NULL),(64,199,137,1,NULL,NULL,1,NULL,0,0,NULL),(65,199,98,3,NULL,NULL,1,NULL,0,0,NULL),(66,137,25,7,NULL,NULL,1,NULL,0,0,NULL),(67,98,25,7,NULL,NULL,1,NULL,0,0,NULL),(68,199,25,7,NULL,NULL,1,NULL,0,0,NULL),(69,167,25,6,NULL,NULL,1,NULL,0,0,NULL),(70,137,167,2,NULL,NULL,1,NULL,0,0,NULL),(71,146,80,1,NULL,NULL,1,NULL,0,0,NULL),(72,2,80,1,NULL,NULL,1,NULL,0,0,NULL),(73,146,32,1,NULL,NULL,1,NULL,0,0,NULL),(74,2,32,1,NULL,NULL,1,NULL,0,0,NULL),(75,2,146,3,NULL,NULL,1,NULL,0,0,NULL),(76,32,61,7,NULL,NULL,1,NULL,0,0,NULL),(77,146,61,7,NULL,NULL,1,NULL,0,0,NULL),(78,2,61,7,NULL,NULL,1,NULL,0,0,NULL),(79,80,61,6,NULL,NULL,1,NULL,0,0,NULL),(80,32,80,2,NULL,NULL,1,NULL,0,0,NULL),(81,130,201,1,NULL,NULL,1,NULL,0,0,NULL),(82,90,201,1,NULL,NULL,1,NULL,0,0,NULL),(83,130,74,1,NULL,NULL,1,NULL,0,0,NULL),(84,90,74,1,NULL,NULL,1,NULL,0,0,NULL),(85,90,130,3,NULL,NULL,1,NULL,0,0,NULL),(86,74,22,7,NULL,NULL,1,NULL,0,0,NULL),(87,130,22,7,NULL,NULL,1,NULL,0,0,NULL),(88,90,22,7,NULL,NULL,1,NULL,0,0,NULL),(89,201,22,6,NULL,NULL,1,NULL,0,0,NULL),(90,74,201,2,NULL,NULL,1,NULL,0,0,NULL),(91,153,28,1,NULL,NULL,1,NULL,0,0,NULL),(92,17,28,1,NULL,NULL,1,NULL,0,0,NULL),(93,153,158,1,NULL,NULL,1,NULL,0,0,NULL),(94,17,158,1,NULL,NULL,1,NULL,0,0,NULL),(95,17,153,3,NULL,NULL,1,NULL,0,0,NULL),(96,158,99,7,NULL,NULL,1,NULL,0,0,NULL),(97,153,99,7,NULL,NULL,1,NULL,0,0,NULL),(98,17,99,7,NULL,NULL,1,NULL,0,0,NULL),(99,28,99,6,NULL,NULL,0,NULL,0,0,NULL),(100,158,28,2,NULL,NULL,0,NULL,0,0,NULL),(101,183,24,1,NULL,NULL,1,NULL,0,0,NULL),(102,174,24,1,NULL,NULL,1,NULL,0,0,NULL),(103,183,108,1,NULL,NULL,1,NULL,0,0,NULL),(104,174,108,1,NULL,NULL,1,NULL,0,0,NULL),(105,174,183,3,NULL,NULL,1,NULL,0,0,NULL),(106,108,104,7,NULL,NULL,1,NULL,0,0,NULL),(107,183,104,7,NULL,NULL,1,NULL,0,0,NULL),(108,174,104,7,NULL,NULL,1,NULL,0,0,NULL),(109,24,104,6,NULL,NULL,0,NULL,0,0,NULL),(110,108,24,2,NULL,NULL,0,NULL,0,0,NULL),(111,122,160,1,NULL,NULL,1,NULL,0,0,NULL),(112,184,160,1,NULL,NULL,1,NULL,0,0,NULL),(113,122,89,1,NULL,NULL,1,NULL,0,0,NULL),(114,184,89,1,NULL,NULL,1,NULL,0,0,NULL),(115,184,122,3,NULL,NULL,1,NULL,0,0,NULL),(116,89,87,7,NULL,NULL,1,NULL,0,0,NULL),(117,122,87,7,NULL,NULL,1,NULL,0,0,NULL),(118,184,87,7,NULL,NULL,1,NULL,0,0,NULL),(119,160,87,6,NULL,NULL,1,NULL,0,0,NULL),(120,89,160,2,NULL,NULL,1,NULL,0,0,NULL),(121,123,198,1,NULL,NULL,1,NULL,0,0,NULL),(122,29,198,1,NULL,NULL,1,NULL,0,0,NULL),(123,123,64,1,NULL,NULL,1,NULL,0,0,NULL),(124,29,64,1,NULL,NULL,1,NULL,0,0,NULL),(125,29,123,3,NULL,NULL,1,NULL,0,0,NULL),(126,64,86,7,NULL,NULL,1,NULL,0,0,NULL),(127,123,86,7,NULL,NULL,1,NULL,0,0,NULL),(128,29,86,7,NULL,NULL,1,NULL,0,0,NULL),(129,198,86,6,NULL,NULL,1,NULL,0,0,NULL),(130,64,198,2,NULL,NULL,1,NULL,0,0,NULL),(131,190,62,1,NULL,NULL,1,NULL,0,0,NULL),(132,85,62,1,NULL,NULL,1,NULL,0,0,NULL),(133,190,83,1,NULL,NULL,1,NULL,0,0,NULL),(134,85,83,1,NULL,NULL,1,NULL,0,0,NULL),(135,85,190,3,NULL,NULL,1,NULL,0,0,NULL),(136,83,147,7,NULL,NULL,1,NULL,0,0,NULL),(137,190,147,7,NULL,NULL,1,NULL,0,0,NULL),(138,85,147,7,NULL,NULL,1,NULL,0,0,NULL),(139,62,147,6,NULL,NULL,1,NULL,0,0,NULL),(140,83,62,2,NULL,NULL,1,NULL,0,0,NULL),(141,67,11,1,NULL,NULL,1,NULL,0,0,NULL),(142,102,11,1,NULL,NULL,1,NULL,0,0,NULL),(143,67,88,1,NULL,NULL,1,NULL,0,0,NULL),(144,102,88,1,NULL,NULL,1,NULL,0,0,NULL),(145,102,67,3,NULL,NULL,1,NULL,0,0,NULL),(146,88,155,7,NULL,NULL,1,NULL,0,0,NULL),(147,67,155,7,NULL,NULL,1,NULL,0,0,NULL),(148,102,155,7,NULL,NULL,1,NULL,0,0,NULL),(149,11,155,6,NULL,NULL,0,NULL,0,0,NULL),(150,88,11,2,NULL,NULL,0,NULL,0,0,NULL),(151,18,73,1,NULL,NULL,1,NULL,0,0,NULL),(152,3,73,1,NULL,NULL,1,NULL,0,0,NULL),(153,18,129,1,NULL,NULL,1,NULL,0,0,NULL),(154,3,129,1,NULL,NULL,1,NULL,0,0,NULL),(155,3,18,3,NULL,NULL,1,NULL,0,0,NULL),(156,129,57,7,NULL,NULL,1,NULL,0,0,NULL),(157,18,57,7,NULL,NULL,1,NULL,0,0,NULL),(158,3,57,7,NULL,NULL,1,NULL,0,0,NULL),(159,73,57,6,NULL,NULL,1,NULL,0,0,NULL),(160,129,73,2,NULL,NULL,1,NULL,0,0,NULL),(161,21,181,1,NULL,NULL,1,NULL,0,0,NULL),(162,16,181,1,NULL,NULL,1,NULL,0,0,NULL),(163,21,42,1,NULL,NULL,1,NULL,0,0,NULL),(164,16,42,1,NULL,NULL,1,NULL,0,0,NULL),(165,16,21,3,NULL,NULL,1,NULL,0,0,NULL),(166,42,194,7,NULL,NULL,1,NULL,0,0,NULL),(167,21,194,7,NULL,NULL,1,NULL,0,0,NULL),(168,16,194,7,NULL,NULL,1,NULL,0,0,NULL),(169,181,194,6,NULL,NULL,0,NULL,0,0,NULL),(170,42,181,2,NULL,NULL,0,NULL,0,0,NULL),(171,126,65,1,NULL,NULL,1,NULL,0,0,NULL),(172,77,65,1,NULL,NULL,1,NULL,0,0,NULL),(173,126,115,1,NULL,NULL,1,NULL,0,0,NULL),(174,77,115,1,NULL,NULL,1,NULL,0,0,NULL),(175,77,126,3,NULL,NULL,1,NULL,0,0,NULL),(176,115,68,7,NULL,NULL,1,NULL,0,0,NULL),(177,126,68,7,NULL,NULL,1,NULL,0,0,NULL),(178,77,68,7,NULL,NULL,1,NULL,0,0,NULL),(179,65,68,6,NULL,NULL,1,NULL,0,0,NULL),(180,115,65,2,NULL,NULL,1,NULL,0,0,NULL),(181,116,124,1,NULL,NULL,1,NULL,0,0,NULL),(182,46,124,1,NULL,NULL,1,NULL,0,0,NULL),(183,116,161,1,NULL,NULL,1,NULL,0,0,NULL),(184,46,161,1,NULL,NULL,1,NULL,0,0,NULL),(185,46,116,3,NULL,NULL,1,NULL,0,0,NULL),(186,161,51,7,NULL,NULL,1,NULL,0,0,NULL),(187,116,51,7,NULL,NULL,1,NULL,0,0,NULL),(188,46,51,7,NULL,NULL,1,NULL,0,0,NULL),(189,124,51,6,NULL,NULL,1,NULL,0,0,NULL),(190,161,124,2,NULL,NULL,1,NULL,0,0,NULL),(191,138,142,1,NULL,NULL,1,NULL,0,0,NULL),(192,185,142,1,NULL,NULL,1,NULL,0,0,NULL),(193,138,75,1,NULL,NULL,1,NULL,0,0,NULL),(194,185,75,1,NULL,NULL,1,NULL,0,0,NULL),(195,185,138,3,NULL,NULL,1,NULL,0,0,NULL),(196,75,169,7,NULL,NULL,1,NULL,0,0,NULL),(197,138,169,7,NULL,NULL,1,NULL,0,0,NULL),(198,185,169,7,NULL,NULL,1,NULL,0,0,NULL),(199,142,169,6,NULL,NULL,1,NULL,0,0,NULL),(200,75,142,2,NULL,NULL,1,NULL,0,0,NULL),(201,188,37,4,NULL,NULL,1,NULL,0,0,NULL),(202,72,38,4,NULL,NULL,1,NULL,0,0,NULL),(203,149,39,4,NULL,NULL,1,NULL,0,0,NULL),(204,166,52,4,NULL,NULL,1,NULL,0,0,NULL),(205,94,59,4,NULL,NULL,1,NULL,0,0,NULL),(206,178,84,4,NULL,NULL,1,NULL,0,0,NULL),(207,118,96,4,NULL,NULL,1,NULL,0,0,NULL),(208,66,103,4,NULL,NULL,1,NULL,0,0,NULL),(209,148,113,4,NULL,NULL,1,NULL,0,0,NULL),(210,7,120,4,NULL,NULL,1,NULL,0,0,NULL),(211,114,127,4,NULL,NULL,1,NULL,0,0,NULL),(212,176,135,4,NULL,NULL,1,NULL,0,0,NULL),(213,20,139,4,NULL,NULL,1,NULL,0,0,NULL),(214,190,152,4,NULL,NULL,1,NULL,0,0,NULL),(215,78,200,4,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,51,74,1,NULL,NULL,1,NULL,0,0,NULL),(2,61,74,1,NULL,NULL,1,NULL,0,0,NULL),(3,51,29,1,NULL,NULL,1,NULL,0,0,NULL),(4,61,29,1,NULL,NULL,1,NULL,0,0,NULL),(5,61,51,3,NULL,NULL,1,NULL,0,0,NULL),(6,29,14,7,NULL,NULL,1,NULL,0,0,NULL),(7,51,14,7,NULL,NULL,1,NULL,0,0,NULL),(8,61,14,7,NULL,NULL,1,NULL,0,0,NULL),(9,74,14,6,NULL,NULL,1,NULL,0,0,NULL),(10,29,74,2,NULL,NULL,1,NULL,0,0,NULL),(11,190,100,1,NULL,NULL,1,NULL,0,0,NULL),(12,48,100,1,NULL,NULL,1,NULL,0,0,NULL),(13,190,151,1,NULL,NULL,1,NULL,0,0,NULL),(14,48,151,1,NULL,NULL,1,NULL,0,0,NULL),(15,48,190,3,NULL,NULL,1,NULL,0,0,NULL),(16,151,129,7,NULL,NULL,1,NULL,0,0,NULL),(17,190,129,7,NULL,NULL,1,NULL,0,0,NULL),(18,48,129,7,NULL,NULL,1,NULL,0,0,NULL),(19,100,129,6,NULL,NULL,0,NULL,0,0,NULL),(20,151,100,2,NULL,NULL,0,NULL,0,0,NULL),(21,33,72,1,NULL,NULL,1,NULL,0,0,NULL),(22,96,72,1,NULL,NULL,1,NULL,0,0,NULL),(23,33,128,1,NULL,NULL,1,NULL,0,0,NULL),(24,96,128,1,NULL,NULL,1,NULL,0,0,NULL),(25,96,33,3,NULL,NULL,1,NULL,0,0,NULL),(26,128,152,7,NULL,NULL,1,NULL,0,0,NULL),(27,33,152,7,NULL,NULL,1,NULL,0,0,NULL),(28,96,152,7,NULL,NULL,1,NULL,0,0,NULL),(29,72,152,6,NULL,NULL,0,NULL,0,0,NULL),(30,128,72,2,NULL,NULL,0,NULL,0,0,NULL),(31,59,83,1,NULL,NULL,1,NULL,0,0,NULL),(32,121,83,1,NULL,NULL,1,NULL,0,0,NULL),(33,59,131,1,NULL,NULL,1,NULL,0,0,NULL),(34,121,131,1,NULL,NULL,1,NULL,0,0,NULL),(35,121,59,3,NULL,NULL,1,NULL,0,0,NULL),(36,131,19,7,NULL,NULL,1,NULL,0,0,NULL),(37,59,19,7,NULL,NULL,1,NULL,0,0,NULL),(38,121,19,7,NULL,NULL,1,NULL,0,0,NULL),(39,83,19,6,NULL,NULL,0,NULL,0,0,NULL),(40,131,83,2,NULL,NULL,0,NULL,0,0,NULL),(41,68,62,1,NULL,NULL,1,NULL,0,0,NULL),(42,60,62,1,NULL,NULL,1,NULL,0,0,NULL),(43,68,52,1,NULL,NULL,1,NULL,0,0,NULL),(44,60,52,1,NULL,NULL,1,NULL,0,0,NULL),(45,60,68,3,NULL,NULL,1,NULL,0,0,NULL),(46,52,107,7,NULL,NULL,1,NULL,0,0,NULL),(47,68,107,7,NULL,NULL,1,NULL,0,0,NULL),(48,60,107,7,NULL,NULL,1,NULL,0,0,NULL),(49,62,107,6,NULL,NULL,0,NULL,0,0,NULL),(50,52,62,2,NULL,NULL,0,NULL,0,0,NULL),(51,130,127,1,NULL,NULL,1,NULL,0,0,NULL),(52,81,127,1,NULL,NULL,1,NULL,0,0,NULL),(53,130,77,1,NULL,NULL,1,NULL,0,0,NULL),(54,81,77,1,NULL,NULL,1,NULL,0,0,NULL),(55,81,130,3,NULL,NULL,1,NULL,0,0,NULL),(56,77,43,7,NULL,NULL,1,NULL,0,0,NULL),(57,130,43,7,NULL,NULL,1,NULL,0,0,NULL),(58,81,43,7,NULL,NULL,1,NULL,0,0,NULL),(59,127,43,6,NULL,NULL,0,NULL,0,0,NULL),(60,77,127,2,NULL,NULL,0,NULL,0,0,NULL),(61,172,115,1,NULL,NULL,1,NULL,0,0,NULL),(62,15,115,1,NULL,NULL,1,NULL,0,0,NULL),(63,172,139,1,NULL,NULL,1,NULL,0,0,NULL),(64,15,139,1,NULL,NULL,1,NULL,0,0,NULL),(65,15,172,3,NULL,NULL,1,NULL,0,0,NULL),(66,139,93,7,NULL,NULL,1,NULL,0,0,NULL),(67,172,93,7,NULL,NULL,1,NULL,0,0,NULL),(68,15,93,7,NULL,NULL,1,NULL,0,0,NULL),(69,115,93,6,NULL,NULL,1,NULL,0,0,NULL),(70,139,115,2,NULL,NULL,1,NULL,0,0,NULL),(71,137,114,1,NULL,NULL,1,NULL,0,0,NULL),(72,120,114,1,NULL,NULL,1,NULL,0,0,NULL),(73,137,147,1,NULL,NULL,1,NULL,0,0,NULL),(74,120,147,1,NULL,NULL,1,NULL,0,0,NULL),(75,120,137,3,NULL,NULL,1,NULL,0,0,NULL),(76,147,186,7,NULL,NULL,1,NULL,0,0,NULL),(77,137,186,7,NULL,NULL,1,NULL,0,0,NULL),(78,120,186,7,NULL,NULL,1,NULL,0,0,NULL),(79,114,186,6,NULL,NULL,1,NULL,0,0,NULL),(80,147,114,2,NULL,NULL,1,NULL,0,0,NULL),(81,6,64,1,NULL,NULL,1,NULL,0,0,NULL),(82,31,64,1,NULL,NULL,1,NULL,0,0,NULL),(83,6,170,1,NULL,NULL,1,NULL,0,0,NULL),(84,31,170,1,NULL,NULL,1,NULL,0,0,NULL),(85,31,6,3,NULL,NULL,1,NULL,0,0,NULL),(86,170,94,7,NULL,NULL,1,NULL,0,0,NULL),(87,6,94,7,NULL,NULL,1,NULL,0,0,NULL),(88,31,94,7,NULL,NULL,1,NULL,0,0,NULL),(89,64,94,6,NULL,NULL,1,NULL,0,0,NULL),(90,170,64,2,NULL,NULL,1,NULL,0,0,NULL),(91,23,189,1,NULL,NULL,1,NULL,0,0,NULL),(92,22,189,1,NULL,NULL,1,NULL,0,0,NULL),(93,23,122,1,NULL,NULL,1,NULL,0,0,NULL),(94,22,122,1,NULL,NULL,1,NULL,0,0,NULL),(95,22,23,3,NULL,NULL,1,NULL,0,0,NULL),(96,122,17,7,NULL,NULL,1,NULL,0,0,NULL),(97,23,17,7,NULL,NULL,1,NULL,0,0,NULL),(98,22,17,7,NULL,NULL,1,NULL,0,0,NULL),(99,189,17,6,NULL,NULL,1,NULL,0,0,NULL),(100,122,189,2,NULL,NULL,1,NULL,0,0,NULL),(101,4,108,1,NULL,NULL,1,NULL,0,0,NULL),(102,84,108,1,NULL,NULL,1,NULL,0,0,NULL),(103,4,197,1,NULL,NULL,1,NULL,0,0,NULL),(104,84,197,1,NULL,NULL,1,NULL,0,0,NULL),(105,84,4,3,NULL,NULL,1,NULL,0,0,NULL),(106,197,39,7,NULL,NULL,1,NULL,0,0,NULL),(107,4,39,7,NULL,NULL,1,NULL,0,0,NULL),(108,84,39,7,NULL,NULL,1,NULL,0,0,NULL),(109,108,39,6,NULL,NULL,1,NULL,0,0,NULL),(110,197,108,2,NULL,NULL,1,NULL,0,0,NULL),(111,70,143,1,NULL,NULL,1,NULL,0,0,NULL),(112,177,143,1,NULL,NULL,1,NULL,0,0,NULL),(113,70,13,1,NULL,NULL,1,NULL,0,0,NULL),(114,177,13,1,NULL,NULL,1,NULL,0,0,NULL),(115,177,70,3,NULL,NULL,1,NULL,0,0,NULL),(116,13,58,7,NULL,NULL,1,NULL,0,0,NULL),(117,70,58,7,NULL,NULL,1,NULL,0,0,NULL),(118,177,58,7,NULL,NULL,1,NULL,0,0,NULL),(119,143,58,6,NULL,NULL,1,NULL,0,0,NULL),(120,13,143,2,NULL,NULL,1,NULL,0,0,NULL),(121,161,141,1,NULL,NULL,1,NULL,0,0,NULL),(122,169,141,1,NULL,NULL,1,NULL,0,0,NULL),(123,161,180,1,NULL,NULL,1,NULL,0,0,NULL),(124,169,180,1,NULL,NULL,1,NULL,0,0,NULL),(125,169,161,3,NULL,NULL,1,NULL,0,0,NULL),(126,180,54,7,NULL,NULL,1,NULL,0,0,NULL),(127,161,54,7,NULL,NULL,1,NULL,0,0,NULL),(128,169,54,7,NULL,NULL,1,NULL,0,0,NULL),(129,141,54,6,NULL,NULL,1,NULL,0,0,NULL),(130,180,141,2,NULL,NULL,1,NULL,0,0,NULL),(131,173,116,1,NULL,NULL,1,NULL,0,0,NULL),(132,104,116,1,NULL,NULL,1,NULL,0,0,NULL),(133,173,40,1,NULL,NULL,1,NULL,0,0,NULL),(134,104,40,1,NULL,NULL,1,NULL,0,0,NULL),(135,104,173,3,NULL,NULL,1,NULL,0,0,NULL),(136,40,7,7,NULL,NULL,1,NULL,0,0,NULL),(137,173,7,7,NULL,NULL,1,NULL,0,0,NULL),(138,104,7,7,NULL,NULL,1,NULL,0,0,NULL),(139,116,7,6,NULL,NULL,1,NULL,0,0,NULL),(140,40,116,2,NULL,NULL,1,NULL,0,0,NULL),(141,194,142,1,NULL,NULL,1,NULL,0,0,NULL),(142,174,142,1,NULL,NULL,1,NULL,0,0,NULL),(143,194,25,1,NULL,NULL,1,NULL,0,0,NULL),(144,174,25,1,NULL,NULL,1,NULL,0,0,NULL),(145,174,194,3,NULL,NULL,1,NULL,0,0,NULL),(146,25,183,7,NULL,NULL,1,NULL,0,0,NULL),(147,194,183,7,NULL,NULL,1,NULL,0,0,NULL),(148,174,183,7,NULL,NULL,1,NULL,0,0,NULL),(149,142,183,6,NULL,NULL,0,NULL,0,0,NULL),(150,25,142,2,NULL,NULL,0,NULL,0,0,NULL),(151,164,90,1,NULL,NULL,1,NULL,0,0,NULL),(152,44,90,1,NULL,NULL,1,NULL,0,0,NULL),(153,164,184,1,NULL,NULL,1,NULL,0,0,NULL),(154,44,184,1,NULL,NULL,1,NULL,0,0,NULL),(155,44,164,3,NULL,NULL,1,NULL,0,0,NULL),(156,184,175,7,NULL,NULL,1,NULL,0,0,NULL),(157,164,175,7,NULL,NULL,1,NULL,0,0,NULL),(158,44,175,7,NULL,NULL,1,NULL,0,0,NULL),(159,90,175,6,NULL,NULL,1,NULL,0,0,NULL),(160,184,90,2,NULL,NULL,1,NULL,0,0,NULL),(161,200,119,1,NULL,NULL,1,NULL,0,0,NULL),(162,124,119,1,NULL,NULL,1,NULL,0,0,NULL),(163,200,156,1,NULL,NULL,1,NULL,0,0,NULL),(164,124,156,1,NULL,NULL,1,NULL,0,0,NULL),(165,124,200,3,NULL,NULL,1,NULL,0,0,NULL),(166,156,21,7,NULL,NULL,1,NULL,0,0,NULL),(167,200,21,7,NULL,NULL,1,NULL,0,0,NULL),(168,124,21,7,NULL,NULL,1,NULL,0,0,NULL),(169,119,21,6,NULL,NULL,1,NULL,0,0,NULL),(170,156,119,2,NULL,NULL,1,NULL,0,0,NULL),(171,24,5,1,NULL,NULL,1,NULL,0,0,NULL),(172,35,5,1,NULL,NULL,1,NULL,0,0,NULL),(173,24,199,1,NULL,NULL,1,NULL,0,0,NULL),(174,35,199,1,NULL,NULL,1,NULL,0,0,NULL),(175,35,24,3,NULL,NULL,1,NULL,0,0,NULL),(176,199,85,7,NULL,NULL,1,NULL,0,0,NULL),(177,24,85,7,NULL,NULL,1,NULL,0,0,NULL),(178,35,85,7,NULL,NULL,1,NULL,0,0,NULL),(179,5,85,6,NULL,NULL,1,NULL,0,0,NULL),(180,199,5,2,NULL,NULL,1,NULL,0,0,NULL),(181,178,71,1,NULL,NULL,1,NULL,0,0,NULL),(182,16,71,1,NULL,NULL,1,NULL,0,0,NULL),(183,178,145,1,NULL,NULL,1,NULL,0,0,NULL),(184,16,145,1,NULL,NULL,1,NULL,0,0,NULL),(185,16,178,3,NULL,NULL,1,NULL,0,0,NULL),(186,145,123,7,NULL,NULL,1,NULL,0,0,NULL),(187,178,123,7,NULL,NULL,1,NULL,0,0,NULL),(188,16,123,7,NULL,NULL,1,NULL,0,0,NULL),(189,71,123,6,NULL,NULL,0,NULL,0,0,NULL),(190,145,71,2,NULL,NULL,0,NULL,0,0,NULL),(191,155,109,1,NULL,NULL,1,NULL,0,0,NULL),(192,11,109,1,NULL,NULL,1,NULL,0,0,NULL),(193,155,97,1,NULL,NULL,1,NULL,0,0,NULL),(194,11,97,1,NULL,NULL,1,NULL,0,0,NULL),(195,11,155,3,NULL,NULL,1,NULL,0,0,NULL),(196,97,146,7,NULL,NULL,1,NULL,0,0,NULL),(197,155,146,7,NULL,NULL,1,NULL,0,0,NULL),(198,11,146,7,NULL,NULL,1,NULL,0,0,NULL),(199,109,146,6,NULL,NULL,1,NULL,0,0,NULL),(200,97,109,2,NULL,NULL,1,NULL,0,0,NULL),(201,81,12,4,NULL,NULL,1,NULL,0,0,NULL),(202,165,18,4,NULL,NULL,1,NULL,0,0,NULL),(203,25,26,4,NULL,NULL,1,NULL,0,0,NULL),(204,86,28,4,NULL,NULL,1,NULL,0,0,NULL),(205,79,30,4,NULL,NULL,1,NULL,0,0,NULL),(206,201,36,4,NULL,NULL,1,NULL,0,0,NULL),(207,16,42,4,NULL,NULL,1,NULL,0,0,NULL),(208,63,45,4,NULL,NULL,1,NULL,0,0,NULL),(209,122,47,4,NULL,NULL,1,NULL,0,0,NULL),(210,13,67,4,NULL,NULL,1,NULL,0,0,NULL),(211,142,73,4,NULL,NULL,1,NULL,0,0,NULL),(212,105,91,4,NULL,NULL,1,NULL,0,0,NULL),(213,128,99,4,NULL,NULL,1,NULL,0,0,NULL),(214,82,101,4,NULL,NULL,1,NULL,0,0,NULL),(215,180,118,4,NULL,NULL,1,NULL,0,0,NULL),(216,53,133,4,NULL,NULL,1,NULL,0,0,NULL),(217,197,140,4,NULL,NULL,1,NULL,0,0,NULL),(218,80,188,4,NULL,NULL,1,NULL,0,0,NULL); /*!40000 ALTER TABLE `civicrm_relationship` ENABLE KEYS */; UNLOCK TABLES; @@ -1262,7 +1262,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_report_instance` WRITE; /*!40000 ALTER TABLE `civicrm_report_instance` DISABLE KEYS */; -INSERT INTO `civicrm_report_instance` (`id`, `domain_id`, `title`, `report_id`, `name`, `args`, `description`, `permission`, `grouprole`, `form_values`, `is_active`, `email_subject`, `email_to`, `email_cc`, `header`, `footer`, `navigation_id`, `drilldown_id`, `is_reserved`) VALUES (1,1,'Constituent Summary','contact/summary',NULL,NULL,'Provides a list of address and telephone information for constituent records in your system.','administer CiviCRM',NULL,'a:31:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:14:\"street_address\";s:1:\"1\";s:4:\"city\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:92:\"Provides a list of address and telephone information for constituent records in your system.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:18:\"administer CiviCRM\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(2,1,'Constituent Detail','contact/detail',NULL,NULL,'Provides contact-related information on contributions, memberships, events and activities.','administer CiviCRM',NULL,'a:25:{s:6:\"fields\";a:30:{s:9:\"sort_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";s:15:\"contribution_id\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:20:\"contribution_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:13:\"membership_id\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:20:\"membership_status_id\";s:1:\"1\";s:14:\"participant_id\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:21:\"participant_status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";s:25:\"participant_register_date\";s:1:\"1\";s:9:\"fee_level\";s:1:\"1\";s:10:\"fee_amount\";s:1:\"1\";s:15:\"relationship_id\";s:1:\"1\";s:20:\"relationship_type_id\";s:1:\"1\";s:12:\"contact_id_b\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:16:\"activity_type_id\";s:1:\"1\";s:7:\"subject\";s:1:\"1\";s:17:\"source_contact_id\";s:1:\"1\";s:18:\"activity_date_time\";s:1:\"1\";s:18:\"activity_status_id\";s:1:\"1\";s:17:\"target_contact_id\";s:1:\"1\";s:19:\"assignee_contact_id\";s:1:\"1\";}s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:90:\"Provides contact-related information on contributions, memberships, events and activities.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:18:\"administer CiviCRM\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(3,1,'Activities','activity',NULL,NULL,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)','administer CiviCRM',NULL,'a:26:{s:6:\"fields\";a:6:{s:16:\"contact_assignee\";s:1:\"1\";s:14:\"contact_target\";s:1:\"1\";s:16:\"activity_type_id\";s:1:\"1\";s:16:\"activity_subject\";s:1:\"1\";s:18:\"activity_date_time\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:17:\"contact_source_op\";s:3:\"has\";s:20:\"contact_source_value\";s:0:\"\";s:19:\"contact_assignee_op\";s:3:\"has\";s:22:\"contact_assignee_value\";s:0:\"\";s:17:\"contact_target_op\";s:3:\"has\";s:20:\"contact_target_value\";s:0:\"\";s:15:\"current_user_op\";s:2:\"eq\";s:18:\"current_user_value\";s:1:\"0\";s:27:\"activity_date_time_relative\";s:10:\"this.month\";s:23:\"activity_date_time_from\";s:0:\"\";s:21:\"activity_date_time_to\";s:0:\"\";s:19:\"activity_subject_op\";s:3:\"has\";s:22:\"activity_subject_value\";s:0:\"\";s:19:\"activity_type_id_op\";s:2:\"in\";s:22:\"activity_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:11:\"description\";s:126:\"Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:18:\"administer CiviCRM\";s:6:\"groups\";s:0:\"\";s:9:\"group_bys\";N;s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(4,1,'Current Employers','contact/currentEmployer',NULL,NULL,'Provides detail list of employer employee relationships along with employment details.','administer CiviCRM',NULL,'a:33:{s:6:\"fields\";a:5:{s:17:\"organization_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:9:\"job_title\";s:1:\"1\";s:10:\"start_date\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:20:\"organization_name_op\";s:3:\"has\";s:23:\"organization_name_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:19:\"start_date_relative\";s:1:\"0\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:98:\"Provides detail list of employer employee relationships along with employment details Ex Join Date\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:18:\"administer CiviCRM\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(5,1,'Relationships','contact/relationship',NULL,NULL,'Gives relationship details between two contacts','administer CiviCRM',NULL,'a:28:{s:6:\"fields\";a:4:{s:11:\"sort_name_a\";s:1:\"1\";s:11:\"sort_name_b\";s:1:\"1\";s:9:\"label_a_b\";s:1:\"1\";s:9:\"label_b_a\";s:1:\"1\";}s:14:\"sort_name_a_op\";s:3:\"has\";s:17:\"sort_name_a_value\";s:0:\"\";s:14:\"sort_name_b_op\";s:3:\"has\";s:17:\"sort_name_b_value\";s:0:\"\";s:17:\"contact_type_a_op\";s:2:\"in\";s:20:\"contact_type_a_value\";a:0:{}s:17:\"contact_type_b_op\";s:2:\"in\";s:20:\"contact_type_b_value\";a:0:{}s:12:\"is_active_op\";s:2:\"eq\";s:15:\"is_active_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:19:\"Relationship Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:18:\"administer CiviCRM\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(6,1,'Contribution Summary','contribute/summary',NULL,NULL,'Groups and totals contributions by criteria including contact, time period, contribution type, contributor location, etc.','access CiviContribute',NULL,'a:42:{s:6:\"fields\";a:1:{s:12:\"total_amount\";s:1:\"1\";}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:23:\"contribution_type_id_op\";s:2:\"in\";s:26:\"contribution_type_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:13:\"total_sum_min\";s:0:\"\";s:13:\"total_sum_max\";s:0:\"\";s:12:\"total_sum_op\";s:3:\"lte\";s:15:\"total_sum_value\";s:0:\"\";s:15:\"total_count_min\";s:0:\"\";s:15:\"total_count_max\";s:0:\"\";s:14:\"total_count_op\";s:3:\"lte\";s:17:\"total_count_value\";s:0:\"\";s:13:\"total_avg_min\";s:0:\"\";s:13:\"total_avg_max\";s:0:\"\";s:12:\"total_avg_op\";s:3:\"lte\";s:15:\"total_avg_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"group_bys\";a:1:{s:12:\"receive_date\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:12:\"receive_date\";s:5:\"MONTH\";}s:11:\"description\";s:80:\"Shows contribution statistics by month / week / year .. country / state .. type.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(7,1,'Contribution Details','contribute/detail',NULL,NULL,'Lists specific contributions by criteria including contact, time period, contribution type, contributor location, etc. Contribution summary report points to this report for contribution details.','access CiviContribute',NULL,'a:34:{s:6:\"fields\";a:7:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";s:20:\"contribution_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:23:\"contribution_type_id_op\";s:2:\"in\";s:26:\"contribution_type_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:126:\"Lists detailed contribution(s) for one / all contacts. Contribution summary report points to this report for specific details.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(8,1,'Repeat Contributions','contribute/repeat',NULL,NULL,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.','access CiviContribute',NULL,'a:29:{s:6:\"fields\";a:3:{s:9:\"sort_name\";s:1:\"1\";s:13:\"total_amount1\";s:1:\"1\";s:13:\"total_amount2\";s:1:\"1\";}s:22:\"receive_date1_relative\";s:13:\"previous.year\";s:18:\"receive_date1_from\";s:0:\"\";s:16:\"receive_date1_to\";s:0:\"\";s:22:\"receive_date2_relative\";s:9:\"this.year\";s:18:\"receive_date2_from\";s:0:\"\";s:16:\"receive_date2_to\";s:0:\"\";s:17:\"total_amount1_min\";s:0:\"\";s:17:\"total_amount1_max\";s:0:\"\";s:16:\"total_amount1_op\";s:3:\"lte\";s:19:\"total_amount1_value\";s:0:\"\";s:17:\"total_amount2_min\";s:0:\"\";s:17:\"total_amount2_max\";s:0:\"\";s:16:\"total_amount2_op\";s:3:\"lte\";s:19:\"total_amount2_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"group_bys\";a:1:{s:2:\"id\";s:1:\"1\";}s:11:\"description\";s:140:\"Given two date ranges, shows contacts (and their contributions) who contributed in both the date ranges with percentage increase / decrease.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(9,1,'SYBUNT (some year but not this year)','contribute/sybunt',NULL,NULL,'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.','access CiviContribute',NULL,'a:18:{s:6:\"fields\";a:3:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"yid_op\";s:2:\"eq\";s:9:\"yid_value\";s:4:\"2011\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:179:\"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.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(10,1,'LYBUNT (last year but not this year)','contribute/lybunt',NULL,NULL,'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.','access CiviContribute',NULL,'a:19:{s:6:\"fields\";a:3:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"yid_op\";s:2:\"eq\";s:9:\"yid_value\";s:4:\"2011\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:157:\"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.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(11,1,'Contributions by Organization','contribute/organizationSummary',NULL,NULL,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.','access CiviContribute',NULL,'a:20:{s:6:\"fields\";a:5:{s:17:\"organization_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:20:\"organization_name_op\";s:3:\"has\";s:23:\"organization_name_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:5:\"4_b_a\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:11:\"description\";s:193:\"Displays a detailed contribution report for Organization relationships with contributors, as to if contribution done was from an employee of some organization or from that Organization itself.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(12,1,'Contributions by Household','contribute/householdSummary',NULL,NULL,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.','access CiviContribute',NULL,'a:21:{s:6:\"fields\";a:5:{s:14:\"household_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:17:\"household_name_op\";s:3:\"has\";s:20:\"household_name_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:5:\"6_b_a\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:11:\"description\";s:213:\"Provides a detailed report for Contributions made by contributors(Or Household itself) who are having a relationship with household (For ex a Contributor is Head of Household for some household or is a member of.)\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(13,1,'Top Donors','contribute/topDonor',NULL,NULL,'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).','access CiviContribute',NULL,'a:20:{s:6:\"fields\";a:2:{s:12:\"display_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:21:\"receive_date_relative\";s:9:\"this.year\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:15:\"total_range_min\";s:0:\"\";s:15:\"total_range_max\";s:0:\"\";s:14:\"total_range_op\";s:2:\"eq\";s:17:\"total_range_value\";s:0:\"\";s:23:\"contribution_type_id_op\";s:2:\"in\";s:26:\"contribution_type_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:11:\"description\";s:148:\"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).\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(14,1,'Soft Credits','contribute/softcredit',NULL,NULL,'Shows contributions made by contacts that have been soft-credited to other contacts.','access CiviContribute',NULL,'a:23:{s:6:\"fields\";a:5:{s:21:\"display_name_creditor\";s:1:\"1\";s:24:\"display_name_constituent\";s:1:\"1\";s:14:\"email_creditor\";s:1:\"1\";s:14:\"phone_creditor\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:20:\"Soft Credit details.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(15,1,'Personal Campaign Page Summary','contribute/pcp',NULL,NULL,'Summarizes amount raised and number of contributors for each Personal Campaign Page.','access CiviContribute',NULL,'a:22:{s:6:\"fields\";a:8:{s:9:\"sort_name\";s:1:\"1\";s:10:\"page_title\";s:1:\"1\";s:5:\"title\";s:1:\"1\";s:11:\"goal_amount\";s:1:\"1\";s:8:\"amount_1\";s:1:\"1\";s:8:\"amount_2\";s:1:\"1\";s:7:\"soft_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"page_title_op\";s:3:\"has\";s:16:\"page_title_value\";s:0:\"\";s:8:\"title_op\";s:3:\"has\";s:11:\"title_value\";s:0:\"\";s:12:\"amount_2_min\";s:0:\"\";s:12:\"amount_2_max\";s:0:\"\";s:11:\"amount_2_op\";s:3:\"lte\";s:14:\"amount_2_value\";s:0:\"\";s:11:\"description\";s:35:\"Shows Personal Campaign Page Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(16,1,'Pledge Summary','pledge/detail',NULL,NULL,'Summary of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.','access CiviPledge',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:27:\"pledge_create_date_relative\";s:1:\"0\";s:23:\"pledge_create_date_from\";s:0:\"\";s:21:\"pledge_create_date_to\";s:0:\"\";s:17:\"pledge_amount_min\";s:0:\"\";s:17:\"pledge_amount_max\";s:0:\"\";s:16:\"pledge_amount_op\";s:3:\"lte\";s:19:\"pledge_amount_value\";s:0:\"\";s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:13:\"Pledge Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviPledge\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(17,1,'Pledged But not Paid','pledge/pbnp',NULL,NULL,'Pledged but not Paid Report','access CiviPledge',NULL,'a:17:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"pledge_create_date\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:14:\"scheduled_date\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:27:\"pledge_create_date_relative\";s:1:\"0\";s:23:\"pledge_create_date_from\";s:0:\"\";s:21:\"pledge_create_date_to\";s:0:\"\";s:23:\"contribution_type_id_op\";s:2:\"in\";s:26:\"contribution_type_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:27:\"Pledged but not Paid Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviPledge\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(18,1,'Bookkeeping Transactions','contribute/bookkeeping',NULL,NULL,'Provides transaction details for all contributions and payments, including Transaction #, Invoice ID, Payment Instrument and Check #.','access CiviContribute',NULL,'a:25:{s:6:\"fields\";a:10:{s:9:\"sort_name\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:20:\"contribution_type_id\";s:1:\"1\";s:7:\"trxn_id\";s:1:\"1\";s:10:\"invoice_id\";s:1:\"1\";s:12:\"check_number\";s:1:\"1\";s:21:\"payment_instrument_id\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:2:\"id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:23:\"contribution_type_id_op\";s:2:\"in\";s:26:\"contribution_type_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:11:\"description\";s:37:\"Shows Bookkeeping Transactions Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(19,1,'Membership Summary','member/summary',NULL,NULL,'Provides a summary of memberships by type and join date.','access CiviMember',NULL,'a:18:{s:6:\"fields\";a:2:{s:18:\"membership_type_id\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:18:\"join_date_relative\";s:1:\"0\";s:14:\"join_date_from\";s:0:\"\";s:12:\"join_date_to\";s:0:\"\";s:21:\"membership_type_id_op\";s:2:\"in\";s:24:\"membership_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:9:\"group_bys\";a:2:{s:9:\"join_date\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:9:\"join_date\";s:5:\"MONTH\";}s:11:\"description\";s:56:\"Provides a summary of memberships by type and join date.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(20,1,'Membership Details','member/detail',NULL,NULL,'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.','access CiviMember',NULL,'a:28:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:4:\"name\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:18:\"join_date_relative\";s:1:\"0\";s:14:\"join_date_from\";s:0:\"\";s:12:\"join_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:119:\"Provides a list of members along with their membership status and membership details (Join Date, Start Date, End Date).\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(21,1,'Contribution and Membership Details','member/contributionDetail',NULL,NULL,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.','access CiviMember',NULL,'a:67:{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:20:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:9:\"join_date\";s:1:\"1\";s:22:\"membership_status_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:23:\"financial_type_id_op\";s:2:\"in\";s:26:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:18:\"join_date_relative\";s:1:\"0\";s:14:\"join_date_from\";s:0:\"\";s:12:\"join_date_to\";s:0:\"\";s:30:\"membership_start_date_relative\";s:1:\"0\";s:26:\"membership_start_date_from\";s:0:\"\";s:24:\"membership_start_date_to\";s:0:\"\";s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:35:\"Contribution and Membership Details\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:1:\"0\";s:9:\"domain_id\";i:1;}{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:20:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:9:\"join_date\";s:1:\"1\";s:22:\"membership_status_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:23:\"financial_type_id_op\";s:2:\"in\";s:26:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:18:\"join_date_relative\";s:1:\"0\";s:14:\"join_date_from\";s:0:\"\";s:12:\"join_date_to\";s:0:\"\";s:30:\"membership_start_date_relative\";s:1:\"0\";s:26:\"membership_start_date_from\";s:0:\"\";s:24:\"membership_start_date_to\";s:0:\"\";s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:35:\"Contribution and Membership Details\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(22,1,'Lapsed Memberships','member/lapse',NULL,NULL,'Provides a list of memberships that have lapsed or will lapse by the date you specify.','access CiviMember',NULL,'a:16:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:4:\"name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:85:\"Provides a list of memberships that lapsed or will lapse before the date you specify.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(23,1,'Event Participants List','event/participantListing',NULL,NULL,'Provides lists of participants for an event.','access CiviEvent',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:8:\"email_op\";s:3:\"has\";s:11:\"email_value\";s:0:\"\";s:11:\"event_id_op\";s:2:\"in\";s:14:\"event_id_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"rid_op\";s:2:\"in\";s:9:\"rid_value\";a:0:{}s:34:\"participant_register_date_relative\";s:1:\"0\";s:30:\"participant_register_date_from\";s:0:\"\";s:28:\"participant_register_date_to\";s:0:\"\";s:6:\"eid_op\";s:2:\"in\";s:9:\"eid_value\";a:0:{}s:11:\"custom_4_op\";s:2:\"in\";s:14:\"custom_4_value\";a:0:{}s:16:\"blank_column_end\";s:0:\"\";s:11:\"description\";s:44:\"Provides lists of participants for an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"groups\";s:0:\"\";s:7:\"options\";N;s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(24,1,'Event Income Summary','event/summary',NULL,NULL,'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.','access CiviEvent',NULL,'a:18:{s:6:\"fields\";a:2:{s:5:\"title\";s:1:\"1\";s:13:\"event_type_id\";s:1:\"1\";}s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";a:0:{}s:16:\"event_type_id_op\";s:2:\"in\";s:19:\"event_type_id_value\";a:0:{}s:25:\"event_start_date_relative\";s:1:\"0\";s:21:\"event_start_date_from\";s:0:\"\";s:19:\"event_start_date_to\";s:0:\"\";s:23:\"event_end_date_relative\";s:1:\"0\";s:19:\"event_end_date_from\";s:0:\"\";s:17:\"event_end_date_to\";s:0:\"\";s:11:\"description\";s:181:\"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.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(25,1,'Event Income Details','event/income',NULL,NULL,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.','access CiviEvent',NULL,'a:7:{s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";N;s:11:\"description\";s:133:\"Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(26,1,'Attendee List','event/participantListing',NULL,NULL,'Provides lists of event attendees.','access CiviEvent',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:8:\"email_op\";s:3:\"has\";s:11:\"email_value\";s:0:\"\";s:11:\"event_id_op\";s:2:\"in\";s:14:\"event_id_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"rid_op\";s:2:\"in\";s:9:\"rid_value\";a:0:{}s:34:\"participant_register_date_relative\";s:1:\"0\";s:30:\"participant_register_date_from\";s:0:\"\";s:28:\"participant_register_date_to\";s:0:\"\";s:6:\"eid_op\";s:2:\"in\";s:9:\"eid_value\";a:0:{}s:11:\"custom_4_op\";s:2:\"in\";s:14:\"custom_4_value\";a:0:{}s:16:\"blank_column_end\";s:0:\"\";s:11:\"description\";s:44:\"Provides lists of participants for an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"groups\";s:0:\"\";s:7:\"options\";N;s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(27,1,'Grant Details','grant/detail',NULL,NULL,'Grant Report Detail','access CiviGrant',NULL,'a:40:{s:6:\"fields\";a:2:{s:9:\"sort_name\";s:1:\"1\";s:25:\"application_received_date\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:12:\"gender_id_op\";s:2:\"in\";s:15:\"gender_id_value\";a:0:{}s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"grant_type_op\";s:2:\"in\";s:16:\"grant_type_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:18:\"amount_granted_min\";s:0:\"\";s:18:\"amount_granted_max\";s:0:\"\";s:17:\"amount_granted_op\";s:3:\"lte\";s:20:\"amount_granted_value\";s:0:\"\";s:20:\"amount_requested_min\";s:0:\"\";s:20:\"amount_requested_max\";s:0:\"\";s:19:\"amount_requested_op\";s:3:\"lte\";s:22:\"amount_requested_value\";s:0:\"\";s:34:\"application_received_date_relative\";s:1:\"0\";s:30:\"application_received_date_from\";s:0:\"\";s:28:\"application_received_date_to\";s:0:\"\";s:28:\"money_transfer_date_relative\";s:1:\"0\";s:24:\"money_transfer_date_from\";s:0:\"\";s:22:\"money_transfer_date_to\";s:0:\"\";s:23:\"grant_due_date_relative\";s:1:\"0\";s:19:\"grant_due_date_from\";s:0:\"\";s:17:\"grant_due_date_to\";s:0:\"\";s:11:\"description\";s:19:\"Grant Report Detail\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviGrant\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(28,1,'Grant Statistics','grant/statistics',NULL,NULL,'Grant Report Statistics','access CiviGrant',NULL,'a:42:{s:6:\"fields\";a:2:{s:18:\"summary_statistics\";s:1:\"1\";s:13:\"grant_type_id\";s:1:\"1\";}s:34:\"application_received_date_relative\";s:1:\"0\";s:30:\"application_received_date_from\";s:0:\"\";s:28:\"application_received_date_to\";s:0:\"\";s:22:\"decision_date_relative\";s:1:\"0\";s:18:\"decision_date_from\";s:0:\"\";s:16:\"decision_date_to\";s:0:\"\";s:28:\"money_transfer_date_relative\";s:1:\"0\";s:24:\"money_transfer_date_from\";s:0:\"\";s:22:\"money_transfer_date_to\";s:0:\"\";s:23:\"grant_due_date_relative\";s:1:\"0\";s:19:\"grant_due_date_from\";s:0:\"\";s:17:\"grant_due_date_to\";s:0:\"\";s:13:\"grant_type_op\";s:2:\"in\";s:16:\"grant_type_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:20:\"amount_requested_min\";s:0:\"\";s:20:\"amount_requested_max\";s:0:\"\";s:19:\"amount_requested_op\";s:3:\"lte\";s:22:\"amount_requested_value\";s:0:\"\";s:18:\"amount_granted_min\";s:0:\"\";s:18:\"amount_granted_max\";s:0:\"\";s:17:\"amount_granted_op\";s:3:\"lte\";s:20:\"amount_granted_value\";s:0:\"\";s:24:\"grant_report_received_op\";s:2:\"eq\";s:27:\"grant_report_received_value\";s:0:\"\";s:12:\"gender_id_op\";s:2:\"in\";s:15:\"gender_id_value\";a:0:{}s:15:\"contact_type_op\";s:2:\"in\";s:18:\"contact_type_value\";a:0:{}s:12:\"region_id_op\";s:2:\"in\";s:15:\"region_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:11:\"description\";s:23:\"Grant Report Statistics\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviGrant\";s:9:\"parent_id\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(29,1,'Mail Bounces','Mailing/bounce',NULL,NULL,'Bounce Report for mailings','access CiviMail',NULL,'a:33:{s:6:\"fields\";a:5:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:11:\"bounce_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:19:\"bounce_type_name_op\";s:2:\"eq\";s:22:\"bounce_type_name_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:26:\"Bounce Report for mailings\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(30,1,'Mailing Summary','Mailing/summary',NULL,NULL,'Summary statistics for mailings','access CiviMail',NULL,'a:25:{s:6:\"fields\";a:5:{s:4:\"name\";s:1:\"1\";s:11:\"queue_count\";s:1:\"1\";s:15:\"delivered_count\";s:1:\"1\";s:12:\"bounce_count\";s:1:\"1\";s:10:\"open_count\";s:1:\"1\";}s:15:\"is_completed_op\";s:2:\"eq\";s:18:\"is_completed_value\";s:1:\"1\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:9:\"status_op\";s:3:\"has\";s:12:\"status_value\";s:8:\"Complete\";s:11:\"is_test_min\";s:0:\"\";s:11:\"is_test_max\";s:0:\"\";s:10:\"is_test_op\";s:3:\"lte\";s:13:\"is_test_value\";s:1:\"0\";s:19:\"start_date_relative\";s:9:\"this.year\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:17:\"end_date_relative\";s:9:\"this.year\";s:13:\"end_date_from\";s:0:\"\";s:11:\"end_date_to\";s:0:\"\";s:11:\"description\";s:31:\"Summary statistics for mailings\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(31,1,'Mail Opened','Mailing/opened',NULL,NULL,'Display contacts who opened emails from a mailing','access CiviMail',NULL,'a:31:{s:6:\"fields\";a:5:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:49:\"Display contacts who opened emails from a mailing\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(32,1,'Mail Clickthroughs','Mailing/clicks',NULL,NULL,'Display clicks from each mailing','access CiviMail',NULL,'a:31:{s:6:\"fields\";a:6:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:3:\"url\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:32:\"Display clicks from each mailing\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(33,1,'Mailing Details','mailing/detail',NULL,NULL,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.','access CiviMail',NULL,'a:30:{s:6:\"fields\";a:6:{s:9:\"sort_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:11:\"delivery_id\";s:1:\"1\";s:14:\"unsubscribe_id\";s:1:\"1\";s:9:\"optout_id\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"mailing_id_op\";s:2:\"in\";s:16:\"mailing_id_value\";a:0:{}s:18:\"delivery_status_op\";s:2:\"eq\";s:21:\"delivery_status_value\";s:0:\"\";s:18:\"is_unsubscribed_op\";s:2:\"eq\";s:21:\"is_unsubscribed_value\";s:0:\"\";s:12:\"is_optout_op\";s:2:\"eq\";s:15:\"is_optout_value\";s:0:\"\";s:13:\"is_replied_op\";s:2:\"eq\";s:16:\"is_replied_value\";s:0:\"\";s:15:\"is_forwarded_op\";s:2:\"eq\";s:18:\"is_forwarded_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:9:\"order_bys\";a:1:{i:1;a:2:{s:6:\"column\";s:9:\"sort_name\";s:5:\"order\";s:3:\"ASC\";}}s:11:\"description\";s:21:\"Mailing Detail Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(34,1,'Survey Details','survey/detail',NULL,NULL,'Detailed report for canvassing, phone-banking, walk lists or other surveys.','access CiviReport',NULL,'a:39:{s:6:\"fields\";a:2:{s:9:\"sort_name\";s:1:\"1\";s:6:\"result\";s:1:\"1\";}s:22:\"assignee_contact_id_op\";s:2:\"eq\";s:25:\"assignee_contact_id_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:12:\"survey_id_op\";s:2:\"in\";s:15:\"survey_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"eq\";s:15:\"status_id_value\";s:1:\"1\";s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:75:\"Detailed report for canvassing, phone-banking, walk lists or other surveys.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviReport\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); +INSERT INTO `civicrm_report_instance` (`id`, `domain_id`, `title`, `report_id`, `name`, `args`, `description`, `permission`, `grouprole`, `form_values`, `is_active`, `email_subject`, `email_to`, `email_cc`, `header`, `footer`, `navigation_id`, `drilldown_id`, `is_reserved`) VALUES (1,1,'Constituent Summary','contact/summary',NULL,NULL,'Provides a list of address and telephone information for constituent records in your system.','administer CiviCRM',NULL,'a:31:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:14:\"street_address\";s:1:\"1\";s:4:\"city\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:92:\"Provides a list of address and telephone information for constituent records in your system.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:18:\"administer CiviCRM\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(2,1,'Constituent Detail','contact/detail',NULL,NULL,'Provides contact-related information on contributions, memberships, events and activities.','administer CiviCRM',NULL,'a:25:{s:6:\"fields\";a:30:{s:9:\"sort_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";s:15:\"contribution_id\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:20:\"contribution_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:13:\"membership_id\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:20:\"membership_status_id\";s:1:\"1\";s:14:\"participant_id\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:21:\"participant_status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";s:25:\"participant_register_date\";s:1:\"1\";s:9:\"fee_level\";s:1:\"1\";s:10:\"fee_amount\";s:1:\"1\";s:15:\"relationship_id\";s:1:\"1\";s:20:\"relationship_type_id\";s:1:\"1\";s:12:\"contact_id_b\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:16:\"activity_type_id\";s:1:\"1\";s:7:\"subject\";s:1:\"1\";s:17:\"source_contact_id\";s:1:\"1\";s:18:\"activity_date_time\";s:1:\"1\";s:18:\"activity_status_id\";s:1:\"1\";s:17:\"target_contact_id\";s:1:\"1\";s:19:\"assignee_contact_id\";s:1:\"1\";}s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:90:\"Provides contact-related information on contributions, memberships, events and activities.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:18:\"administer CiviCRM\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(3,1,'Activities','activity',NULL,NULL,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)','administer CiviCRM',NULL,'a:26:{s:6:\"fields\";a:6:{s:16:\"contact_assignee\";s:1:\"1\";s:14:\"contact_target\";s:1:\"1\";s:16:\"activity_type_id\";s:1:\"1\";s:16:\"activity_subject\";s:1:\"1\";s:18:\"activity_date_time\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:17:\"contact_source_op\";s:3:\"has\";s:20:\"contact_source_value\";s:0:\"\";s:19:\"contact_assignee_op\";s:3:\"has\";s:22:\"contact_assignee_value\";s:0:\"\";s:17:\"contact_target_op\";s:3:\"has\";s:20:\"contact_target_value\";s:0:\"\";s:15:\"current_user_op\";s:2:\"eq\";s:18:\"current_user_value\";s:1:\"0\";s:27:\"activity_date_time_relative\";s:10:\"this.month\";s:23:\"activity_date_time_from\";s:0:\"\";s:21:\"activity_date_time_to\";s:0:\"\";s:19:\"activity_subject_op\";s:3:\"has\";s:22:\"activity_subject_value\";s:0:\"\";s:19:\"activity_type_id_op\";s:2:\"in\";s:22:\"activity_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:11:\"description\";s:126:\"Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:18:\"administer CiviCRM\";s:6:\"groups\";s:0:\"\";s:9:\"group_bys\";N;s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(4,1,'Current Employers','contact/currentEmployer',NULL,NULL,'Provides detail list of employer employee relationships along with employment details.','administer CiviCRM',NULL,'a:33:{s:6:\"fields\";a:5:{s:17:\"organization_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:9:\"job_title\";s:1:\"1\";s:10:\"start_date\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:20:\"organization_name_op\";s:3:\"has\";s:23:\"organization_name_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:19:\"start_date_relative\";s:1:\"0\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:98:\"Provides detail list of employer employee relationships along with employment details Ex Join Date\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:18:\"administer CiviCRM\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(5,1,'Relationships','contact/relationship',NULL,NULL,'Gives relationship details between two contacts','administer CiviCRM',NULL,'a:28:{s:6:\"fields\";a:4:{s:11:\"sort_name_a\";s:1:\"1\";s:11:\"sort_name_b\";s:1:\"1\";s:9:\"label_a_b\";s:1:\"1\";s:9:\"label_b_a\";s:1:\"1\";}s:14:\"sort_name_a_op\";s:3:\"has\";s:17:\"sort_name_a_value\";s:0:\"\";s:14:\"sort_name_b_op\";s:3:\"has\";s:17:\"sort_name_b_value\";s:0:\"\";s:17:\"contact_type_a_op\";s:2:\"in\";s:20:\"contact_type_a_value\";a:0:{}s:17:\"contact_type_b_op\";s:2:\"in\";s:20:\"contact_type_b_value\";a:0:{}s:12:\"is_active_op\";s:2:\"eq\";s:15:\"is_active_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:19:\"Relationship Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:18:\"administer CiviCRM\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(6,1,'Contribution Summary','contribute/summary',NULL,NULL,'Groups and totals contributions by criteria including contact, time period, contribution type, contributor location, etc.','access CiviContribute',NULL,'a:42:{s:6:\"fields\";a:1:{s:12:\"total_amount\";s:1:\"1\";}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:23:\"contribution_type_id_op\";s:2:\"in\";s:26:\"contribution_type_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:13:\"total_sum_min\";s:0:\"\";s:13:\"total_sum_max\";s:0:\"\";s:12:\"total_sum_op\";s:3:\"lte\";s:15:\"total_sum_value\";s:0:\"\";s:15:\"total_count_min\";s:0:\"\";s:15:\"total_count_max\";s:0:\"\";s:14:\"total_count_op\";s:3:\"lte\";s:17:\"total_count_value\";s:0:\"\";s:13:\"total_avg_min\";s:0:\"\";s:13:\"total_avg_max\";s:0:\"\";s:12:\"total_avg_op\";s:3:\"lte\";s:15:\"total_avg_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"group_bys\";a:1:{s:12:\"receive_date\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:12:\"receive_date\";s:5:\"MONTH\";}s:11:\"description\";s:80:\"Shows contribution statistics by month / week / year .. country / state .. type.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(7,1,'Contribution Details','contribute/detail',NULL,NULL,'Lists specific contributions by criteria including contact, time period, contribution type, contributor location, etc. Contribution summary report points to this report for contribution details.','access CiviContribute',NULL,'a:34:{s:6:\"fields\";a:7:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";s:20:\"contribution_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:23:\"contribution_type_id_op\";s:2:\"in\";s:26:\"contribution_type_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:126:\"Lists detailed contribution(s) for one / all contacts. Contribution summary report points to this report for specific details.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(8,1,'Repeat Contributions','contribute/repeat',NULL,NULL,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.','access CiviContribute',NULL,'a:29:{s:6:\"fields\";a:3:{s:9:\"sort_name\";s:1:\"1\";s:13:\"total_amount1\";s:1:\"1\";s:13:\"total_amount2\";s:1:\"1\";}s:22:\"receive_date1_relative\";s:13:\"previous.year\";s:18:\"receive_date1_from\";s:0:\"\";s:16:\"receive_date1_to\";s:0:\"\";s:22:\"receive_date2_relative\";s:9:\"this.year\";s:18:\"receive_date2_from\";s:0:\"\";s:16:\"receive_date2_to\";s:0:\"\";s:17:\"total_amount1_min\";s:0:\"\";s:17:\"total_amount1_max\";s:0:\"\";s:16:\"total_amount1_op\";s:3:\"lte\";s:19:\"total_amount1_value\";s:0:\"\";s:17:\"total_amount2_min\";s:0:\"\";s:17:\"total_amount2_max\";s:0:\"\";s:16:\"total_amount2_op\";s:3:\"lte\";s:19:\"total_amount2_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:9:\"group_bys\";a:1:{s:2:\"id\";s:1:\"1\";}s:11:\"description\";s:140:\"Given two date ranges, shows contacts (and their contributions) who contributed in both the date ranges with percentage increase / decrease.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(9,1,'SYBUNT (some year but not this year)','contribute/sybunt',NULL,NULL,'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.','access CiviContribute',NULL,'a:18:{s:6:\"fields\";a:3:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"yid_op\";s:2:\"eq\";s:9:\"yid_value\";s:4:\"2011\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:179:\"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.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(10,1,'LYBUNT (last year but not this year)','contribute/lybunt',NULL,NULL,'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.','access CiviContribute',NULL,'a:19:{s:6:\"fields\";a:3:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"yid_op\";s:2:\"eq\";s:9:\"yid_value\";s:4:\"2011\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:157:\"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.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(11,1,'Contributions by Organization','contribute/organizationSummary',NULL,NULL,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.','access CiviContribute',NULL,'a:20:{s:6:\"fields\";a:5:{s:17:\"organization_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:20:\"organization_name_op\";s:3:\"has\";s:23:\"organization_name_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:5:\"4_b_a\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:11:\"description\";s:193:\"Displays a detailed contribution report for Organization relationships with contributors, as to if contribution done was from an employee of some organization or from that Organization itself.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(12,1,'Contributions by Household','contribute/householdSummary',NULL,NULL,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.','access CiviContribute',NULL,'a:21:{s:6:\"fields\";a:5:{s:14:\"household_name\";s:1:\"1\";s:9:\"sort_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:17:\"household_name_op\";s:3:\"has\";s:20:\"household_name_value\";s:0:\"\";s:23:\"relationship_type_id_op\";s:2:\"eq\";s:26:\"relationship_type_id_value\";s:5:\"6_b_a\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:11:\"description\";s:213:\"Provides a detailed report for Contributions made by contributors(Or Household itself) who are having a relationship with household (For ex a Contributor is Head of Household for some household or is a member of.)\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(13,1,'Top Donors','contribute/topDonor',NULL,NULL,'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).','access CiviContribute',NULL,'a:20:{s:6:\"fields\";a:2:{s:12:\"display_name\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:21:\"receive_date_relative\";s:9:\"this.year\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:15:\"total_range_min\";s:0:\"\";s:15:\"total_range_max\";s:0:\"\";s:14:\"total_range_op\";s:2:\"eq\";s:17:\"total_range_value\";s:0:\"\";s:23:\"contribution_type_id_op\";s:2:\"in\";s:26:\"contribution_type_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:11:\"description\";s:148:\"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).\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(14,1,'Soft Credits','contribute/softcredit',NULL,NULL,'Shows contributions made by contacts that have been soft-credited to other contacts.','access CiviContribute',NULL,'a:23:{s:6:\"fields\";a:5:{s:21:\"display_name_creditor\";s:1:\"1\";s:24:\"display_name_constituent\";s:1:\"1\";s:14:\"email_creditor\";s:1:\"1\";s:14:\"phone_creditor\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";a:0:{}s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:20:\"Soft Credit details.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(15,1,'Personal Campaign Page Summary','contribute/pcp',NULL,NULL,'Summarizes amount raised and number of contributors for each Personal Campaign Page.','access CiviContribute',NULL,'a:22:{s:6:\"fields\";a:8:{s:9:\"sort_name\";s:1:\"1\";s:10:\"page_title\";s:1:\"1\";s:5:\"title\";s:1:\"1\";s:11:\"goal_amount\";s:1:\"1\";s:8:\"amount_1\";s:1:\"1\";s:8:\"amount_2\";s:1:\"1\";s:7:\"soft_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"page_title_op\";s:3:\"has\";s:16:\"page_title_value\";s:0:\"\";s:8:\"title_op\";s:3:\"has\";s:11:\"title_value\";s:0:\"\";s:12:\"amount_2_min\";s:0:\"\";s:12:\"amount_2_max\";s:0:\"\";s:11:\"amount_2_op\";s:3:\"lte\";s:14:\"amount_2_value\";s:0:\"\";s:11:\"description\";s:35:\"Shows Personal Campaign Page Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(16,1,'Pledge Summary','pledge/detail',NULL,NULL,'Summary of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.','access CiviPledge',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:27:\"pledge_create_date_relative\";s:1:\"0\";s:23:\"pledge_create_date_from\";s:0:\"\";s:21:\"pledge_create_date_to\";s:0:\"\";s:17:\"pledge_amount_min\";s:0:\"\";s:17:\"pledge_amount_max\";s:0:\"\";s:16:\"pledge_amount_op\";s:3:\"lte\";s:19:\"pledge_amount_value\";s:0:\"\";s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:13:\"Pledge Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviPledge\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(17,1,'Pledged But not Paid','pledge/pbnp',NULL,NULL,'Pledged but not Paid Report','access CiviPledge',NULL,'a:17:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"pledge_create_date\";s:1:\"1\";s:6:\"amount\";s:1:\"1\";s:14:\"scheduled_date\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:27:\"pledge_create_date_relative\";s:1:\"0\";s:23:\"pledge_create_date_from\";s:0:\"\";s:21:\"pledge_create_date_to\";s:0:\"\";s:23:\"contribution_type_id_op\";s:2:\"in\";s:26:\"contribution_type_id_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:27:\"Pledged but not Paid Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviPledge\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(18,1,'Bookkeeping Transactions','contribute/bookkeeping',NULL,NULL,'Provides transaction details for all contributions and payments, including Transaction #, Invoice ID, Payment Instrument and Check #.','access CiviContribute',NULL,'a:25:{s:6:\"fields\";a:10:{s:9:\"sort_name\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:20:\"contribution_type_id\";s:1:\"1\";s:7:\"trxn_id\";s:1:\"1\";s:10:\"invoice_id\";s:1:\"1\";s:12:\"check_number\";s:1:\"1\";s:21:\"payment_instrument_id\";s:1:\"1\";s:22:\"contribution_status_id\";s:1:\"1\";s:2:\"id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:23:\"contribution_type_id_op\";s:2:\"in\";s:26:\"contribution_type_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:1:{i:0;s:1:\"1\";}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:11:\"description\";s:37:\"Shows Bookkeeping Transactions Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:21:\"access CiviContribute\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(19,1,'Membership Summary','member/summary',NULL,NULL,'Provides a summary of memberships by type and join date.','access CiviMember',NULL,'a:18:{s:6:\"fields\";a:2:{s:18:\"membership_type_id\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";}s:18:\"join_date_relative\";s:1:\"0\";s:14:\"join_date_from\";s:0:\"\";s:12:\"join_date_to\";s:0:\"\";s:21:\"membership_type_id_op\";s:2:\"in\";s:24:\"membership_type_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:9:\"group_bys\";a:2:{s:9:\"join_date\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";}s:14:\"group_bys_freq\";a:1:{s:9:\"join_date\";s:5:\"MONTH\";}s:11:\"description\";s:56:\"Provides a summary of memberships by type and join date.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(20,1,'Membership Details','member/detail',NULL,NULL,'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.','access CiviMember',NULL,'a:28:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:4:\"name\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:18:\"join_date_relative\";s:1:\"0\";s:14:\"join_date_from\";s:0:\"\";s:12:\"join_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:119:\"Provides a list of members along with their membership status and membership details (Join Date, Start Date, End Date).\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(21,1,'Contribution and Membership Details','member/contributionDetail',NULL,NULL,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.','access CiviMember',NULL,'a:67:{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:9:\"join_date\";s:1:\"1\";s:22:\"membership_status_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:18:\"join_date_relative\";s:1:\"0\";s:14:\"join_date_from\";s:0:\"\";s:12:\"join_date_to\";s:0:\"\";s:30:\"membership_start_date_relative\";s:1:\"0\";s:26:\"membership_start_date_from\";s:0:\"\";s:24:\"membership_start_date_to\";s:0:\"\";s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:35:\"Contribution and Membership Details\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:1:\"0\";s:9:\"domain_id\";i:1;}{s:6:\"fields\";a:12:{s:9:\"sort_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:5:\"phone\";s:1:\"1\";s:17:\"financial_type_id\";s:1:\"1\";s:12:\"receive_date\";s:1:\"1\";s:12:\"total_amount\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:21:\"membership_start_date\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:9:\"join_date\";s:1:\"1\";s:22:\"membership_status_name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:21:\"receive_date_relative\";s:1:\"0\";s:17:\"receive_date_from\";s:0:\"\";s:15:\"receive_date_to\";s:0:\"\";s:20:\"financial_type_id_op\";s:2:\"in\";s:23:\"financial_type_id_value\";a:0:{}s:24:\"payment_instrument_id_op\";s:2:\"in\";s:27:\"payment_instrument_id_value\";a:0:{}s:25:\"contribution_status_id_op\";s:2:\"in\";s:28:\"contribution_status_id_value\";a:0:{}s:16:\"total_amount_min\";s:0:\"\";s:16:\"total_amount_max\";s:0:\"\";s:15:\"total_amount_op\";s:3:\"lte\";s:18:\"total_amount_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:13:\"ordinality_op\";s:2:\"in\";s:16:\"ordinality_value\";a:0:{}s:18:\"join_date_relative\";s:1:\"0\";s:14:\"join_date_from\";s:0:\"\";s:12:\"join_date_to\";s:0:\"\";s:30:\"membership_start_date_relative\";s:1:\"0\";s:26:\"membership_start_date_from\";s:0:\"\";s:24:\"membership_start_date_to\";s:0:\"\";s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:23:\"owner_membership_id_min\";s:0:\"\";s:23:\"owner_membership_id_max\";s:0:\"\";s:22:\"owner_membership_id_op\";s:3:\"lte\";s:25:\"owner_membership_id_value\";s:0:\"\";s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:12:\"county_id_op\";s:2:\"in\";s:15:\"county_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:35:\"Contribution and Membership Details\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(22,1,'Lapsed Memberships','member/lapse',NULL,NULL,'Provides a list of memberships that have lapsed or will lapse by the date you specify.','access CiviMember',NULL,'a:16:{s:6:\"fields\";a:5:{s:9:\"sort_name\";s:1:\"1\";s:18:\"membership_type_id\";s:1:\"1\";s:19:\"membership_end_date\";s:1:\"1\";s:4:\"name\";s:1:\"1\";s:10:\"country_id\";s:1:\"1\";}s:6:\"tid_op\";s:2:\"in\";s:9:\"tid_value\";a:0:{}s:28:\"membership_end_date_relative\";s:1:\"0\";s:24:\"membership_end_date_from\";s:0:\"\";s:22:\"membership_end_date_to\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"description\";s:85:\"Provides a list of memberships that lapsed or will lapse before the date you specify.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviMember\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(23,1,'Event Participants List','event/participantListing',NULL,NULL,'Provides lists of participants for an event.','access CiviEvent',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:8:\"email_op\";s:3:\"has\";s:11:\"email_value\";s:0:\"\";s:11:\"event_id_op\";s:2:\"in\";s:14:\"event_id_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"rid_op\";s:2:\"in\";s:9:\"rid_value\";a:0:{}s:34:\"participant_register_date_relative\";s:1:\"0\";s:30:\"participant_register_date_from\";s:0:\"\";s:28:\"participant_register_date_to\";s:0:\"\";s:6:\"eid_op\";s:2:\"in\";s:9:\"eid_value\";a:0:{}s:11:\"custom_4_op\";s:2:\"in\";s:14:\"custom_4_value\";a:0:{}s:16:\"blank_column_end\";s:0:\"\";s:11:\"description\";s:44:\"Provides lists of participants for an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"groups\";s:0:\"\";s:7:\"options\";N;s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(24,1,'Event Income Summary','event/summary',NULL,NULL,'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.','access CiviEvent',NULL,'a:18:{s:6:\"fields\";a:2:{s:5:\"title\";s:1:\"1\";s:13:\"event_type_id\";s:1:\"1\";}s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";a:0:{}s:16:\"event_type_id_op\";s:2:\"in\";s:19:\"event_type_id_value\";a:0:{}s:25:\"event_start_date_relative\";s:1:\"0\";s:21:\"event_start_date_from\";s:0:\"\";s:19:\"event_start_date_to\";s:0:\"\";s:23:\"event_end_date_relative\";s:1:\"0\";s:19:\"event_end_date_from\";s:0:\"\";s:17:\"event_end_date_to\";s:0:\"\";s:11:\"description\";s:181:\"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.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(25,1,'Event Income Details','event/income',NULL,NULL,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.','access CiviEvent',NULL,'a:7:{s:5:\"id_op\";s:2:\"in\";s:8:\"id_value\";N;s:11:\"description\";s:133:\"Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(26,1,'Attendee List','event/participantListing',NULL,NULL,'Provides lists of event attendees.','access CiviEvent',NULL,'a:27:{s:6:\"fields\";a:4:{s:9:\"sort_name\";s:1:\"1\";s:8:\"event_id\";s:1:\"1\";s:9:\"status_id\";s:1:\"1\";s:7:\"role_id\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:8:\"email_op\";s:3:\"has\";s:11:\"email_value\";s:0:\"\";s:11:\"event_id_op\";s:2:\"in\";s:14:\"event_id_value\";a:0:{}s:6:\"sid_op\";s:2:\"in\";s:9:\"sid_value\";a:0:{}s:6:\"rid_op\";s:2:\"in\";s:9:\"rid_value\";a:0:{}s:34:\"participant_register_date_relative\";s:1:\"0\";s:30:\"participant_register_date_from\";s:0:\"\";s:28:\"participant_register_date_to\";s:0:\"\";s:6:\"eid_op\";s:2:\"in\";s:9:\"eid_value\";a:0:{}s:11:\"custom_4_op\";s:2:\"in\";s:14:\"custom_4_value\";a:0:{}s:16:\"blank_column_end\";s:0:\"\";s:11:\"description\";s:44:\"Provides lists of participants for an event.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviEvent\";s:6:\"groups\";s:0:\"\";s:7:\"options\";N;s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(27,1,'Grant Details','grant/detail',NULL,NULL,'Grant Report Detail','access CiviGrant',NULL,'a:40:{s:6:\"fields\";a:2:{s:9:\"sort_name\";s:1:\"1\";s:25:\"application_received_date\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:12:\"gender_id_op\";s:2:\"in\";s:15:\"gender_id_value\";a:0:{}s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"grant_type_op\";s:2:\"in\";s:16:\"grant_type_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:18:\"amount_granted_min\";s:0:\"\";s:18:\"amount_granted_max\";s:0:\"\";s:17:\"amount_granted_op\";s:3:\"lte\";s:20:\"amount_granted_value\";s:0:\"\";s:20:\"amount_requested_min\";s:0:\"\";s:20:\"amount_requested_max\";s:0:\"\";s:19:\"amount_requested_op\";s:3:\"lte\";s:22:\"amount_requested_value\";s:0:\"\";s:34:\"application_received_date_relative\";s:1:\"0\";s:30:\"application_received_date_from\";s:0:\"\";s:28:\"application_received_date_to\";s:0:\"\";s:28:\"money_transfer_date_relative\";s:1:\"0\";s:24:\"money_transfer_date_from\";s:0:\"\";s:22:\"money_transfer_date_to\";s:0:\"\";s:23:\"grant_due_date_relative\";s:1:\"0\";s:19:\"grant_due_date_from\";s:0:\"\";s:17:\"grant_due_date_to\";s:0:\"\";s:11:\"description\";s:19:\"Grant Report Detail\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviGrant\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(28,1,'Grant Statistics','grant/statistics',NULL,NULL,'Grant Report Statistics','access CiviGrant',NULL,'a:42:{s:6:\"fields\";a:2:{s:18:\"summary_statistics\";s:1:\"1\";s:13:\"grant_type_id\";s:1:\"1\";}s:34:\"application_received_date_relative\";s:1:\"0\";s:30:\"application_received_date_from\";s:0:\"\";s:28:\"application_received_date_to\";s:0:\"\";s:22:\"decision_date_relative\";s:1:\"0\";s:18:\"decision_date_from\";s:0:\"\";s:16:\"decision_date_to\";s:0:\"\";s:28:\"money_transfer_date_relative\";s:1:\"0\";s:24:\"money_transfer_date_from\";s:0:\"\";s:22:\"money_transfer_date_to\";s:0:\"\";s:23:\"grant_due_date_relative\";s:1:\"0\";s:19:\"grant_due_date_from\";s:0:\"\";s:17:\"grant_due_date_to\";s:0:\"\";s:13:\"grant_type_op\";s:2:\"in\";s:16:\"grant_type_value\";a:0:{}s:12:\"status_id_op\";s:2:\"in\";s:15:\"status_id_value\";a:0:{}s:20:\"amount_requested_min\";s:0:\"\";s:20:\"amount_requested_max\";s:0:\"\";s:19:\"amount_requested_op\";s:3:\"lte\";s:22:\"amount_requested_value\";s:0:\"\";s:18:\"amount_granted_min\";s:0:\"\";s:18:\"amount_granted_max\";s:0:\"\";s:17:\"amount_granted_op\";s:3:\"lte\";s:20:\"amount_granted_value\";s:0:\"\";s:24:\"grant_report_received_op\";s:2:\"eq\";s:27:\"grant_report_received_value\";s:0:\"\";s:12:\"gender_id_op\";s:2:\"in\";s:15:\"gender_id_value\";a:0:{}s:15:\"contact_type_op\";s:2:\"in\";s:18:\"contact_type_value\";a:0:{}s:12:\"region_id_op\";s:2:\"in\";s:15:\"region_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:11:\"description\";s:23:\"Grant Report Statistics\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:16:\"access CiviGrant\";s:9:\"parent_id\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(29,1,'Mail Bounces','Mailing/bounce',NULL,NULL,'Bounce Report for mailings','access CiviMail',NULL,'a:33:{s:6:\"fields\";a:5:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:11:\"bounce_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:19:\"bounce_type_name_op\";s:2:\"eq\";s:22:\"bounce_type_name_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:26:\"Bounce Report for mailings\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(30,1,'Mailing Summary','Mailing/summary',NULL,NULL,'Summary statistics for mailings','access CiviMail',NULL,'a:25:{s:6:\"fields\";a:5:{s:4:\"name\";s:1:\"1\";s:11:\"queue_count\";s:1:\"1\";s:15:\"delivered_count\";s:1:\"1\";s:12:\"bounce_count\";s:1:\"1\";s:10:\"open_count\";s:1:\"1\";}s:15:\"is_completed_op\";s:2:\"eq\";s:18:\"is_completed_value\";s:1:\"1\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:9:\"status_op\";s:3:\"has\";s:12:\"status_value\";s:8:\"Complete\";s:11:\"is_test_min\";s:0:\"\";s:11:\"is_test_max\";s:0:\"\";s:10:\"is_test_op\";s:3:\"lte\";s:13:\"is_test_value\";s:1:\"0\";s:19:\"start_date_relative\";s:9:\"this.year\";s:15:\"start_date_from\";s:0:\"\";s:13:\"start_date_to\";s:0:\"\";s:17:\"end_date_relative\";s:9:\"this.year\";s:13:\"end_date_from\";s:0:\"\";s:11:\"end_date_to\";s:0:\"\";s:11:\"description\";s:31:\"Summary statistics for mailings\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(31,1,'Mail Opened','Mailing/opened',NULL,NULL,'Display contacts who opened emails from a mailing','access CiviMail',NULL,'a:31:{s:6:\"fields\";a:5:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:49:\"Display contacts who opened emails from a mailing\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(32,1,'Mail Clickthroughs','Mailing/clicks',NULL,NULL,'Display clicks from each mailing','access CiviMail',NULL,'a:31:{s:6:\"fields\";a:6:{s:2:\"id\";s:1:\"1\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:5:\"email\";s:1:\"1\";s:3:\"url\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:9:\"source_op\";s:3:\"has\";s:12:\"source_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:15:\"mailing_name_op\";s:2:\"in\";s:18:\"mailing_name_value\";a:0:{}s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:8:\"tagid_op\";s:2:\"in\";s:11:\"tagid_value\";a:0:{}s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:9:\"order_bys\";a:1:{i:1;a:1:{s:6:\"column\";s:1:\"-\";}}s:11:\"description\";s:32:\"Display clicks from each mailing\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:6:\"groups\";s:0:\"\";s:6:\"charts\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(33,1,'Mailing Details','mailing/detail',NULL,NULL,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.','access CiviMail',NULL,'a:30:{s:6:\"fields\";a:6:{s:9:\"sort_name\";s:1:\"1\";s:12:\"mailing_name\";s:1:\"1\";s:11:\"delivery_id\";s:1:\"1\";s:14:\"unsubscribe_id\";s:1:\"1\";s:9:\"optout_id\";s:1:\"1\";s:5:\"email\";s:1:\"1\";}s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:6:\"id_min\";s:0:\"\";s:6:\"id_max\";s:0:\"\";s:5:\"id_op\";s:3:\"lte\";s:8:\"id_value\";s:0:\"\";s:13:\"mailing_id_op\";s:2:\"in\";s:16:\"mailing_id_value\";a:0:{}s:18:\"delivery_status_op\";s:2:\"eq\";s:21:\"delivery_status_value\";s:0:\"\";s:18:\"is_unsubscribed_op\";s:2:\"eq\";s:21:\"is_unsubscribed_value\";s:0:\"\";s:12:\"is_optout_op\";s:2:\"eq\";s:15:\"is_optout_value\";s:0:\"\";s:13:\"is_replied_op\";s:2:\"eq\";s:16:\"is_replied_value\";s:0:\"\";s:15:\"is_forwarded_op\";s:2:\"eq\";s:18:\"is_forwarded_value\";s:0:\"\";s:6:\"gid_op\";s:2:\"in\";s:9:\"gid_value\";a:0:{}s:9:\"order_bys\";a:1:{i:1;a:2:{s:6:\"column\";s:9:\"sort_name\";s:5:\"order\";s:3:\"ASC\";}}s:11:\"description\";s:21:\"Mailing Detail Report\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:15:\"access CiviMail\";s:9:\"parent_id\";s:0:\"\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(34,1,'Survey Details','survey/detail',NULL,NULL,'Detailed report for canvassing, phone-banking, walk lists or other surveys.','access CiviReport',NULL,'a:39:{s:6:\"fields\";a:2:{s:9:\"sort_name\";s:1:\"1\";s:6:\"result\";s:1:\"1\";}s:22:\"assignee_contact_id_op\";s:2:\"eq\";s:25:\"assignee_contact_id_value\";s:0:\"\";s:12:\"sort_name_op\";s:3:\"has\";s:15:\"sort_name_value\";s:0:\"\";s:17:\"street_number_min\";s:0:\"\";s:17:\"street_number_max\";s:0:\"\";s:16:\"street_number_op\";s:3:\"lte\";s:19:\"street_number_value\";s:0:\"\";s:14:\"street_name_op\";s:3:\"has\";s:17:\"street_name_value\";s:0:\"\";s:15:\"postal_code_min\";s:0:\"\";s:15:\"postal_code_max\";s:0:\"\";s:14:\"postal_code_op\";s:3:\"lte\";s:17:\"postal_code_value\";s:0:\"\";s:7:\"city_op\";s:3:\"has\";s:10:\"city_value\";s:0:\"\";s:20:\"state_province_id_op\";s:2:\"in\";s:23:\"state_province_id_value\";a:0:{}s:13:\"country_id_op\";s:2:\"in\";s:16:\"country_id_value\";a:0:{}s:12:\"survey_id_op\";s:2:\"in\";s:15:\"survey_id_value\";a:0:{}s:12:\"status_id_op\";s:2:\"eq\";s:15:\"status_id_value\";s:1:\"1\";s:11:\"custom_1_op\";s:2:\"in\";s:14:\"custom_1_value\";a:0:{}s:11:\"custom_2_op\";s:2:\"in\";s:14:\"custom_2_value\";a:0:{}s:17:\"custom_3_relative\";s:1:\"0\";s:13:\"custom_3_from\";s:0:\"\";s:11:\"custom_3_to\";s:0:\"\";s:11:\"description\";s:75:\"Detailed report for canvassing, phone-banking, walk lists or other surveys.\";s:13:\"email_subject\";s:0:\"\";s:8:\"email_to\";s:0:\"\";s:8:\"email_cc\";s:0:\"\";s:10:\"permission\";s:17:\"access CiviReport\";s:6:\"groups\";s:0:\"\";s:9:\"domain_id\";i:1;}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); /*!40000 ALTER TABLE `civicrm_report_instance` ENABLE KEYS */; UNLOCK TABLES; @@ -1281,7 +1281,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_edit_options','s:22:\"12345678911\";',1,NULL,1,NULL,NULL,NULL),(3,'CiviCRM Preferences','advanced_search_options','s:46:\"123456789101112131516171819\";',1,NULL,1,NULL,NULL,NULL),(4,'CiviCRM Preferences','user_dashboard_options','s:15:\"1234578\";',1,NULL,1,NULL,NULL,NULL),(5,'CiviCRM Preferences','address_options','s:23:\"123456891011\";',1,NULL,1,NULL,NULL,NULL),(6,'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),(7,'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),(8,'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),(9,'CiviCRM Preferences','sort_name_format','s:43:\"{contact.last_name}{, }{contact.first_name}\";',1,NULL,1,NULL,NULL,NULL),(10,'CiviCRM Preferences','editor_id','s:1:\"2\";',1,NULL,1,NULL,NULL,NULL),(11,'CiviCRM Preferences','contact_ajax_check_similar','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(12,'CiviCRM Preferences','activity_assignee_notification','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(13,'CiviCRM Preferences','activity_assignee_notification_ics','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(14,'CiviCRM Preferences','contact_autocomplete_options','s:5:\"12\";',1,NULL,1,NULL,NULL,NULL),(15,'CiviCRM Preferences','contact_reference_options','s:5:\"12\";',1,NULL,1,NULL,NULL,NULL),(16,'Address Standardization Preferences','address_standardization_provider',NULL,1,NULL,1,NULL,NULL,NULL),(17,'Address Standardization Preferences','address_standardization_userid',NULL,1,NULL,1,NULL,NULL,NULL),(18,'Address Standardization Preferences','address_standardization_url',NULL,1,NULL,1,NULL,NULL,NULL),(19,'Campaign Preferences','tag_unconfirmed','s:11:\"Unconfirmed\";',1,NULL,1,NULL,NULL,NULL),(20,'Campaign Preferences','petition_contacts','s:17:\"Petition Contacts\";',1,NULL,1,NULL,NULL,NULL),(21,'Event Preferences','enable_cart','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(22,'Mailing Preferences','profile_double_optin','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(23,'Mailing Preferences','profile_add_to_group_double_optin','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(24,'Mailing Preferences','track_civimail_replies','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(25,'Mailing Preferences','civimail_workflow','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(26,'Mailing Preferences','civimail_server_wide_lock','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(27,'Mailing Preferences','mailing_backend','a:1:{s:15:\"outBound_option\";s:1:\"3\";}',1,NULL,1,NULL,NULL,NULL),(28,'Member Preferences','default_renewal_contribution_page',NULL,1,NULL,1,NULL,NULL,NULL),(29,'Multi Site Preferences','is_enabled','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(30,'Multi Site Preferences','uniq_email_per_site','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(31,'Multi Site Preferences','domain_group_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(32,'Multi Site Preferences','event_price_set_domain_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(33,'Directory Preferences','uploadDir','s:7:\"upload/\";',1,NULL,1,NULL,'2013-02-26 10:48:06',NULL),(34,'Directory Preferences','imageUploadDir','s:19:\"persist/contribute/\";',1,NULL,1,NULL,'2013-02-26 10:48:06',NULL),(35,'Directory Preferences','customFileUploadDir','s:7:\"custom/\";',1,NULL,1,NULL,'2013-02-26 10:48:06',NULL),(36,'Directory Preferences','customTemplateDir',NULL,1,NULL,1,NULL,NULL,NULL),(37,'Directory Preferences','customPHPPathDir',NULL,1,NULL,1,NULL,NULL,NULL),(38,'Directory Preferences','extensionsDir',NULL,1,NULL,1,NULL,NULL,NULL),(39,'URL Preferences','userFrameworkResourceURL',NULL,1,NULL,1,NULL,'2013-02-26 10:48:06',NULL),(40,'URL Preferences','imageUploadURL',NULL,1,NULL,1,NULL,'2013-02-26 10:48:06',NULL),(41,'URL Preferences','customCSSURL',NULL,1,NULL,1,NULL,NULL,NULL),(42,'URL Preferences','extensionsURL',NULL,1,NULL,1,NULL,NULL,NULL),(43,'Contribute Preferences','cvv_backoffice_required','s:1:\"1\";',1,NULL,1,NULL,'2013-02-26 10:50:04',NULL),(44,'CiviCRM Preferences','max_attachments','i:3;',1,NULL,1,NULL,'2013-02-26 10:50:05',NULL),(45,'CiviCRM Preferences','contact_undelete','i:1;',1,NULL,1,NULL,'2013-02-26 10:50:06',NULL),(46,'CiviCRM Preferences','verifySSL','i:1;',1,NULL,1,NULL,'2013-02-26 10:50:06',NULL),(47,'Event Preferences','event_enable_cart','i:0;',1,NULL,1,NULL,'2013-02-26 10:50:07',NULL),(48,'Search Preferences','search_autocomplete_count','i:10;',1,NULL,1,NULL,'2013-02-26 10:50:08',NULL),(49,'CiviCRM Preferences','resCacheCode','s:5:\"B7Ono\";',1,NULL,1,NULL,'2013-02-26 10:50:08',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_edit_options','s:22:\"12345678911\";',1,NULL,1,NULL,NULL,NULL),(3,'CiviCRM Preferences','advanced_search_options','s:46:\"123456789101112131516171819\";',1,NULL,1,NULL,NULL,NULL),(4,'CiviCRM Preferences','user_dashboard_options','s:15:\"1234578\";',1,NULL,1,NULL,NULL,NULL),(5,'CiviCRM Preferences','address_options','s:23:\"123456891011\";',1,NULL,1,NULL,NULL,NULL),(6,'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),(7,'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),(8,'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),(9,'CiviCRM Preferences','sort_name_format','s:43:\"{contact.last_name}{, }{contact.first_name}\";',1,NULL,1,NULL,NULL,NULL),(10,'CiviCRM Preferences','editor_id','s:1:\"2\";',1,NULL,1,NULL,NULL,NULL),(11,'CiviCRM Preferences','contact_ajax_check_similar','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(12,'CiviCRM Preferences','activity_assignee_notification','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(13,'CiviCRM Preferences','activity_assignee_notification_ics','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(14,'CiviCRM Preferences','contact_autocomplete_options','s:5:\"12\";',1,NULL,1,NULL,NULL,NULL),(15,'CiviCRM Preferences','contact_reference_options','s:5:\"12\";',1,NULL,1,NULL,NULL,NULL),(16,'Address Standardization Preferences','address_standardization_provider',NULL,1,NULL,1,NULL,NULL,NULL),(17,'Address Standardization Preferences','address_standardization_userid',NULL,1,NULL,1,NULL,NULL,NULL),(18,'Address Standardization Preferences','address_standardization_url',NULL,1,NULL,1,NULL,NULL,NULL),(19,'Campaign Preferences','tag_unconfirmed','s:11:\"Unconfirmed\";',1,NULL,1,NULL,NULL,NULL),(20,'Campaign Preferences','petition_contacts','s:17:\"Petition Contacts\";',1,NULL,1,NULL,NULL,NULL),(21,'Event Preferences','enable_cart','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(22,'Mailing Preferences','profile_double_optin','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(23,'Mailing Preferences','profile_add_to_group_double_optin','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(24,'Mailing Preferences','track_civimail_replies','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(25,'Mailing Preferences','civimail_workflow','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(26,'Mailing Preferences','civimail_server_wide_lock','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(27,'Mailing Preferences','mailing_backend','a:1:{s:15:\"outBound_option\";s:1:\"3\";}',1,NULL,1,NULL,NULL,NULL),(28,'Member Preferences','default_renewal_contribution_page',NULL,1,NULL,1,NULL,NULL,NULL),(29,'Multi Site Preferences','is_enabled','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(30,'Multi Site Preferences','uniq_email_per_site','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(31,'Multi Site Preferences','domain_group_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(32,'Multi Site Preferences','event_price_set_domain_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(33,'Directory Preferences','uploadDir','s:7:\"upload/\";',1,NULL,1,NULL,'2013-03-01 10:55:30',NULL),(34,'Directory Preferences','imageUploadDir','s:19:\"persist/contribute/\";',1,NULL,1,NULL,'2013-03-01 10:55:30',NULL),(35,'Directory Preferences','customFileUploadDir','s:7:\"custom/\";',1,NULL,1,NULL,'2013-03-01 10:55:30',NULL),(36,'Directory Preferences','customTemplateDir',NULL,1,NULL,1,NULL,NULL,NULL),(37,'Directory Preferences','customPHPPathDir',NULL,1,NULL,1,NULL,NULL,NULL),(38,'Directory Preferences','extensionsDir',NULL,1,NULL,1,NULL,NULL,NULL),(39,'URL Preferences','userFrameworkResourceURL',NULL,1,NULL,1,NULL,'2013-03-01 10:55:30',NULL),(40,'URL Preferences','imageUploadURL',NULL,1,NULL,1,NULL,'2013-03-01 10:55:30',NULL),(41,'URL Preferences','customCSSURL',NULL,1,NULL,1,NULL,NULL,NULL),(42,'URL Preferences','extensionsURL',NULL,1,NULL,1,NULL,NULL,NULL),(43,'Contribute Preferences','cvv_backoffice_required','s:1:\"1\";',1,NULL,1,NULL,'2013-03-01 10:56:03',NULL),(44,'CiviCRM Preferences','max_attachments','i:3;',1,NULL,1,NULL,'2013-03-01 10:56:04',NULL),(45,'CiviCRM Preferences','contact_undelete','i:1;',1,NULL,1,NULL,'2013-03-01 10:56:04',NULL),(46,'CiviCRM Preferences','verifySSL','i:1;',1,NULL,1,NULL,'2013-03-01 10:56:05',NULL),(47,'Event Preferences','event_enable_cart','i:0;',1,NULL,1,NULL,'2013-03-01 10:56:05',NULL),(48,'Search Preferences','search_autocomplete_count','i:10;',1,NULL,1,NULL,'2013-03-01 10:56:06',NULL),(49,'CiviCRM Preferences','resCacheCode','s:5:\"LmbbD\";',1,NULL,1,NULL,'2013-03-01 10:56:06',NULL); /*!40000 ALTER TABLE `civicrm_setting` ENABLE KEYS */; UNLOCK TABLES; @@ -1310,7 +1310,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,94,2,'2012-09-29 11:32:22','Email','Added',NULL),(2,47,2,'2012-03-20 11:39:08','Admin','Added',NULL),(3,66,2,'2012-05-21 08:01:56','Email','Added',NULL),(4,180,2,'2012-05-01 01:12:56','Email','Added',NULL),(5,10,2,'2013-01-22 05:02:34','Admin','Added',NULL),(6,132,2,'2012-10-20 09:00:43','Email','Added',NULL),(7,106,2,'2012-12-11 04:46:48','Admin','Added',NULL),(8,136,2,'2012-06-15 03:51:43','Email','Added',NULL),(9,26,2,'2012-05-14 10:04:49','Admin','Added',NULL),(10,45,2,'2012-07-06 12:45:27','Admin','Added',NULL),(11,151,2,'2012-04-14 03:12:55','Admin','Added',NULL),(12,12,2,'2012-06-09 02:35:42','Email','Added',NULL),(13,156,2,'2012-08-14 01:06:56','Email','Added',NULL),(14,49,2,'2013-01-08 09:36:17','Admin','Added',NULL),(15,40,2,'2012-12-26 07:41:09','Admin','Added',NULL),(16,56,2,'2012-03-06 07:33:54','Email','Added',NULL),(17,112,2,'2012-10-25 07:16:26','Email','Added',NULL),(18,110,2,'2012-06-14 06:07:58','Admin','Added',NULL),(19,166,2,'2013-02-19 03:28:26','Email','Added',NULL),(20,131,2,'2012-09-27 10:49:29','Email','Added',NULL),(21,168,2,'2012-10-14 08:23:31','Email','Added',NULL),(22,179,2,'2012-05-14 09:08:50','Email','Added',NULL),(23,154,2,'2012-08-03 05:38:08','Email','Added',NULL),(24,133,2,'2012-08-12 01:05:55','Email','Added',NULL),(25,119,2,'2012-03-08 12:11:34','Email','Added',NULL),(26,188,2,'2013-02-01 10:24:12','Email','Added',NULL),(27,121,2,'2012-07-21 01:59:32','Email','Added',NULL),(28,114,2,'2012-04-03 06:42:53','Email','Added',NULL),(29,4,2,'2012-06-03 11:45:38','Email','Added',NULL),(30,31,2,'2013-02-12 07:09:56','Email','Added',NULL),(31,125,2,'2013-01-04 12:35:00','Email','Added',NULL),(32,186,2,'2012-08-29 11:34:47','Email','Added',NULL),(33,93,2,'2012-05-03 01:50:10','Admin','Added',NULL),(34,69,2,'2012-11-03 10:31:58','Email','Added',NULL),(35,8,2,'2012-11-10 10:02:39','Email','Added',NULL),(36,117,2,'2012-03-20 08:52:18','Admin','Added',NULL),(37,111,2,'2012-09-23 12:18:03','Admin','Added',NULL),(38,107,2,'2012-09-20 08:04:16','Admin','Added',NULL),(39,144,2,'2012-10-14 12:27:24','Admin','Added',NULL),(40,100,2,'2012-10-13 09:44:03','Admin','Added',NULL),(41,193,2,'2012-10-25 09:44:41','Email','Added',NULL),(42,33,2,'2012-08-11 09:09:30','Admin','Added',NULL),(43,71,2,'2012-08-14 09:51:52','Email','Added',NULL),(44,81,2,'2012-07-15 05:47:20','Admin','Added',NULL),(45,197,2,'2012-06-28 09:57:18','Admin','Added',NULL),(46,78,2,'2012-10-26 01:30:32','Admin','Added',NULL),(47,196,2,'2012-09-21 05:44:37','Admin','Added',NULL),(48,20,2,'2012-05-14 04:02:19','Email','Added',NULL),(49,145,2,'2012-07-31 10:03:51','Admin','Added',NULL),(50,92,2,'2012-08-10 03:25:24','Email','Added',NULL),(51,157,2,'2012-09-26 09:08:55','Email','Added',NULL),(52,164,2,'2012-09-28 08:51:56','Email','Added',NULL),(53,14,2,'2013-01-21 01:47:12','Email','Added',NULL),(54,134,2,'2012-10-27 11:53:39','Email','Added',NULL),(55,27,2,'2012-11-01 05:46:22','Email','Added',NULL),(56,176,2,'2012-08-08 04:02:30','Admin','Added',NULL),(57,178,2,'2012-07-15 12:14:44','Email','Added',NULL),(58,36,2,'2012-10-06 05:17:57','Email','Added',NULL),(59,128,2,'2012-09-28 02:34:43','Admin','Added',NULL),(60,76,2,'2012-03-27 02:40:54','Admin','Added',NULL),(61,189,3,'2012-07-13 11:22:07','Admin','Added',NULL),(62,109,3,'2012-06-02 11:12:42','Email','Added',NULL),(63,150,3,'2012-09-17 10:06:26','Admin','Added',NULL),(64,118,3,'2012-11-13 12:23:18','Admin','Added',NULL),(65,54,3,'2013-01-25 09:37:37','Admin','Added',NULL),(66,149,3,'2012-04-07 11:44:36','Email','Added',NULL),(67,15,3,'2012-05-06 12:27:25','Admin','Added',NULL),(68,23,3,'2012-11-21 09:24:19','Admin','Added',NULL),(69,192,3,'2012-10-25 02:42:38','Email','Added',NULL),(70,79,3,'2012-03-23 10:26:10','Email','Added',NULL),(71,105,3,'2013-01-30 04:43:02','Admin','Added',NULL),(72,58,3,'2012-07-07 01:08:26','Email','Added',NULL),(73,70,3,'2013-02-08 12:01:00','Admin','Added',NULL),(74,187,3,'2013-02-09 03:28:08','Admin','Added',NULL),(75,30,3,'2012-04-30 08:38:02','Email','Added',NULL),(76,94,4,'2012-05-16 10:18:22','Email','Added',NULL),(77,136,4,'2012-06-21 03:04:07','Admin','Added',NULL),(78,40,4,'2012-06-20 01:55:35','Admin','Added',NULL),(79,179,4,'2012-07-24 07:28:22','Admin','Added',NULL),(80,4,4,'2012-07-24 06:36:30','Admin','Added',NULL),(81,117,4,'2012-12-06 12:19:02','Email','Added',NULL),(82,71,4,'2013-02-05 09:11:38','Email','Added',NULL),(83,92,4,'2012-08-26 01:27:04','Email','Added',NULL); +INSERT INTO `civicrm_subscription_history` (`id`, `contact_id`, `group_id`, `date`, `method`, `status`, `tracking`) VALUES (1,136,2,'2012-05-20 11:06:47','Admin','Added',NULL),(2,82,2,'2012-06-25 07:05:25','Admin','Added',NULL),(3,102,2,'2012-07-26 05:26:11','Admin','Added',NULL),(4,181,2,'2012-03-30 10:00:35','Admin','Added',NULL),(5,125,2,'2012-05-29 05:45:58','Admin','Added',NULL),(6,159,2,'2012-09-14 07:23:31','Email','Added',NULL),(7,201,2,'2012-10-07 09:49:25','Email','Added',NULL),(8,80,2,'2012-12-11 06:50:57','Email','Added',NULL),(9,105,2,'2012-12-11 04:52:43','Email','Added',NULL),(10,20,2,'2013-02-26 05:14:15','Admin','Added',NULL),(11,117,2,'2012-07-20 04:12:11','Email','Added',NULL),(12,103,2,'2012-09-28 06:05:40','Email','Added',NULL),(13,98,2,'2012-11-21 09:12:44','Admin','Added',NULL),(14,138,2,'2012-03-10 06:18:28','Email','Added',NULL),(15,179,2,'2012-06-07 03:06:49','Email','Added',NULL),(16,158,2,'2013-02-12 06:59:01','Email','Added',NULL),(17,88,2,'2012-03-20 03:16:28','Admin','Added',NULL),(18,95,2,'2012-12-09 04:46:46','Email','Added',NULL),(19,55,2,'2012-07-11 10:31:55','Admin','Added',NULL),(20,9,2,'2012-12-20 06:32:30','Admin','Added',NULL),(21,162,2,'2012-06-07 09:12:33','Email','Added',NULL),(22,135,2,'2012-11-20 07:49:06','Admin','Added',NULL),(23,87,2,'2012-03-03 02:31:19','Admin','Added',NULL),(24,113,2,'2012-04-08 07:00:18','Email','Added',NULL),(25,3,2,'2012-03-12 12:37:31','Email','Added',NULL),(26,198,2,'2013-01-27 03:05:40','Email','Added',NULL),(27,191,2,'2012-10-02 06:32:31','Email','Added',NULL),(28,160,2,'2012-12-12 11:05:03','Email','Added',NULL),(29,112,2,'2012-07-11 03:34:59','Admin','Added',NULL),(30,171,2,'2012-12-10 10:00:08','Email','Added',NULL),(31,193,2,'2012-10-14 06:46:19','Admin','Added',NULL),(32,153,2,'2013-02-21 10:28:38','Admin','Added',NULL),(33,2,2,'2012-08-20 06:28:49','Admin','Added',NULL),(34,89,2,'2013-02-12 08:23:52','Admin','Added',NULL),(35,79,2,'2012-11-25 05:35:53','Email','Added',NULL),(36,163,2,'2013-01-22 12:58:52','Admin','Added',NULL),(37,144,2,'2012-06-08 12:36:51','Admin','Added',NULL),(38,78,2,'2012-09-28 01:37:56','Admin','Added',NULL),(39,154,2,'2012-12-09 06:07:43','Admin','Added',NULL),(40,65,2,'2012-06-05 06:54:30','Email','Added',NULL),(41,168,2,'2012-10-24 07:13:50','Email','Added',NULL),(42,8,2,'2012-04-07 10:12:46','Email','Added',NULL),(43,126,2,'2012-12-20 12:42:53','Email','Added',NULL),(44,50,2,'2013-02-14 04:48:52','Admin','Added',NULL),(45,166,2,'2012-05-15 01:04:57','Email','Added',NULL),(46,75,2,'2012-05-02 10:45:12','Email','Added',NULL),(47,27,2,'2012-10-06 10:18:15','Email','Added',NULL),(48,34,2,'2013-01-11 01:58:57','Email','Added',NULL),(49,110,2,'2012-06-01 01:02:25','Email','Added',NULL),(50,150,2,'2012-08-02 05:30:06','Admin','Added',NULL),(51,10,2,'2013-01-28 06:39:12','Email','Added',NULL),(52,37,2,'2012-05-27 04:24:16','Admin','Added',NULL),(53,132,2,'2012-09-21 05:48:47','Admin','Added',NULL),(54,46,2,'2012-11-26 05:09:51','Email','Added',NULL),(55,134,2,'2012-10-02 09:07:45','Email','Added',NULL),(56,182,2,'2012-11-03 01:37:40','Email','Added',NULL),(57,63,2,'2012-03-14 07:45:19','Admin','Added',NULL),(58,86,2,'2012-11-08 08:52:00','Admin','Added',NULL),(59,49,2,'2012-08-12 09:14:37','Email','Added',NULL),(60,92,2,'2012-11-18 07:48:03','Admin','Added',NULL),(61,32,3,'2012-03-09 10:19:16','Admin','Added',NULL),(62,149,3,'2012-06-13 02:51:33','Admin','Added',NULL),(63,69,3,'2012-05-18 02:16:05','Email','Added',NULL),(64,57,3,'2012-05-21 10:16:54','Email','Added',NULL),(65,148,3,'2012-08-01 05:17:42','Admin','Added',NULL),(66,106,3,'2012-04-28 11:16:47','Admin','Added',NULL),(67,165,3,'2013-02-11 10:26:28','Admin','Added',NULL),(68,66,3,'2012-04-21 03:28:32','Email','Added',NULL),(69,56,3,'2012-11-16 07:41:51','Admin','Added',NULL),(70,76,3,'2012-03-18 06:43:20','Email','Added',NULL),(71,196,3,'2012-04-08 01:40:35','Email','Added',NULL),(72,157,3,'2012-04-25 07:25:43','Admin','Added',NULL),(73,195,3,'2012-07-10 09:47:02','Email','Added',NULL),(74,41,3,'2012-11-11 08:25:45','Admin','Added',NULL),(75,53,3,'2012-03-30 01:22:31','Email','Added',NULL),(76,136,4,'2012-09-15 04:32:01','Email','Added',NULL),(77,80,4,'2012-06-08 06:34:09','Email','Added',NULL),(78,179,4,'2013-02-15 09:40:47','Admin','Added',NULL),(79,135,4,'2012-07-30 09:33:18','Email','Added',NULL),(80,112,4,'2012-04-14 02:47:16','Email','Added',NULL),(81,163,4,'2013-01-23 03:24:16','Admin','Added',NULL),(82,126,4,'2012-11-13 02:46:33','Email','Added',NULL),(83,150,4,'2012-09-01 07:49:18','Email','Added',NULL); /*!40000 ALTER TABLE `civicrm_subscription_history` ENABLE KEYS */; UNLOCK TABLES; @@ -1415,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,175,'http://fpwellnesscenter.org',1),(2,39,'http://illinoissustainabilitycenter.org',1),(3,141,'http://globalwellness.org',1),(4,96,'http://statessoftwarecenter.org',1),(5,135,'http://mississippipartnership.org',1),(6,52,'http://eccultureassociation.org',1),(7,82,'http://utahsustainability.org',1),(8,59,'http://friendssports.org',1),(9,84,'http://lennoxpoetryservices.org',1),(10,103,'http://kentuckyliteracy.org',1),(11,191,'http://ncagriculturecollective.org',1),(12,120,'http://ecwellnesspartners.org',1),(13,139,'http://sierraempowermentassociation.org',1),(14,172,'http://sierramusic.org',1),(15,113,'http://friendsschool.org',1),(16,127,'http://woburnmusic.org',1); +INSERT INTO `civicrm_website` (`id`, `contact_id`, `url`, `website_type_id`) VALUES (1,192,'http://beverlyacademy.org',1),(2,42,'http://pineagriculturenetwork.org',1),(3,18,'http://baltimoretechnologyalliance.org',1),(4,67,'http://washingtonsystems.org',1),(5,47,'http://mikanaassociation.org',1),(6,99,'http://ncsustainabilityalliance.org',1),(7,26,'http://beechpartners.org',1),(8,118,'http://arkansaspartnership.org',1),(9,101,'http://kentuckyagricultureschool.org',1),(10,36,'http://unitedpoetry.org',1),(11,28,'http://iowaeducationassociation.org',1),(12,188,'http://smagricultureassociation.org',1),(13,30,'http://opheimeducationsystems.org',1),(14,133,'http://globalfamilyalliance.org',1),(15,73,'http://herseycenter.org',1),(16,140,'http://mlkingarts.org',1),(17,45,'http://beechaction.org',1); /*!40000 ALTER TABLE `civicrm_website` ENABLE KEYS */; UNLOCK TABLES; @@ -1438,7 +1438,7 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2013-02-26 10:50:08 +-- Dump completed on 2013-03-01 10:56:07 -- +--------------------------------------------------------------------+ -- | CiviCRM version 3.4 | -- +--------------------------------------------------------------------+ diff --git a/xml/templates/civicrm_navigation.tpl b/xml/templates/civicrm_navigation.tpl index 6c5921f255..c46bd8932d 100644 --- a/xml/templates/civicrm_navigation.tpl +++ b/xml/templates/civicrm_navigation.tpl @@ -84,64 +84,64 @@ VALUES ( @domainID, NULL, 1, 'URL Preferences', 'customCSSURL' , NULL ), ( @domainID, NULL, 1, 'URL Preferences', 'extensionsURL' , NULL ); --- mail settings +-- mail settings INSERT INTO civicrm_mail_settings (domain_id, name, is_default, domain) VALUES (@domainID, 'default', true, 'EXAMPLE.ORG'); --- activity and case dashlets +-- activity and case dashlets -INSERT INTO `civicrm_dashboard` - ( `domain_id`, `label`, `url`, `permission`, `permission_operator`, `column_no`, `is_minimized`, `is_active`, `weight`, `fullscreen_url`, `is_fullscreen`, `is_reserved`) - VALUES +INSERT INTO `civicrm_dashboard` + ( `domain_id`, `label`, `url`, `permission`, `permission_operator`, `column_no`, `is_minimized`, `is_active`, `weight`, `fullscreen_url`, `is_fullscreen`, `is_reserved`) + VALUES ( @domainID, '{ts escape="sql"}CiviCRM News{/ts}', 'civicrm/dashlet/blog&reset=1&snippet=5', 'access CiviCRM', NULL, 0, 0, 1, 0, 'civicrm/dashlet/blog&reset=1&snippet=5&context=dashletFullscreen', 1, 1), ( @domainID, '{ts escape="sql"}Activities{/ts}', 'civicrm/dashlet/activity&reset=1&snippet=5', 'access CiviCRM', NULL, 0, 0, 1, 1, 'civicrm/dashlet/activity&reset=1&snippet=5&context=dashletFullscreen', 1, 1), ( @domainID, '{ts escape="sql"}My Cases{/ts}', 'civicrm/dashlet/myCases&reset=1&snippet=5', 'access my cases and activities', NULL , 0, 0, 1, 2, 'civicrm/dashlet/myCases&reset=1&snippet=5&context=dashletFullscreen', 1, 1), ( @domainID, '{ts escape="sql"}All Cases{/ts}', 'civicrm/dashlet/allCases&reset=1&snippet=5', 'access all cases and activities', NULL , 0, 0, 1, 3, 'civicrm/dashlet/allCases&reset=1&snippet=5&context=dashletFullscreen', 1, 1), ( @domainID, '{ts escape="sql"}Case Dashboard Dashlet{/ts}', 'civicrm/dashlet/casedashboard&reset=1&snippet=5', 'access CiviCase', NULL , 0, 0, 1, 4, 'civicrm/dashlet/casedashboard&reset=1&snippet=5&context=dashletFullscreen', 1, 1); --- navigation +-- navigation INSERT INTO civicrm_navigation ( domain_id, label, name, url, permission, permission_operator, parent_id, is_active, has_separator, weight ) VALUES ( @domainID, '{ts escape="sql" skip="true"}Home{/ts}', 'Home', 'civicrm/dashboard&reset=1', NULL, '', NULL, 1, NULL, 0); - + INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}Search{/ts}', 'Search...', NULL, '', NULL, '1', NULL, 10 ); SET @searchlastID:=LAST_INSERT_ID(); - -INSERT INTO civicrm_navigation - ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/contact/search&reset=1', '{ts escape="sql" skip="true"}Find Contacts{/ts}', 'Find Contacts', NULL, '', @searchlastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/contact/search/advanced&reset=1', '{ts escape="sql" skip="true"}Advanced Search{/ts}', 'Advanced Search', NULL, '', @searchlastID, '1', NULL, 2 ), - ( @domainID, 'civicrm/contact/search/custom&csid=15&reset=1', '{ts escape="sql" skip="true"}Full-text Search{/ts}', 'Full-text Search', NULL, '', @searchlastID, '1', NULL, 3 ), - ( @domainID, 'civicrm/contact/search/builder&reset=1', '{ts escape="sql" skip="true"}Search Builder{/ts}', 'Search Builder', NULL, '', @searchlastID, '1', '1', 4 ), - ( @domainID, 'civicrm/case/search&reset=1', '{ts escape="sql" skip="true"}Find Cases{/ts}', 'Find Cases', 'access my cases and activities,access all cases and activities', 'OR', @searchlastID, '1', NULL, 5 ), - ( @domainID, 'civicrm/contribute/search&reset=1', '{ts escape="sql" skip="true"}Find Contributions{/ts}', 'Find Contributions', 'access CiviContribute', '', @searchlastID, '1', NULL, 6 ), - ( @domainID, 'civicrm/mailing&reset=1', '{ts escape="sql" skip="true"}Find Mailings{/ts}', 'Find Mailings', 'access CiviMail', '', @searchlastID, '1', NULL, 7 ), - ( @domainID, 'civicrm/member/search&reset=1', '{ts escape="sql" skip="true"}Find Memberships{/ts}', 'Find Memberships', 'access CiviMember', '', @searchlastID, '1', NULL, 8 ), - ( @domainID, 'civicrm/event/search&reset=1', '{ts escape="sql" skip="true"}Find Participants{/ts}', 'Find Participants', 'access CiviEvent', '', @searchlastID, '1', NULL, 9 ), + +INSERT INTO civicrm_navigation + ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) +VALUES + ( @domainID, 'civicrm/contact/search&reset=1', '{ts escape="sql" skip="true"}Find Contacts{/ts}', 'Find Contacts', NULL, '', @searchlastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/contact/search/advanced&reset=1', '{ts escape="sql" skip="true"}Advanced Search{/ts}', 'Advanced Search', NULL, '', @searchlastID, '1', NULL, 2 ), + ( @domainID, 'civicrm/contact/search/custom&csid=15&reset=1', '{ts escape="sql" skip="true"}Full-text Search{/ts}', 'Full-text Search', NULL, '', @searchlastID, '1', NULL, 3 ), + ( @domainID, 'civicrm/contact/search/builder&reset=1', '{ts escape="sql" skip="true"}Search Builder{/ts}', 'Search Builder', NULL, '', @searchlastID, '1', '1', 4 ), + ( @domainID, 'civicrm/case/search&reset=1', '{ts escape="sql" skip="true"}Find Cases{/ts}', 'Find Cases', 'access my cases and activities,access all cases and activities', 'OR', @searchlastID, '1', NULL, 5 ), + ( @domainID, 'civicrm/contribute/search&reset=1', '{ts escape="sql" skip="true"}Find Contributions{/ts}', 'Find Contributions', 'access CiviContribute', '', @searchlastID, '1', NULL, 6 ), + ( @domainID, 'civicrm/mailing&reset=1', '{ts escape="sql" skip="true"}Find Mailings{/ts}', 'Find Mailings', 'access CiviMail', '', @searchlastID, '1', NULL, 7 ), + ( @domainID, 'civicrm/member/search&reset=1', '{ts escape="sql" skip="true"}Find Memberships{/ts}', 'Find Memberships', 'access CiviMember', '', @searchlastID, '1', NULL, 8 ), + ( @domainID, 'civicrm/event/search&reset=1', '{ts escape="sql" skip="true"}Find Participants{/ts}', 'Find Participants', 'access CiviEvent', '', @searchlastID, '1', NULL, 9 ), ( @domainID, 'civicrm/pledge/search&reset=1', '{ts escape="sql" skip="true"}Find Pledges{/ts}', 'Find Pledges', 'access CiviPledge', '', @searchlastID, '1', NULL, 10 ), ( @domainID, 'civicrm/activity/search&reset=1', '{ts escape="sql" skip="true"}Find Activities{/ts}', 'Find Activities', NULL, '', @searchlastID, '1', '1', 11 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/contact/search/custom/list&reset=1', '{ts escape="sql" skip="true"}Custom Searches{/ts}', 'Custom Searches', NULL, '', @searchlastID, '1', NULL, 12 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}Contacts{/ts}', 'Contacts', NULL, '', NULL, '1', NULL, 20 ); SET @contactlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/contact/add&reset=1&ct=Individual', '{ts escape="sql" skip="true"}New Individual{/ts}', 'New Individual', 'add contacts', '', @contactlastID, '1', NULL, 1 ), ( @domainID, 'civicrm/contact/add&reset=1&ct=Household', '{ts escape="sql" skip="true"}New Household{/ts}', 'New Household', 'add contacts', '', @contactlastID, '1', NULL, 2 ), ( @domainID, 'civicrm/contact/add&reset=1&ct=Organization', '{ts escape="sql" skip="true"}New Organization{/ts}', 'New Organization', 'add contacts', '', @contactlastID, '1', 1, 3 ), @@ -151,99 +151,99 @@ VALUES INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) VALUES - ( @domainID, 'civicrm/activity&reset=1&action=add&context=standalone', '{ts escape="sql" skip="true"}New Activity{/ts}', 'New Activity', NULL, '', @contactlastID, '1', NULL, 5 ), - ( @domainID, 'civicrm/activity/email/add&atype=3&action=add&reset=1&context=standalone', '{ts escape="sql" skip="true"}New Email{/ts}', 'New Email', NULL, '', @contactlastID, '1', '1', 6 ), - ( @domainID, 'civicrm/import/contact&reset=1', '{ts escape="sql" skip="true"}Import Contacts{/ts}', 'Import Contacts', 'import contacts', '', @contactlastID, '1', NULL, 7 ), - ( @domainID, 'civicrm/import/activity&reset=1', '{ts escape="sql" skip="true"}Import Activities{/ts}', 'Import Activities', 'import contacts', '', @contactlastID, '1', '1', 8 ), - ( @domainID, 'civicrm/group/add&reset=1', '{ts escape="sql" skip="true"}New Group{/ts}', 'New Group', 'edit groups', '', @contactlastID, '1', NULL, 9 ), - ( @domainID, 'civicrm/group&reset=1', '{ts escape="sql" skip="true"}Manage Groups{/ts}', 'Manage Groups', 'access CiviCRM', '', @contactlastID, '1', '1', 10 ), - ( @domainID, 'civicrm/admin/tag&reset=1&action=add', '{ts escape="sql" skip="true"}New Tag{/ts}', 'New Tag', 'administer CiviCRM', '', @contactlastID, '1', NULL, 11 ), + ( @domainID, 'civicrm/activity&reset=1&action=add&context=standalone', '{ts escape="sql" skip="true"}New Activity{/ts}', 'New Activity', NULL, '', @contactlastID, '1', NULL, 5 ), + ( @domainID, 'civicrm/activity/email/add&atype=3&action=add&reset=1&context=standalone', '{ts escape="sql" skip="true"}New Email{/ts}', 'New Email', NULL, '', @contactlastID, '1', '1', 6 ), + ( @domainID, 'civicrm/import/contact&reset=1', '{ts escape="sql" skip="true"}Import Contacts{/ts}', 'Import Contacts', 'import contacts', '', @contactlastID, '1', NULL, 7 ), + ( @domainID, 'civicrm/import/activity&reset=1', '{ts escape="sql" skip="true"}Import Activities{/ts}', 'Import Activities', 'import contacts', '', @contactlastID, '1', '1', 8 ), + ( @domainID, 'civicrm/group/add&reset=1', '{ts escape="sql" skip="true"}New Group{/ts}', 'New Group', 'edit groups', '', @contactlastID, '1', NULL, 9 ), + ( @domainID, 'civicrm/group&reset=1', '{ts escape="sql" skip="true"}Manage Groups{/ts}', 'Manage Groups', 'access CiviCRM', '', @contactlastID, '1', '1', 10 ), + ( @domainID, 'civicrm/admin/tag&reset=1&action=add', '{ts escape="sql" skip="true"}New Tag{/ts}', 'New Tag', 'administer CiviCRM', '', @contactlastID, '1', NULL, 11 ), ( @domainID, 'civicrm/admin/tag&reset=1', '{ts escape="sql" skip="true"}Manage Tags (Categories){/ts}', 'Manage Tags (Categories)', 'administer CiviCRM', '', @contactlastID, '1','1', 12 ), ( @domainID, 'civicrm/contact/deduperules&reset=1', '{ts escape="sql" skip="true"}Find and Merge Duplicate Contacts{/ts}', 'Find and Merge Duplicate Contacts', 'administer dedupe rules,merge duplicate contacts', 'OR', @contactlastID, '1', NULL, 13 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}Contributions{/ts}', 'Contributions', 'access CiviContribute', '', NULL, '1', NULL, 30 ); SET @contributionlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/contribute&reset=1', '{ts escape="sql" skip="true"}Dashboard{/ts}', 'Dashboard', 'access CiviContribute', '', @contributionlastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/contribute/add&reset=1&action=add&context=standalone', '{ts escape="sql" skip="true"}New Contribution{/ts}', 'New Contribution', 'access CiviContribute,edit contributions', 'AND', @contributionlastID, '1', NULL, 2 ), - ( @domainID, 'civicrm/contribute/search&reset=1', '{ts escape="sql" skip="true"}Find Contributions{/ts}', 'Find Contributions', 'access CiviContribute', '', @contributionlastID, '1', NULL, 3 ), +VALUES + ( @domainID, 'civicrm/contribute&reset=1', '{ts escape="sql" skip="true"}Dashboard{/ts}', 'Dashboard', 'access CiviContribute', '', @contributionlastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/contribute/add&reset=1&action=add&context=standalone', '{ts escape="sql" skip="true"}New Contribution{/ts}', 'New Contribution', 'access CiviContribute,edit contributions', 'AND', @contributionlastID, '1', NULL, 2 ), + ( @domainID, 'civicrm/contribute/search&reset=1', '{ts escape="sql" skip="true"}Find Contributions{/ts}', 'Find Contributions', 'access CiviContribute', '', @contributionlastID, '1', NULL, 3 ), ( @domainID, 'civicrm/report/list&compid=2&reset=1', '{ts escape="sql" skip="true"}Contribution Reports{/ts}', 'Contribution Reports', 'access CiviContribute', '', @contributionlastID, '1', 1, 4 ), ( @domainID, 'civicrm/contribute/import&reset=1', '{ts escape="sql" skip="true"}Import Contributions{/ts}', 'Import Contributions', 'access CiviContribute,edit contributions', 'AND', @contributionlastID, '1', '1', 5 ), ( @domainID, 'civicrm/batch&reset=1', '{ts escape="sql" skip="true"}Batch Data Entry{/ts}', 'Batch Data Entry', 'access CiviContribute', '', @contributionlastID, '1', NULL, 7 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID,NULL, '{ts escape="sql" skip="true"}Pledges{/ts}', 'Pledges', 'access CiviPledge', '', @contributionlastID, '1', 1, 6 ); - + SET @pledgelastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID,NULL, '{ts escape="sql" skip="true"}Accounting Batches{/ts}', 'Accounting Batches', 'view own manual batches,view all manual batches', 'OR', @contributionlastID, '1', 1, 8 ); - + SET @financialTransactionID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/pledge&reset=1', '{ts escape="sql" skip="true"}Dashboard{/ts}', 'Dashboard', 'access CiviPledge', '', @pledgelastID, '1', NULL, 1 ), +VALUES + ( @domainID, 'civicrm/pledge&reset=1', '{ts escape="sql" skip="true"}Dashboard{/ts}', 'Dashboard', 'access CiviPledge', '', @pledgelastID, '1', NULL, 1 ), ( @domainID, 'civicrm/pledge/add&reset=1&action=add&context=standalone', '{ts escape="sql" skip="true"}New Pledge{/ts}', 'New Pledge', 'access CiviPledge,edit pledges', 'AND', @pledgelastID, '1', NULL, 2 ), - ( @domainID, 'civicrm/pledge/search&reset=1', '{ts escape="sql" skip="true"}Find Pledges{/ts}', 'Find Pledges', 'access CiviPledge', '', @pledgelastID, '1', NULL, 3 ), + ( @domainID, 'civicrm/pledge/search&reset=1', '{ts escape="sql" skip="true"}Find Pledges{/ts}', 'Find Pledges', 'access CiviPledge', '', @pledgelastID, '1', NULL, 3 ), ( @domainID, 'civicrm/report/list&compid=6&reset=1', '{ts escape="sql" skip="true"}Pledge Reports{/ts}', 'Pledge Reports', 'access CiviPledge', '', @pledgelastID, '1', 0, 4 ), - ( @domainID, 'civicrm/admin/contribute/add&reset=1&action=add', '{ts escape="sql" skip="true"}New Contribution Page{/ts}', 'New Contribution Page', 'access CiviContribute,administer CiviCRM', 'AND', @contributionlastID, '1', NULL, 9 ), - ( @domainID, 'civicrm/admin/contribute&reset=1', '{ts escape="sql" skip="true"}Manage Contribution Pages{/ts}', 'Manage Contribution Pages', 'access CiviContribute,administer CiviCRM', 'AND', @contributionlastID, '1', '1', 10 ), - ( @domainID, 'civicrm/admin/pcp?reset=1&page_type=contribute', '{ts escape="sql" skip="true"}Personal Campaign Pages{/ts}', 'Personal Campaign Pages', 'access CiviContribute,administer CiviCRM', 'AND', @contributionlastID, '1', NULL, 11 ), + ( @domainID, 'civicrm/admin/contribute/add&reset=1&action=add', '{ts escape="sql" skip="true"}New Contribution Page{/ts}', 'New Contribution Page', 'access CiviContribute,administer CiviCRM', 'AND', @contributionlastID, '1', NULL, 9 ), + ( @domainID, 'civicrm/admin/contribute&reset=1', '{ts escape="sql" skip="true"}Manage Contribution Pages{/ts}', 'Manage Contribution Pages', 'access CiviContribute,administer CiviCRM', 'AND', @contributionlastID, '1', '1', 10 ), + ( @domainID, 'civicrm/admin/pcp?reset=1&page_type=contribute', '{ts escape="sql" skip="true"}Personal Campaign Pages{/ts}', 'Personal Campaign Pages', 'access CiviContribute,administer CiviCRM', 'AND', @contributionlastID, '1', NULL, 11 ), ( @domainID, 'civicrm/admin/contribute/managePremiums&reset=1', '{ts escape="sql" skip="true"}Premiums (Thank-you Gifts){/ts}', 'Premiums', 'access CiviContribute,administer CiviCRM', 'AND', @contributionlastID, '1', 1, 12 ), ( @domainID, 'civicrm/admin/price&reset=1&action=add', '{ts escape="sql" skip="true"}New Price Set{/ts}', 'New Price Set', 'access CiviContribute,administer CiviCRM', 'AND', @contributionlastID, '1', NULL, 13 ), ( @domainID, 'civicrm/admin/price&reset=1', '{ts escape="sql" skip="true"}Manage Price Sets{/ts}', 'Manage Price Sets', 'access CiviContribute,administer CiviCRM', 'AND', @contributionlastID, '1', NULL, 14 ), - + ( @domainID, 'civicrm/financial/batch&reset=1&action=add', '{ts escape="sql" skip="true"}New Batch{/ts}', 'New Batch', 'create manual batch', 'AND', @financialTransactionID, '1', NULL, 1 ), ( @domainID, 'civicrm/financial/financialbatches?reset=1&batchStatus=1', '{ts escape="sql" skip="true"}Open Batches{/ts}', 'Open Batches', 'view own manual batches,view all manual batches', 'OR', @financialTransactionID, '1', NULL, 2 ), ( @domainID, 'civicrm/financial/financialbatches?reset=1&batchStatus=2', '{ts escape="sql" skip="true"}Closed Batches{/ts}', 'Closed Batches', 'view own manual batches,view all manual batches', 'OR', @financialTransactionID, '1', NULL, 3 ), ( @domainID, 'civicrm/financial/financialbatches?reset=1&batchStatus=5', '{ts escape="sql" skip="true"}Exported Batches{/ts}', 'Exported Batches', 'view own manual batches,view all manual batches', 'OR', @financialTransactionID, '1', NULL, 4 ); - + INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}Events{/ts}', 'Events', 'access CiviEvent', '', NULL, '1', NULL, 40 ); SET @eventlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/event&reset=1', '{ts escape="sql" skip="true"}Dashboard{/ts}', 'CiviEvent Dashboard', 'access CiviEvent', '', @eventlastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/participant/add&reset=1&action=add&context=standalone', '{ts escape="sql" skip="true"}Register Event Participant{/ts}', 'Register Event Participant', 'access CiviEvent,edit event participants', 'AND', @eventlastID, '1', NULL, 2 ), - ( @domainID, 'civicrm/event/search&reset=1', '{ts escape="sql" skip="true"}Find Participants{/ts}', 'Find Participants', 'access CiviEvent', '', @eventlastID, '1', NULL, 3 ), +VALUES + ( @domainID, 'civicrm/event&reset=1', '{ts escape="sql" skip="true"}Dashboard{/ts}', 'CiviEvent Dashboard', 'access CiviEvent', '', @eventlastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/participant/add&reset=1&action=add&context=standalone', '{ts escape="sql" skip="true"}Register Event Participant{/ts}', 'Register Event Participant', 'access CiviEvent,edit event participants', 'AND', @eventlastID, '1', NULL, 2 ), + ( @domainID, 'civicrm/event/search&reset=1', '{ts escape="sql" skip="true"}Find Participants{/ts}', 'Find Participants', 'access CiviEvent', '', @eventlastID, '1', NULL, 3 ), ( @domainID, 'civicrm/report/list&compid=1&reset=1', '{ts escape="sql" skip="true"}Event Reports{/ts}', 'Event Reports', 'access CiviEvent', '', @eventlastID, '1', 1, 4 ), - ( @domainID, 'civicrm/event/import&reset=1', '{ts escape="sql" skip="true"}Import Participants{/ts}','Import Participants', 'access CiviEvent,edit event participants', 'AND', @eventlastID, '1', '1', 5 ), - ( @domainID, 'civicrm/event/add&reset=1&action=add', '{ts escape="sql" skip="true"}New Event{/ts}', 'New Event', 'access CiviEvent,edit all events', 'AND', @eventlastID, '1', NULL, 6 ), - ( @domainID, 'civicrm/event/manage&reset=1', '{ts escape="sql" skip="true"}Manage Events{/ts}', 'Manage Events', 'access CiviEvent,edit all events', 'AND', @eventlastID, '1', 1, 7 ), + ( @domainID, 'civicrm/event/import&reset=1', '{ts escape="sql" skip="true"}Import Participants{/ts}','Import Participants', 'access CiviEvent,edit event participants', 'AND', @eventlastID, '1', '1', 5 ), + ( @domainID, 'civicrm/event/add&reset=1&action=add', '{ts escape="sql" skip="true"}New Event{/ts}', 'New Event', 'access CiviEvent,edit all events', 'AND', @eventlastID, '1', NULL, 6 ), + ( @domainID, 'civicrm/event/manage&reset=1', '{ts escape="sql" skip="true"}Manage Events{/ts}', 'Manage Events', 'access CiviEvent,edit all events', 'AND', @eventlastID, '1', 1, 7 ), ( @domainID, 'civicrm/admin/pcp?reset=1&page_type=event', '{ts escape="sql" skip="true"}Personal Campaign Pages{/ts}', 'Personal Campaign Pages', 'access CiviEvent,administer CiviCRM', 'AND', @eventlastID, '1', 1, 8 ), - ( @domainID, 'civicrm/admin/eventTemplate&reset=1', '{ts escape="sql" skip="true"}Event Templates{/ts}', 'Event Templates', 'access CiviEvent,edit all events', 'AND', @eventlastID, '1', 1, 9 ), - ( @domainID, 'civicrm/admin/price&reset=1&action=add', '{ts escape="sql" skip="true"}New Price Set{/ts}', 'New Price Set', 'access CiviEvent,edit all events', 'AND', @eventlastID, '1', NULL, 10 ), + ( @domainID, 'civicrm/admin/eventTemplate&reset=1', '{ts escape="sql" skip="true"}Event Templates{/ts}', 'Event Templates', 'access CiviEvent,edit all events', 'AND', @eventlastID, '1', 1, 9 ), + ( @domainID, 'civicrm/admin/price&reset=1&action=add', '{ts escape="sql" skip="true"}New Price Set{/ts}', 'New Price Set', 'access CiviEvent,edit all events', 'AND', @eventlastID, '1', NULL, 10 ), ( @domainID, 'civicrm/admin/price&reset=1', '{ts escape="sql" skip="true"}Manage Price Sets{/ts}', 'Manage Price Sets', 'access CiviEvent,edit all events', 'AND', @eventlastID, '1', NULL, 11 ); - + INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}Mailings{/ts}', 'Mailings', 'access CiviMail,create mailings,approve mailings,schedule mailings', 'OR', NULL, '1', NULL, 50 ); SET @mailinglastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/mailing/send&reset=1', '{ts escape="sql" skip="true"}New Mailing{/ts}', 'New Mailing', 'access CiviMail,create mailings', 'OR', @mailinglastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/mailing/browse/unscheduled&reset=1&scheduled=false', '{ts escape="sql" skip="true"}Draft and Unscheduled Mailings{/ts}', 'Draft and Unscheduled Mailings', 'access CiviMail,create mailings,schedule mailings', 'OR', @mailinglastID, '1', NULL, 2 ), - ( @domainID, 'civicrm/mailing/browse/scheduled&reset=1&scheduled=true', '{ts escape="sql" skip="true"}Scheduled and Sent Mailings{/ts}', 'Scheduled and Sent Mailings', 'access CiviMail,approve mailings,create mailings,schedule mailings', 'OR', @mailinglastID, '1', NULL, 3 ), - ( @domainID, 'civicrm/mailing/browse/archived&reset=1', '{ts escape="sql" skip="true"}Archived Mailings{/ts}', 'Archived Mailings', 'access CiviMail,create mailings', 'OR', @mailinglastID, '1', NULL, 4 ), +VALUES + ( @domainID, 'civicrm/mailing/send&reset=1', '{ts escape="sql" skip="true"}New Mailing{/ts}', 'New Mailing', 'access CiviMail,create mailings', 'OR', @mailinglastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/mailing/browse/unscheduled&reset=1&scheduled=false', '{ts escape="sql" skip="true"}Draft and Unscheduled Mailings{/ts}', 'Draft and Unscheduled Mailings', 'access CiviMail,create mailings,schedule mailings', 'OR', @mailinglastID, '1', NULL, 2 ), + ( @domainID, 'civicrm/mailing/browse/scheduled&reset=1&scheduled=true', '{ts escape="sql" skip="true"}Scheduled and Sent Mailings{/ts}', 'Scheduled and Sent Mailings', 'access CiviMail,approve mailings,create mailings,schedule mailings', 'OR', @mailinglastID, '1', NULL, 3 ), + ( @domainID, 'civicrm/mailing/browse/archived&reset=1', '{ts escape="sql" skip="true"}Archived Mailings{/ts}', 'Archived Mailings', 'access CiviMail,create mailings', 'OR', @mailinglastID, '1', NULL, 4 ), ( @domainID, 'civicrm/report/list&compid=4&reset=1', '{ts escape="sql" skip="true"}Mailing Reports{/ts}', 'Mailing Reports', 'access CiviMail', '', @mailinglastID, '1', 1, 5 ), ( @domainID, 'civicrm/admin/component&reset=1', '{ts escape="sql" skip="true"}Headers, Footers, and Automated Messages{/ts}', 'Headers, Footers, and Automated Messages', 'access CiviMail,administer CiviCRM', 'AND', @mailinglastID, '1', NULL, 6 ), ( @domainID, 'civicrm/admin/messageTemplates&reset=1', '{ts escape="sql" skip="true"}Message Templates{/ts}', 'Message Templates', 'administer CiviCRM', '', @mailinglastID, '1', NULL, 7 ), @@ -253,15 +253,15 @@ VALUES INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}Memberships{/ts}', 'Memberships', 'access CiviMember', '', NULL, '1', NULL, 60 ); SET @memberlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/member&reset=1', '{ts escape="sql" skip="true"}Dashboard{/ts}', 'Dashboard', 'access CiviMember', '', @memberlastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/member/add&reset=1&action=add&context=standalone', '{ts escape="sql" skip="true"}New Membership{/ts}', 'New Membership', 'access CiviMember,edit memberships', 'AND', @memberlastID, '1', NULL, 2 ), +VALUES + ( @domainID, 'civicrm/member&reset=1', '{ts escape="sql" skip="true"}Dashboard{/ts}', 'Dashboard', 'access CiviMember', '', @memberlastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/member/add&reset=1&action=add&context=standalone', '{ts escape="sql" skip="true"}New Membership{/ts}', 'New Membership', 'access CiviMember,edit memberships', 'AND', @memberlastID, '1', NULL, 2 ), ( @domainID, 'civicrm/member/search&reset=1', '{ts escape="sql" skip="true"}Find Memberships{/ts}', 'Find Memberships','access CiviMember', '', @memberlastID, '1', NULL, 3 ), ( @domainID, 'civicrm/report/list&compid=3&reset=1', '{ts escape="sql" skip="true"}Membership Reports{/ts}', 'Membership Reports', 'access CiviMember', '', @memberlastID, '1', 1, 4 ), ( @domainID, 'civicrm/batch&reset=1', '{ts escape="sql" skip="true"}Batch Data Entry{/ts}', 'Batch Data Entry','access CiviContribute', '', @memberlastID, '1', NULL, 5 ), @@ -277,16 +277,16 @@ VALUES SET @campaignlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/campaign&reset=1', '{ts escape="sql" skip="true"}Dashboard{/ts}', 'Dashboard', 'manage campaign,administer CiviCampaign', 'OR', @campaignlastID, '1', NULL, 1 ); SET @campaigndashboardlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/campaign&reset=1&subPage=survey', '{ts escape="sql" skip="true"}Surveys{/ts}', 'Survey Dashboard', 'manage campaign,administer CiviCampaign', 'OR', @campaigndashboardlastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/campaign&reset=1&subPage=petition', '{ts escape="sql" skip="true"}Petitions{/ts}', 'Petition Dashboard', 'manage campaign,administer CiviCampaign', 'OR', @campaigndashboardlastID, '1', NULL, 2 ), - ( @domainID, 'civicrm/campaign&reset=1&subPage=campaign', '{ts escape="sql" skip="true"}Campaigns{/ts}', 'Campaign Dashboard', 'manage campaign,administer CiviCampaign', 'OR', @campaigndashboardlastID, '1', NULL, 3 ), - ( @domainID, 'civicrm/campaign/add&reset=1', '{ts escape="sql" skip="true"}New Campaign{/ts}', 'New Campaign', 'manage campaign,administer CiviCampaign', 'OR', @campaignlastID, '1', NULL, 2 ), +VALUES + ( @domainID, 'civicrm/campaign&reset=1&subPage=survey', '{ts escape="sql" skip="true"}Surveys{/ts}', 'Survey Dashboard', 'manage campaign,administer CiviCampaign', 'OR', @campaigndashboardlastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/campaign&reset=1&subPage=petition', '{ts escape="sql" skip="true"}Petitions{/ts}', 'Petition Dashboard', 'manage campaign,administer CiviCampaign', 'OR', @campaigndashboardlastID, '1', NULL, 2 ), + ( @domainID, 'civicrm/campaign&reset=1&subPage=campaign', '{ts escape="sql" skip="true"}Campaigns{/ts}', 'Campaign Dashboard', 'manage campaign,administer CiviCampaign', 'OR', @campaigndashboardlastID, '1', NULL, 3 ), + ( @domainID, 'civicrm/campaign/add&reset=1', '{ts escape="sql" skip="true"}New Campaign{/ts}', 'New Campaign', 'manage campaign,administer CiviCampaign', 'OR', @campaignlastID, '1', NULL, 2 ), ( @domainID, 'civicrm/survey/add&reset=1', '{ts escape="sql" skip="true"}New Survey{/ts}', 'New Survey', 'manage campaign,administer CiviCampaign', 'OR', @campaignlastID, '1', NULL, 3 ), ( @domainID, 'civicrm/petition/add&reset=1', '{ts escape="sql" skip="true"}New Petition{/ts}', 'New Petition', 'manage campaign,administer CiviCampaign', 'OR', @campaignlastID, '1', NULL, 4 ), ( @domainID, 'civicrm/survey/search&reset=1&op=reserve', '{ts escape="sql" skip="true"}Reserve Respondents{/ts}', 'Reserve Respondents', 'administer CiviCampaign,manage campaign,reserve campaign contacts', 'OR', @campaignlastID, '1', NULL, 5 ), @@ -304,82 +304,82 @@ VALUES SET @caselastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/case&reset=1', '{ts escape="sql" skip="true"}Dashboard{/ts}', 'Dashboard', 'access my cases and activities,access all cases and activities', 'OR', @caselastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/case/add&reset=1&action=add&atype=13&context=standalone', '{ts escape="sql" skip="true"}New Case{/ts}', 'New Case', 'add cases,access all cases and activities', 'OR', @caselastID, '1', NULL, 2 ), +VALUES + ( @domainID, 'civicrm/case&reset=1', '{ts escape="sql" skip="true"}Dashboard{/ts}', 'Dashboard', 'access my cases and activities,access all cases and activities', 'OR', @caselastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/case/add&reset=1&action=add&atype=13&context=standalone', '{ts escape="sql" skip="true"}New Case{/ts}', 'New Case', 'add cases,access all cases and activities', 'OR', @caselastID, '1', NULL, 2 ), ( @domainID, 'civicrm/case/search&reset=1', '{ts escape="sql" skip="true"}Find Cases{/ts}', 'Find Cases', 'access my cases and activities,access all cases and activities', 'OR', @caselastID, '1', 1, 3 ), ( @domainID, 'civicrm/report/list&compid=7&reset=1', '{ts escape="sql" skip="true"}Case Reports{/ts}', 'Case Reports', 'access my cases and activities,access all cases and activities,administer CiviCase', 'OR', @caselastID, '1', 0, 4 ); - + INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}Grants{/ts}', 'Grants', 'access CiviGrant', '', NULL, '1', NULL, 90 ); SET @grantlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/grant&reset=1', '{ts escape="sql" skip="true"}Dashboard{/ts}', 'Dashboard', 'access CiviGrant', '', @grantlastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/grant/add&reset=1&action=add&context=standalone', '{ts escape="sql" skip="true"}New Grant{/ts}', 'New Grant', 'access CiviGrant,edit grants', 'AND', @grantlastID, '1', NULL, 2 ), +VALUES + ( @domainID, 'civicrm/grant&reset=1', '{ts escape="sql" skip="true"}Dashboard{/ts}', 'Dashboard', 'access CiviGrant', '', @grantlastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/grant/add&reset=1&action=add&context=standalone', '{ts escape="sql" skip="true"}New Grant{/ts}', 'New Grant', 'access CiviGrant,edit grants', 'AND', @grantlastID, '1', NULL, 2 ), ( @domainID, 'civicrm/grant/search&reset=1', '{ts escape="sql" skip="true"}Find Grants{/ts}', 'Find Grants', 'access CiviGrant', '', @grantlastID, '1', 1, 3 ), ( @domainID, 'civicrm/report/list&compid=5&reset=1', '{ts escape="sql" skip="true"}Grant Reports{/ts}', 'Grant Reports', 'access CiviGrant', '', @grantlastID, '1', 0, 4 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}Administer{/ts}', 'Administer', 'administer CiviCRM', '', NULL, '1', NULL, 100 ); SET @adminlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/admin&reset=1', '{ts escape="sql" skip="true"}Administration Console{/ts}', 'Administration Console', 'administer CiviCRM', '', @adminlastID, '1', NULL, 1 ); SET @adminConsolelastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/admin/configtask&reset=1', '{ts escape="sql" skip="true"}Configuration Checklist{/ts}', 'Configuration Checklist', 'administer CiviCRM', '', @adminConsolelastID, '1', NULL, 1 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}Customize Data and Screens{/ts}', 'Customize Data and Screens', 'administer CiviCRM', '', @adminlastID, '1', NULL, 3 ); SET @CustomizelastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) VALUES - ( @domainID, 'civicrm/admin/custom/group&reset=1', '{ts escape="sql" skip="true"}Custom Fields{/ts}', 'Custom Fields', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/admin/uf/group&reset=1', '{ts escape="sql" skip="true"}Profiles{/ts}', 'Profiles', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 2 ), - ( @domainID, 'civicrm/admin/tag&reset=1', '{ts escape="sql" skip="true"}Tags (Categories){/ts}', 'Tags (Categories)', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 3 ), - ( @domainID, 'civicrm/admin/options/activity_type&reset=1&group=activity_type', '{ts escape="sql" skip="true"}Activity Types{/ts}', 'Activity Types', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 4 ), - ( @domainID, 'civicrm/admin/reltype&reset=1', '{ts escape="sql" skip="true"}Relationship Types{/ts}', 'Relationship Types', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 5 ), + ( @domainID, 'civicrm/admin/custom/group&reset=1', '{ts escape="sql" skip="true"}Custom Fields{/ts}', 'Custom Fields', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/admin/uf/group&reset=1', '{ts escape="sql" skip="true"}Profiles{/ts}', 'Profiles', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 2 ), + ( @domainID, 'civicrm/admin/tag&reset=1', '{ts escape="sql" skip="true"}Tags (Categories){/ts}', 'Tags (Categories)', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 3 ), + ( @domainID, 'civicrm/admin/options/activity_type&reset=1&group=activity_type', '{ts escape="sql" skip="true"}Activity Types{/ts}', 'Activity Types', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 4 ), + ( @domainID, 'civicrm/admin/reltype&reset=1', '{ts escape="sql" skip="true"}Relationship Types{/ts}', 'Relationship Types', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 5 ), ( @domainID, 'civicrm/admin/options/subtype&reset=1', '{ts escape="sql" skip="true"}Contact Types{/ts}','Contact Types', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 6 ), - ( @domainID, 'civicrm/admin/setting/preferences/display&reset=1', '{ts escape="sql" skip="true"}Display Preferences{/ts}', 'Display Preferences', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 9 ), - ( @domainID, 'civicrm/admin/setting/search&reset=1', '{ts escape="sql" skip="true"}Search Preferences{/ts}', 'Search Preferences', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 10 ), - ( @domainID, 'civicrm/admin/menu&reset=1', '{ts escape="sql" skip="true"}Navigation Menu{/ts}', 'Navigation Menu', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 11 ), + ( @domainID, 'civicrm/admin/setting/preferences/display&reset=1', '{ts escape="sql" skip="true"}Display Preferences{/ts}', 'Display Preferences', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 9 ), + ( @domainID, 'civicrm/admin/setting/search&reset=1', '{ts escape="sql" skip="true"}Search Preferences{/ts}', 'Search Preferences', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 10 ), + ( @domainID, 'civicrm/admin/menu&reset=1', '{ts escape="sql" skip="true"}Navigation Menu{/ts}', 'Navigation Menu', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 11 ), ( @domainID, 'civicrm/admin/options/wordreplacements&reset=1','{ts escape="sql" skip="true"}Word Replacements{/ts}','Word Replacements', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 12 ), ( @domainID, 'civicrm/admin/options/custom_search&reset=1&group=custom_search', '{ts escape="sql" skip="true"}Manage Custom Searches{/ts}', 'Manage Custom Searches', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 13 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}Dropdown Options{/ts}', 'Dropdown Options', 'administer CiviCRM', '', @CustomizelastID, '1', NULL, 8 ); - + SET @optionListlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/admin/options/gender&reset=1&group=gender', '{ts escape="sql" skip="true"}Gender Options{/ts}', 'Gender Options', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/admin/options/individual_prefix&group=individual_prefix&reset=1', '{ts escape="sql" skip="true"}Individual Prefixes (Ms, Mr...){/ts}', 'Individual Prefixes (Ms, Mr...)', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 2 ), - ( @domainID, 'civicrm/admin/options/individual_suffix&group=individual_suffix&reset=1', '{ts escape="sql" skip="true"}Individual Suffixes (Jr, Sr...){/ts}', 'Individual Suffixes (Jr, Sr...)', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 3 ), - ( @domainID, 'civicrm/admin/options/instant_messenger_service&group=instant_messenger_service&reset=1', '{ts escape="sql" skip="true"}Instant Messenger Services{/ts}', 'Instant Messenger Services', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 4 ), - ( @domainID, 'civicrm/admin/locationType&reset=1', '{ts escape="sql" skip="true"}Location Types (Home, Work...){/ts}', 'Location Types (Home, Work...)', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 5 ), - ( @domainID, 'civicrm/admin/options/mobile_provider&group=mobile_provider&reset=1', '{ts escape="sql" skip="true"}Mobile Phone Providers{/ts}', 'Mobile Phone Providers', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 6 ), - ( @domainID, 'civicrm/admin/options/phone_type&group=phone_type&reset=1', '{ts escape="sql" skip="true"}Phone Types{/ts}', 'Phone Types', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 7 ), +VALUES + ( @domainID, 'civicrm/admin/options/gender&reset=1&group=gender', '{ts escape="sql" skip="true"}Gender Options{/ts}', 'Gender Options', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/admin/options/individual_prefix&group=individual_prefix&reset=1', '{ts escape="sql" skip="true"}Individual Prefixes (Ms, Mr...){/ts}', 'Individual Prefixes (Ms, Mr...)', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 2 ), + ( @domainID, 'civicrm/admin/options/individual_suffix&group=individual_suffix&reset=1', '{ts escape="sql" skip="true"}Individual Suffixes (Jr, Sr...){/ts}', 'Individual Suffixes (Jr, Sr...)', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 3 ), + ( @domainID, 'civicrm/admin/options/instant_messenger_service&group=instant_messenger_service&reset=1', '{ts escape="sql" skip="true"}Instant Messenger Services{/ts}', 'Instant Messenger Services', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 4 ), + ( @domainID, 'civicrm/admin/locationType&reset=1', '{ts escape="sql" skip="true"}Location Types (Home, Work...){/ts}', 'Location Types (Home, Work...)', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 5 ), + ( @domainID, 'civicrm/admin/options/mobile_provider&group=mobile_provider&reset=1', '{ts escape="sql" skip="true"}Mobile Phone Providers{/ts}', 'Mobile Phone Providers', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 6 ), + ( @domainID, 'civicrm/admin/options/phone_type&group=phone_type&reset=1', '{ts escape="sql" skip="true"}Phone Types{/ts}', 'Phone Types', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 7 ), ( @domainID, 'civicrm/admin/options/website_type&group=website_type&reset=1', '{ts escape="sql" skip="true"}Website Types{/ts}', 'Website Types', 'administer CiviCRM', '', @optionListlastID, '1', NULL, 8 ); - + INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) VALUES @@ -388,41 +388,41 @@ VALUES SET @communicationslastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/admin/domain&action=update&reset=1', '{ts escape="sql" skip="true"}Organization Address and Contact Info{/ts}', 'Organization Address and Contact Info', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/admin/options/from_email_address&group=from_email_address&reset=1', '{ts escape="sql" skip="true"}FROM Email Addresses{/ts}', 'FROM Email Addresses', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 2 ), - ( @domainID, 'civicrm/admin/messageTemplates&reset=1', '{ts escape="sql" skip="true"}Message Templates{/ts}', 'Message Templates', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 3 ), +VALUES + ( @domainID, 'civicrm/admin/domain&action=update&reset=1', '{ts escape="sql" skip="true"}Organization Address and Contact Info{/ts}', 'Organization Address and Contact Info', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/admin/options/from_email_address&group=from_email_address&reset=1', '{ts escape="sql" skip="true"}FROM Email Addresses{/ts}', 'FROM Email Addresses', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 2 ), + ( @domainID, 'civicrm/admin/messageTemplates&reset=1', '{ts escape="sql" skip="true"}Message Templates{/ts}', 'Message Templates', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 3 ), ( @domainID, 'civicrm/admin/scheduleReminders&reset=1', '{ts escape="sql" skip="true"}Schedule Reminders{/ts}', 'Schedule Reminders', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 4 ), ( @domainID, 'civicrm/admin/options/preferred_communication_method&group=preferred_communication_method&reset=1', '{ts escape="sql" skip="true"}Preferred Communication Methods{/ts}', 'Preferred Communication Methods', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 5 ), ( @domainID, 'civicrm/admin/labelFormats&reset=1', '{ts escape="sql" skip="true"}Label Formats{/ts}', 'Label Formats', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 6 ), - ( @domainID, 'civicrm/admin/pdfFormats&reset=1', '{ts escape="sql" skip="true"}Print Page (PDF) Formats{/ts}', 'Print Page (PDF) Formats', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 7 ), - ( @domainID, 'civicrm/admin/options/email_greeting&group=email_greeting&reset=1', '{ts escape="sql" skip="true"}Email Greeting Formats{/ts}', 'Email Greeting Formats', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 8 ), - ( @domainID, 'civicrm/admin/options/postal_greeting&group=postal_greeting&reset=1', '{ts escape="sql" skip="true"}Postal Greeting Formats{/ts}', 'Postal Greeting Formats', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 9 ), + ( @domainID, 'civicrm/admin/pdfFormats&reset=1', '{ts escape="sql" skip="true"}Print Page (PDF) Formats{/ts}', 'Print Page (PDF) Formats', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 7 ), + ( @domainID, 'civicrm/admin/options/email_greeting&group=email_greeting&reset=1', '{ts escape="sql" skip="true"}Email Greeting Formats{/ts}', 'Email Greeting Formats', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 8 ), + ( @domainID, 'civicrm/admin/options/postal_greeting&group=postal_greeting&reset=1', '{ts escape="sql" skip="true"}Postal Greeting Formats{/ts}', 'Postal Greeting Formats', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 9 ), ( @domainID, 'civicrm/admin/options/addressee&group=addressee&reset=1', '{ts escape="sql" skip="true"}Addressee Formats{/ts}', 'Addressee Formats', 'administer CiviCRM', '', @communicationslastID, '1', NULL, 10 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}Localization{/ts}', 'Localization', 'administer CiviCRM', '', @adminlastID, '1', NULL, 6 ); SET @locallastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/admin/setting/localization&reset=1', '{ts escape="sql" skip="true"}Languages, Currency, Locations{/ts}', 'Languages, Currency, Locations', 'administer CiviCRM', '', @locallastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/admin/setting/preferences/address&reset=1', '{ts escape="sql" skip="true"}Address Settings{/ts}', 'Address Settings', 'administer CiviCRM', '', @locallastID, '1', NULL, 2 ), +VALUES + ( @domainID, 'civicrm/admin/setting/localization&reset=1', '{ts escape="sql" skip="true"}Languages, Currency, Locations{/ts}', 'Languages, Currency, Locations', 'administer CiviCRM', '', @locallastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/admin/setting/preferences/address&reset=1', '{ts escape="sql" skip="true"}Address Settings{/ts}', 'Address Settings', 'administer CiviCRM', '', @locallastID, '1', NULL, 2 ), ( @domainID, 'civicrm/admin/setting/date&reset=1', '{ts escape="sql" skip="true"}Date Formats{/ts}', 'Date Formats', 'administer CiviCRM', '', @locallastID, '1', NULL, 3 ), ( @domainID, 'civicrm/admin/options/languages&group=languages&reset=1', '{ts escape="sql" skip="true"}Preferred Language Options{/ts}', 'Preferred Language Options', 'administer CiviCRM', '', @locallastID, '1', NULL, 4 ); - + INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}Users and Permissions{/ts}', 'Users and Permissions', 'administer CiviCRM', '', @adminlastID, '1', NULL, 7 ); SET @usersPermslastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/admin/access&reset=1', '{ts escape="sql" skip="true"}Permissions (Access Control){/ts}', 'Permissions (Access Control)', 'administer CiviCRM', '', @usersPermslastID, '1', NULL, 1 ), ( @domainID, 'civicrm/admin/synchUser&reset=1', '{ts escape="sql" skip="true"}Synchronize Users to Contacts{/ts}', 'Synchronize Users to Contacts', 'administer CiviCRM', '', @usersPermslastID, '1', NULL, 2 ); @@ -435,19 +435,19 @@ SET @systemSettingslastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) VALUES - ( @domainID, 'civicrm/admin/setting/component&reset=1', '{ts escape="sql" skip="true"}Enable CiviCRM Components{/ts}', 'Enable Components', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/admin/setting/component&reset=1', '{ts escape="sql" skip="true"}Enable CiviCRM Components{/ts}', 'Enable Components', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 1 ), ( @domainID, 'civicrm/admin/extensions&reset=1', '{ts escape="sql" skip="true"}Manage Extensions{/ts}', 'Manage Extensions', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 2 ), - ( @domainID, 'civicrm/admin/setting/smtp&reset=1', '{ts escape="sql" skip="true"}Outbound Email (SMTP/Sendmail){/ts}', 'Outbound Email', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 3 ), - ( @domainID, 'civicrm/admin/paymentProcessor&reset=1', '{ts escape="sql" skip="true"}Payment Processors{/ts}', 'Payment Processors', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 4 ), - ( @domainID, 'civicrm/admin/setting/mapping&reset=1', '{ts escape="sql" skip="true"}Mapping and Geocoding{/ts}', 'Mapping and Geocoding', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 5 ), - ( @domainID, 'civicrm/admin/setting/misc&reset=1', '{ts escape="sql" skip="true"}Undelete, Logging and ReCAPTCHA{/ts}', 'Undelete, Logging and ReCAPTCHA', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 6 ), - ( @domainID, 'civicrm/admin/setting/path&reset=1', '{ts escape="sql" skip="true"}Directories{/ts}', 'Directories', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 7 ), - ( @domainID, 'civicrm/admin/setting/url&reset=1', '{ts escape="sql" skip="true"}Resource URLs{/ts}', 'Resource URLs', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 8 ), + ( @domainID, 'civicrm/admin/setting/smtp&reset=1', '{ts escape="sql" skip="true"}Outbound Email (SMTP/Sendmail){/ts}', 'Outbound Email', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 3 ), + ( @domainID, 'civicrm/admin/paymentProcessor&reset=1', '{ts escape="sql" skip="true"}Payment Processors{/ts}', 'Payment Processors', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 4 ), + ( @domainID, 'civicrm/admin/setting/mapping&reset=1', '{ts escape="sql" skip="true"}Mapping and Geocoding{/ts}', 'Mapping and Geocoding', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 5 ), + ( @domainID, 'civicrm/admin/setting/misc&reset=1', '{ts escape="sql" skip="true"}Undelete, Logging and ReCAPTCHA{/ts}', 'Undelete, Logging and ReCAPTCHA', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 6 ), + ( @domainID, 'civicrm/admin/setting/path&reset=1', '{ts escape="sql" skip="true"}Directories{/ts}', 'Directories', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 7 ), + ( @domainID, 'civicrm/admin/setting/url&reset=1', '{ts escape="sql" skip="true"}Resource URLs{/ts}', 'Resource URLs', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 8 ), ( @domainID, 'civicrm/admin/setting/updateConfigBackend&reset=1', '{ts escape="sql" skip="true"}Cleanup Caches and Update Paths{/ts}', 'Cleanup Caches and Update Paths', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 9 ), - ( @domainID, 'civicrm/admin/setting/uf&reset=1', '{ts escape="sql" skip="true"}CMS Database Integration{/ts}', 'CMS Integration', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 10 ), - ( @domainID, 'civicrm/admin/options/safe_file_extension&group=safe_file_extension&reset=1', '{ts escape="sql" skip="true"}Safe File Extensions{/ts}', 'Safe File Extensions','administer CiviCRM', '',@systemSettingslastID, '1', NULL, 11 ), - ( @domainID, 'civicrm/admin/options?reset=1', '{ts escape="sql" skip="true"}Option Groups{/ts}', 'Option Groups', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 12 ), - ( @domainID, 'civicrm/admin/mapping&reset=1', '{ts escape="sql" skip="true"}Import/Export Mappings{/ts}', 'Import/Export Mappings', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 13 ), + ( @domainID, 'civicrm/admin/setting/uf&reset=1', '{ts escape="sql" skip="true"}CMS Database Integration{/ts}', 'CMS Integration', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 10 ), + ( @domainID, 'civicrm/admin/options/safe_file_extension&group=safe_file_extension&reset=1', '{ts escape="sql" skip="true"}Safe File Extensions{/ts}', 'Safe File Extensions','administer CiviCRM', '',@systemSettingslastID, '1', NULL, 11 ), + ( @domainID, 'civicrm/admin/options?reset=1', '{ts escape="sql" skip="true"}Option Groups{/ts}', 'Option Groups', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 12 ), + ( @domainID, 'civicrm/admin/mapping&reset=1', '{ts escape="sql" skip="true"}Import/Export Mappings{/ts}', 'Import/Export Mappings', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 13 ), ( @domainID, 'civicrm/admin/setting/debug&reset=1', '{ts escape="sql" skip="true"}Debugging and Error Handling{/ts}','Debugging and Error Handling', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 14 ), ( @domainID, 'civicrm/admin/setting/preferences/multisite&reset=1', '{ts escape="sql" skip="true"}Multi Site Settings{/ts}', 'Multi Site Settings', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 15 ), ( @domainID, 'civicrm/admin/job&reset=1', '{ts escape="sql" skip="true"}Scheduled Jobs{/ts}', 'Scheduled Jobs', 'administer CiviCRM', '', @systemSettingslastID, '1', NULL, 16 ), @@ -457,13 +457,13 @@ VALUES -- begin component admin menus INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}CiviCampaign{/ts}', 'CiviCampaign', 'administer CiviCampaign,administer CiviCRM', 'AND', @adminlastID, '1', NULL, 9 ); SET @adminCampaignlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/admin/campaign/surveyType&reset=1', '{ts escape="sql" skip="true"}Survey Types{/ts}', 'Survey Types', 'administer CiviCampaign', '', @adminCampaignlastID, '1', NULL, 1 ), ( @domainID, 'civicrm/admin/options/campaign_type&group=campaign_type&reset=1', '{ts escape="sql" skip="true"}Campaign Types{/ts}', 'Campaign Types', 'administer CiviCampaign', '', @adminCampaignlastID, '1', NULL, 2 ), ( @domainID, 'civicrm/admin/options/campaign_status&group=campaign_status&reset=1', '{ts escape="sql" skip="true"}Campaign Status{/ts}', 'Campaign Status', 'administer CiviCampaign', '', @adminCampaignlastID, '1', NULL, 3 ), @@ -472,99 +472,99 @@ VALUES INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}CiviCase{/ts}', 'CiviCase', 'administer CiviCase', NULL, @adminlastID, '1', NULL, 10 ); SET @adminCaselastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/admin/options/case_type&group=case_type&reset=1', '{ts escape="sql" skip="true"}Case Types{/ts}', 'Case Types', 'administer CiviCase', NULL, @adminCaselastID, '1', NULL, 1 ), +VALUES + ( @domainID, 'civicrm/admin/options/case_type&group=case_type&reset=1', '{ts escape="sql" skip="true"}Case Types{/ts}', 'Case Types', 'administer CiviCase', NULL, @adminCaselastID, '1', NULL, 1 ), ( @domainID, 'civicrm/admin/options/redaction_rule&group=redaction_rule&reset=1', '{ts escape="sql" skip="true"}Redaction Rules{/ts}', 'Redaction Rules', 'administer CiviCase', NULL, @adminCaselastID, '1', NULL, 2 ), ( @domainID, 'civicrm/admin/options/case_status&group=case_status&reset=1', '{ts escape="sql" skip="true"}Case Statuses{/ts}', 'Case Statuses', 'administer CiviCase', NULL, @adminCaselastID, '1', NULL, 3 ), ( @domainID, 'civicrm/admin/options/encounter_medium&group=encounter_medium&reset=1', '{ts escape="sql" skip="true"}Encounter Medium{/ts}', 'Encounter Medium', 'administer CiviCase', NULL, @adminCaselastID, '1', NULL, 4 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}CiviContribute{/ts}', 'CiviContribute', 'access CiviContribute,administer CiviCRM', 'AND', @adminlastID, '1', NULL, 11 ); - + SET @adminContributelastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) VALUES - ( @domainID, 'civicrm/admin/contribute&reset=1&action=add', '{ts escape="sql" skip="true"}New Contribution Page{/ts}', 'New Contribution Page', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', NULL, 6 ), - ( @domainID, 'civicrm/admin/contribute&reset=1', '{ts escape="sql" skip="true"}Manage Contribution Pages{/ts}', 'Manage Contribution Pages', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', '1', 7 ), - ( @domainID, 'civicrm/admin/pcp?reset=1&page_type=contribute', '{ts escape="sql" skip="true"}Personal Campaign Pages{/ts}', 'Personal Campaign Pages', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', NULL, 8 ), - ( @domainID, 'civicrm/admin/contribute/managePremiums&reset=1', '{ts escape="sql" skip="true"}Premiums (Thank-you Gifts){/ts}', 'Premiums', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', 1, 9 ), + ( @domainID, 'civicrm/admin/contribute&reset=1&action=add', '{ts escape="sql" skip="true"}New Contribution Page{/ts}', 'New Contribution Page', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', NULL, 6 ), + ( @domainID, 'civicrm/admin/contribute&reset=1', '{ts escape="sql" skip="true"}Manage Contribution Pages{/ts}', 'Manage Contribution Pages', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', '1', 7 ), + ( @domainID, 'civicrm/admin/pcp?reset=1&page_type=contribute', '{ts escape="sql" skip="true"}Personal Campaign Pages{/ts}', 'Personal Campaign Pages', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', NULL, 8 ), + ( @domainID, 'civicrm/admin/contribute/managePremiums&reset=1', '{ts escape="sql" skip="true"}Premiums (Thank-you Gifts){/ts}', 'Premiums', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', 1, 9 ), ( @domainID, 'civicrm/admin/financial/financialType&reset=1', '{ts escape="sql" skip="true"}Financial Types{/ts}', 'Financial Types', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', NULL, 10), - ( @domainID, 'civicrm/admin/financial/financialAccount&reset=1', '{ts escape="sql" skip="true"}Financial Accounts{/ts}', 'Financial Accounts', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', NULL, 11), - ( @domainID, 'civicrm/admin/options/payment_instrument&group=payment_instrument&reset=1', '{ts escape="sql" skip="true"}Payment Instruments{/ts}', 'Payment Instruments', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', NULL, 12 ), + ( @domainID, 'civicrm/admin/financial/financialAccount&reset=1', '{ts escape="sql" skip="true"}Financial Accounts{/ts}', 'Financial Accounts', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', NULL, 11), + ( @domainID, 'civicrm/admin/options/payment_instrument&group=payment_instrument&reset=1', '{ts escape="sql" skip="true"}Payment Instruments{/ts}', 'Payment Instruments', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', NULL, 12 ), ( @domainID, 'civicrm/admin/options/accept_creditcard&group=accept_creditcard&reset=1', '{ts escape="sql" skip="true"}Accepted Credit Cards{/ts}', 'Accepted Credit Cards', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', 1, 13 ), ( @domainID, 'civicrm/admin/price&reset=1&action=add', '{ts escape="sql" skip="true"}New Price Set{/ts}', 'New Price Set', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', NULL, 14 ), ( @domainID, 'civicrm/admin/price&reset=1', '{ts escape="sql" skip="true"}Manage Price Sets{/ts}', 'Manage Price Sets', 'access CiviContribute,administer CiviCRM', 'AND', @adminContributelastID, '1', NULL, 15 ), - ( @domainID, 'civicrm/admin/paymentProcessor&reset=1', '{ts escape="sql" skip="true"}Payment Processors{/ts}', 'Payment Processors', 'administer CiviCRM', '', @adminContributelastID, '1', NULL, 16 ); + ( @domainID, 'civicrm/admin/paymentProcessor&reset=1', '{ts escape="sql" skip="true"}Payment Processors{/ts}', 'Payment Processors', 'administer CiviCRM', '', @adminContributelastID, '1', NULL, 16 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}CiviEvent{/ts}', 'CiviEvent', 'access CiviEvent,administer CiviCRM', 'AND', @adminlastID, '1', NULL, 12 ); SET @adminEventlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/event/add&reset=1&action=add', '{ts escape="sql" skip="true"}New Event{/ts}', 'New Event', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/event/manage&reset=1', '{ts escape="sql" skip="true"}Manage Events{/ts}', 'Manage Events', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', 1, 2 ), +VALUES + ( @domainID, 'civicrm/event/add&reset=1&action=add', '{ts escape="sql" skip="true"}New Event{/ts}', 'New Event', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/event/manage&reset=1', '{ts escape="sql" skip="true"}Manage Events{/ts}', 'Manage Events', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', 1, 2 ), ( @domainID, 'civicrm/admin/pcp?reset=1&page_type=event', '{ts escape="sql" skip="true"}Personal Campaign Pages{/ts}', 'Personal Campaign Pages', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', 1, 3 ), - ( @domainID, 'civicrm/admin/eventTemplate&reset=1', '{ts escape="sql" skip="true"}Event Templates{/ts}', 'Event Templates', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', 1, 4 ), - ( @domainID, 'civicrm/admin/price&reset=1&action=add', '{ts escape="sql" skip="true"}New Price Set{/ts}', 'New Price Set', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', NULL, 5 ), + ( @domainID, 'civicrm/admin/eventTemplate&reset=1', '{ts escape="sql" skip="true"}Event Templates{/ts}', 'Event Templates', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', 1, 4 ), + ( @domainID, 'civicrm/admin/price&reset=1&action=add', '{ts escape="sql" skip="true"}New Price Set{/ts}', 'New Price Set', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', NULL, 5 ), ( @domainID, 'civicrm/admin/price&reset=1', '{ts escape="sql" skip="true"}Manage Price Sets{/ts}', 'Manage Price Sets', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', 1, 6 ), - ( @domainID, 'civicrm/admin/options/event_type&group=event_type&reset=1', '{ts escape="sql" skip="true"}Event Types{/ts}', 'Event Types', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', NULL, 7 ), - ( @domainID, 'civicrm/admin/participant_status&reset=1', '{ts escape="sql" skip="true"}Participant Statuses{/ts}', 'Participant Statuses', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', NULL, 8 ), + ( @domainID, 'civicrm/admin/options/event_type&group=event_type&reset=1', '{ts escape="sql" skip="true"}Event Types{/ts}', 'Event Types', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', NULL, 7 ), + ( @domainID, 'civicrm/admin/participant_status&reset=1', '{ts escape="sql" skip="true"}Participant Statuses{/ts}', 'Participant Statuses', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', NULL, 8 ), ( @domainID, 'civicrm/admin/options/participant_role&group=participant_role&reset=1', '{ts escape="sql" skip="true"}Participant Roles{/ts}', 'Participant Roles', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', NULL, 9 ), - ( @domainID, 'civicrm/admin/options/participant_listing&group=participant_listing&reset=1', '{ts escape="sql" skip="true"}Participant Listing Options{/ts}', 'Participant Listing Options', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', NULL, 10 ), - ( @domainID, 'civicrm/admin/options/event_badge&group=event_badge&reset=1', '{ts escape="sql" skip="true"}Event Badge Formats{/ts}', 'Event Badge Formats', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', NULL, 11 ), + ( @domainID, 'civicrm/admin/options/participant_listing&group=participant_listing&reset=1', '{ts escape="sql" skip="true"}Participant Listing Options{/ts}', 'Participant Listing Options', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', NULL, 10 ), + ( @domainID, 'civicrm/admin/options/event_badge&group=event_badge&reset=1', '{ts escape="sql" skip="true"}Event Badge Formats{/ts}', 'Event Badge Formats', 'access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', NULL, 11 ), ( @domainID, 'civicrm/admin/paymentProcessor&reset=1', '{ts escape="sql" skip="true"}Payment Processors{/ts}', 'Payment Processors', 'administer CiviCRM', '', @adminEventlastID, '1', NULL, 12), ( @domainID, 'civicrm/admin/setting/preferences/event&reset=1', '{ts escape="sql" skip="true"}CiviEvent Component Settings{/ts}', 'CiviEvent Component Settings','access CiviEvent,administer CiviCRM', 'AND', @adminEventlastID, '1', NULL, 13 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}CiviGrant{/ts}', 'CiviGrant', 'access CiviGrant,administer CiviCRM', 'AND', @adminlastID, '1', NULL, 13 ); SET @adminGrantlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/admin/options/grant_type&group=grant_type&reset=1', '{ts escape="sql" skip="true"}Grant Types{/ts}', 'Grant Types', 'access CiviGrant,administer CiviCRM', 'AND', @adminGrantlastID, '1', NULL, 1 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}CiviMail{/ts}', 'CiviMail', 'access CiviMail,administer CiviCRM', 'AND', @adminlastID, '1', NULL, 14 ); SET @adminMailinglastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/admin/component&reset=1', '{ts escape="sql" skip="true"}Headers, Footers, and Automated Messages{/ts}', 'Headers, Footers, and Automated Messages', 'access CiviMail,administer CiviCRM', 'AND', @adminMailinglastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/admin/messageTemplates&reset=1', '{ts escape="sql" skip="true"}Message Templates{/ts}', 'Message Templates', 'administer CiviCRM', '', @adminMailinglastID, '1', NULL, 2 ), - ( @domainID, 'civicrm/admin/options/from_email&group=from_email_address&reset=1', '{ts escape="sql" skip="true"}From Email Addresses{/ts}', 'From Email Addresses', 'administer CiviCRM', '', @adminMailinglastID, '1', NULL, 3 ), +VALUES + ( @domainID, 'civicrm/admin/component&reset=1', '{ts escape="sql" skip="true"}Headers, Footers, and Automated Messages{/ts}', 'Headers, Footers, and Automated Messages', 'access CiviMail,administer CiviCRM', 'AND', @adminMailinglastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/admin/messageTemplates&reset=1', '{ts escape="sql" skip="true"}Message Templates{/ts}', 'Message Templates', 'administer CiviCRM', '', @adminMailinglastID, '1', NULL, 2 ), + ( @domainID, 'civicrm/admin/options/from_email&group=from_email_address&reset=1', '{ts escape="sql" skip="true"}From Email Addresses{/ts}', 'From Email Addresses', 'administer CiviCRM', '', @adminMailinglastID, '1', NULL, 3 ), ( @domainID, 'civicrm/admin/mailSettings&reset=1', '{ts escape="sql" skip="true"}Mail Accounts{/ts}', 'Mail Accounts', 'access CiviMail,administer CiviCRM', 'AND', @adminMailinglastID, '1', NULL, 4 ), ( @domainID, 'civicrm/admin/mail&reset=1', '{ts escape="sql" skip="true"}Mailer Settings{/ts}', 'Mailer Settings', 'access CiviMail,administer CiviCRM', 'AND', @adminMailinglastID, '1', NULL, 5 ), ( @domainID, 'civicrm/admin/setting/preferences/mailing&reset=1', '{ts escape="sql" skip="true"}CiviMail Component Settings{/ts}', 'CiviMail Component Settings','access CiviMail,administer CiviCRM', 'AND', @adminMailinglastID, '1', NULL, 6 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}CiviMember{/ts}', 'CiviMember', 'access CiviMember,administer CiviCRM', 'AND', @adminlastID, '1', NULL, 15 ); SET @adminMemberlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/admin/member/membershipType&reset=1', '{ts escape="sql" skip="true"}Membership Types{/ts}', 'Membership Types', 'access CiviMember,administer CiviCRM', 'AND', @adminMemberlastID, '1', NULL, 1 ), +VALUES + ( @domainID, 'civicrm/admin/member/membershipType&reset=1', '{ts escape="sql" skip="true"}Membership Types{/ts}', 'Membership Types', 'access CiviMember,administer CiviCRM', 'AND', @adminMemberlastID, '1', NULL, 1 ), ( @domainID, 'civicrm/admin/member/membershipStatus&reset=1', '{ts escape="sql" skip="true"}Membership Status Rules{/ts}', 'Membership Status Rules', 'access CiviMember,administer CiviCRM', 'AND', @adminMemberlastID, '1', 1, 2 ), ( @domainID, 'civicrm/admin/price&reset=1&action=add', '{ts escape="sql" skip="true"}New Price Set{/ts}', 'New Price Set', 'access CiviMember,administer CiviCRM', 'AND', @adminMemberlastID, '1', NULL, 3 ), ( @domainID, 'civicrm/admin/price&reset=1', '{ts escape="sql" skip="true"}Manage Price Sets{/ts}', 'Manage Price Sets', 'access CiviMember,administer CiviCRM', 'AND', @adminMemberlastID, '1', NULL, 4 ), @@ -572,79 +572,79 @@ VALUES INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}CiviReport{/ts}', 'CiviReport', 'access CiviReport,administer CiviCRM', 'AND', @adminlastID, '1', NULL, 16 ); SET @adminReportlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'civicrm/report/list&reset=1', '{ts escape="sql" skip="true"}All Reports{/ts}', 'All Reports', 'access CiviReport', '', @adminReportlastID, '1', NULL, 1 ), - ( @domainID, 'civicrm/admin/report/template/list&reset=1', '{ts escape="sql" skip="true"}Create New Report from Template{/ts}', 'Create New Report from Template', 'administer Reports', '', @adminReportlastID, '1', NULL, 2 ), +VALUES + ( @domainID, 'civicrm/report/list&reset=1', '{ts escape="sql" skip="true"}All Reports{/ts}', 'All Reports', 'access CiviReport', '', @adminReportlastID, '1', NULL, 1 ), + ( @domainID, 'civicrm/admin/report/template/list&reset=1', '{ts escape="sql" skip="true"}Create New Report from Template{/ts}', 'Create New Report from Template', 'administer Reports', '', @adminReportlastID, '1', NULL, 2 ), ( @domainID, 'civicrm/admin/report/options/report_template&reset=1', '{ts escape="sql" skip="true"}Manage Templates{/ts}', 'Manage Templates', 'administer Reports', '', @adminReportlastID, '1', NULL, 3 ), ( @domainID, 'civicrm/admin/report/register&reset=1', '{ts escape="sql" skip="true"}Register Report{/ts}', 'Register Report', 'administer Reports', '', @adminReportlastID, '1', NULL, 4 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}Help{/ts}', 'Help', NULL, '', NULL, '1', NULL, 110); SET @adminHelplastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES - ( @domainID, 'http://documentation.civicrm.org', '{ts escape="sql" skip="true"}Documentation{/ts}', 'Documentation', NULL, 'AND', @adminHelplastID, '1', NULL, 1 ), - ( @domainID, 'http://forum.civicrm.org', '{ts escape="sql" skip="true"}Community Forums{/ts}', 'Community Forums', NULL, 'AND', @adminHelplastID, '1', NULL, 2 ), - ( @domainID, 'http://civicrm.org/participate', '{ts escape="sql" skip="true"}Participate{/ts}', 'Participate', NULL, 'AND', @adminHelplastID, '1', NULL, 3 ), +VALUES + ( @domainID, 'http://documentation.civicrm.org', '{ts escape="sql" skip="true"}Documentation{/ts}', 'Documentation', NULL, 'AND', @adminHelplastID, '1', NULL, 1 ), + ( @domainID, 'http://forum.civicrm.org', '{ts escape="sql" skip="true"}Community Forums{/ts}', 'Community Forums', NULL, 'AND', @adminHelplastID, '1', NULL, 2 ), + ( @domainID, 'http://civicrm.org/participate', '{ts escape="sql" skip="true"}Participate{/ts}', 'Participate', NULL, 'AND', @adminHelplastID, '1', NULL, 3 ), ( @domainID, 'http://civicrm.org/aboutcivicrm', '{ts escape="sql" skip="true"}About{/ts}', 'About', NULL, 'AND', @adminHelplastID, '1', NULL, 4 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, NULL, '{ts escape="sql" skip="true"}Reports{/ts}', 'Reports', 'access CiviReport', '', NULL, '1', NULL, 95 ); SET @reportlastID:=LAST_INSERT_ID(); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/report/list&compid=99&reset=1', '{ts escape="sql" skip="true"}Contact Reports{/ts}', 'Contact Reports', 'administer CiviCRM', '', @reportlastID, '1', 0, 1 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/report/list&compid=2&reset=1', '{ts escape="sql" skip="true"}Contribution Reports{/ts}', 'Contribution Reports', 'access CiviContribute', '', @reportlastID, '1', 0, 2 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/report/list&compid=6&reset=1', '{ts escape="sql" skip="true"}Pledge Reports{/ts}', 'Pledge Reports', 'access CiviPledge', '', @reportlastID, '1', 0, 3 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/report/list&compid=1&reset=1', '{ts escape="sql" skip="true"}Event Reports{/ts}', 'Event Reports', 'access CiviEvent', '', @reportlastID, '1', 0, 4 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/report/list&compid=4&reset=1', '{ts escape="sql" skip="true"}Mailing Reports{/ts}', 'Mailing Reports', 'access CiviMail', '', @reportlastID, '1', 0, 5 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/report/list&compid=3&reset=1', '{ts escape="sql" skip="true"}Membership Reports{/ts}', 'Membership Reports', 'access CiviMember', '', @reportlastID, '1', 0, 6 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/report/list&compid=9&reset=1', '{ts escape="sql" skip="true"}Campaign Reports{/ts}', 'Campaign Reports', 'interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts', 'OR', @reportlastID, '1', 0, 7 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/report/list&compid=7&reset=1', '{ts escape="sql" skip="true"}Case Reports{/ts}', 'Case Reports', 'access my cases and activities,access all cases and activities,administer CiviCase', 'OR', @reportlastID, '1', 0, 8 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/report/list&compid=5&reset=1', '{ts escape="sql" skip="true"}Grant Reports{/ts}', 'Grant Reports', 'access CiviGrant', '', @reportlastID, '1', 0, 9 ); INSERT INTO civicrm_navigation ( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight ) -VALUES +VALUES ( @domainID, 'civicrm/report/list&reset=1', '{ts escape="sql" skip="true"}All Reports{/ts}', 'All Reports', 'access CiviReport', '', @reportlastID, '1', 1, 10 ); - + -- sample report instances INSERT INTO `civicrm_report_instance` @@ -659,7 +659,7 @@ VALUES INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Activities', 'activity', 'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)', 'administer CiviCRM', '{literal}a:26:{s:6:"fields";a:6:{s:16:"contact_assignee";s:1:"1";s:14:"contact_target";s:1:"1";s:16:"activity_type_id";s:1:"1";s:16:"activity_subject";s:1:"1";s:18:"activity_date_time";s:1:"1";s:9:"status_id";s:1:"1";}s:17:"contact_source_op";s:3:"has";s:20:"contact_source_value";s:0:"";s:19:"contact_assignee_op";s:3:"has";s:22:"contact_assignee_value";s:0:"";s:17:"contact_target_op";s:3:"has";s:20:"contact_target_value";s:0:"";s:15:"current_user_op";s:2:"eq";s:18:"current_user_value";s:1:"0";s:27:"activity_date_time_relative";s:10:"this.month";s:23:"activity_date_time_from";s:0:"";s:21:"activity_date_time_to";s:0:"";s:19:"activity_subject_op";s:3:"has";s:22:"activity_subject_value";s:0:"";s:19:"activity_type_id_op";s:2:"in";s:22:"activity_type_id_value";a:0:{}s:12:"status_id_op";s:2:"in";s:15:"status_id_value";a:0:{}s:11:"description";s:126:"Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:18:"administer CiviCRM";s:6:"groups";s:0:"";s:9:"group_bys";N;s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` @@ -695,126 +695,126 @@ VALUES INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'LYBUNT (last year but not this year)', 'contribute/lybunt', '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.', 'access CiviContribute', '{literal}a:19:{s:6:"fields";a:3:{s:9:"sort_name";s:1:"1";s:5:"email";s:1:"1";s:5:"phone";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:6:"yid_op";s:2:"eq";s:9:"yid_value";s:4:"2011";s:25:"contribution_status_id_op";s:2:"in";s:28:"contribution_status_id_value";a:1:{i:0;s:1:"1";}s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:8:"tagid_op";s:2:"in";s:11:"tagid_value";a:0:{}s:11:"description";s:157:"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.";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:21:"access CiviContribute";s:6:"groups";s:0:"";s:6:"charts";s:0:"";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Contributions by Organization', 'contribute/organizationSummary', 'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.', 'access CiviContribute', '{literal}a:20:{s:6:"fields";a:5:{s:17:"organization_name";s:1:"1";s:9:"sort_name";s:1:"1";s:12:"total_amount";s:1:"1";s:22:"contribution_status_id";s:1:"1";s:12:"receive_date";s:1:"1";}s:20:"organization_name_op";s:3:"has";s:23:"organization_name_value";s:0:"";s:23:"relationship_type_id_op";s:2:"eq";s:26:"relationship_type_id_value";s:5:"4_b_a";s:21:"receive_date_relative";s:1:"0";s:17:"receive_date_from";s:0:"";s:15:"receive_date_to";s:0:"";s:16:"total_amount_min";s:0:"";s:16:"total_amount_max";s:0:"";s:15:"total_amount_op";s:3:"lte";s:18:"total_amount_value";s:0:"";s:25:"contribution_status_id_op";s:2:"in";s:28:"contribution_status_id_value";a:1:{i:0;s:1:"1";}s:11:"description";s:193:"Displays a detailed contribution report for Organization relationships with contributors, as to if contribution done was from an employee of some organization or from that Organization itself.";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:21:"access CiviContribute";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Contributions by Household', 'contribute/householdSummary', 'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.', 'access CiviContribute', '{literal}a:21:{s:6:"fields";a:5:{s:14:"household_name";s:1:"1";s:9:"sort_name";s:1:"1";s:12:"total_amount";s:1:"1";s:22:"contribution_status_id";s:1:"1";s:12:"receive_date";s:1:"1";}s:17:"household_name_op";s:3:"has";s:20:"household_name_value";s:0:"";s:23:"relationship_type_id_op";s:2:"eq";s:26:"relationship_type_id_value";s:5:"6_b_a";s:21:"receive_date_relative";s:1:"0";s:17:"receive_date_from";s:0:"";s:15:"receive_date_to";s:0:"";s:16:"total_amount_min";s:0:"";s:16:"total_amount_max";s:0:"";s:15:"total_amount_op";s:3:"lte";s:18:"total_amount_value";s:0:"";s:25:"contribution_status_id_op";s:2:"in";s:28:"contribution_status_id_value";a:1:{i:0;s:1:"1";}s:11:"description";s:213:"Provides a detailed report for Contributions made by contributors(Or Household itself) who are having a relationship with household (For ex a Contributor is Head of Household for some household or is a member of.)";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:21:"access CiviContribute";s:6:"groups";s:0:"";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Top Donors', 'contribute/topDonor', '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).', 'access CiviContribute', '{literal}a:20:{s:6:"fields";a:2:{s:12:"display_name";s:1:"1";s:12:"total_amount";s:1:"1";}s:21:"receive_date_relative";s:9:"this.year";s:17:"receive_date_from";s:0:"";s:15:"receive_date_to";s:0:"";s:15:"total_range_min";s:0:"";s:15:"total_range_max";s:0:"";s:14:"total_range_op";s:2:"eq";s:17:"total_range_value";s:0:"";s:23:"contribution_type_id_op";s:2:"in";s:26:"contribution_type_id_value";a:0:{}s:25:"contribution_status_id_op";s:2:"in";s:28:"contribution_status_id_value";a:1:{i:0;s:1:"1";}s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:11:"description";s:148:"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).";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:21:"access CiviContribute";s:6:"groups";s:0:"";}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Soft Credits', 'contribute/softcredit', 'Shows contributions made by contacts that have been soft-credited to other contacts.', 'access CiviContribute', '{literal}a:23:{s:6:"fields";a:5:{s:21:"display_name_creditor";s:1:"1";s:24:"display_name_constituent";s:1:"1";s:14:"email_creditor";s:1:"1";s:14:"phone_creditor";s:1:"1";s:12:"total_amount";s:1:"1";}s:5:"id_op";s:2:"in";s:8:"id_value";a:0:{}s:21:"receive_date_relative";s:1:"0";s:17:"receive_date_from";s:0:"";s:15:"receive_date_to";s:0:"";s:25:"contribution_status_id_op";s:2:"in";s:28:"contribution_status_id_value";a:1:{i:0;s:1:"1";}s:16:"total_amount_min";s:0:"";s:16:"total_amount_max";s:0:"";s:15:"total_amount_op";s:3:"lte";s:18:"total_amount_value";s:0:"";s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:8:"tagid_op";s:2:"in";s:11:"tagid_value";a:0:{}s:11:"description";s:20:"Soft Credit details.";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:21:"access CiviContribute";s:6:"groups";s:0:"";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Personal Campaign Page Summary', 'contribute/pcp', 'Summarizes amount raised and number of contributors for each Personal Campaign Page.', 'access CiviContribute', '{literal}a:22:{s:6:"fields";a:8:{s:9:"sort_name";s:1:"1";s:10:"page_title";s:1:"1";s:5:"title";s:1:"1";s:11:"goal_amount";s:1:"1";s:8:"amount_1";s:1:"1";s:8:"amount_2";s:1:"1";s:7:"soft_id";s:1:"1";s:12:"receive_date";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:6:"id_min";s:0:"";s:6:"id_max";s:0:"";s:5:"id_op";s:3:"lte";s:8:"id_value";s:0:"";s:13:"page_title_op";s:3:"has";s:16:"page_title_value";s:0:"";s:8:"title_op";s:3:"has";s:11:"title_value";s:0:"";s:12:"amount_2_min";s:0:"";s:12:"amount_2_max";s:0:"";s:11:"amount_2_op";s:3:"lte";s:14:"amount_2_value";s:0:"";s:11:"description";s:35:"Shows Personal Campaign Page Report";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:21:"access CiviContribute";s:6:"groups";s:0:"";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Pledge Summary', 'pledge/detail', 'Summary of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.', 'access CiviPledge', '{literal}a:27:{s:6:"fields";a:4:{s:9:"sort_name";s:1:"1";s:10:"country_id";s:1:"1";s:6:"amount";s:1:"1";s:9:"status_id";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:6:"id_min";s:0:"";s:6:"id_max";s:0:"";s:5:"id_op";s:3:"lte";s:8:"id_value";s:0:"";s:27:"pledge_create_date_relative";s:1:"0";s:23:"pledge_create_date_from";s:0:"";s:21:"pledge_create_date_to";s:0:"";s:17:"pledge_amount_min";s:0:"";s:17:"pledge_amount_max";s:0:"";s:16:"pledge_amount_op";s:3:"lte";s:19:"pledge_amount_value";s:0:"";s:6:"sid_op";s:2:"in";s:9:"sid_value";a:0:{}s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:8:"tagid_op";s:2:"in";s:11:"tagid_value";a:0:{}s:11:"description";s:13:"Pledge Report";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:17:"access CiviPledge";s:6:"groups";s:0:"";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Pledged But not Paid', 'pledge/pbnp', 'Pledged but not Paid Report', 'access CiviPledge', '{literal}a:17:{s:6:"fields";a:5:{s:9:"sort_name";s:1:"1";s:18:"pledge_create_date";s:1:"1";s:6:"amount";s:1:"1";s:14:"scheduled_date";s:1:"1";s:10:"country_id";s:1:"1";}s:27:"pledge_create_date_relative";s:1:"0";s:23:"pledge_create_date_from";s:0:"";s:21:"pledge_create_date_to";s:0:"";s:23:"contribution_type_id_op";s:2:"in";s:26:"contribution_type_id_value";a:0:{}s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:8:"tagid_op";s:2:"in";s:11:"tagid_value";a:0:{}s:11:"description";s:27:"Pledged but not Paid Report";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:17:"access CiviPledge";s:6:"groups";s:0:"";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Bookkeeping Transactions', 'contribute/bookkeeping', 'Provides transaction details for all contributions and payments, including Transaction #, Invoice ID, Payment Instrument and Check #.', 'access CiviContribute', '{literal}a:25:{s:6:"fields";a:10:{s:9:"sort_name";s:1:"1";s:12:"receive_date";s:1:"1";s:12:"total_amount";s:1:"1";s:20:"contribution_type_id";s:1:"1";s:7:"trxn_id";s:1:"1";s:10:"invoice_id";s:1:"1";s:12:"check_number";s:1:"1";s:21:"payment_instrument_id";s:1:"1";s:22:"contribution_status_id";s:1:"1";s:2:"id";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:6:"id_min";s:0:"";s:6:"id_max";s:0:"";s:5:"id_op";s:3:"lte";s:8:"id_value";s:0:"";s:21:"receive_date_relative";s:1:"0";s:17:"receive_date_from";s:0:"";s:15:"receive_date_to";s:0:"";s:23:"contribution_type_id_op";s:2:"in";s:26:"contribution_type_id_value";a:0:{}s:25:"contribution_status_id_op";s:2:"in";s:28:"contribution_status_id_value";a:1:{i:0;s:1:"1";}s:16:"total_amount_min";s:0:"";s:16:"total_amount_max";s:0:"";s:15:"total_amount_op";s:3:"lte";s:18:"total_amount_value";s:0:"";s:11:"description";s:37:"Shows Bookkeeping Transactions Report";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:21:"access CiviContribute";s:6:"groups";s:0:"";s:9:"domain_id";i:1;}{/literal}'); -- Membership reports INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Membership Summary', 'member/summary', 'Provides a summary of memberships by type and join date.', 'access CiviMember', '{literal}a:18:{s:6:"fields";a:2:{s:18:"membership_type_id";s:1:"1";s:12:"total_amount";s:1:"1";}s:18:"join_date_relative";s:1:"0";s:14:"join_date_from";s:0:"";s:12:"join_date_to";s:0:"";s:21:"membership_type_id_op";s:2:"in";s:24:"membership_type_id_value";a:0:{}s:12:"status_id_op";s:2:"in";s:15:"status_id_value";a:0:{}s:25:"contribution_status_id_op";s:2:"in";s:28:"contribution_status_id_value";a:0:{}s:9:"group_bys";a:2:{s:9:"join_date";s:1:"1";s:18:"membership_type_id";s:1:"1";}s:14:"group_bys_freq";a:1:{s:9:"join_date";s:5:"MONTH";}s:11:"description";s:56:"Provides a summary of memberships by type and join date.";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:17:"access CiviMember";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Membership Details', 'member/detail', '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.', 'access CiviMember', '{literal}a:28:{s:6:"fields";a:5:{s:9:"sort_name";s:1:"1";s:18:"membership_type_id";s:1:"1";s:21:"membership_start_date";s:1:"1";s:19:"membership_end_date";s:1:"1";s:4:"name";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:6:"id_min";s:0:"";s:6:"id_max";s:0:"";s:5:"id_op";s:3:"lte";s:8:"id_value";s:0:"";s:18:"join_date_relative";s:1:"0";s:14:"join_date_from";s:0:"";s:12:"join_date_to";s:0:"";s:23:"owner_membership_id_min";s:0:"";s:23:"owner_membership_id_max";s:0:"";s:22:"owner_membership_id_op";s:3:"lte";s:25:"owner_membership_id_value";s:0:"";s:6:"tid_op";s:2:"in";s:9:"tid_value";a:0:{}s:6:"sid_op";s:2:"in";s:9:"sid_value";a:0:{}s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:8:"tagid_op";s:2:"in";s:11:"tagid_value";a:0:{}s:11:"description";s:119:"Provides a list of members along with their membership status and membership details (Join Date, Start Date, End Date).";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:17:"access CiviMember";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES - ( @domainID, 'Contribution and Membership Details', 'member/contributionDetail', 'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.', 'access CiviMember', '{literal}a:67:{s:6:"fields";a:12:{s:9:"sort_name";s:1:"1";s:5:"email";s:1:"1";s:5:"phone";s:1:"1";s:20:"financial_type_id";s:1:"1";s:12:"receive_date";s:1:"1";s:12:"total_amount";s:1:"1";s:18:"membership_type_id";s:1:"1";s:21:"membership_start_date";s:1:"1";s:19:"membership_end_date";s:1:"1";s:9:"join_date";s:1:"1";s:22:"membership_status_name";s:1:"1";s:10:"country_id";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:6:"id_min";s:0:"";s:6:"id_max";s:0:"";s:5:"id_op";s:3:"lte";s:8:"id_value";s:0:"";s:21:"receive_date_relative";s:1:"0";s:17:"receive_date_from";s:0:"";s:15:"receive_date_to";s:0:"";s:23:"financial_type_id_op";s:2:"in";s:26:"financial_type_id_value";a:0:{}s:24:"payment_instrument_id_op";s:2:"in";s:27:"payment_instrument_id_value";a:0:{}s:25:"contribution_status_id_op";s:2:"in";s:28:"contribution_status_id_value";a:0:{}s:16:"total_amount_min";s:0:"";s:16:"total_amount_max";s:0:"";s:15:"total_amount_op";s:3:"lte";s:18:"total_amount_value";s:0:"";s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:13:"ordinality_op";s:2:"in";s:16:"ordinality_value";a:0:{}s:18:"join_date_relative";s:1:"0";s:14:"join_date_from";s:0:"";s:12:"join_date_to";s:0:"";s:30:"membership_start_date_relative";s:1:"0";s:26:"membership_start_date_from";s:0:"";s:24:"membership_start_date_to";s:0:"";s:28:"membership_end_date_relative";s:1:"0";s:24:"membership_end_date_from";s:0:"";s:22:"membership_end_date_to";s:0:"";s:23:"owner_membership_id_min";s:0:"";s:23:"owner_membership_id_max";s:0:"";s:22:"owner_membership_id_op";s:3:"lte";s:25:"owner_membership_id_value";s:0:"";s:6:"tid_op";s:2:"in";s:9:"tid_value";a:0:{}s:6:"sid_op";s:2:"in";s:9:"sid_value";a:0:{}s:17:"street_number_min";s:0:"";s:17:"street_number_max";s:0:"";s:16:"street_number_op";s:3:"lte";s:19:"street_number_value";s:0:"";s:14:"street_name_op";s:3:"has";s:17:"street_name_value";s:0:"";s:15:"postal_code_min";s:0:"";s:15:"postal_code_max";s:0:"";s:14:"postal_code_op";s:3:"lte";s:17:"postal_code_value";s:0:"";s:7:"city_op";s:3:"has";s:10:"city_value";s:0:"";s:12:"county_id_op";s:2:"in";s:15:"county_id_value";a:0:{}s:20:"state_province_id_op";s:2:"in";s:23:"state_province_id_value";a:0:{}s:13:"country_id_op";s:2:"in";s:16:"country_id_value";a:0:{}s:8:"tagid_op";s:2:"in";s:11:"tagid_value";a:0:{}s:11:"description";s:35:"Contribution and Membership Details";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:1:"0";s:9:"domain_id";i:1;}{s:6:"fields";a:12:{s:9:"sort_name";s:1:"1";s:5:"email";s:1:"1";s:5:"phone";s:1:"1";s:20:"financial_type_id";s:1:"1";s:12:"receive_date";s:1:"1";s:12:"total_amount";s:1:"1";s:18:"membership_type_id";s:1:"1";s:21:"membership_start_date";s:1:"1";s:19:"membership_end_date";s:1:"1";s:9:"join_date";s:1:"1";s:22:"membership_status_name";s:1:"1";s:10:"country_id";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:6:"id_min";s:0:"";s:6:"id_max";s:0:"";s:5:"id_op";s:3:"lte";s:8:"id_value";s:0:"";s:21:"receive_date_relative";s:1:"0";s:17:"receive_date_from";s:0:"";s:15:"receive_date_to";s:0:"";s:23:"financial_type_id_op";s:2:"in";s:26:"financial_type_id_value";a:0:{}s:24:"payment_instrument_id_op";s:2:"in";s:27:"payment_instrument_id_value";a:0:{}s:25:"contribution_status_id_op";s:2:"in";s:28:"contribution_status_id_value";a:0:{}s:16:"total_amount_min";s:0:"";s:16:"total_amount_max";s:0:"";s:15:"total_amount_op";s:3:"lte";s:18:"total_amount_value";s:0:"";s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:13:"ordinality_op";s:2:"in";s:16:"ordinality_value";a:0:{}s:18:"join_date_relative";s:1:"0";s:14:"join_date_from";s:0:"";s:12:"join_date_to";s:0:"";s:30:"membership_start_date_relative";s:1:"0";s:26:"membership_start_date_from";s:0:"";s:24:"membership_start_date_to";s:0:"";s:28:"membership_end_date_relative";s:1:"0";s:24:"membership_end_date_from";s:0:"";s:22:"membership_end_date_to";s:0:"";s:23:"owner_membership_id_min";s:0:"";s:23:"owner_membership_id_max";s:0:"";s:22:"owner_membership_id_op";s:3:"lte";s:25:"owner_membership_id_value";s:0:"";s:6:"tid_op";s:2:"in";s:9:"tid_value";a:0:{}s:6:"sid_op";s:2:"in";s:9:"sid_value";a:0:{}s:17:"street_number_min";s:0:"";s:17:"street_number_max";s:0:"";s:16:"street_number_op";s:3:"lte";s:19:"street_number_value";s:0:"";s:14:"street_name_op";s:3:"has";s:17:"street_name_value";s:0:"";s:15:"postal_code_min";s:0:"";s:15:"postal_code_max";s:0:"";s:14:"postal_code_op";s:3:"lte";s:17:"postal_code_value";s:0:"";s:7:"city_op";s:3:"has";s:10:"city_value";s:0:"";s:12:"county_id_op";s:2:"in";s:15:"county_id_value";a:0:{}s:20:"state_province_id_op";s:2:"in";s:23:"state_province_id_value";a:0:{}s:13:"country_id_op";s:2:"in";s:16:"country_id_value";a:0:{}s:8:"tagid_op";s:2:"in";s:11:"tagid_value";a:0:{}s:11:"description";s:35:"Contribution and Membership Details";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:17:"access CiviMember";s:9:"domain_id";i:1;}{/literal}'); +VALUES + ( @domainID, 'Contribution and Membership Details', 'member/contributionDetail', 'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.', 'access CiviMember', '{literal}a:67:{s:6:"fields";a:12:{s:9:"sort_name";s:1:"1";s:5:"email";s:1:"1";s:5:"phone";s:1:"1";s:17:"financial_type_id";s:1:"1";s:12:"receive_date";s:1:"1";s:12:"total_amount";s:1:"1";s:18:"membership_type_id";s:1:"1";s:21:"membership_start_date";s:1:"1";s:19:"membership_end_date";s:1:"1";s:9:"join_date";s:1:"1";s:22:"membership_status_name";s:1:"1";s:10:"country_id";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:6:"id_min";s:0:"";s:6:"id_max";s:0:"";s:5:"id_op";s:3:"lte";s:8:"id_value";s:0:"";s:21:"receive_date_relative";s:1:"0";s:17:"receive_date_from";s:0:"";s:15:"receive_date_to";s:0:"";s:20:"financial_type_id_op";s:2:"in";s:23:"financial_type_id_value";a:0:{}s:24:"payment_instrument_id_op";s:2:"in";s:27:"payment_instrument_id_value";a:0:{}s:25:"contribution_status_id_op";s:2:"in";s:28:"contribution_status_id_value";a:0:{}s:16:"total_amount_min";s:0:"";s:16:"total_amount_max";s:0:"";s:15:"total_amount_op";s:3:"lte";s:18:"total_amount_value";s:0:"";s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:13:"ordinality_op";s:2:"in";s:16:"ordinality_value";a:0:{}s:18:"join_date_relative";s:1:"0";s:14:"join_date_from";s:0:"";s:12:"join_date_to";s:0:"";s:30:"membership_start_date_relative";s:1:"0";s:26:"membership_start_date_from";s:0:"";s:24:"membership_start_date_to";s:0:"";s:28:"membership_end_date_relative";s:1:"0";s:24:"membership_end_date_from";s:0:"";s:22:"membership_end_date_to";s:0:"";s:23:"owner_membership_id_min";s:0:"";s:23:"owner_membership_id_max";s:0:"";s:22:"owner_membership_id_op";s:3:"lte";s:25:"owner_membership_id_value";s:0:"";s:6:"tid_op";s:2:"in";s:9:"tid_value";a:0:{}s:6:"sid_op";s:2:"in";s:9:"sid_value";a:0:{}s:17:"street_number_min";s:0:"";s:17:"street_number_max";s:0:"";s:16:"street_number_op";s:3:"lte";s:19:"street_number_value";s:0:"";s:14:"street_name_op";s:3:"has";s:17:"street_name_value";s:0:"";s:15:"postal_code_min";s:0:"";s:15:"postal_code_max";s:0:"";s:14:"postal_code_op";s:3:"lte";s:17:"postal_code_value";s:0:"";s:7:"city_op";s:3:"has";s:10:"city_value";s:0:"";s:12:"county_id_op";s:2:"in";s:15:"county_id_value";a:0:{}s:20:"state_province_id_op";s:2:"in";s:23:"state_province_id_value";a:0:{}s:13:"country_id_op";s:2:"in";s:16:"country_id_value";a:0:{}s:8:"tagid_op";s:2:"in";s:11:"tagid_value";a:0:{}s:11:"description";s:35:"Contribution and Membership Details";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:1:"0";s:9:"domain_id";i:1;}{s:6:"fields";a:12:{s:9:"sort_name";s:1:"1";s:5:"email";s:1:"1";s:5:"phone";s:1:"1";s:17:"financial_type_id";s:1:"1";s:12:"receive_date";s:1:"1";s:12:"total_amount";s:1:"1";s:18:"membership_type_id";s:1:"1";s:21:"membership_start_date";s:1:"1";s:19:"membership_end_date";s:1:"1";s:9:"join_date";s:1:"1";s:22:"membership_status_name";s:1:"1";s:10:"country_id";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:6:"id_min";s:0:"";s:6:"id_max";s:0:"";s:5:"id_op";s:3:"lte";s:8:"id_value";s:0:"";s:21:"receive_date_relative";s:1:"0";s:17:"receive_date_from";s:0:"";s:15:"receive_date_to";s:0:"";s:20:"financial_type_id_op";s:2:"in";s:23:"financial_type_id_value";a:0:{}s:24:"payment_instrument_id_op";s:2:"in";s:27:"payment_instrument_id_value";a:0:{}s:25:"contribution_status_id_op";s:2:"in";s:28:"contribution_status_id_value";a:0:{}s:16:"total_amount_min";s:0:"";s:16:"total_amount_max";s:0:"";s:15:"total_amount_op";s:3:"lte";s:18:"total_amount_value";s:0:"";s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:13:"ordinality_op";s:2:"in";s:16:"ordinality_value";a:0:{}s:18:"join_date_relative";s:1:"0";s:14:"join_date_from";s:0:"";s:12:"join_date_to";s:0:"";s:30:"membership_start_date_relative";s:1:"0";s:26:"membership_start_date_from";s:0:"";s:24:"membership_start_date_to";s:0:"";s:28:"membership_end_date_relative";s:1:"0";s:24:"membership_end_date_from";s:0:"";s:22:"membership_end_date_to";s:0:"";s:23:"owner_membership_id_min";s:0:"";s:23:"owner_membership_id_max";s:0:"";s:22:"owner_membership_id_op";s:3:"lte";s:25:"owner_membership_id_value";s:0:"";s:6:"tid_op";s:2:"in";s:9:"tid_value";a:0:{}s:6:"sid_op";s:2:"in";s:9:"sid_value";a:0:{}s:17:"street_number_min";s:0:"";s:17:"street_number_max";s:0:"";s:16:"street_number_op";s:3:"lte";s:19:"street_number_value";s:0:"";s:14:"street_name_op";s:3:"has";s:17:"street_name_value";s:0:"";s:15:"postal_code_min";s:0:"";s:15:"postal_code_max";s:0:"";s:14:"postal_code_op";s:3:"lte";s:17:"postal_code_value";s:0:"";s:7:"city_op";s:3:"has";s:10:"city_value";s:0:"";s:12:"county_id_op";s:2:"in";s:15:"county_id_value";a:0:{}s:20:"state_province_id_op";s:2:"in";s:23:"state_province_id_value";a:0:{}s:13:"country_id_op";s:2:"in";s:16:"country_id_value";a:0:{}s:8:"tagid_op";s:2:"in";s:11:"tagid_value";a:0:{}s:11:"description";s:35:"Contribution and Membership Details";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:17:"access CiviMember";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Lapsed Memberships', 'member/lapse', 'Provides a list of memberships that have lapsed or will lapse by the date you specify.', 'access CiviMember', '{literal}a:16:{s:6:"fields";a:5:{s:9:"sort_name";s:1:"1";s:18:"membership_type_id";s:1:"1";s:19:"membership_end_date";s:1:"1";s:4:"name";s:1:"1";s:10:"country_id";s:1:"1";}s:6:"tid_op";s:2:"in";s:9:"tid_value";a:0:{}s:28:"membership_end_date_relative";s:1:"0";s:24:"membership_end_date_from";s:0:"";s:22:"membership_end_date_to";s:0:"";s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:8:"tagid_op";s:2:"in";s:11:"tagid_value";a:0:{}s:11:"description";s:85:"Provides a list of memberships that lapsed or will lapse before the date you specify.";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:17:"access CiviMember";s:9:"domain_id";i:1;}{/literal}'); -- Event reports INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Event Participants List', 'event/participantListing', 'Provides lists of participants for an event.', 'access CiviEvent', '{literal}a:27:{s:6:"fields";a:4:{s:9:"sort_name";s:1:"1";s:8:"event_id";s:1:"1";s:9:"status_id";s:1:"1";s:7:"role_id";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:8:"email_op";s:3:"has";s:11:"email_value";s:0:"";s:11:"event_id_op";s:2:"in";s:14:"event_id_value";a:0:{}s:6:"sid_op";s:2:"in";s:9:"sid_value";a:0:{}s:6:"rid_op";s:2:"in";s:9:"rid_value";a:0:{}s:34:"participant_register_date_relative";s:1:"0";s:30:"participant_register_date_from";s:0:"";s:28:"participant_register_date_to";s:0:"";s:6:"eid_op";s:2:"in";s:9:"eid_value";a:0:{}s:11:"custom_4_op";s:2:"in";s:14:"custom_4_value";a:0:{}s:16:"blank_column_end";s:0:"";s:11:"description";s:44:"Provides lists of participants for an event.";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:16:"access CiviEvent";s:6:"groups";s:0:"";s:7:"options";N;s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Event Income Summary', 'event/summary', '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.', 'access CiviEvent', '{literal}a:18:{s:6:"fields";a:2:{s:5:"title";s:1:"1";s:13:"event_type_id";s:1:"1";}s:5:"id_op";s:2:"in";s:8:"id_value";a:0:{}s:16:"event_type_id_op";s:2:"in";s:19:"event_type_id_value";a:0:{}s:25:"event_start_date_relative";s:1:"0";s:21:"event_start_date_from";s:0:"";s:19:"event_start_date_to";s:0:"";s:23:"event_end_date_relative";s:1:"0";s:19:"event_end_date_from";s:0:"";s:17:"event_end_date_to";s:0:"";s:11:"description";s:181:"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.";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:16:"access CiviEvent";s:6:"charts";s:0:"";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Event Income Details', 'event/income', 'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.', 'access CiviEvent', '{literal}a:7:{s:5:"id_op";s:2:"in";s:8:"id_value";N;s:11:"description";s:133:"Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:16:"access CiviEvent";}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Attendee List', 'event/participantListing', 'Provides lists of event attendees.', 'access CiviEvent', '{literal}a:27:{s:6:"fields";a:4:{s:9:"sort_name";s:1:"1";s:8:"event_id";s:1:"1";s:9:"status_id";s:1:"1";s:7:"role_id";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:8:"email_op";s:3:"has";s:11:"email_value";s:0:"";s:11:"event_id_op";s:2:"in";s:14:"event_id_value";a:0:{}s:6:"sid_op";s:2:"in";s:9:"sid_value";a:0:{}s:6:"rid_op";s:2:"in";s:9:"rid_value";a:0:{}s:34:"participant_register_date_relative";s:1:"0";s:30:"participant_register_date_from";s:0:"";s:28:"participant_register_date_to";s:0:"";s:6:"eid_op";s:2:"in";s:9:"eid_value";a:0:{}s:11:"custom_4_op";s:2:"in";s:14:"custom_4_value";a:0:{}s:16:"blank_column_end";s:0:"";s:11:"description";s:44:"Provides lists of participants for an event.";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:16:"access CiviEvent";s:6:"groups";s:0:"";s:7:"options";N;s:9:"domain_id";i:1;}{/literal}'); -- Grant reports INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Grant Details', 'grant/detail', 'Grant Report Detail', 'access CiviGrant', '{literal}a:40:{s:6:"fields";a:2:{s:9:"sort_name";s:1:"1";s:25:"application_received_date";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:12:"gender_id_op";s:2:"in";s:15:"gender_id_value";a:0:{}s:6:"id_min";s:0:"";s:6:"id_max";s:0:"";s:5:"id_op";s:3:"lte";s:8:"id_value";s:0:"";s:13:"country_id_op";s:2:"in";s:16:"country_id_value";a:0:{}s:20:"state_province_id_op";s:2:"in";s:23:"state_province_id_value";a:0:{}s:13:"grant_type_op";s:2:"in";s:16:"grant_type_value";a:0:{}s:12:"status_id_op";s:2:"in";s:15:"status_id_value";a:0:{}s:18:"amount_granted_min";s:0:"";s:18:"amount_granted_max";s:0:"";s:17:"amount_granted_op";s:3:"lte";s:20:"amount_granted_value";s:0:"";s:20:"amount_requested_min";s:0:"";s:20:"amount_requested_max";s:0:"";s:19:"amount_requested_op";s:3:"lte";s:22:"amount_requested_value";s:0:"";s:34:"application_received_date_relative";s:1:"0";s:30:"application_received_date_from";s:0:"";s:28:"application_received_date_to";s:0:"";s:28:"money_transfer_date_relative";s:1:"0";s:24:"money_transfer_date_from";s:0:"";s:22:"money_transfer_date_to";s:0:"";s:23:"grant_due_date_relative";s:1:"0";s:19:"grant_due_date_from";s:0:"";s:17:"grant_due_date_to";s:0:"";s:11:"description";s:19:"Grant Report Detail";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:16:"access CiviGrant";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Grant Statistics', 'grant/statistics', 'Grant Report Statistics', 'access CiviGrant', '{literal}a:42:{s:6:"fields";a:2:{s:18:"summary_statistics";s:1:"1";s:13:"grant_type_id";s:1:"1";}s:34:"application_received_date_relative";s:1:"0";s:30:"application_received_date_from";s:0:"";s:28:"application_received_date_to";s:0:"";s:22:"decision_date_relative";s:1:"0";s:18:"decision_date_from";s:0:"";s:16:"decision_date_to";s:0:"";s:28:"money_transfer_date_relative";s:1:"0";s:24:"money_transfer_date_from";s:0:"";s:22:"money_transfer_date_to";s:0:"";s:23:"grant_due_date_relative";s:1:"0";s:19:"grant_due_date_from";s:0:"";s:17:"grant_due_date_to";s:0:"";s:13:"grant_type_op";s:2:"in";s:16:"grant_type_value";a:0:{}s:12:"status_id_op";s:2:"in";s:15:"status_id_value";a:0:{}s:20:"amount_requested_min";s:0:"";s:20:"amount_requested_max";s:0:"";s:19:"amount_requested_op";s:3:"lte";s:22:"amount_requested_value";s:0:"";s:18:"amount_granted_min";s:0:"";s:18:"amount_granted_max";s:0:"";s:17:"amount_granted_op";s:3:"lte";s:20:"amount_granted_value";s:0:"";s:24:"grant_report_received_op";s:2:"eq";s:27:"grant_report_received_value";s:0:"";s:12:"gender_id_op";s:2:"in";s:15:"gender_id_value";a:0:{}s:15:"contact_type_op";s:2:"in";s:18:"contact_type_value";a:0:{}s:12:"region_id_op";s:2:"in";s:15:"region_id_value";a:0:{}s:13:"country_id_op";s:2:"in";s:16:"country_id_value";a:0:{}s:11:"description";s:23:"Grant Report Statistics";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:16:"access CiviGrant";s:9:"parent_id";s:0:"";s:9:"domain_id";i:1;}{/literal}'); -- Mailing Reports INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Mail Bounces', 'Mailing/bounce', 'Bounce Report for mailings', 'access CiviMail', '{literal}a:33:{s:6:"fields";a:5:{s:2:"id";s:1:"1";s:10:"first_name";s:1:"1";s:9:"last_name";s:1:"1";s:11:"bounce_name";s:1:"1";s:5:"email";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:9:"source_op";s:3:"has";s:12:"source_value";s:0:"";s:6:"id_min";s:0:"";s:6:"id_max";s:0:"";s:5:"id_op";s:3:"lte";s:8:"id_value";s:0:"";s:15:"mailing_name_op";s:2:"in";s:18:"mailing_name_value";a:0:{}s:19:"bounce_type_name_op";s:2:"eq";s:22:"bounce_type_name_value";s:0:"";s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:8:"tagid_op";s:2:"in";s:11:"tagid_value";a:0:{}s:11:"custom_1_op";s:2:"in";s:14:"custom_1_value";a:0:{}s:11:"custom_2_op";s:2:"in";s:14:"custom_2_value";a:0:{}s:17:"custom_3_relative";s:1:"0";s:13:"custom_3_from";s:0:"";s:11:"custom_3_to";s:0:"";s:9:"order_bys";a:1:{i:1;a:1:{s:6:"column";s:1:"-";}}s:11:"description";s:26:"Bounce Report for mailings";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:15:"access CiviMail";s:6:"groups";s:0:"";s:6:"charts";s:0:"";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Mailing Summary', 'Mailing/summary','Summary statistics for mailings','access CiviMail','{literal}a:25:{s:6:"fields";a:5:{s:4:"name";s:1:"1";s:11:"queue_count";s:1:"1";s:15:"delivered_count";s:1:"1";s:12:"bounce_count";s:1:"1";s:10:"open_count";s:1:"1";}s:15:"is_completed_op";s:2:"eq";s:18:"is_completed_value";s:1:"1";s:15:"mailing_name_op";s:2:"in";s:18:"mailing_name_value";a:0:{}s:9:"status_op";s:3:"has";s:12:"status_value";s:8:"Complete";s:11:"is_test_min";s:0:"";s:11:"is_test_max";s:0:"";s:10:"is_test_op";s:3:"lte";s:13:"is_test_value";s:1:"0";s:19:"start_date_relative";s:9:"this.year";s:15:"start_date_from";s:0:"";s:13:"start_date_to";s:0:"";s:17:"end_date_relative";s:9:"this.year";s:13:"end_date_from";s:0:"";s:11:"end_date_to";s:0:"";s:11:"description";s:31:"Summary statistics for mailings";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:15:"access CiviMail";s:6:"groups";s:0:"";s:6:"charts";s:0:"";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Mail Opened', 'Mailing/opened', 'Display contacts who opened emails from a mailing', 'access CiviMail', '{literal}a:31:{s:6:"fields";a:5:{s:2:"id";s:1:"1";s:10:"first_name";s:1:"1";s:9:"last_name";s:1:"1";s:12:"mailing_name";s:1:"1";s:5:"email";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:9:"source_op";s:3:"has";s:12:"source_value";s:0:"";s:6:"id_min";s:0:"";s:6:"id_max";s:0:"";s:5:"id_op";s:3:"lte";s:8:"id_value";s:0:"";s:15:"mailing_name_op";s:2:"in";s:18:"mailing_name_value";a:0:{}s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:8:"tagid_op";s:2:"in";s:11:"tagid_value";a:0:{}s:11:"custom_1_op";s:2:"in";s:14:"custom_1_value";a:0:{}s:11:"custom_2_op";s:2:"in";s:14:"custom_2_value";a:0:{}s:17:"custom_3_relative";s:1:"0";s:13:"custom_3_from";s:0:"";s:11:"custom_3_to";s:0:"";s:9:"order_bys";a:1:{i:1;a:1:{s:6:"column";s:1:"-";}}s:11:"description";s:49:"Display contacts who opened emails from a mailing";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:15:"access CiviMail";s:6:"groups";s:0:"";s:6:"charts";s:0:"";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Mail Clickthroughs', 'Mailing/clicks', 'Display clicks from each mailing', 'access CiviMail', '{literal}a:31:{s:6:"fields";a:6:{s:2:"id";s:1:"1";s:10:"first_name";s:1:"1";s:9:"last_name";s:1:"1";s:12:"mailing_name";s:1:"1";s:5:"email";s:1:"1";s:3:"url";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:9:"source_op";s:3:"has";s:12:"source_value";s:0:"";s:6:"id_min";s:0:"";s:6:"id_max";s:0:"";s:5:"id_op";s:3:"lte";s:8:"id_value";s:0:"";s:15:"mailing_name_op";s:2:"in";s:18:"mailing_name_value";a:0:{}s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:8:"tagid_op";s:2:"in";s:11:"tagid_value";a:0:{}s:11:"custom_1_op";s:2:"in";s:14:"custom_1_value";a:0:{}s:11:"custom_2_op";s:2:"in";s:14:"custom_2_value";a:0:{}s:17:"custom_3_relative";s:1:"0";s:13:"custom_3_from";s:0:"";s:11:"custom_3_to";s:0:"";s:9:"order_bys";a:1:{i:1;a:1:{s:6:"column";s:1:"-";}}s:11:"description";s:32:"Display clicks from each mailing";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:15:"access CiviMail";s:6:"groups";s:0:"";s:6:"charts";s:0:"";s:9:"domain_id";i:1;}{/literal}'); INSERT INTO `civicrm_report_instance` ( `domain_id`, `title`, `report_id`, `description`, `permission`, `form_values`) -VALUES +VALUES ( @domainID, 'Mailing Details', 'mailing/detail', 'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.', 'access CiviMail', '{literal}a:30:{s:6:"fields";a:6:{s:9:"sort_name";s:1:"1";s:12:"mailing_name";s:1:"1";s:11:"delivery_id";s:1:"1";s:14:"unsubscribe_id";s:1:"1";s:9:"optout_id";s:1:"1";s:5:"email";s:1:"1";}s:12:"sort_name_op";s:3:"has";s:15:"sort_name_value";s:0:"";s:6:"id_min";s:0:"";s:6:"id_max";s:0:"";s:5:"id_op";s:3:"lte";s:8:"id_value";s:0:"";s:13:"mailing_id_op";s:2:"in";s:16:"mailing_id_value";a:0:{}s:18:"delivery_status_op";s:2:"eq";s:21:"delivery_status_value";s:0:"";s:18:"is_unsubscribed_op";s:2:"eq";s:21:"is_unsubscribed_value";s:0:"";s:12:"is_optout_op";s:2:"eq";s:15:"is_optout_value";s:0:"";s:13:"is_replied_op";s:2:"eq";s:16:"is_replied_value";s:0:"";s:15:"is_forwarded_op";s:2:"eq";s:18:"is_forwarded_value";s:0:"";s:6:"gid_op";s:2:"in";s:9:"gid_value";a:0:{}s:9:"order_bys";a:1:{i:1;a:2:{s:6:"column";s:9:"sort_name";s:5:"order";s:3:"ASC";}}s:11:"description";s:21:"Mailing Detail Report";s:13:"email_subject";s:0:"";s:8:"email_to";s:0:"";s:8:"email_cc";s:0:"";s:10:"permission";s:15:"access CiviMail";s:9:"parent_id";s:0:"";s:6:"groups";s:0:"";s:9:"domain_id";i:1;}{/literal}'); -- walk list survey report. -- 2.25.1