CRM-13964 minor improvement and CRM-13965 partial fix
authorPratik Joshi <pratik.joshi@webaccess.co.in>
Wed, 8 Jan 2014 17:44:02 +0000 (23:14 +0530)
committerPratik Joshi <pratik.joshi@webaccess.co.in>
Thu, 16 Jan 2014 01:43:16 +0000 (07:13 +0530)
CRM/Contribute/BAO/Contribution.php
CRM/Contribute/Form/AdditionalPayment.php [new file with mode: 0644]
CRM/Contribute/xml/Menu/Contribute.xml
CRM/Core/BAO/FinancialTrxn.php
CRM/Upgrade/Incremental/sql/4.5.alpha1.mysql.tpl
sql/civicrm_generated.mysql
templates/CRM/Contribute/Form/AdditionalPayment.hlp [new file with mode: 0644]
templates/CRM/Contribute/Form/AdditionalPayment.tpl [new file with mode: 0644]
xml/templates/civicrm_data.tpl

index 3febc867c35cf543a3c007dec22367945b190d5b..dfcc370cb8e45343ba01695f0af0cfd49f198eaa 100644 (file)
@@ -2506,7 +2506,7 @@ WHERE  contribution_id = %1 ";
    * @access public
    * @static
    */
-  static function recordFinancialAccounts(&$params) {
+  static function recordFinancialAccounts(&$params, $financialTrxnVals = NULL) {
     $skipRecords = $update = FALSE;
     $additionalParticipantId = array();
     $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
@@ -2540,28 +2540,20 @@ WHERE  contribution_id = %1 ";
       $partialAmtPay = $params['partial_amount_pay'];
       $partialAmtTotal = $params['partial_payment_total'];
 
+      $relationTypeId = key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Accounts Receivable Account is' "));
+      $fromFinancialAccountId = CRM_Contribute_PseudoConstant::financialAccountType($params['financial_type_id'], $relationTypeId);
       $statusId = CRM_Core_OptionGroup::getValue('contribution_status', 'Completed', 'name');
       $params['total_amount'] = $partialAmtPay;
-      /* new creation of financial trasaction for the balance amount
-         steps followed:
-         fetch the current balance, if balance is not present add the balance after appropriate calculation
-         if balance is present take the current amount and re-calculate the balance and update the balance stored in DB
-      */
+
       $balanceTrxnInfo = CRM_Core_BAO_FinancialTrxn::getBalanceTrxnAmt($params['contribution']->id, $params['financial_type_id']);
-      if (!empty($balanceTrxnInfo['trxn_id'])) {
-        // update the balance amt
-        $balanceTrxnParams['total_amount'] = $balanceTrxnInfo['total_amount'] - $partialAmtPay;
-        $balanceTrxnParams['id'] = $balanceTrxnInfo['trxn_id'];
-      }
-      else {
+      if (empty($balanceTrxnInfo['trxn_id'])) {
         // create new balance transaction record
         $relationTypeId = key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Accounts Receivable Account is' "));
         $toFinancialAccount = CRM_Contribute_PseudoConstant::financialAccountType($params['financial_type_id'], $relationTypeId);
 
-        $balanceTrxnParams['total_amount'] = $partialAmtTotal - $partialAmtPay;
+        $balanceTrxnParams['total_amount'] = $partialAmtTotal;
         $balanceTrxnParams['to_financial_account_id'] = $toFinancialAccount;
         $balanceTrxnParams['contribution_id'] = $params['contribution']->id;
-
         $balanceTrxnParams['trxn_date'] = date('YmdHis');
         $balanceTrxnParams['fee_amount'] = CRM_Utils_Array::value('fee_amount', $params);
         $balanceTrxnParams['net_amount'] = CRM_Utils_Array::value('net_amount', $params);
@@ -2573,8 +2565,8 @@ WHERE  contribution_id = %1 ";
         if (CRM_Utils_Array::value('payment_processor', $params)) {
           $balanceTrxnParams['payment_processor_id'] = $params['payment_processor'];
         }
+        CRM_Core_BAO_FinancialTrxn::create($balanceTrxnParams);
       }
-      CRM_Core_BAO_FinancialTrxn::create($balanceTrxnParams);
     }
 
     // build line item array if its not set in $params
@@ -2624,6 +2616,16 @@ WHERE  contribution_id = %1 ";
       if (CRM_Utils_Array::value('payment_processor', $params)) {
         $trxnParams['payment_processor_id'] = $params['payment_processor'];
       }
+
+      if (isset($fromFinancialAccountId)) {
+        $trxnParams['from_financial_account_id'] = $fromFinancialAccountId;
+      }
+
+      // consider external values passed for recording transaction entry
+      if (!empty($financialTrxnVals)) {
+        $trxnParams = array_merge($trxnParams, $financialTrxnVals);
+      }
+
       $params['trxnParams'] = $trxnParams;
 
       if (CRM_Utils_Array::value('prevContribution', $params)) {
@@ -3002,6 +3004,65 @@ WHERE  contribution_id = %1 ";
     }
     return FALSE;
   }
-}
-
 
+  static function recordAdditionPayment($contributionId, $trxnsData, $paymentType, $participantId = NULL) {
+    // FIXME : needs handling of partial payment validness checking, if its valid then only record new entries
+    $params = $ids = $defaults = array();
+    $getInfoOf['id'] = $contributionId;
+
+    // build params for recording financial trxn entry
+    $contributionDAO = CRM_Contribute_BAO_Contribution::retrieve($getInfoOf, $defaults, $ids);
+    $params['contribution'] = $contributionDAO;
+    $params = array_merge($defaults, $params);
+    $params['skipLineItem'] = TRUE;
+    $params['partial_payment_total'] = $contributionDAO->total_amount;
+    $params['partial_amount_pay'] = $trxnsData['total_amount'];
+
+    // record the entry
+    CRM_Contribute_BAO_Contribution::recordFinancialAccounts($params, $trxnsData);
+
+    $statusId = CRM_Core_OptionGroup::getValue('contribution_status', 'Completed', 'name');
+    $relationTypeId = key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Accounts Receivable Account is' "));
+    $toFinancialAccount = CRM_Contribute_PseudoConstant::financialAccountType($contributionDAO->financial_type_id, $relationTypeId);
+
+    $trxnId = CRM_Core_BAO_FinancialTrxn::getBalanceTrxnAmt($contributionId, $contributionDAO->financial_type_id);
+    $trxnId = $trxnId['trxn_id'];
+
+    // update statuses
+    // criteria for updates contribution total_amount == financial_trxns of partial_payments
+    $sql = "SELECT SUM(ft.total_amount) as sum_of_payments
+FROM civicrm_financial_trxn ft
+LEFT JOIN civicrm_entity_financial_trxn eft ON (ft.id = eft.financial_trxn_id)
+WHERE eft.entity_table = 'civicrm_contribution' AND eft.entity_id = {$contributionId} AND ft.to_financial_account_id != {$toFinancialAccount} AND ft.status_id = {$statusId}
+";
+    $sumOfPayments = CRM_Core_DAO::singleValueQuery($sql);
+    if ($contributionDAO->total_amount == $sumOfPayments) {
+      // update statuses
+      // update contribution status
+      $contributionUpdate['id'] = $contributionId;
+      $contributionUpdate['contribution_status_id'] = $statusId;
+      $contributionUpdate['skipLineItem'] = TRUE;
+      $contributionDetails = self::add($contributionUpdate);
+
+      if ($participantId) {
+        // update participant status
+        $participantUpdate['id'] = $participantId;
+        $participantStatuses = CRM_Event_PseudoConstant::participantStatus();
+        $participantUpdate['status_id'] = array_search('Registered', $participantStatuses);
+        CRM_Event_BAO_Participant::add($participantUpdate);
+      }
+
+      /*      // update financial item statuses */
+      /*       $financialItemStatus = CRM_Core_PseudoConstant::get('CRM_Financial_DAO_FinancialItem', 'status_id'); */
+      /*       $paidStatus = array_search('Paid', $financialItemStatus); */
+      /*       $sqlFinancialItemUpdate = " */
+      /* UPDATE fi */
+      /* SET status_id = {$paidStatus} */
+      /* FROM civicrm_financial_item fi */
+      /* LEFT JOIN civicrm_entity_financial_trxn eft ON (eft.entity_id = fi.id AND eft.entity_table = 'civicrm_financial_item') */
+      /* WHERE eft.financial_trxn_id = {$trxnId} */
+      /* "; */
+      /*       CRM_Core_DAO::executeQuery($sqlFinancialItemUpdate); */
+    }
+  }
+}
\ No newline at end of file
diff --git a/CRM/Contribute/Form/AdditionalPayment.php b/CRM/Contribute/Form/AdditionalPayment.php
new file mode 100644 (file)
index 0000000..8d5311d
--- /dev/null
@@ -0,0 +1,322 @@
+<?php
+/*
+ +--------------------------------------------------------------------+
+ | CiviCRM version 4.4                                                |
+ +--------------------------------------------------------------------+
+ | 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 usefusul, 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        |
+ +--------------------------------------------------------------------+
+*/
+
+/**
+ *
+ * @package CRM
+ * @copyright CiviCRM LLC (c) 2004-2013
+ * $Id$
+ *
+ */
+
+/**
+ * This form records additional payments needed when
+ * event/contribution is partially paid
+ *
+ */
+class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_AbstractEditPayment {
+  public $_contributeMode = 'direct';
+
+  /**
+   * related component whose financial payment is being processed
+   *
+   * @var string
+   * @public
+   */
+  protected $_component = NULL;
+
+  /**
+   * id of the component entity
+   */
+  public $_id = NULL;
+
+  protected $_owed = NULL;
+
+  protected $_refund = NULL;
+
+  protected $_contactId = NULL;
+
+  protected $_contributorDisplayName = NULL;
+
+  protected $_contributorEmail = NULL;
+
+  protected $_toDoNotEmail = NULL;
+
+  protected $_paymentType = NULL;
+
+  protected $_contributionId = NULL;
+
+  public function preProcess() {
+    $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this, TRUE);
+    $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE);
+    $this->_component = CRM_Utils_Request::retrieve('component', 'String', $this, TRUE);
+    $this->_fromEmails = CRM_Core_BAO_Email::getFromEmail();
+    $this->_formType = CRM_Utils_Array::value('formType', $_GET);
+
+    $enitityType = NULL;
+    if ($this->_component == 'event') {
+      $enitityType = 'participant';
+      $this->_contributionId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment', $this->_id, 'contribution_id', 'participant_id');
+    }
+
+    $paymentInfo = CRM_Core_BAO_FinancialTrxn::getPartialPaymentWithType($this->_id, $enitityType);
+
+    if (!empty($paymentInfo['refund_due'])) {
+      $paymentAmt = $this->_refund = $paymentInfo['refund_due'];
+      $this->_paymentType = 'refund';
+    }
+    elseif (!empty($paymentInfo['amount_owed'])) {
+      $paymentAmt = $this->_owed = $paymentInfo['amount_owed'];
+      $this->_paymentType = 'owed';
+    }
+    else {
+      CRM_Core_Error::fatal(ts('No payment information found for this record'));
+    }
+
+    list($this->_contributorDisplayName, $this->_contributorEmail) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactId);
+    //set the payment mode - _mode property is defined in parent class
+    $this->_mode = CRM_Utils_Request::retrieve('mode', 'String', $this);
+
+    $this->assignProcessors();
+
+    // also check for billing information
+    // get the billing location type
+    $this->assignBillingType();
+
+    $this->assign('contributionMode', $this->_mode);
+    $this->assign('contactId', $this->_contactId);
+    $this->assign('component', $this->_component);
+    $this->assign('id', $this->_id);
+    $this->assign('paymentType', $this->_paymentType);
+    $this->assign('paymentAmt', $paymentAmt);
+
+    $this->_paymentProcessor = array('billing_mode' => 1);
+
+    $title = ($this->_refund) ? "Refund for {$this->_contributorDisplayName}" : "Payment from {$this->_contributorDisplayName}";
+    if ($title) {
+      CRM_Utils_System::setTitle(ts('%1', array(1 => $title)));
+    }
+  }
+
+  public function setDefaultValues() {
+    if ($this->_mode) {
+      $defaults = $this->_values;
+
+      $config = CRM_Core_Config::singleton();
+      // set default country from config if no country set
+      if (!CRM_Utils_Array::value("billing_country_id-{$this->_bltID}", $defaults)) {
+        $defaults["billing_country_id-{$this->_bltID}"] = $config->defaultContactCountry;
+      }
+
+      if (!CRM_Utils_Array::value("billing_state_province_id-{$this->_bltID}", $defaults)) {
+        $defaults["billing_state_province_id-{$this->_bltID}"] = $config->defaultContactStateProvince;
+      }
+
+      $billingDefaults = $this->getProfileDefaults('Billing', $this->_contactId);
+      $defaults = array_merge($defaults, $billingDefaults);
+
+      // now fix all state country selectors, set correct state based on country
+      CRM_Core_BAO_Address::fixAllStateSelects($this, $defaults);
+    }
+
+    // Set $newCredit variable in template to control whether link to credit card mode is included
+    CRM_Core_Payment::allowBackofficeCreditCard($this);
+  }
+
+  public function buildQuickForm() {
+    $ccPane = NULL;
+    if ($this->_mode) {
+      if (CRM_Utils_Array::value('payment_type', $this->_processors) & CRM_Core_Payment::PAYMENT_TYPE_DIRECT_DEBIT
+      ) {
+        $ccPane = array(ts('Direct Debit Information') => 'DirectDebit');
+      }
+      else {
+        $ccPane = array(ts('Credit Card Information') => 'CreditCard');
+      }
+      $defaults = $this->_values;
+      $showAdditionalInfo = FALSE;
+
+      foreach ($ccPane as $name => $type) {
+        if ($this->_formType == $type ||
+          CRM_Utils_Array::value("hidden_{$type}", $_POST) ||
+          CRM_Utils_Array::value("hidden_{$type}", $defaults)
+        ) {
+          $showAdditionalInfo = TRUE;
+          $allPanes[$name]['open'] = 'true';
+        }
+
+        $urlParams = "snippet=4&formType={$type}";
+        if ($this->_mode) {
+          $urlParams .= "&mode={$this->_mode}";
+        }
+        $open = 'false';
+        if ($type == 'CreditCard' ||
+          $type == 'DirectDebit'
+        ) {
+          $open = 'true';
+        }
+
+        $allPanes[$name] = array(
+          'url' => CRM_Utils_System::url('civicrm/payment/add', $urlParams),
+          'open' => $open,
+          'id' => $type
+        );
+
+        if ($type == 'CreditCard') {
+          $this->add('hidden', 'hidden_CreditCard', 1);
+          CRM_Core_Payment_Form::buildCreditCard($this, TRUE);
+        }
+        elseif ($type == 'DirectDebit') {
+          $this->add('hidden', 'hidden_DirectDebit', 1);
+          CRM_Core_Payment_Form::buildDirectDebit($this, TRUE);
+        }
+        $qfKey = $this->controller->_key;
+        $this->assign('qfKey', $qfKey);
+        $this->assign('allPanes', $allPanes);
+        $this->assign('showAdditionalInfo', $showAdditionalInfo);
+
+        if ($this->_formType) {
+          $this->assign('formType', $this->_formType);
+          return;
+        }
+      }
+    }
+    $attributes = CRM_Core_DAO::getAttribute('CRM_Financial_DAO_FinancialTrxn');
+
+    $this->add('select', 'payment_processor_id', ts('Payment Processor'), $this->_processors, NULL);
+    $this->add('select', 'financial_type_id',
+      ts('Financial Type'),
+      array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::financialType(),
+      TRUE
+    );
+    $label = ($this->_refund) ? 'Refund Amount' : 'Payment Amount';
+    $this->addMoney('total_amount',
+      ts('%1', array(1 => $label)),
+      FALSE,
+      $attributes['total_amount'],
+      TRUE, 'currency', NULL
+    );
+
+    if (!$this->_mode) {
+      $this->add('select', 'payment_instrument_id',
+        ts('Paid By'),
+        array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::paymentInstrument(),
+        TRUE, array('onChange' => "return showHideByValue('payment_instrument_id','4','checkNumber','table-row','select',false);")
+      );
+    }
+
+    $this->add('text', 'check_number', ts('Check Number'), $attributes['financial_trxn_check_number']);
+    $trxnId = $this->add('text', 'trxn_id', ts('Transaction ID'), $attributes['trxn_id']);
+
+    //add receipt for offline contribution
+    $this->addElement('checkbox', 'is_email_receipt', ts('Send Receipt?'));
+
+    $this->add('select', 'from_email_address', ts('Receipt From'), $this->_fromEmails);
+
+    // add various dates
+    $this->addDateTime('receive_date', ts('Received'), FALSE, array('formatType' => 'activityDateTime'));
+
+    if ($this->_contactId && $this->_id) {
+      if ($this->_component == 'event') {
+        $eventId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $this->_id, 'event_id', 'id');
+        $event = CRM_Event_BAO_Event::getEvents(0, $eventId);
+        $this->assign('eventName', $event[$eventId]);
+      }
+    }
+
+    $this->assign('displayName', $this->_contributorDisplayName);
+    $this->assign('component', $this->_component);
+    $this->assign('email', $this->_contributorEmail);
+
+    $this->add('text', 'fee_amount', ts('Fee Amount'),
+      $attributes['fee_amount']
+    );
+    $this->addRule('fee_amount', ts('Please enter a valid monetary value for Fee Amount.'), 'money');
+
+    $this->add('text', 'net_amount', ts('Net Amount'),
+      $attributes['net_amount']
+    );
+    $this->addRule('net_amount', ts('Please enter a valid monetary value for Net Amount.'), 'money');
+
+    $js = NULL;
+    if (!$this->_mode) {
+      $js = array('onclick' => "return verify( );");
+    }
+
+    $buttonName = $this->_refund ? 'Record Refund' : 'Record Payment';
+    $this->addButtons(array(
+        array(
+          'type' => 'upload',
+          'name' => ts('%1', array(1 => $buttonName)),
+          'js' => $js,
+          'isDefault' => TRUE
+        ),
+        array(
+          'type' => 'cancel',
+          'name' => ts('Cancel')
+        ),
+      )
+    );
+
+
+    $mailingInfo = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME,
+      'mailing_backend'
+    );
+    $this->assign('outBound_option', $mailingInfo['outBound_option']);
+
+    $this->addFormRule(array('CRM_Contribute_Form_AdditionalPayment', 'formRule'), $this);
+  }
+
+  static function formRule($fields, $files, $self) {
+    $errors = array();
+    if ($self->_paymentType == 'owed' && $fields['total_amount'] > $self->_owed) {
+      $errors['total_amount'] = ts('Payment amount cannot be greater than owed amount');
+    }
+    if ($self->_paymentType == 'refund' && $fields['total_amount'] != $self->_refund) {
+      $errors['total_amount'] = ts('Refund amount should not differ');
+    }
+    $netAmt = $fields['total_amount'] - $fields['fee_amount'];
+    if (!empty($fields['net_amount']) && $netAmt != $fields['net_amount']) {
+      $errors['net_amount'] = ts('Net amount should be difference of payment amount and fee amount');
+    }
+    return $errors;
+  }
+
+  public function postProcess() {
+    $participantId = NULL;
+    if ($this->_component == 'event') {
+      $participantId = $this->_id;
+    }
+    if ($this->_mode) {
+      // process credit card
+    }
+    else {
+      $submittedValues = $this->controller->exportValues($this->_name);
+      CRM_Contribute_BAO_Contribution::recordAdditionPayment($this->_contributionId, $submittedValues, $this->_paymentType, $participantId);
+    }
+  }
+}
\ No newline at end of file
index 35b0b0823e676c71fb6dcd79dc5e91a2d40954ec..8feecab9411693bb4a39453ad3e06922e7137821 100644 (file)
     <adminGroup>CiviContribute</adminGroup>
     <weight>580</weight>
   </item>
+  <item>
+    <path>civicrm/payment/add</path>
+    <title>New Payment</title>
+    <page_callback>CRM_Contribute_Form_AdditionalPayment</page_callback>
+    <path_arguments>action=add</path_arguments>
+    <access_arguments>access CiviContribute</access_arguments>
+    <page_type>1</page_type>
+    <component>CiviContribute</component>
+  </item>
   <item>
     <path>civicrm/admin/financial/financialAccount</path>
     <title>Financial Accounts</title>
index 9322d0ea74c552184a34b2930696752370a99f68..d2421c59f87c3234b24ab907d2295c46b47cd1d9 100644 (file)
@@ -389,5 +389,62 @@ WHERE ceft.entity_id = %1";
     $trxnIDS['id'] = $trxn->id;
     $financialItem = CRM_Financial_BAO_FinancialItem::create($fItemParams, NULL, $trxnIDS);
   }
-}
 
+  /*
+   * function to get partial payment amount and type of it
+   * return @array : payment type => amount
+   * payment type  : 'amount_owed' or 'refund_due'
+   */
+  static function getPartialPaymentWithType($entityId, $entityName = 'pariticpant') {
+    $value = NULL;
+    if (empty($entityName)) {
+      return $value;
+    }
+
+    if ($entityName == 'participant') {
+      $partialPaymentStatusId = CRM_Core_OptionGroup::getValue('contribution_status', 'Partially paid', 'name');
+      $sql = "SELECT pp.contribution_id, con.financial_type_id FROM civicrm_participant_payment pp
+INNER JOIN civicrm_contribution con ON con.id = pp.contribution_id
+WHERE pp.participant_id = %1 AND con.contribution_status_id = %2
+";
+      $qParams[1] = array($entityId, 'Integer');
+      $qParams[2] = array($partialPaymentStatusId, 'Integer');
+      $dao = CRM_Core_DAO::executeQuery($sql, $qParams);
+      if ($dao->fetch()) {
+        $contributionId  = $dao->contribution_id;
+        $financialTypeId = $dao->financial_type_id;
+      }
+
+      if ($contributionId && $financialTypeId) {
+        $statusId = CRM_Core_OptionGroup::getValue('contribution_status', 'Completed', 'name');
+        $relationTypeId = key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Accounts Receivable Account is' "));
+        $toFinancialAccount = CRM_Contribute_PseudoConstant::financialAccountType($financialTypeId, $relationTypeId);
+
+        $sqlLineItemTotal = "SELECT SUM(li.line_total)
+FROM civicrm_line_item li
+INNER JOIN civicrm_participant_payment pp ON ( li.entity_id = pp.participant_id
+AND li.entity_table = 'civicrm_participant'
+AND li.entity_id = {$entityId})";
+        $lineItemTotal = CRM_Core_DAO::singleValueQuery($sqlLineItemTotal);
+
+        $sqlFtTotalAmt = "SELECT SUM(ft.total_amount)
+FROM civicrm_financial_trxn ft
+LEFT JOIN civicrm_entity_financial_trxn eft ON (ft.id = eft.financial_trxn_id AND eft.entity_table = 'civicrm_contribution')
+LEFT JOIN civicrm_contribution c ON (eft.entity_id = c.id)
+LEFT JOIN civicrm_participant_payment pp ON (pp.contribution_id = c.id)
+WHERE pp.participant_id = {$entityId} AND ft.to_financial_account_id != {$toFinancialAccount} AND ft.status_id = {$statusId}
+";
+        $ftTotalAmt = CRM_Core_DAO::singleValueQuery($sqlFtTotalAmt);
+
+        $paymentVal = $lineItemTotal - $ftTotalAmt;
+        if ($paymentVal < 0) {
+          $value['refund_due']  = $paymentVal;
+        }
+        elseif ($paymentVal > 0) {
+          $value['amount_owed'] = $paymentVal;
+        }
+      }
+    }
+    return $value;
+  }
+}
\ No newline at end of file
index db9fe0acfdc6ab68bd37d79e8310cc69b43af6be..64b3c36c821e27c8c1879cf2dee8ea3e88fb37b9 100644 (file)
@@ -99,7 +99,7 @@ UPDATE `civicrm_option_value`
 SET is_reserved = 1
 WHERE is_reserved = 0 AND option_group_id = @option_group_id_activity_type AND component_id = @caseCompId;
 
--- CRM-13964
+-- CRM-13964 and CRM-13965
 SELECT @option_group_id_cs   := max(id) from civicrm_option_group where name = 'contribution_status';
 SELECT @option_val_id_cs_wt  := MAX(weight) FROM civicrm_option_value WHERE option_group_id = @option_group_id_cs;
 SELECT @option_val_id_cs_val := MAX(value) FROM civicrm_option_value WHERE option_group_id = @option_group_id_cs;
@@ -107,11 +107,26 @@ SELECT @option_val_id_cs_val := MAX(value) FROM civicrm_option_value WHERE optio
 INSERT INTO
    `civicrm_option_value` (`option_group_id`, {localize field='label'}label{/localize}, `value`, `name`, `grouping`, `filter`, `is_default`, `weight`, `is_optgroup`, `is_reserved`, `is_active`, `component_id`, `visibility_id`)
 VALUES
-  (@option_group_id_cs, '{ts escape="sql"}Partially paid{/ts}', @option_val_id_cs_val+1, 'Partially paid', NULL, 0, NULL, @option_val_id_cs_wt+1, 0, 1, 1, NULL, NULL);
+  (@option_group_id_cs, {localize}'{ts escape="sql"}Partially paid{/ts}'{/localize}, @option_val_id_cs_val+1, 'Partially paid', NULL, 0, NULL, @option_val_id_cs_wt+1, 0, 1, 1, NULL, NULL),
+  (@option_group_id_cs, {localize}'{ts escape="sql"}Pending refund{/ts}'{/localize}, @option_val_id_cs_val+2, 'Pending refund', NULL, 0, NULL, @option_val_id_cs_wt+2, 0, 1, 1, NULL, NULL);
+
 
 -- participant status adding
 SELECT @participant_status_wt  := max(id) from civicrm_participant_status_type;
 
-INSERT INTO civicrm_participant_status_type (id, name,  {localize field='label'}label{/localize}, class, is_reserved, is_active, is_counted, weight, visibility_id)
+INSERT INTO civicrm_participant_status_type (name,  {localize field='label'}label{/localize}, class, is_reserved, is_active, is_counted, weight, visibility_id)
+VALUES
+  ('Partially paid', {localize}'{ts escape="sql"}Partially paid{/ts}'{/localize}, 'Positive', 1, 1, 1, @participant_status_wt+1, 2),
+  ('Pending refund', {localize}'{ts escape="sql"}Pending refund{/ts}'{/localize}, 'Positive', 1, 1, 1, @participant_status_wt+2, 2);
+
+-- new activity types required for partial payments
+SELECT @option_group_id_act     := max(id) from civicrm_option_group where name = 'activity_type';
+SELECT @option_group_id_act_wt  := MAX(weight) FROM civicrm_option_value WHERE option_group_id = @option_group_id_act;
+SELECT @option_group_id_act_val := MAX(value) FROM civicrm_option_value WHERE option_group_id = @option_group_id_act;
+SELECT @contributeCompId := max(id) FROM civicrm_component where name = 'CiviContribute';
+
+INSERT INTO
+   `civicrm_option_value` (`option_group_id`, {localize field='label'}`label`{/localize}, `value`, `name`, `grouping`, `filter`, `is_default`, `weight`, {localize field='description'}`description`{/localize}, `is_optgroup`, `is_reserved`, `is_active`, `component_id`, `visibility_id`)
 VALUES
-  (1,  'Partially paid', '{ts escape="sql"}Partially paid{/ts}', 'Positive', 1, 1, 1, @participant_status_wt+1, 2);
\ No newline at end of file
+   (@option_group_id_act, {localize}'{ts escape="sql"}Payment{/ts}'{/localize}, @option_group_id_act_val+1, 'Payment', NULL, 1, NULL, @option_group_id_act_wt+1, {localize}'{ts escape="sql"}Additional payment recorded for event or membership fee.{/ts}'{/localize}, 0, 1, 1, @contributeCompId, NULL),
+   (@option_group_id_act, {localize}'{ts escape="sql"}Refund{/ts}'{/localize}, @option_group_id_act_val+2, 'Refund', NULL, 1, NULL, @option_group_id_act_wt+2, {localize}'{ts escape="sql"}Refund recorded for event or membership fee.{/ts}'{/localize}, 0, 1, 1, @contributeCompId, NULL);
\ No newline at end of file
index 947c90ba0508e34db311e4a002cde97f9e04e841..31fd1fe645423518813b2c5b7b60ce2f5a9f036d 100644 (file)
@@ -1,8 +1,8 @@
--- MySQL dump 10.13  Distrib 5.5.32, for debian-linux-gnu (i686)
+-- MySQL dump 10.13  Distrib 5.5.34, for debian-linux-gnu (i686)
 --
--- Host: localhost    Database: git_civicrm
+-- Host: localhost    Database: master_civicrm
 -- ------------------------------------------------------
--- Server version      5.5.32-0ubuntu0.12.04.1
+-- Server version      5.5.34-0ubuntu0.12.04.1
 
 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
 /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
@@ -87,7 +87,7 @@ UNLOCK TABLES;
 
 LOCK TABLES `civicrm_activity` WRITE;
 /*!40000 ALTER TABLE `civicrm_activity` DISABLE KEYS */;
-INSERT INTO `civicrm_activity` (`id`, `source_record_id`, `activity_type_id`, `subject`, `activity_date_time`, `duration`, `location`, `phone_id`, `phone_number`, `details`, `status_id`, `priority_id`, `parent_id`, `is_test`, `medium_id`, `is_auto`, `relationship_id`, `is_current_revision`, `original_id`, `result`, `is_deleted`, `campaign_id`, `engagement_level`, `weight`) VALUES (1,NULL,9,'Subject for Tell a Friend','2013-07-01 07:18:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(2,NULL,7,'Subject for Membership Signup','2013-04-29 05:45:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(3,NULL,7,'Subject for Membership Signup','2013-05-15 05:58:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(4,NULL,8,'Subject for Membership Renewal','2012-12-23 02:40:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(5,NULL,8,'Subject for Membership Renewal','2013-03-13 02:20:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(6,NULL,7,'Subject for Membership Signup','2013-02-28 06:37:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(7,NULL,7,'Subject for Membership Signup','2013-10-25 06:15:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(8,NULL,10,'Subject for Pledge Acknowledgment','2013-04-10 05:23:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(9,NULL,7,'Subject for Membership Signup','2013-12-03 01:10:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(10,NULL,8,'Subject for Membership Renewal','2013-07-07 02:48:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(11,NULL,9,'Subject for Tell a Friend','2013-05-24 06:25:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(12,NULL,8,'Subject for Membership Renewal','2013-04-14 06:40:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(13,NULL,9,'Subject for Tell a Friend','2013-06-14 09:20:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(14,NULL,7,'Subject for Membership Signup','2013-07-21 01:39:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(15,NULL,7,'Subject for Membership Signup','2013-10-06 09:45:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(16,NULL,7,'Subject for Membership Signup','2013-11-03 05:56:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(17,NULL,9,'Subject for Tell a Friend','2013-04-03 09:08:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(18,NULL,9,'Subject for Tell a Friend','2013-05-17 06:18:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(19,NULL,9,'Subject for Tell a Friend','2013-01-12 11:31:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(20,NULL,10,'Subject for Pledge Acknowledgment','2013-04-14 05:15:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(21,NULL,10,'Subject for Pledge Acknowledgment','2013-07-23 02:33:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(22,NULL,9,'Subject for Tell a Friend','2013-09-15 02:11:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(23,NULL,10,'Subject for Pledge Acknowledgment','2013-08-15 07:57:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(24,NULL,9,'Subject for Tell a Friend','2012-12-31 12:49:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(25,NULL,7,'Subject for Membership Signup','2013-09-11 01:22:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(26,NULL,8,'Subject for Membership Renewal','2013-11-03 01:33:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(27,NULL,8,'Subject for Membership Renewal','2013-05-03 02:13:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(28,NULL,8,'Subject for Membership Renewal','2013-09-28 12:36:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(29,NULL,8,'Subject for Membership Renewal','2013-06-18 02:49:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(30,NULL,7,'Subject for Membership Signup','2013-09-04 12:34:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(31,NULL,7,'Subject for Membership Signup','2013-06-21 08:00:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(32,NULL,10,'Subject for Pledge Acknowledgment','2012-12-24 12:53:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(33,NULL,8,'Subject for Membership Renewal','2013-09-08 02:27:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(34,NULL,8,'Subject for Membership Renewal','2013-02-16 01:54:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(35,NULL,10,'Subject for Pledge Acknowledgment','2013-04-01 09:15:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(36,NULL,10,'Subject for Pledge Acknowledgment','2013-07-21 09:42:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(37,NULL,9,'Subject for Tell a Friend','2013-08-29 02:59:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(38,NULL,8,'Subject for Membership Renewal','2013-05-02 08:33:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(39,NULL,8,'Subject for Membership Renewal','2013-05-04 06:07:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(40,NULL,9,'Subject for Tell a Friend','2013-01-31 10:32:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(41,NULL,9,'Subject for Tell a Friend','2013-08-08 10:14:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(42,NULL,10,'Subject for Pledge Acknowledgment','2013-09-01 01:04:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(43,NULL,10,'Subject for Pledge Acknowledgment','2013-02-20 12:52:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(44,NULL,7,'Subject for Membership Signup','2013-01-07 08:27:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(45,NULL,8,'Subject for Membership Renewal','2013-08-29 01:11:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(46,NULL,7,'Subject for Membership Signup','2013-07-16 12:12:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(47,NULL,8,'Subject for Membership Renewal','2013-05-03 11:35:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(48,NULL,7,'Subject for Membership Signup','2013-12-01 02:53:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(49,NULL,7,'Subject for Membership Signup','2013-10-01 10:50:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(50,NULL,8,'Subject for Membership Renewal','2013-06-30 05:41:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(51,NULL,8,'Subject for Membership Renewal','2013-04-09 10:49:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(52,NULL,9,'Subject for Tell a Friend','2013-06-15 07:03:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(53,NULL,10,'Subject for Pledge Acknowledgment','2013-04-08 02:43:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(54,NULL,8,'Subject for Membership Renewal','2013-07-03 03:49:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(55,NULL,7,'Subject for Membership Signup','2013-04-12 03:40:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(56,NULL,9,'Subject for Tell a Friend','2013-10-04 07:48:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(57,NULL,10,'Subject for Pledge Acknowledgment','2013-03-18 06:57:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(58,NULL,10,'Subject for Pledge Acknowledgment','2013-07-28 11:08:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(59,NULL,8,'Subject for Membership Renewal','2013-06-28 08:03:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(60,NULL,10,'Subject for Pledge Acknowledgment','2013-09-07 07:52:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(61,NULL,9,'Subject for Tell a Friend','2013-03-24 12:49:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(62,NULL,7,'Subject for Membership Signup','2013-06-11 10:55:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(63,NULL,10,'Subject for Pledge Acknowledgment','2013-04-15 06:07:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(64,NULL,10,'Subject for Pledge Acknowledgment','2013-02-13 07:49:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(65,NULL,7,'Subject for Membership Signup','2013-06-27 11:34:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(66,NULL,10,'Subject for Pledge Acknowledgment','2013-11-19 09:03:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(67,NULL,9,'Subject for Tell a Friend','2013-05-26 06:00:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(68,NULL,9,'Subject for Tell a Friend','2013-05-02 09:11:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(69,NULL,8,'Subject for Membership Renewal','2013-07-17 04:12:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(70,NULL,10,'Subject for Pledge Acknowledgment','2013-02-17 09:46:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(71,NULL,10,'Subject for Pledge Acknowledgment','2013-07-06 05:22:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(72,NULL,7,'Subject for Membership Signup','2013-01-09 06:18:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(73,NULL,7,'Subject for Membership Signup','2013-07-28 11:19:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(74,NULL,8,'Subject for Membership Renewal','2013-10-18 11:34:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(75,NULL,9,'Subject for Tell a Friend','2013-06-22 12:14:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(76,NULL,7,'Subject for Membership Signup','2013-06-06 04:55:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(77,NULL,7,'Subject for Membership Signup','2013-07-27 07:58:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(78,NULL,7,'Subject for Membership Signup','2013-04-24 09:19:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(79,NULL,8,'Subject for Membership Renewal','2012-12-16 03:23:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(80,NULL,7,'Subject for Membership Signup','2013-11-09 08:23:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(81,NULL,8,'Subject for Membership Renewal','2013-09-24 02:13:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(82,NULL,10,'Subject for Pledge Acknowledgment','2013-06-16 05:39:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(83,NULL,9,'Subject for Tell a Friend','2013-06-15 12:17:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(84,NULL,8,'Subject for Membership Renewal','2013-01-21 09:37:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(85,NULL,7,'Subject for Membership Signup','2013-08-09 02:43:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(86,NULL,9,'Subject for Tell a Friend','2013-03-12 11:18:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(87,NULL,8,'Subject for Membership Renewal','2013-10-12 01:59:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(88,NULL,7,'Subject for Membership Signup','2013-12-03 08:48:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(89,NULL,9,'Subject for Tell a Friend','2013-07-02 02:47:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(90,NULL,10,'Subject for Pledge Acknowledgment','2013-10-17 10:11:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(91,NULL,10,'Subject for Pledge Acknowledgment','2013-06-19 03:45:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(92,NULL,10,'Subject for Pledge Acknowledgment','2013-05-18 10:50:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(93,NULL,8,'Subject for Membership Renewal','2013-08-17 04:00:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(94,NULL,9,'Subject for Tell a Friend','2012-12-29 08:39:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(95,NULL,8,'Subject for Membership Renewal','2013-01-24 03:31:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(96,NULL,7,'Subject for Membership Signup','2013-02-18 10:52:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(97,NULL,8,'Subject for Membership Renewal','2013-07-16 07:13:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(98,NULL,7,'Subject for Membership Signup','2013-11-03 07:45:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(99,NULL,8,'Subject for Membership Renewal','2013-12-02 07:51:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(100,NULL,10,'Subject for Pledge Acknowledgment','2013-07-24 02:33:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(101,NULL,9,'Subject for Tell a Friend','2013-03-12 01:28:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(102,NULL,9,'Subject for Tell a Friend','2013-03-08 11:10:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(103,NULL,8,'Subject for Membership Renewal','2013-08-05 12:03:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(104,NULL,9,'Subject for Tell a Friend','2013-11-05 07:59:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(105,NULL,10,'Subject for Pledge Acknowledgment','2013-05-12 10:54:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(106,NULL,8,'Subject for Membership Renewal','2013-06-22 11:07:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(107,NULL,7,'Subject for Membership Signup','2013-08-29 11:58:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(108,NULL,8,'Subject for Membership Renewal','2013-08-06 06:57:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(109,NULL,9,'Subject for Tell a Friend','2013-09-24 04:11:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(110,NULL,8,'Subject for Membership Renewal','2013-07-07 06:11:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(111,NULL,7,'Subject for Membership Signup','2013-04-10 02:39:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(112,NULL,9,'Subject for Tell a Friend','2013-11-20 06:59:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(113,NULL,7,'Subject for Membership Signup','2012-12-13 10:04:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(114,NULL,10,'Subject for Pledge Acknowledgment','2013-06-09 02:54:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(115,NULL,10,'Subject for Pledge Acknowledgment','2013-12-10 06:28:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(116,NULL,7,'Subject for Membership Signup','2013-08-11 04:40:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(117,NULL,8,'Subject for Membership Renewal','2013-05-22 06:41:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(118,NULL,9,'Subject for Tell a Friend','2013-07-09 08:26:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(119,NULL,9,'Subject for Tell a Friend','2013-02-24 01:29:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(120,NULL,7,'Subject for Membership Signup','2013-07-29 09:18:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(121,NULL,8,'Subject for Membership Renewal','2013-11-01 12:22:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(122,NULL,9,'Subject for Tell a Friend','2013-08-16 07:28:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(123,NULL,7,'Subject for Membership Signup','2013-03-28 02:20:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(124,NULL,10,'Subject for Pledge Acknowledgment','2013-09-26 05:18:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(125,NULL,8,'Subject for Membership Renewal','2013-03-03 06:47:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(126,NULL,10,'Subject for Pledge Acknowledgment','2013-12-07 02:17:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(127,NULL,8,'Subject for Membership Renewal','2013-04-18 10:34:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(128,NULL,8,'Subject for Membership Renewal','2013-06-06 03:31:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(129,NULL,8,'Subject for Membership Renewal','2013-03-17 11:18:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(130,NULL,10,'Subject for Pledge Acknowledgment','2013-02-14 09:42:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(131,NULL,7,'Subject for Membership Signup','2013-07-13 02:05:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(132,NULL,8,'Subject for Membership Renewal','2013-06-11 05:14:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(133,NULL,9,'Subject for Tell a Friend','2013-08-01 07:45:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(134,NULL,10,'Subject for Pledge Acknowledgment','2013-08-19 09:41:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(135,NULL,7,'Subject for Membership Signup','2013-01-22 04:46:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(136,NULL,7,'Subject for Membership Signup','2013-11-09 09:56:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(137,NULL,10,'Subject for Pledge Acknowledgment','2013-10-01 11:00:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(138,NULL,7,'Subject for Membership Signup','2013-03-30 06:08:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(139,NULL,8,'Subject for Membership Renewal','2013-05-07 08:39:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(140,NULL,7,'Subject for Membership Signup','2013-04-01 11:13:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(141,NULL,9,'Subject for Tell a Friend','2013-04-21 09:47:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(142,NULL,8,'Subject for Membership Renewal','2013-06-01 05:02:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(143,NULL,10,'Subject for Pledge Acknowledgment','2013-11-28 05:43:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(144,NULL,9,'Subject for Tell a Friend','2013-10-10 09:31:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(145,NULL,8,'Subject for Membership Renewal','2013-09-07 06:30:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(146,NULL,8,'Subject for Membership Renewal','2013-06-16 02:18:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(147,NULL,7,'Subject for Membership Signup','2013-07-31 05:05:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(148,NULL,9,'Subject for Tell a Friend','2013-01-20 07:57:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(149,NULL,8,'Subject for Membership Renewal','2013-01-25 11:14:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(150,NULL,9,'Subject for Tell a Friend','2013-03-22 09:51:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(151,NULL,8,'Subject for Membership Renewal','2013-02-14 10:48:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(152,NULL,8,'Subject for Membership Renewal','2013-03-03 10:21:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(153,NULL,7,'Subject for Membership Signup','2013-11-02 06:26:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(154,NULL,9,'Subject for Tell a Friend','2013-07-05 12:21:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(155,NULL,7,'Subject for Membership Signup','2013-07-10 03:09:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(156,NULL,9,'Subject for Tell a Friend','2013-09-09 05:47:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(157,NULL,8,'Subject for Membership Renewal','2013-11-07 09:25:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(158,NULL,9,'Subject for Tell a Friend','2013-04-02 08:53:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(159,NULL,9,'Subject for Tell a Friend','2013-01-24 02:57:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(160,NULL,7,'Subject for Membership Signup','2013-08-28 11:53:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(161,NULL,10,'Subject for Pledge Acknowledgment','2013-06-13 07:54:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(162,NULL,8,'Subject for Membership Renewal','2013-07-13 05:40:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(163,NULL,9,'Subject for Tell a Friend','2012-12-15 02:43:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(164,NULL,8,'Subject for Membership Renewal','2013-02-23 10:45:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(165,NULL,10,'Subject for Pledge Acknowledgment','2013-03-01 06:09:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(166,NULL,7,'Subject for Membership Signup','2013-08-04 10:53:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(167,NULL,10,'Subject for Pledge Acknowledgment','2013-07-30 10:36:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(168,NULL,10,'Subject for Pledge Acknowledgment','2013-07-03 01:48:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(169,NULL,8,'Subject for Membership Renewal','2013-10-18 09:26:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(170,NULL,10,'Subject for Pledge Acknowledgment','2013-08-10 09:52:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(171,NULL,9,'Subject for Tell a Friend','2013-10-15 12:18:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(172,NULL,7,'Subject for Membership Signup','2013-02-13 10:19:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(173,NULL,9,'Subject for Tell a Friend','2013-10-03 02:07:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(174,NULL,7,'Subject for Membership Signup','2013-05-04 02:53:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(175,NULL,9,'Subject for Tell a Friend','2013-11-10 01:41:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(176,NULL,7,'Subject for Membership Signup','2013-11-18 03:47:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(177,NULL,7,'Subject for Membership Signup','2013-03-20 09:46:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(178,NULL,10,'Subject for Pledge Acknowledgment','2012-12-17 08:18:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(179,NULL,8,'Subject for Membership Renewal','2013-06-19 11:18:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(180,NULL,8,'Subject for Membership Renewal','2013-02-11 01:39:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(181,NULL,9,'Subject for Tell a Friend','2013-12-11 08:10:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(182,NULL,9,'Subject for Tell a Friend','2013-05-29 05:26:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(183,NULL,7,'Subject for Membership Signup','2013-03-01 08:43:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(184,NULL,9,'Subject for Tell a Friend','2013-10-09 03:09:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(185,NULL,10,'Subject for Pledge Acknowledgment','2013-09-20 07:11:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(186,NULL,7,'Subject for Membership Signup','2013-08-21 12:43:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(187,NULL,8,'Subject for Membership Renewal','2013-11-23 10:37:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(188,NULL,10,'Subject for Pledge Acknowledgment','2013-05-01 08:28:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(189,NULL,10,'Subject for Pledge Acknowledgment','2013-05-30 12:29:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(190,NULL,7,'Subject for Membership Signup','2013-09-07 09:06:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(191,NULL,8,'Subject for Membership Renewal','2013-09-16 09:52:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(192,NULL,9,'Subject for Tell a Friend','2013-06-10 08:09:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(193,NULL,7,'Subject for Membership Signup','2013-08-06 04:50:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(194,NULL,9,'Subject for Tell a Friend','2013-05-20 09:53:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(195,NULL,7,'Subject for Membership Signup','2013-11-28 11:27:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(196,NULL,7,'Subject for Membership Signup','2013-02-21 07:41:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(197,NULL,8,'Subject for Membership Renewal','2013-04-12 09:40:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(198,NULL,9,'Subject for Tell a Friend','2013-02-11 05:46:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(199,NULL,9,'Subject for Tell a Friend','2012-12-15 07:52:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(200,NULL,9,'Subject for Tell a Friend','2012-12-12 03:25:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(201,NULL,9,'Subject for Tell a Friend','2013-10-15 02:19:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(202,NULL,8,'Subject for Membership Renewal','2013-04-15 01:04:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(203,NULL,8,'Subject for Membership Renewal','2013-09-02 04:59:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(204,NULL,9,'Subject for Tell a Friend','2013-07-01 05:23:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(205,NULL,7,'Subject for Membership Signup','2013-10-26 03:32:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(206,NULL,7,'Subject for Membership Signup','2013-03-15 01:34:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(207,NULL,10,'Subject for Pledge Acknowledgment','2013-11-13 02:39:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(208,NULL,8,'Subject for Membership Renewal','2013-03-03 10:58:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(209,NULL,7,'Subject for Membership Signup','2013-09-06 11:40:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(210,NULL,10,'Subject for Pledge Acknowledgment','2013-10-17 07:34:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(211,NULL,9,'Subject for Tell a Friend','2013-03-07 07:21:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(212,NULL,8,'Subject for Membership Renewal','2013-01-21 05:37:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(213,NULL,8,'Subject for Membership Renewal','2013-11-05 11:12:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(214,NULL,9,'Subject for Tell a Friend','2013-12-03 08:05:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(215,NULL,10,'Subject for Pledge Acknowledgment','2012-12-19 01:38:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(216,NULL,7,'Subject for Membership Signup','2013-06-12 05:39:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(217,NULL,7,'Subject for Membership Signup','2013-03-29 09:01:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(218,NULL,10,'Subject for Pledge Acknowledgment','2013-01-11 11:30:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(219,NULL,10,'Subject for Pledge Acknowledgment','2013-03-31 11:33:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(220,NULL,10,'Subject for Pledge Acknowledgment','2013-09-13 07:51:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(221,NULL,8,'Subject for Membership Renewal','2013-01-12 04:24:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(222,NULL,8,'Subject for Membership Renewal','2013-06-07 01:13:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(223,NULL,10,'Subject for Pledge Acknowledgment','2013-01-10 10:57:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(224,NULL,7,'Subject for Membership Signup','2013-10-16 03:09:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(225,NULL,8,'Subject for Membership Renewal','2013-03-11 01:33:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(226,NULL,7,'Subject for Membership Signup','2013-05-04 12:29:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(227,NULL,7,'Subject for Membership Signup','2013-09-03 03:31:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(228,NULL,7,'Subject for Membership Signup','2013-03-16 09:04:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(229,NULL,8,'Subject for Membership Renewal','2013-01-01 04:29:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(230,NULL,8,'Subject for Membership Renewal','2013-10-16 12:57:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(231,NULL,10,'Subject for Pledge Acknowledgment','2013-10-28 09:35:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(232,NULL,9,'Subject for Tell a Friend','2013-12-05 05:04:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(233,NULL,7,'Subject for Membership Signup','2013-08-12 11:45:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(234,NULL,9,'Subject for Tell a Friend','2013-01-10 05:31:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(235,NULL,8,'Subject for Membership Renewal','2012-12-28 06:20:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(236,NULL,7,'Subject for Membership Signup','2013-03-19 08:29:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(237,NULL,8,'Subject for Membership Renewal','2013-08-20 01:28:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(238,NULL,9,'Subject for Tell a Friend','2013-07-03 10:07:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(239,NULL,7,'Subject for Membership Signup','2013-05-06 09:34:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(240,NULL,9,'Subject for Tell a Friend','2013-02-19 11:18:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(241,NULL,10,'Subject for Pledge Acknowledgment','2013-09-02 01:40:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(242,NULL,7,'Subject for Membership Signup','2013-08-12 06:32:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(243,NULL,8,'Subject for Membership Renewal','2013-06-30 09:11:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(244,NULL,9,'Subject for Tell a Friend','2013-10-09 12:39:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(245,NULL,7,'Subject for Membership Signup','2013-09-25 11:13:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(246,NULL,9,'Subject for Tell a Friend','2013-06-17 08:49:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(247,NULL,8,'Subject for Membership Renewal','2013-04-07 05:54:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(248,NULL,10,'Subject for Pledge Acknowledgment','2013-08-19 12:29:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(249,NULL,9,'Subject for Tell a Friend','2013-04-17 07:49:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(250,NULL,8,'Subject for Membership Renewal','2013-05-23 09:24:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(251,NULL,7,'Subject for Membership Signup','2013-07-19 01:39:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(252,NULL,8,'Subject for Membership Renewal','2013-05-09 02:33:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(253,NULL,8,'Subject for Membership Renewal','2013-10-18 11:55:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(254,NULL,7,'Subject for Membership Signup','2013-02-02 04:45:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(255,NULL,7,'Subject for Membership Signup','2013-10-03 04:40:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(256,NULL,7,'Subject for Membership Signup','2013-08-05 03:16:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(257,NULL,10,'Subject for Pledge Acknowledgment','2013-09-13 09:07:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(258,NULL,8,'Subject for Membership Renewal','2013-02-13 06:02:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(259,NULL,10,'Subject for Pledge Acknowledgment','2013-07-05 03:38:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(260,NULL,7,'Subject for Membership Signup','2013-06-24 02:32:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(261,NULL,7,'Subject for Membership Signup','2013-10-11 10:44:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(262,NULL,10,'Subject for Pledge Acknowledgment','2013-11-19 02:59:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(263,NULL,9,'Subject for Tell a Friend','2013-02-21 07:35:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(264,NULL,9,'Subject for Tell a Friend','2013-09-23 08:24:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(265,NULL,9,'Subject for Tell a Friend','2013-01-28 10:59:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(266,NULL,8,'Subject for Membership Renewal','2013-09-20 07:07:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(267,NULL,7,'Subject for Membership Signup','2013-03-17 02:28:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(268,NULL,9,'Subject for Tell a Friend','2013-04-03 10:00:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(269,NULL,8,'Subject for Membership Renewal','2013-08-23 03:37:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(270,NULL,8,'Subject for Membership Renewal','2013-08-13 06:30:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(271,NULL,10,'Subject for Pledge Acknowledgment','2013-04-29 08:02:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(272,NULL,8,'Subject for Membership Renewal','2013-05-16 09:12:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(273,NULL,8,'Subject for Membership Renewal','2013-04-01 12:48:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(274,NULL,10,'Subject for Pledge Acknowledgment','2013-02-17 10:25:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(275,NULL,7,'Subject for Membership Signup','2013-08-06 04:28:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(276,NULL,8,'Subject for Membership Renewal','2013-06-06 01:21:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(277,NULL,7,'Subject for Membership Signup','2013-04-10 05:36:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(278,NULL,7,'Subject for Membership Signup','2013-01-31 06:16:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(279,NULL,9,'Subject for Tell a Friend','2013-05-11 01:44:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(280,NULL,9,'Subject for Tell a Friend','2013-08-18 07:21:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(281,NULL,7,'Subject for Membership Signup','2013-03-26 02:43:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(282,NULL,9,'Subject for Tell a Friend','2013-02-20 11:37:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(283,NULL,10,'Subject for Pledge Acknowledgment','2013-05-25 10:14:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(284,NULL,7,'Subject for Membership Signup','2012-12-15 03:10:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(285,NULL,8,'Subject for Membership Renewal','2013-06-30 12:00:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(286,NULL,9,'Subject for Tell a Friend','2012-12-14 04:53:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(287,NULL,9,'Subject for Tell a Friend','2013-08-15 11:46:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(288,NULL,10,'Subject for Pledge Acknowledgment','2013-11-05 01:46:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(289,NULL,9,'Subject for Tell a Friend','2013-12-07 03:16:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(290,NULL,9,'Subject for Tell a Friend','2013-05-08 10:34:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(291,NULL,7,'Subject for Membership Signup','2013-02-04 09:45:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(292,NULL,8,'Subject for Membership Renewal','2013-06-08 12:18:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(293,NULL,10,'Subject for Pledge Acknowledgment','2013-11-25 03:50:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(294,NULL,9,'Subject for Tell a Friend','2013-08-10 02:30:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(295,NULL,9,'Subject for Tell a Friend','2013-08-30 05:13:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(296,NULL,10,'Subject for Pledge Acknowledgment','2013-01-03 06:18:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(297,NULL,8,'Subject for Membership Renewal','2013-06-12 04:50:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(298,NULL,8,'Subject for Membership Renewal','2013-03-11 01:22:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(299,NULL,8,'Subject for Membership Renewal','2013-07-03 07:45:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(300,NULL,8,'Subject for Membership Renewal','2013-07-28 02:12:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(301,NULL,10,'Subject for Pledge Acknowledgment','2013-08-02 05:07:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(302,NULL,7,'Subject for Membership Signup','2013-08-13 02:21:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(303,NULL,7,'Subject for Membership Signup','2013-03-02 08:25:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(304,NULL,8,'Subject for Membership Renewal','2013-07-13 12:24:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(305,NULL,8,'Subject for Membership Renewal','2013-07-30 08:26:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(306,NULL,10,'Subject for Pledge Acknowledgment','2013-04-17 02:54:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(307,NULL,10,'Subject for Pledge Acknowledgment','2013-02-27 12:05:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(308,NULL,7,'Subject for Membership Signup','2013-07-09 01:40:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(309,NULL,9,'Subject for Tell a Friend','2013-05-05 06:53:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(310,NULL,7,'Subject for Membership Signup','2013-09-05 04:59:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(311,NULL,8,'Subject for Membership Renewal','2013-02-05 04:41:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(312,NULL,10,'Subject for Pledge Acknowledgment','2013-05-29 10:45:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(313,NULL,8,'Subject for Membership Renewal','2013-05-15 01:11:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(314,NULL,8,'Subject for Membership Renewal','2013-01-11 05:03:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(315,NULL,10,'Subject for Pledge Acknowledgment','2013-03-04 08:57:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(316,NULL,7,'Subject for Membership Signup','2013-01-23 06:01:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(317,NULL,7,'Subject for Membership Signup','2013-07-19 11:42:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(318,NULL,10,'Subject for Pledge Acknowledgment','2013-06-19 04:20:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(319,NULL,8,'Subject for Membership Renewal','2013-02-04 04:26:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(320,NULL,10,'Subject for Pledge Acknowledgment','2013-03-04 11:40:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(321,NULL,10,'Subject for Pledge Acknowledgment','2013-01-01 06:26:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(322,NULL,10,'Subject for Pledge Acknowledgment','2013-12-01 05:55:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(323,NULL,10,'Subject for Pledge Acknowledgment','2013-04-23 07:38:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(324,NULL,9,'Subject for Tell a Friend','2013-05-20 11:49:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(325,NULL,8,'Subject for Membership Renewal','2013-05-03 04:45:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(326,NULL,10,'Subject for Pledge Acknowledgment','2013-02-04 10:49:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(327,NULL,10,'Subject for Pledge Acknowledgment','2013-11-06 09:23:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(328,NULL,7,'Subject for Membership Signup','2013-01-24 07:58:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(329,NULL,8,'Subject for Membership Renewal','2013-06-13 04:44:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(330,NULL,7,'Subject for Membership Signup','2013-01-19 02:54:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(331,NULL,10,'Subject for Pledge Acknowledgment','2013-09-30 04:48:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(332,NULL,7,'Subject for Membership Signup','2013-05-19 06:29:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(333,NULL,10,'Subject for Pledge Acknowledgment','2013-07-18 06:50:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(334,NULL,8,'Subject for Membership Renewal','2012-12-22 07:22:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(335,NULL,10,'Subject for Pledge Acknowledgment','2013-07-13 02:50:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(336,NULL,7,'Subject for Membership Signup','2013-01-15 02:35:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(337,NULL,9,'Subject for Tell a Friend','2013-11-20 08:25:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(338,NULL,8,'Subject for Membership Renewal','2013-06-25 02:47:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(339,NULL,7,'Subject for Membership Signup','2013-05-11 09:10:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(340,NULL,9,'Subject for Tell a Friend','2013-01-25 09:44:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(341,NULL,9,'Subject for Tell a Friend','2013-03-09 01:16:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(342,NULL,8,'Subject for Membership Renewal','2013-09-30 08:58:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(343,NULL,9,'Subject for Tell a Friend','2013-06-14 06:53:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(344,NULL,9,'Subject for Tell a Friend','2013-03-26 06:17:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(345,NULL,7,'Subject for Membership Signup','2013-09-27 05:39:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(346,NULL,8,'Subject for Membership Renewal','2013-04-28 01:05:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(347,NULL,10,'Subject for Pledge Acknowledgment','2012-12-25 04:35:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(348,NULL,9,'Subject for Tell a Friend','2013-02-19 12:53:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(349,NULL,7,'Subject for Membership Signup','2013-07-02 09:23:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(350,NULL,9,'Subject for Tell a Friend','2013-06-29 11:39:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(351,NULL,10,'Subject for Pledge Acknowledgment','2013-02-12 09:24:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(352,NULL,8,'Subject for Membership Renewal','2013-03-17 04:18:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(353,NULL,10,'Subject for Pledge Acknowledgment','2013-09-29 03:37:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(354,NULL,8,'Subject for Membership Renewal','2013-09-13 11:46:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(355,NULL,10,'Subject for Pledge Acknowledgment','2013-06-20 08:48:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(356,NULL,8,'Subject for Membership Renewal','2013-07-08 11:00:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(357,NULL,7,'Subject for Membership Signup','2013-06-16 05:32:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(358,NULL,9,'Subject for Tell a Friend','2013-11-09 02:34:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(359,NULL,7,'Subject for Membership Signup','2013-12-10 10:59:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(360,NULL,7,'Subject for Membership Signup','2013-10-30 12:05:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(361,NULL,9,'Subject for Tell a Friend','2013-03-20 07:51:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(362,NULL,10,'Subject for Pledge Acknowledgment','2013-04-05 11:44:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(363,NULL,7,'Subject for Membership Signup','2013-06-13 10:41:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(364,NULL,7,'Subject for Membership Signup','2013-03-14 11:39:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(365,NULL,10,'Subject for Pledge Acknowledgment','2013-03-06 12:59:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(366,NULL,9,'Subject for Tell a Friend','2013-05-26 04:27:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(367,NULL,10,'Subject for Pledge Acknowledgment','2013-01-21 07:54:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(368,NULL,7,'Subject for Membership Signup','2012-12-12 08:24:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(369,NULL,10,'Subject for Pledge Acknowledgment','2013-10-22 05:49:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(370,NULL,10,'Subject for Pledge Acknowledgment','2013-03-03 09:51:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(371,NULL,7,'Subject for Membership Signup','2013-10-01 12:56:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(372,NULL,9,'Subject for Tell a Friend','2013-03-22 05:32:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(373,NULL,7,'Subject for Membership Signup','2013-02-13 04:05:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(374,NULL,10,'Subject for Pledge Acknowledgment','2013-08-14 06:20:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(375,NULL,8,'Subject for Membership Renewal','2013-10-08 08:44:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(376,NULL,7,'Subject for Membership Signup','2013-10-24 11:02:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(377,NULL,8,'Subject for Membership Renewal','2013-02-26 08:10:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(378,NULL,7,'Subject for Membership Signup','2013-10-15 01:26:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(379,NULL,9,'Subject for Tell a Friend','2013-01-26 05:49:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(380,NULL,7,'Subject for Membership Signup','2013-09-09 03:51:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(381,NULL,8,'Subject for Membership Renewal','2013-06-05 09:24:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(382,NULL,9,'Subject for Tell a Friend','2013-01-13 02:00:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(383,NULL,9,'Subject for Tell a Friend','2013-10-20 09:23:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(384,NULL,9,'Subject for Tell a Friend','2013-04-10 08:17:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(385,NULL,7,'Subject for Membership Signup','2013-06-16 12:15:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(386,NULL,7,'Subject for Membership Signup','2013-09-02 01:56:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(387,NULL,10,'Subject for Pledge Acknowledgment','2013-07-06 05:56:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(388,NULL,10,'Subject for Pledge Acknowledgment','2013-04-05 12:54:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(389,NULL,8,'Subject for Membership Renewal','2013-01-07 11:34:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(390,NULL,9,'Subject for Tell a Friend','2013-12-02 11:21:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(391,NULL,7,'Subject for Membership Signup','2013-11-27 03:23:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(392,NULL,7,'Subject for Membership Signup','2013-03-04 01:43:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(393,NULL,9,'Subject for Tell a Friend','2013-09-20 03:59:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(394,NULL,8,'Subject for Membership Renewal','2013-11-15 12:40:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(395,NULL,9,'Subject for Tell a Friend','2013-07-04 08:34:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(396,NULL,7,'Subject for Membership Signup','2013-05-18 05:24:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(397,NULL,9,'Subject for Tell a Friend','2013-01-25 09:45:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(398,NULL,7,'Subject for Membership Signup','2013-02-16 06:24:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(399,NULL,8,'Subject for Membership Renewal','2013-10-23 11:00:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(400,NULL,9,'Subject for Tell a Friend','2013-05-03 01:47:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(401,NULL,8,'Subject for Membership Renewal','2013-02-21 12:42:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(402,NULL,10,'Subject for Pledge Acknowledgment','2013-02-28 01:33:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(403,NULL,9,'Subject for Tell a Friend','2013-05-29 05:25:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(404,NULL,8,'Subject for Membership Renewal','2013-03-04 07:29:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(405,NULL,10,'Subject for Pledge Acknowledgment','2013-04-08 06:03:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(406,NULL,7,'Subject for Membership Signup','2013-12-01 04:31:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(407,NULL,10,'Subject for Pledge Acknowledgment','2013-12-02 07:09:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(408,NULL,10,'Subject for Pledge Acknowledgment','2013-01-17 08:55:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(409,NULL,8,'Subject for Membership Renewal','2013-02-28 11:18:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(410,NULL,10,'Subject for Pledge Acknowledgment','2013-01-05 02:37:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(411,NULL,7,'Subject for Membership Signup','2012-12-24 06:25:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(412,NULL,9,'Subject for Tell a Friend','2013-07-01 04:37:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(413,NULL,9,'Subject for Tell a Friend','2013-11-25 01:39:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(414,NULL,9,'Subject for Tell a Friend','2013-06-27 08:34:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(415,NULL,10,'Subject for Pledge Acknowledgment','2013-02-24 08:40:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(416,NULL,8,'Subject for Membership Renewal','2013-05-17 07:07:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(417,NULL,7,'Subject for Membership Signup','2013-01-06 03:11:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(418,NULL,7,'Subject for Membership Signup','2013-03-20 08:09:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(419,NULL,7,'Subject for Membership Signup','2013-10-11 12:20:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(420,NULL,10,'Subject for Pledge Acknowledgment','2013-07-01 01:59:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(421,NULL,10,'Subject for Pledge Acknowledgment','2013-10-09 06:01:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(422,NULL,7,'Subject for Membership Signup','2013-04-28 06:32:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(423,NULL,10,'Subject for Pledge Acknowledgment','2013-01-13 01:09:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(424,NULL,9,'Subject for Tell a Friend','2013-12-02 11:47:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(425,NULL,9,'Subject for Tell a Friend','2013-07-06 11:30:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(426,NULL,8,'Subject for Membership Renewal','2013-09-17 03:02:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(427,NULL,7,'Subject for Membership Signup','2013-09-27 09:54:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(428,NULL,7,'Subject for Membership Signup','2013-06-24 09:02:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(429,NULL,8,'Subject for Membership Renewal','2013-06-17 06:26:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(430,NULL,10,'Subject for Pledge Acknowledgment','2013-07-11 09:35:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(431,NULL,10,'Subject for Pledge Acknowledgment','2013-04-21 06:22:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(432,NULL,7,'Subject for Membership Signup','2012-12-24 06:19:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(433,NULL,10,'Subject for Pledge Acknowledgment','2013-08-19 04:12:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(434,NULL,10,'Subject for Pledge Acknowledgment','2013-03-08 03:14:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(435,NULL,7,'Subject for Membership Signup','2013-05-11 11:07:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(436,NULL,10,'Subject for Pledge Acknowledgment','2013-07-01 10:19:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(437,NULL,8,'Subject for Membership Renewal','2013-10-16 08:03:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(438,NULL,9,'Subject for Tell a Friend','2013-11-10 10:11:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(439,NULL,7,'Subject for Membership Signup','2013-09-30 08:13:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(440,NULL,8,'Subject for Membership Renewal','2013-06-28 01:28:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(441,NULL,8,'Subject for Membership Renewal','2013-06-04 04:53:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(442,NULL,10,'Subject for Pledge Acknowledgment','2013-03-24 11:14:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(443,NULL,9,'Subject for Tell a Friend','2013-02-22 11:59:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(444,NULL,8,'Subject for Membership Renewal','2013-01-01 02:52:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(445,NULL,8,'Subject for Membership Renewal','2013-10-03 09:25:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(446,NULL,10,'Subject for Pledge Acknowledgment','2013-04-25 03:27:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(447,NULL,8,'Subject for Membership Renewal','2013-08-31 04:25:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(448,NULL,7,'Subject for Membership Signup','2013-07-02 01:23:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(449,NULL,8,'Subject for Membership Renewal','2013-09-07 06:16:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(450,NULL,9,'Subject for Tell a Friend','2013-02-05 05:49:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(451,1,6,'$ 125.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(452,2,6,'$ 50.00-Online: Save the Penguins','2010-03-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(453,3,6,'$ 25.00-Apr 2007 Mailer 1','2010-04-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(454,4,6,'$ 50.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(455,5,6,'$ 500.00-Apr 2007 Mailer 1','2010-04-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(456,6,6,'$ 175.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(457,7,6,'$ 50.00-Online: Save the Penguins','2010-03-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(458,8,6,'$ 10.00-Online: Save the Penguins','2010-03-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(459,9,6,'$ 250.00-Online: Save the Penguins','2010-04-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(460,10,6,NULL,'2009-07-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(461,11,6,NULL,'2009-07-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(462,12,6,NULL,'2009-10-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(463,13,6,NULL,'2009-12-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(464,1,7,'General','2013-12-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(465,2,7,'Student','2013-12-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(466,3,7,'General','2013-12-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(467,4,7,'Student','2013-12-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(468,5,7,'General','2011-11-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(469,6,7,'Student','2013-12-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(470,7,7,'General','2013-12-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(471,8,7,'Student','2013-12-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(472,9,7,'General','2013-12-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(473,10,7,'Student','2012-12-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(474,11,7,'Lifetime','2013-12-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(475,12,7,'Student','2013-11-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(476,13,7,'General','2013-11-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(477,14,7,'Student','2013-11-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(478,15,7,'Student','2012-11-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(479,16,7,'Student','2013-11-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(480,17,7,'General','2013-11-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(481,18,7,'Student','2013-11-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(482,19,7,'General','2013-11-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(483,20,7,'General','2011-07-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(484,21,7,'General','2013-11-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(485,22,7,'Lifetime','2013-11-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(486,23,7,'General','2013-11-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(487,24,7,'Student','2013-11-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(488,25,7,'Student','2012-11-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(489,26,7,'Student','2013-11-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(490,27,7,'General','2013-11-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(491,28,7,'Student','2013-11-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(492,29,7,'General','2013-11-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(493,30,7,'Student','2012-11-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(494,14,6,'$ 100.00 - General Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(495,15,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(496,16,6,'$ 100.00 - General Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(497,17,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(498,18,6,'$ 100.00 - General Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(499,19,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(500,20,6,'$ 100.00 - General Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(501,21,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(502,22,6,'$ 100.00 - General Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(503,23,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(504,24,6,'$ 1200.00 - Lifetime Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(505,25,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(506,26,6,'$ 100.00 - General Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(507,27,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(508,28,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(509,29,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(510,30,6,'$ 100.00 - General Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(511,31,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(512,32,6,'$ 100.00 - General Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(513,33,6,'$ 100.00 - General Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(514,34,6,'$ 100.00 - General Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(515,35,6,'$ 1200.00 - Lifetime Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(516,36,6,'$ 100.00 - General Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(517,37,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(518,38,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(519,39,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(520,40,6,'$ 100.00 - General Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(521,41,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(522,42,6,'$ 100.00 - General Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(523,43,6,'$ 50.00 - Student Membership: Offline signup','2013-12-11 12:13:17',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(525,1,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(526,2,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(527,3,5,'NULL','2008-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(528,4,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(529,5,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(530,6,5,'NULL','2008-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(531,7,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(532,8,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(533,9,5,'NULL','2008-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(534,10,5,'NULL','2008-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(535,11,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(536,12,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(537,13,5,'NULL','2008-06-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(538,14,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(539,15,5,'NULL','2008-07-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(540,16,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(541,17,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(542,18,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(543,19,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(544,20,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(545,21,5,'NULL','2008-03-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(546,22,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(547,23,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(548,24,5,'NULL','2008-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(549,25,5,'NULL','2008-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(550,26,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(551,27,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(552,28,5,'NULL','2009-12-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(553,29,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(554,30,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(555,31,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(556,32,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(557,33,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(558,34,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(559,35,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(560,36,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(561,37,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(562,38,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(563,39,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(564,40,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(565,41,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(566,42,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(567,43,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(568,44,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(569,45,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(570,46,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(571,47,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(572,48,5,'NULL','2009-12-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(573,49,5,'NULL','2009-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(574,50,5,'NULL','2009-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(575,45,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(576,46,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(577,47,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(578,48,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(579,49,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(580,50,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(581,51,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(582,52,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(583,53,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(584,54,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(585,55,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(586,56,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(587,57,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(588,58,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(589,59,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(590,60,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(591,61,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(592,62,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(593,63,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(594,64,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(595,65,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(596,66,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(597,67,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(598,68,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(599,69,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(600,70,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(601,71,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(602,72,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(603,73,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(604,74,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(605,75,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(606,76,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(607,77,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(608,78,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(609,79,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(610,80,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(611,81,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(612,82,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(613,83,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(614,84,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(615,85,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(616,86,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(617,87,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(618,88,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(619,89,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(620,90,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(621,91,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(622,92,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(623,93,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(624,94,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2013-12-11 12:13:31',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL);
+INSERT INTO `civicrm_activity` (`id`, `source_record_id`, `activity_type_id`, `subject`, `activity_date_time`, `duration`, `location`, `phone_id`, `phone_number`, `details`, `status_id`, `priority_id`, `parent_id`, `is_test`, `medium_id`, `is_auto`, `relationship_id`, `is_current_revision`, `original_id`, `result`, `is_deleted`, `campaign_id`, `engagement_level`, `weight`) VALUES (1,NULL,9,'Subject for Tell a Friend','2013-06-16 07:47:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(2,NULL,9,'Subject for Tell a Friend','2013-09-05 11:26:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(3,NULL,8,'Subject for Membership Renewal','2013-03-25 09:19:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(4,NULL,9,'Subject for Tell a Friend','2013-11-03 12:30:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(5,NULL,8,'Subject for Membership Renewal','2013-03-18 07:52:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(6,NULL,7,'Subject for Membership Signup','2013-02-07 03:50:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(7,NULL,9,'Subject for Tell a Friend','2013-08-19 07:25:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(8,NULL,7,'Subject for Membership Signup','2013-11-08 12:40:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(9,NULL,7,'Subject for Membership Signup','2013-03-19 04:30:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(10,NULL,9,'Subject for Tell a Friend','2013-08-22 08:20:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(11,NULL,7,'Subject for Membership Signup','2013-07-19 11:41:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(12,NULL,10,'Subject for Pledge Acknowledgment','2013-08-05 12:28:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(13,NULL,7,'Subject for Membership Signup','2013-06-08 04:01:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(14,NULL,7,'Subject for Membership Signup','2013-02-09 02:31:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(15,NULL,7,'Subject for Membership Signup','2013-05-05 11:05:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(16,NULL,8,'Subject for Membership Renewal','2013-03-03 09:23:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(17,NULL,7,'Subject for Membership Signup','2013-01-18 08:22:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(18,NULL,10,'Subject for Pledge Acknowledgment','2013-03-16 02:14:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(19,NULL,9,'Subject for Tell a Friend','2013-09-21 02:02:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(20,NULL,8,'Subject for Membership Renewal','2013-10-14 11:00:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(21,NULL,9,'Subject for Tell a Friend','2013-01-26 05:57:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(22,NULL,7,'Subject for Membership Signup','2013-09-12 01:46:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(23,NULL,10,'Subject for Pledge Acknowledgment','2013-09-26 12:10:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(24,NULL,8,'Subject for Membership Renewal','2013-06-02 04:39:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(25,NULL,7,'Subject for Membership Signup','2013-11-26 08:26:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(26,NULL,9,'Subject for Tell a Friend','2013-05-29 03:00:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(27,NULL,7,'Subject for Membership Signup','2013-08-22 11:00:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(28,NULL,10,'Subject for Pledge Acknowledgment','2013-05-13 01:58:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(29,NULL,7,'Subject for Membership Signup','2013-07-05 11:45:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(30,NULL,10,'Subject for Pledge Acknowledgment','2013-08-21 12:36:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(31,NULL,10,'Subject for Pledge Acknowledgment','2013-01-28 10:08:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(32,NULL,8,'Subject for Membership Renewal','2013-01-14 04:26:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(33,NULL,8,'Subject for Membership Renewal','2013-03-18 04:04:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(34,NULL,9,'Subject for Tell a Friend','2013-06-30 05:55:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(35,NULL,7,'Subject for Membership Signup','2013-02-17 10:44:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(36,NULL,10,'Subject for Pledge Acknowledgment','2013-05-11 03:20:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(37,NULL,9,'Subject for Tell a Friend','2013-02-23 05:31:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(38,NULL,7,'Subject for Membership Signup','2013-07-25 05:02:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(39,NULL,8,'Subject for Membership Renewal','2013-12-06 01:13:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(40,NULL,10,'Subject for Pledge Acknowledgment','2013-10-05 10:05:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(41,NULL,8,'Subject for Membership Renewal','2013-05-12 06:21:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(42,NULL,10,'Subject for Pledge Acknowledgment','2013-02-10 07:46:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(43,NULL,9,'Subject for Tell a Friend','2013-09-08 01:23:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(44,NULL,9,'Subject for Tell a Friend','2013-08-14 08:11:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(45,NULL,10,'Subject for Pledge Acknowledgment','2013-11-21 01:20:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(46,NULL,10,'Subject for Pledge Acknowledgment','2013-04-25 04:22:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(47,NULL,8,'Subject for Membership Renewal','2013-09-27 06:06:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(48,NULL,9,'Subject for Tell a Friend','2013-10-19 12:46:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(49,NULL,8,'Subject for Membership Renewal','2013-06-16 12:54:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(50,NULL,8,'Subject for Membership Renewal','2013-01-21 07:43:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(51,NULL,9,'Subject for Tell a Friend','2013-01-12 01:09:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(52,NULL,9,'Subject for Tell a Friend','2013-06-18 08:21:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(53,NULL,10,'Subject for Pledge Acknowledgment','2013-04-06 06:26:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(54,NULL,7,'Subject for Membership Signup','2013-03-05 09:21:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(55,NULL,10,'Subject for Pledge Acknowledgment','2013-05-24 12:40:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(56,NULL,10,'Subject for Pledge Acknowledgment','2013-10-24 02:30:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(57,NULL,8,'Subject for Membership Renewal','2013-11-22 01:13:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(58,NULL,8,'Subject for Membership Renewal','2013-10-26 05:27:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(59,NULL,7,'Subject for Membership Signup','2013-07-25 03:07:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(60,NULL,10,'Subject for Pledge Acknowledgment','2013-11-28 09:21:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(61,NULL,9,'Subject for Tell a Friend','2013-07-18 10:53:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(62,NULL,9,'Subject for Tell a Friend','2013-04-06 03:31:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(63,NULL,10,'Subject for Pledge Acknowledgment','2013-09-11 07:15:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(64,NULL,9,'Subject for Tell a Friend','2013-12-05 11:50:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(65,NULL,8,'Subject for Membership Renewal','2013-05-10 04:58:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(66,NULL,8,'Subject for Membership Renewal','2013-02-04 07:56:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(67,NULL,10,'Subject for Pledge Acknowledgment','2013-03-07 05:31:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(68,NULL,10,'Subject for Pledge Acknowledgment','2013-03-12 06:03:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(69,NULL,8,'Subject for Membership Renewal','2013-07-26 07:55:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(70,NULL,9,'Subject for Tell a Friend','2013-10-06 02:06:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(71,NULL,10,'Subject for Pledge Acknowledgment','2013-11-08 10:21:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(72,NULL,7,'Subject for Membership Signup','2013-10-14 06:25:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(73,NULL,7,'Subject for Membership Signup','2013-02-13 01:57:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(74,NULL,10,'Subject for Pledge Acknowledgment','2013-08-20 09:06:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(75,NULL,8,'Subject for Membership Renewal','2013-09-06 03:42:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(76,NULL,9,'Subject for Tell a Friend','2013-06-12 08:48:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(77,NULL,9,'Subject for Tell a Friend','2013-05-30 10:44:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(78,NULL,7,'Subject for Membership Signup','2013-06-26 10:53:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(79,NULL,10,'Subject for Pledge Acknowledgment','2013-04-11 12:47:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(80,NULL,10,'Subject for Pledge Acknowledgment','2013-11-16 02:08:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(81,NULL,7,'Subject for Membership Signup','2013-05-08 03:47:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(82,NULL,10,'Subject for Pledge Acknowledgment','2013-05-29 02:20:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(83,NULL,9,'Subject for Tell a Friend','2013-09-18 02:31:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(84,NULL,7,'Subject for Membership Signup','2013-10-29 04:33:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(85,NULL,8,'Subject for Membership Renewal','2013-02-22 09:38:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(86,NULL,8,'Subject for Membership Renewal','2013-04-14 10:37:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(87,NULL,9,'Subject for Tell a Friend','2013-06-16 04:50:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(88,NULL,9,'Subject for Tell a Friend','2013-02-09 06:33:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(89,NULL,10,'Subject for Pledge Acknowledgment','2013-07-28 07:14:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(90,NULL,7,'Subject for Membership Signup','2013-05-25 01:30:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(91,NULL,8,'Subject for Membership Renewal','2013-10-10 12:25:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(92,NULL,10,'Subject for Pledge Acknowledgment','2013-10-18 10:01:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(93,NULL,9,'Subject for Tell a Friend','2013-05-05 03:36:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(94,NULL,9,'Subject for Tell a Friend','2013-12-14 10:57:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(95,NULL,10,'Subject for Pledge Acknowledgment','2013-05-31 02:10:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(96,NULL,9,'Subject for Tell a Friend','2013-07-24 09:53:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(97,NULL,8,'Subject for Membership Renewal','2013-06-28 05:57:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(98,NULL,7,'Subject for Membership Signup','2013-09-03 06:05:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(99,NULL,8,'Subject for Membership Renewal','2013-09-01 05:43:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(100,NULL,9,'Subject for Tell a Friend','2013-01-28 07:57:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(101,NULL,10,'Subject for Pledge Acknowledgment','2013-12-30 07:19:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(102,NULL,8,'Subject for Membership Renewal','2013-08-26 04:11:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(103,NULL,9,'Subject for Tell a Friend','2013-07-07 02:07:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(104,NULL,8,'Subject for Membership Renewal','2013-09-27 10:02:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(105,NULL,9,'Subject for Tell a Friend','2013-07-23 02:44:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(106,NULL,10,'Subject for Pledge Acknowledgment','2013-06-10 08:21:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(107,NULL,10,'Subject for Pledge Acknowledgment','2013-12-03 06:40:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(108,NULL,9,'Subject for Tell a Friend','2013-01-15 07:00:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(109,NULL,10,'Subject for Pledge Acknowledgment','2013-09-12 04:47:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(110,NULL,10,'Subject for Pledge Acknowledgment','2013-10-16 05:27:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(111,NULL,8,'Subject for Membership Renewal','2013-12-09 10:53:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(112,NULL,7,'Subject for Membership Signup','2013-04-02 12:52:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(113,NULL,10,'Subject for Pledge Acknowledgment','2013-04-05 09:26:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(114,NULL,9,'Subject for Tell a Friend','2013-11-10 03:26:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(115,NULL,7,'Subject for Membership Signup','2013-01-12 10:22:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(116,NULL,9,'Subject for Tell a Friend','2013-05-18 05:23:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(117,NULL,10,'Subject for Pledge Acknowledgment','2013-06-09 08:25:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(118,NULL,7,'Subject for Membership Signup','2013-11-12 06:31:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(119,NULL,9,'Subject for Tell a Friend','2014-01-05 03:00:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(120,NULL,10,'Subject for Pledge Acknowledgment','2013-09-30 08:24:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(121,NULL,9,'Subject for Tell a Friend','2013-08-23 03:56:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(122,NULL,7,'Subject for Membership Signup','2013-04-04 02:14:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(123,NULL,7,'Subject for Membership Signup','2013-05-26 05:08:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(124,NULL,9,'Subject for Tell a Friend','2013-10-02 06:13:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(125,NULL,8,'Subject for Membership Renewal','2013-09-17 02:15:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(126,NULL,8,'Subject for Membership Renewal','2013-10-28 02:05:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(127,NULL,8,'Subject for Membership Renewal','2013-06-30 04:41:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(128,NULL,10,'Subject for Pledge Acknowledgment','2013-10-21 11:28:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(129,NULL,8,'Subject for Membership Renewal','2013-05-02 10:30:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(130,NULL,9,'Subject for Tell a Friend','2013-04-08 01:30:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(131,NULL,7,'Subject for Membership Signup','2013-06-30 07:01:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(132,NULL,9,'Subject for Tell a Friend','2013-09-03 03:40:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(133,NULL,9,'Subject for Tell a Friend','2013-08-19 11:36:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(134,NULL,7,'Subject for Membership Signup','2013-01-08 12:40:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(135,NULL,8,'Subject for Membership Renewal','2013-05-12 04:39:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(136,NULL,9,'Subject for Tell a Friend','2013-12-22 05:38:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(137,NULL,7,'Subject for Membership Signup','2013-11-30 02:21:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(138,NULL,9,'Subject for Tell a Friend','2013-11-28 03:14:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(139,NULL,10,'Subject for Pledge Acknowledgment','2013-08-28 10:52:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(140,NULL,9,'Subject for Tell a Friend','2013-02-26 10:04:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(141,NULL,8,'Subject for Membership Renewal','2013-07-31 09:34:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(142,NULL,7,'Subject for Membership Signup','2013-08-25 12:04:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(143,NULL,9,'Subject for Tell a Friend','2013-07-09 06:46:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(144,NULL,8,'Subject for Membership Renewal','2013-09-12 02:13:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(145,NULL,8,'Subject for Membership Renewal','2013-07-01 06:35:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(146,NULL,8,'Subject for Membership Renewal','2013-01-18 09:14:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(147,NULL,7,'Subject for Membership Signup','2013-12-16 06:36:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(148,NULL,8,'Subject for Membership Renewal','2013-05-07 11:16:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(149,NULL,8,'Subject for Membership Renewal','2013-10-03 05:37:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(150,NULL,7,'Subject for Membership Signup','2013-08-30 02:17:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(151,NULL,7,'Subject for Membership Signup','2013-01-10 11:40:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(152,NULL,8,'Subject for Membership Renewal','2013-07-08 05:42:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(153,NULL,10,'Subject for Pledge Acknowledgment','2013-07-26 11:30:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(154,NULL,9,'Subject for Tell a Friend','2013-08-03 04:29:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(155,NULL,7,'Subject for Membership Signup','2013-01-12 05:33:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(156,NULL,9,'Subject for Tell a Friend','2013-02-10 04:56:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(157,NULL,8,'Subject for Membership Renewal','2013-09-29 09:04:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(158,NULL,8,'Subject for Membership Renewal','2013-05-01 05:23:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(159,NULL,7,'Subject for Membership Signup','2013-04-03 07:39:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(160,NULL,7,'Subject for Membership Signup','2013-08-31 10:15:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(161,NULL,10,'Subject for Pledge Acknowledgment','2013-02-04 10:54:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(162,NULL,10,'Subject for Pledge Acknowledgment','2013-09-20 02:01:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(163,NULL,7,'Subject for Membership Signup','2013-03-17 06:16:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(164,NULL,8,'Subject for Membership Renewal','2013-05-04 05:39:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(165,NULL,8,'Subject for Membership Renewal','2013-03-10 09:24:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(166,NULL,8,'Subject for Membership Renewal','2013-12-27 01:24:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(167,NULL,7,'Subject for Membership Signup','2013-08-20 07:16:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(168,NULL,8,'Subject for Membership Renewal','2013-07-11 01:08:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(169,NULL,8,'Subject for Membership Renewal','2013-06-16 01:12:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(170,NULL,9,'Subject for Tell a Friend','2013-04-10 05:47:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(171,NULL,9,'Subject for Tell a Friend','2013-12-24 09:38:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(172,NULL,7,'Subject for Membership Signup','2013-10-15 10:02:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(173,NULL,8,'Subject for Membership Renewal','2013-07-29 12:05:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(174,NULL,8,'Subject for Membership Renewal','2013-10-17 09:34:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(175,NULL,7,'Subject for Membership Signup','2013-10-27 04:10:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(176,NULL,8,'Subject for Membership Renewal','2013-06-30 02:46:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(177,NULL,7,'Subject for Membership Signup','2013-09-05 02:47:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(178,NULL,8,'Subject for Membership Renewal','2013-01-20 02:45:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(179,NULL,10,'Subject for Pledge Acknowledgment','2013-08-05 08:48:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(180,NULL,10,'Subject for Pledge Acknowledgment','2013-06-06 04:09:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(181,NULL,8,'Subject for Membership Renewal','2013-02-05 07:05:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(182,NULL,7,'Subject for Membership Signup','2013-04-01 06:01:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(183,NULL,10,'Subject for Pledge Acknowledgment','2013-11-12 11:36:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(184,NULL,10,'Subject for Pledge Acknowledgment','2013-11-04 02:38:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(185,NULL,10,'Subject for Pledge Acknowledgment','2013-09-05 10:03:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(186,NULL,7,'Subject for Membership Signup','2013-03-31 04:51:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(187,NULL,10,'Subject for Pledge Acknowledgment','2013-02-10 04:33:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(188,NULL,8,'Subject for Membership Renewal','2013-06-29 05:59:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(189,NULL,10,'Subject for Pledge Acknowledgment','2013-11-17 09:05:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(190,NULL,10,'Subject for Pledge Acknowledgment','2013-11-25 11:27:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(191,NULL,9,'Subject for Tell a Friend','2013-12-22 02:49:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(192,NULL,8,'Subject for Membership Renewal','2013-07-15 07:35:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(193,NULL,10,'Subject for Pledge Acknowledgment','2013-06-11 01:27:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(194,NULL,8,'Subject for Membership Renewal','2013-03-29 06:23:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(195,NULL,8,'Subject for Membership Renewal','2013-09-03 10:03:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(196,NULL,8,'Subject for Membership Renewal','2013-10-04 08:19:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(197,NULL,7,'Subject for Membership Signup','2013-05-19 11:08:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(198,NULL,7,'Subject for Membership Signup','2013-01-24 02:23:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(199,NULL,8,'Subject for Membership Renewal','2013-04-25 09:26:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(200,NULL,7,'Subject for Membership Signup','2013-03-12 05:41:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(201,NULL,10,'Subject for Pledge Acknowledgment','2013-06-26 09:03:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(202,NULL,8,'Subject for Membership Renewal','2013-05-01 05:18:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(203,NULL,8,'Subject for Membership Renewal','2013-06-27 09:32:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(204,NULL,10,'Subject for Pledge Acknowledgment','2013-12-25 08:25:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(205,NULL,8,'Subject for Membership Renewal','2013-01-22 02:36:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(206,NULL,8,'Subject for Membership Renewal','2013-09-01 11:14:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(207,NULL,9,'Subject for Tell a Friend','2013-12-25 07:00:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(208,NULL,10,'Subject for Pledge Acknowledgment','2013-09-16 02:25:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(209,NULL,8,'Subject for Membership Renewal','2013-11-15 06:44:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(210,NULL,9,'Subject for Tell a Friend','2013-05-21 02:39:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(211,NULL,8,'Subject for Membership Renewal','2013-03-10 08:01:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(212,NULL,10,'Subject for Pledge Acknowledgment','2013-05-08 08:25:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(213,NULL,7,'Subject for Membership Signup','2013-12-28 02:47:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(214,NULL,7,'Subject for Membership Signup','2013-10-17 04:27:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(215,NULL,9,'Subject for Tell a Friend','2013-12-21 09:41:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(216,NULL,8,'Subject for Membership Renewal','2013-02-24 10:04:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(217,NULL,7,'Subject for Membership Signup','2013-03-04 08:33:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(218,NULL,9,'Subject for Tell a Friend','2013-03-12 08:56:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(219,NULL,9,'Subject for Tell a Friend','2013-11-18 05:00:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(220,NULL,8,'Subject for Membership Renewal','2013-06-08 08:53:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(221,NULL,7,'Subject for Membership Signup','2013-12-03 08:44:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(222,NULL,10,'Subject for Pledge Acknowledgment','2013-01-28 10:06:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(223,NULL,9,'Subject for Tell a Friend','2013-09-18 07:59:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(224,NULL,10,'Subject for Pledge Acknowledgment','2013-04-20 03:02:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(225,NULL,9,'Subject for Tell a Friend','2013-08-10 02:39:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(226,NULL,8,'Subject for Membership Renewal','2013-03-31 12:21:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(227,NULL,10,'Subject for Pledge Acknowledgment','2013-11-07 06:14:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(228,NULL,9,'Subject for Tell a Friend','2013-11-03 03:19:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(229,NULL,7,'Subject for Membership Signup','2014-01-08 05:17:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(230,NULL,8,'Subject for Membership Renewal','2013-04-03 12:40:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(231,NULL,8,'Subject for Membership Renewal','2013-08-05 05:07:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(232,NULL,8,'Subject for Membership Renewal','2013-12-22 02:59:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(233,NULL,10,'Subject for Pledge Acknowledgment','2013-10-24 12:12:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(234,NULL,7,'Subject for Membership Signup','2013-07-21 08:23:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(235,NULL,7,'Subject for Membership Signup','2014-01-02 11:17:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(236,NULL,8,'Subject for Membership Renewal','2013-01-27 02:43:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(237,NULL,9,'Subject for Tell a Friend','2013-06-05 06:12:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(238,NULL,9,'Subject for Tell a Friend','2013-06-22 02:22:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(239,NULL,8,'Subject for Membership Renewal','2013-08-10 05:27:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(240,NULL,10,'Subject for Pledge Acknowledgment','2013-10-25 08:38:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(241,NULL,9,'Subject for Tell a Friend','2013-11-20 05:50:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(242,NULL,8,'Subject for Membership Renewal','2013-11-01 10:13:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(243,NULL,10,'Subject for Pledge Acknowledgment','2013-05-13 03:19:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(244,NULL,9,'Subject for Tell a Friend','2013-12-04 09:56:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(245,NULL,7,'Subject for Membership Signup','2013-08-14 06:59:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(246,NULL,9,'Subject for Tell a Friend','2013-03-01 09:17:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(247,NULL,8,'Subject for Membership Renewal','2013-06-26 01:54:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(248,NULL,10,'Subject for Pledge Acknowledgment','2013-12-18 12:43:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(249,NULL,9,'Subject for Tell a Friend','2013-11-18 05:36:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(250,NULL,8,'Subject for Membership Renewal','2013-02-25 03:18:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(251,NULL,8,'Subject for Membership Renewal','2013-03-07 05:34:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(252,NULL,7,'Subject for Membership Signup','2014-01-05 07:35:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(253,NULL,8,'Subject for Membership Renewal','2013-07-19 04:21:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(254,NULL,9,'Subject for Tell a Friend','2013-01-18 05:43:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(255,NULL,10,'Subject for Pledge Acknowledgment','2013-05-30 12:08:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(256,NULL,8,'Subject for Membership Renewal','2013-09-16 02:12:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(257,NULL,9,'Subject for Tell a Friend','2013-02-02 01:07:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(258,NULL,7,'Subject for Membership Signup','2013-02-04 04:27:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(259,NULL,9,'Subject for Tell a Friend','2013-03-21 02:44:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(260,NULL,10,'Subject for Pledge Acknowledgment','2013-06-26 10:15:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(261,NULL,9,'Subject for Tell a Friend','2013-08-16 02:55:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(262,NULL,7,'Subject for Membership Signup','2013-09-01 06:46:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(263,NULL,8,'Subject for Membership Renewal','2013-12-21 04:10:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(264,NULL,8,'Subject for Membership Renewal','2013-05-08 01:12:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(265,NULL,9,'Subject for Tell a Friend','2013-09-25 10:46:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(266,NULL,9,'Subject for Tell a Friend','2013-05-28 05:02:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(267,NULL,10,'Subject for Pledge Acknowledgment','2013-10-10 10:29:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(268,NULL,8,'Subject for Membership Renewal','2013-05-28 10:11:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(269,NULL,10,'Subject for Pledge Acknowledgment','2013-09-15 10:38:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(270,NULL,7,'Subject for Membership Signup','2013-03-17 11:57:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(271,NULL,8,'Subject for Membership Renewal','2013-02-07 03:38:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(272,NULL,7,'Subject for Membership Signup','2013-07-02 10:31:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(273,NULL,7,'Subject for Membership Signup','2013-06-06 01:11:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(274,NULL,7,'Subject for Membership Signup','2013-04-29 07:41:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(275,NULL,10,'Subject for Pledge Acknowledgment','2013-08-03 06:39:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(276,NULL,9,'Subject for Tell a Friend','2013-03-24 04:40:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(277,NULL,10,'Subject for Pledge Acknowledgment','2013-12-12 01:38:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(278,NULL,9,'Subject for Tell a Friend','2013-07-21 02:51:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(279,NULL,10,'Subject for Pledge Acknowledgment','2013-03-11 11:37:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(280,NULL,9,'Subject for Tell a Friend','2013-03-21 02:25:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(281,NULL,10,'Subject for Pledge Acknowledgment','2013-02-06 05:33:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(282,NULL,8,'Subject for Membership Renewal','2013-01-31 11:07:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(283,NULL,7,'Subject for Membership Signup','2013-08-30 05:05:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(284,NULL,8,'Subject for Membership Renewal','2013-11-27 08:24:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(285,NULL,8,'Subject for Membership Renewal','2013-01-24 09:28:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(286,NULL,7,'Subject for Membership Signup','2013-02-11 01:03:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(287,NULL,9,'Subject for Tell a Friend','2013-03-01 12:32:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(288,NULL,10,'Subject for Pledge Acknowledgment','2013-02-26 04:09:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(289,NULL,8,'Subject for Membership Renewal','2013-07-26 11:38:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(290,NULL,9,'Subject for Tell a Friend','2013-12-12 02:14:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(291,NULL,10,'Subject for Pledge Acknowledgment','2013-04-21 01:50:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(292,NULL,9,'Subject for Tell a Friend','2013-02-06 10:37:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(293,NULL,9,'Subject for Tell a Friend','2013-03-02 11:32:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(294,NULL,8,'Subject for Membership Renewal','2013-07-19 07:23:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(295,NULL,10,'Subject for Pledge Acknowledgment','2013-03-03 04:46:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(296,NULL,7,'Subject for Membership Signup','2013-01-21 03:49:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(297,NULL,7,'Subject for Membership Signup','2013-03-18 02:33:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(298,NULL,8,'Subject for Membership Renewal','2013-05-25 04:15:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(299,NULL,10,'Subject for Pledge Acknowledgment','2013-07-15 07:39:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(300,NULL,8,'Subject for Membership Renewal','2013-04-19 10:44:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(301,NULL,10,'Subject for Pledge Acknowledgment','2013-11-02 03:23:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(302,NULL,10,'Subject for Pledge Acknowledgment','2013-03-12 01:26:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(303,NULL,9,'Subject for Tell a Friend','2013-11-12 05:10:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(304,NULL,10,'Subject for Pledge Acknowledgment','2013-12-22 04:22:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(305,NULL,8,'Subject for Membership Renewal','2013-11-07 12:14:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(306,NULL,7,'Subject for Membership Signup','2013-11-08 07:01:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(307,NULL,7,'Subject for Membership Signup','2013-04-01 02:57:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(308,NULL,7,'Subject for Membership Signup','2013-11-02 07:50:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(309,NULL,8,'Subject for Membership Renewal','2013-05-29 03:56:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(310,NULL,8,'Subject for Membership Renewal','2013-02-10 07:18:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(311,NULL,7,'Subject for Membership Signup','2013-06-23 02:27:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(312,NULL,8,'Subject for Membership Renewal','2013-07-02 10:21:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(313,NULL,8,'Subject for Membership Renewal','2013-06-26 02:50:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(314,NULL,7,'Subject for Membership Signup','2013-09-06 03:54:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(315,NULL,9,'Subject for Tell a Friend','2013-06-27 11:26:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(316,NULL,7,'Subject for Membership Signup','2013-04-28 12:26:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(317,NULL,10,'Subject for Pledge Acknowledgment','2013-01-10 07:34:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(318,NULL,8,'Subject for Membership Renewal','2013-08-02 05:26:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(319,NULL,7,'Subject for Membership Signup','2013-06-27 09:40:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(320,NULL,7,'Subject for Membership Signup','2013-11-10 08:44:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(321,NULL,9,'Subject for Tell a Friend','2013-06-13 10:21:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(322,NULL,9,'Subject for Tell a Friend','2013-05-20 11:36:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(323,NULL,9,'Subject for Tell a Friend','2013-04-07 04:58:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(324,NULL,7,'Subject for Membership Signup','2013-06-05 03:49:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(325,NULL,10,'Subject for Pledge Acknowledgment','2013-01-25 10:55:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(326,NULL,8,'Subject for Membership Renewal','2013-04-24 08:37:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(327,NULL,10,'Subject for Pledge Acknowledgment','2013-06-17 03:53:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(328,NULL,10,'Subject for Pledge Acknowledgment','2013-06-15 04:56:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(329,NULL,7,'Subject for Membership Signup','2013-03-09 11:40:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(330,NULL,7,'Subject for Membership Signup','2013-11-21 03:21:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(331,NULL,10,'Subject for Pledge Acknowledgment','2013-07-04 07:03:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(332,NULL,8,'Subject for Membership Renewal','2013-07-16 01:38:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(333,NULL,8,'Subject for Membership Renewal','2013-11-02 01:45:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(334,NULL,8,'Subject for Membership Renewal','2013-12-07 05:42:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(335,NULL,8,'Subject for Membership Renewal','2013-08-12 03:39:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(336,NULL,10,'Subject for Pledge Acknowledgment','2013-02-19 03:08:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(337,NULL,8,'Subject for Membership Renewal','2013-04-11 01:29:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(338,NULL,7,'Subject for Membership Signup','2013-03-02 09:15:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(339,NULL,9,'Subject for Tell a Friend','2013-01-11 06:46:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(340,NULL,9,'Subject for Tell a Friend','2013-05-22 01:19:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(341,NULL,7,'Subject for Membership Signup','2013-02-02 12:58:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(342,NULL,9,'Subject for Tell a Friend','2013-05-06 03:45:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(343,NULL,10,'Subject for Pledge Acknowledgment','2014-01-01 08:28:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(344,NULL,8,'Subject for Membership Renewal','2013-04-25 11:31:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(345,NULL,7,'Subject for Membership Signup','2013-10-10 01:05:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(346,NULL,8,'Subject for Membership Renewal','2013-04-09 10:22:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(347,NULL,7,'Subject for Membership Signup','2013-10-20 11:47:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(348,NULL,10,'Subject for Pledge Acknowledgment','2013-07-21 04:51:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(349,NULL,10,'Subject for Pledge Acknowledgment','2013-01-11 11:01:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(350,NULL,7,'Subject for Membership Signup','2013-02-12 08:20:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(351,NULL,7,'Subject for Membership Signup','2013-04-02 04:46:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(352,NULL,8,'Subject for Membership Renewal','2013-09-14 04:12:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(353,NULL,10,'Subject for Pledge Acknowledgment','2013-08-06 08:15:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(354,NULL,8,'Subject for Membership Renewal','2013-07-20 03:40:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(355,NULL,10,'Subject for Pledge Acknowledgment','2013-02-08 10:42:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(356,NULL,10,'Subject for Pledge Acknowledgment','2013-02-10 04:32:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(357,NULL,10,'Subject for Pledge Acknowledgment','2013-08-27 11:06:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(358,NULL,10,'Subject for Pledge Acknowledgment','2014-01-02 10:54:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(359,NULL,10,'Subject for Pledge Acknowledgment','2013-12-01 11:17:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(360,NULL,8,'Subject for Membership Renewal','2013-10-23 11:45:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(361,NULL,10,'Subject for Pledge Acknowledgment','2013-08-08 11:31:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(362,NULL,10,'Subject for Pledge Acknowledgment','2013-07-24 01:58:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(363,NULL,10,'Subject for Pledge Acknowledgment','2013-07-31 04:19:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(364,NULL,10,'Subject for Pledge Acknowledgment','2013-07-15 04:24:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(365,NULL,7,'Subject for Membership Signup','2013-09-03 03:31:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(366,NULL,7,'Subject for Membership Signup','2013-02-23 09:44:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(367,NULL,9,'Subject for Tell a Friend','2013-11-10 03:06:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(368,NULL,9,'Subject for Tell a Friend','2013-03-14 04:15:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(369,NULL,7,'Subject for Membership Signup','2013-02-13 03:54:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(370,NULL,8,'Subject for Membership Renewal','2013-06-19 10:13:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(371,NULL,8,'Subject for Membership Renewal','2013-03-01 10:40:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(372,NULL,10,'Subject for Pledge Acknowledgment','2013-02-11 05:33:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(373,NULL,8,'Subject for Membership Renewal','2013-04-07 12:39:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(374,NULL,7,'Subject for Membership Signup','2013-01-23 01:57:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(375,NULL,7,'Subject for Membership Signup','2013-11-21 12:08:52',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(376,NULL,10,'Subject for Pledge Acknowledgment','2013-01-17 10:01:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(377,NULL,9,'Subject for Tell a Friend','2013-10-25 08:54:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(378,NULL,10,'Subject for Pledge Acknowledgment','2013-06-13 07:07:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(379,NULL,10,'Subject for Pledge Acknowledgment','2013-02-22 07:09:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(380,NULL,7,'Subject for Membership Signup','2013-04-03 12:35:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(381,NULL,7,'Subject for Membership Signup','2013-05-03 06:23:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(382,NULL,9,'Subject for Tell a Friend','2013-12-23 05:25:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(383,NULL,8,'Subject for Membership Renewal','2013-11-16 09:13:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(384,NULL,8,'Subject for Membership Renewal','2013-05-04 08:56:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(385,NULL,9,'Subject for Tell a Friend','2013-04-22 05:27:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(386,NULL,8,'Subject for Membership Renewal','2013-02-20 08:45:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(387,NULL,8,'Subject for Membership Renewal','2013-09-11 07:53:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(388,NULL,10,'Subject for Pledge Acknowledgment','2013-05-23 02:53:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(389,NULL,8,'Subject for Membership Renewal','2013-06-26 12:06:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(390,NULL,10,'Subject for Pledge Acknowledgment','2013-10-06 02:07:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(391,NULL,8,'Subject for Membership Renewal','2013-12-02 11:02:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(392,NULL,7,'Subject for Membership Signup','2013-02-22 10:48:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(393,NULL,9,'Subject for Tell a Friend','2013-08-24 05:07:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(394,NULL,7,'Subject for Membership Signup','2013-02-23 06:14:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(395,NULL,9,'Subject for Tell a Friend','2013-11-17 04:38:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(396,NULL,8,'Subject for Membership Renewal','2013-07-22 07:45:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(397,NULL,7,'Subject for Membership Signup','2013-02-23 04:40:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(398,NULL,7,'Subject for Membership Signup','2013-08-01 10:18:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(399,NULL,10,'Subject for Pledge Acknowledgment','2013-08-19 12:09:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(400,NULL,7,'Subject for Membership Signup','2013-03-21 02:35:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(401,NULL,8,'Subject for Membership Renewal','2013-04-14 12:13:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(402,NULL,8,'Subject for Membership Renewal','2013-02-21 03:51:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(403,NULL,8,'Subject for Membership Renewal','2013-10-14 10:58:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(404,NULL,9,'Subject for Tell a Friend','2013-06-23 09:07:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(405,NULL,8,'Subject for Membership Renewal','2013-07-30 02:46:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(406,NULL,7,'Subject for Membership Signup','2013-12-12 02:21:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(407,NULL,8,'Subject for Membership Renewal','2013-11-13 04:56:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(408,NULL,8,'Subject for Membership Renewal','2013-01-27 10:35:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(409,NULL,10,'Subject for Pledge Acknowledgment','2013-08-13 03:50:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(410,NULL,7,'Subject for Membership Signup','2013-07-01 11:37:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(411,NULL,9,'Subject for Tell a Friend','2013-05-09 11:31:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(412,NULL,10,'Subject for Pledge Acknowledgment','2013-09-22 01:55:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(413,NULL,7,'Subject for Membership Signup','2013-05-27 06:37:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(414,NULL,9,'Subject for Tell a Friend','2013-12-28 11:01:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(415,NULL,10,'Subject for Pledge Acknowledgment','2013-07-01 09:40:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(416,NULL,8,'Subject for Membership Renewal','2013-10-02 03:44:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(417,NULL,10,'Subject for Pledge Acknowledgment','2013-12-30 08:35:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(418,NULL,7,'Subject for Membership Signup','2013-11-09 12:48:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(419,NULL,10,'Subject for Pledge Acknowledgment','2013-11-08 01:33:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(420,NULL,8,'Subject for Membership Renewal','2013-08-30 12:49:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(421,NULL,7,'Subject for Membership Signup','2013-01-23 12:50:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(422,NULL,7,'Subject for Membership Signup','2013-05-15 07:15:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(423,NULL,9,'Subject for Tell a Friend','2013-05-07 10:55:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(424,NULL,7,'Subject for Membership Signup','2013-10-02 08:44:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(425,NULL,7,'Subject for Membership Signup','2013-11-02 04:32:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(426,NULL,10,'Subject for Pledge Acknowledgment','2013-09-13 01:00:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(427,NULL,7,'Subject for Membership Signup','2013-02-19 12:55:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(428,NULL,7,'Subject for Membership Signup','2013-12-17 09:34:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(429,NULL,10,'Subject for Pledge Acknowledgment','2013-03-25 09:00:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(430,NULL,9,'Subject for Tell a Friend','2013-02-22 07:03:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(431,NULL,7,'Subject for Membership Signup','2013-06-12 01:14:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(432,NULL,8,'Subject for Membership Renewal','2013-02-08 02:40:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(433,NULL,10,'Subject for Pledge Acknowledgment','2013-03-11 09:21:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(434,NULL,7,'Subject for Membership Signup','2013-07-09 05:55:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(435,NULL,7,'Subject for Membership Signup','2013-05-23 09:43:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(436,NULL,7,'Subject for Membership Signup','2013-02-06 05:48:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(437,NULL,9,'Subject for Tell a Friend','2013-10-07 01:08:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(438,NULL,9,'Subject for Tell a Friend','2013-07-17 08:33:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(439,NULL,7,'Subject for Membership Signup','2013-03-09 09:57:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(440,NULL,9,'Subject for Tell a Friend','2013-11-05 04:06:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(441,NULL,7,'Subject for Membership Signup','2013-12-21 05:54:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(442,NULL,9,'Subject for Tell a Friend','2013-11-09 09:23:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(443,NULL,9,'Subject for Tell a Friend','2013-09-02 05:20:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(444,NULL,10,'Subject for Pledge Acknowledgment','2013-09-19 03:07:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(445,NULL,9,'Subject for Tell a Friend','2013-02-22 02:52:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(446,NULL,10,'Subject for Pledge Acknowledgment','2013-09-08 06:52:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(447,NULL,8,'Subject for Membership Renewal','2013-02-08 02:53:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(448,NULL,7,'Subject for Membership Signup','2013-05-18 01:08:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(449,NULL,9,'Subject for Tell a Friend','2013-06-15 04:15:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(450,NULL,8,'Subject for Membership Renewal','2013-06-21 03:36:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(451,1,6,'$ 125.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(452,2,6,'$ 50.00-Online: Save the Penguins','2010-03-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(453,3,6,'$ 25.00-Apr 2007 Mailer 1','2010-04-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(454,4,6,'$ 50.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(455,5,6,'$ 500.00-Apr 2007 Mailer 1','2010-04-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(456,6,6,'$ 175.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(457,7,6,'$ 50.00-Online: Save the Penguins','2010-03-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(458,8,6,'$ 10.00-Online: Save the Penguins','2010-03-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(459,9,6,'$ 250.00-Online: Save the Penguins','2010-04-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(460,10,6,NULL,'2009-07-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(461,11,6,NULL,'2009-07-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(462,12,6,NULL,'2009-10-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(463,13,6,NULL,'2009-12-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(464,1,7,'General','2014-01-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(465,2,7,'Student','2014-01-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(466,3,7,'General','2014-01-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(467,4,7,'Student','2014-01-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(468,5,7,'General','2011-12-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(469,6,7,'Student','2014-01-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(470,7,7,'General','2014-01-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(471,8,7,'Student','2014-01-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(472,9,7,'General','2013-12-31 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(473,10,7,'General','2011-10-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(474,11,7,'Lifetime','2013-12-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(475,12,7,'Student','2013-12-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(476,13,7,'General','2013-12-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(477,14,7,'Student','2013-12-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(478,15,7,'General','2011-09-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(479,16,7,'Student','2013-12-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(480,17,7,'General','2013-12-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(481,18,7,'Student','2013-12-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(482,19,7,'General','2013-12-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(483,20,7,'Student','2012-12-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(484,21,7,'General','2013-12-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(485,22,7,'Lifetime','2013-12-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(486,23,7,'General','2013-12-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(487,24,7,'Student','2013-12-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(488,25,7,'General','2011-06-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(489,26,7,'Student','2013-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(490,27,7,'General','2013-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(491,28,7,'Student','2013-12-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(492,29,7,'General','2013-12-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(493,30,7,'General','2011-05-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(494,14,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(495,15,6,'$ 50.00 - Student Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(496,16,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(497,17,6,'$ 50.00 - Student Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(498,18,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(499,19,6,'$ 50.00 - Student Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(500,20,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(501,21,6,'$ 50.00 - Student Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(502,22,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(503,23,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(504,24,6,'$ 1200.00 - Lifetime Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(505,25,6,'$ 50.00 - Student Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(506,26,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(507,27,6,'$ 50.00 - Student Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(508,28,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(509,29,6,'$ 50.00 - Student Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(510,30,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(511,31,6,'$ 50.00 - Student Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(512,32,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(513,33,6,'$ 50.00 - Student Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(514,34,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(515,35,6,'$ 1200.00 - Lifetime Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(516,36,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(517,37,6,'$ 50.00 - Student Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(518,38,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(519,39,6,'$ 50.00 - Student Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(520,40,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(521,41,6,'$ 50.00 - Student Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(522,42,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(523,43,6,'$ 100.00 - General Membership: Offline signup','2014-01-08 12:21:49',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(525,1,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(526,2,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(527,3,5,'NULL','2008-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(528,4,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(529,5,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(530,6,5,'NULL','2008-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(531,7,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(532,8,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(533,9,5,'NULL','2008-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(534,10,5,'NULL','2008-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(535,11,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(536,12,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(537,13,5,'NULL','2008-06-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(538,14,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(539,15,5,'NULL','2008-07-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(540,16,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(541,17,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(542,18,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(543,19,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(544,20,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(545,21,5,'NULL','2008-03-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(546,22,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(547,23,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(548,24,5,'NULL','2008-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(549,25,5,'NULL','2008-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(550,26,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(551,27,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(552,28,5,'NULL','2009-12-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(553,29,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(554,30,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(555,31,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(556,32,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(557,33,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(558,34,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(559,35,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(560,36,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(561,37,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(562,38,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(563,39,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(564,40,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(565,41,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(566,42,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(567,43,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(568,44,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(569,45,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(570,46,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(571,47,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(572,48,5,'NULL','2009-12-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(573,49,5,'NULL','2009-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(574,50,5,'NULL','2009-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(575,45,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(576,46,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(577,47,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(578,48,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(579,49,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(580,50,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(581,51,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(582,52,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(583,53,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(584,54,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(585,55,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(586,56,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(587,57,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(588,58,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(589,59,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(590,60,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(591,61,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(592,62,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(593,63,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(594,64,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(595,65,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(596,66,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(597,67,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(598,68,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(599,69,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(600,70,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(601,71,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(602,72,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(603,73,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(604,74,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(605,75,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(606,76,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(607,77,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(608,78,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(609,79,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(610,80,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(611,81,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(612,82,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(613,83,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(614,84,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(615,85,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(616,86,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(617,87,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(618,88,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(619,89,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(620,90,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(621,91,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(622,92,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(623,93,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(624,94,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2014-01-08 12:21:59',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_activity` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -97,7 +97,7 @@ UNLOCK TABLES;
 
 LOCK TABLES `civicrm_activity_contact` WRITE;
 /*!40000 ALTER TABLE `civicrm_activity_contact` DISABLE KEYS */;
-INSERT INTO `civicrm_activity_contact` (`id`, `activity_id`, `contact_id`, `record_type_id`) VALUES (325,214,1,3),(761,533,1,2),(679,451,2,2),(763,535,2,2),(186,123,3,1),(350,232,3,3),(694,466,3,2),(724,496,3,2),(33,19,4,3),(621,411,4,1),(623,412,4,3),(678,450,4,3),(680,452,4,2),(696,468,4,2),(726,498,4,2),(225,151,5,2),(226,152,5,2),(227,153,5,2),(229,154,5,2),(231,155,5,2),(233,156,5,2),(235,157,5,2),(236,158,5,2),(238,159,5,2),(240,160,5,2),(242,161,5,2),(243,162,5,2),(244,163,5,2),(246,164,5,2),(247,165,5,2),(248,166,5,2),(250,167,5,2),(251,168,5,2),(252,169,5,2),(253,170,5,2),(254,171,5,2),(256,172,5,2),(258,173,5,2),(260,174,5,2),(262,175,5,2),(264,176,5,2),(266,177,5,2),(268,178,5,2),(269,179,5,2),(270,180,5,2),(271,181,5,2),(273,182,5,2),(275,183,5,2),(277,184,5,2),(279,185,5,2),(280,186,5,2),(282,187,5,2),(283,188,5,2),(284,189,5,2),(285,190,5,2),(287,191,5,2),(288,192,5,2),(290,193,5,2),(292,194,5,2),(294,195,5,2),(296,196,5,2),(298,197,5,2),(299,198,5,2),(301,199,5,2),(303,200,5,2),(305,201,5,2),(307,202,5,2),(308,203,5,2),(309,204,5,2),(311,205,5,2),(313,206,5,2),(315,207,5,2),(316,208,5,2),(317,209,5,2),(319,210,5,2),(320,211,5,2),(322,212,5,2),(323,213,5,2),(324,214,5,2),(326,215,5,2),(327,216,5,2),(329,217,5,2),(331,218,5,2),(332,219,5,2),(333,220,5,2),(334,221,5,2),(335,222,5,2),(336,223,5,2),(337,224,5,2),(339,225,5,2),(340,226,5,2),(342,227,5,2),(344,228,5,2),(346,229,5,2),(347,230,5,2),(348,231,5,2),(349,232,5,2),(351,233,5,2),(353,234,5,2),(355,235,5,2),(356,236,5,2),(358,237,5,2),(359,238,5,2),(361,239,5,2),(363,240,5,2),(365,241,5,2),(366,242,5,2),(368,243,5,2),(369,244,5,2),(371,245,5,2),(373,246,5,2),(375,247,5,2),(376,248,5,2),(377,249,5,2),(379,250,5,2),(380,251,5,2),(382,252,5,2),(383,253,5,2),(384,254,5,2),(386,255,5,2),(388,256,5,2),(390,257,5,2),(391,258,5,2),(392,259,5,2),(393,260,5,2),(395,261,5,2),(397,262,5,2),(398,263,5,2),(400,264,5,2),(402,265,5,2),(404,266,5,2),(405,267,5,2),(407,268,5,2),(409,269,5,2),(410,270,5,2),(411,271,5,2),(412,272,5,2),(413,273,5,2),(414,274,5,2),(415,275,5,2),(417,276,5,2),(418,277,5,2),(420,278,5,2),(422,279,5,2),(424,280,5,2),(426,281,5,2),(428,282,5,2),(430,283,5,2),(431,284,5,2),(433,285,5,2),(434,286,5,2),(436,287,5,2),(438,288,5,2),(439,289,5,2),(441,290,5,2),(443,291,5,2),(445,292,5,2),(446,293,5,2),(447,294,5,2),(449,295,5,2),(451,296,5,2),(452,297,5,2),(453,298,5,2),(454,299,5,2),(455,300,5,2),(604,398,5,1),(649,428,5,1),(170,113,6,1),(201,135,6,1),(257,172,6,1),(681,453,6,2),(755,527,6,2),(539,359,7,1),(566,376,7,1),(102,68,8,3),(295,195,8,1),(615,406,8,1),(682,454,8,2),(73,48,9,1),(378,249,9,3),(421,278,9,1),(435,286,9,3),(495,330,9,1),(328,216,10,1),(498,332,10,1),(654,432,10,1),(160,107,11,1),(302,199,11,3),(354,234,11,3),(593,392,11,1),(21,13,12,3),(548,364,12,1),(784,556,12,2),(444,291,13,1),(782,554,13,2),(63,41,14,3),(642,424,14,3),(709,481,14,2),(739,511,14,2),(403,265,15,3),(785,557,15,2),(109,73,16,1),(396,261,16,1),(683,455,16,2),(797,569,16,2),(255,171,17,3),(576,382,17,3),(769,541,18,2),(116,77,19,1),(627,414,19,3),(684,456,19,2),(263,175,20,3),(306,201,20,3),(470,310,20,1),(48,30,21,1),(304,200,21,3),(370,244,21,3),(389,256,21,1),(523,348,21,3),(527,350,21,3),(546,363,21,1),(569,378,21,1),(128,85,22,1),(543,361,22,3),(786,558,22,2),(70,46,23,1),(141,94,24,3),(300,198,24,3),(584,386,24,1),(792,564,24,2),(693,465,25,2),(723,495,25,2),(318,209,26,1),(479,317,26,1),(706,478,26,2),(736,508,26,2),(135,89,28,3),(151,101,28,3),(719,491,28,2),(749,521,28,2),(783,555,28,2),(234,156,29,3),(293,194,29,3),(352,233,29,1),(460,303,29,1),(598,395,29,3),(4,2,30,1),(75,49,30,1),(261,174,31,1),(468,309,31,3),(515,343,31,3),(91,61,32,3),(239,159,32,3),(503,336,32,1),(658,435,32,1),(690,462,32,2),(691,463,32,2),(796,568,32,2),(15,9,33,1),(440,289,33,3),(600,396,33,1),(718,490,33,2),(748,520,33,2),(147,98,34,1),(381,251,34,1),(669,443,34,3),(687,459,34,2),(535,357,36,1),(788,560,36,2),(492,328,37,1),(364,240,38,3),(230,154,40,3),(310,204,40,3),(394,260,40,1),(228,153,41,1),(29,17,42,3),(107,72,42,1),(181,120,42,1),(512,341,42,3),(537,358,42,3),(274,182,43,3),(321,211,43,3),(505,337,43,3),(647,427,43,1),(664,439,43,1),(689,461,43,2),(695,467,43,2),(725,497,43,2),(1,1,44,2),(3,2,44,2),(5,3,44,2),(7,4,44,2),(8,5,44,2),(9,6,44,2),(11,7,44,2),(13,8,44,2),(14,9,44,2),(16,10,44,2),(17,11,44,2),(19,12,44,2),(20,13,44,2),(22,14,44,2),(24,15,44,2),(26,16,44,2),(28,17,44,2),(30,18,44,2),(32,19,44,2),(34,20,44,2),(35,21,44,2),(36,22,44,2),(38,23,44,2),(39,24,44,2),(41,25,44,2),(43,26,44,2),(44,27,44,2),(45,28,44,2),(46,29,44,2),(47,30,44,2),(49,31,44,2),(51,32,44,2),(52,33,44,2),(53,34,44,2),(54,35,44,2),(55,36,44,2),(56,37,44,2),(58,38,44,2),(59,39,44,2),(60,40,44,2),(61,40,44,3),(62,41,44,2),(64,42,44,2),(65,43,44,2),(66,44,44,2),(68,45,44,2),(69,46,44,2),(71,47,44,2),(72,48,44,2),(74,49,44,2),(76,50,44,2),(77,51,44,2),(78,52,44,2),(80,53,44,2),(81,54,44,2),(82,55,44,2),(84,56,44,2),(86,57,44,2),(87,58,44,2),(88,59,44,2),(89,60,44,2),(90,61,44,2),(92,62,44,2),(94,63,44,2),(95,64,44,2),(96,65,44,2),(98,66,44,2),(99,67,44,2),(101,68,44,2),(103,69,44,2),(104,70,44,2),(105,71,44,2),(106,72,44,2),(108,73,44,2),(110,74,44,2),(111,75,44,2),(113,76,44,2),(115,77,44,2),(117,78,44,2),(119,79,44,2),(120,80,44,2),(122,81,44,2),(123,82,44,2),(124,83,44,2),(126,84,44,2),(127,85,44,2),(129,86,44,2),(131,87,44,2),(132,88,44,2),(134,89,44,2),(136,90,44,2),(137,91,44,2),(138,92,44,2),(139,93,44,2),(140,94,44,2),(142,95,44,2),(143,96,44,2),(145,97,44,2),(146,98,44,2),(148,99,44,2),(149,100,44,2),(150,101,44,2),(152,102,44,2),(154,103,44,2),(155,104,44,2),(157,105,44,2),(158,106,44,2),(159,107,44,2),(161,108,44,2),(162,109,44,2),(164,110,44,2),(165,111,44,2),(167,112,44,2),(169,113,44,2),(171,114,44,2),(172,115,44,2),(173,116,44,2),(175,117,44,2),(176,118,44,2),(178,119,44,2),(180,120,44,2),(182,121,44,2),(183,122,44,2),(185,123,44,2),(187,124,44,2),(188,125,44,2),(189,126,44,2),(190,127,44,2),(191,128,44,2),(192,129,44,2),(193,130,44,2),(194,131,44,2),(196,132,44,2),(197,133,44,2),(199,134,44,2),(200,135,44,2),(202,136,44,2),(204,137,44,2),(205,138,44,2),(207,139,44,2),(208,140,44,2),(210,141,44,2),(212,142,44,2),(213,143,44,2),(214,144,44,2),(216,145,44,2),(217,146,44,2),(218,147,44,2),(220,148,44,2),(222,149,44,2),(223,150,44,2),(508,339,44,1),(276,183,45,1),(602,397,45,3),(215,144,47,3),(278,184,47,3),(802,574,47,2),(245,163,48,3),(387,255,48,1),(519,345,48,1),(118,78,49,1),(156,104,49,3),(168,112,49,3),(221,148,49,3),(249,166,49,1),(416,275,50,1),(541,360,50,1),(338,224,51,1),(399,263,52,3),(2,1,53,3),(40,24,53,3),(267,177,53,1),(589,390,53,3),(591,391,53,1),(125,83,54,3),(195,131,54,1),(554,368,54,1),(633,418,54,1),(6,3,55,1),(79,52,55,3),(133,88,55,1),(558,371,55,1),(702,474,55,2),(732,504,55,2),(206,138,57,1),(291,193,57,1),(406,267,57,1),(517,344,57,3),(777,549,57,2),(97,65,59,1),(112,75,59,3),(130,86,59,3),(330,217,59,1),(427,281,59,1),(607,400,59,3),(795,567,60,2),(408,268,61,3),(772,544,61,2),(23,14,62,1),(203,136,62,1),(209,140,62,1),(211,141,62,3),(219,147,62,1),(362,239,62,1),(281,186,63,1),(401,264,64,3),(458,302,64,1),(10,6,65,1),(578,383,65,3),(487,324,66,3),(611,403,66,3),(760,532,66,2),(477,316,67,1),(100,67,68,3),(286,190,68,1),(778,550,68,2),(551,366,69,3),(259,173,70,3),(753,525,70,2),(688,460,71,2),(37,22,72,3),(525,349,72,1),(83,55,73,1),(437,287,73,3),(573,380,73,1),(582,385,73,1),(774,546,73,2),(31,18,74,3),(179,119,74,3),(419,277,74,1),(560,372,74,3),(789,561,74,2),(153,102,75,3),(367,242,75,1),(759,531,75,2),(448,294,76,3),(67,44,77,1),(241,160,77,1),(423,279,77,3),(644,425,78,3),(771,543,78,2),(121,80,79,1),(163,109,79,3),(429,282,79,3),(466,308,79,1),(662,438,79,3),(758,530,79,2),(631,417,80,1),(114,76,82,1),(314,206,82,1),(685,457,82,2),(721,493,82,2),(751,523,82,2),(765,537,82,2),(289,192,83,3),(425,280,84,3),(780,552,84,2),(184,122,86,3),(450,295,86,3),(18,11,87,3),(144,96,88,1),(297,196,88,1),(85,56,89,3),(571,379,89,3),(12,7,90,1),(57,37,90,3),(166,111,90,1),(779,551,90,2),(174,116,91,1),(343,227,92,1),(357,236,92,1),(374,246,92,3),(595,393,92,3),(625,413,92,3),(686,458,92,2),(27,16,93,1),(562,373,93,1),(341,226,94,1),(385,254,94,1),(25,15,95,1),(42,25,95,1),(237,158,95,3),(345,228,95,1),(510,340,95,3),(635,419,95,1),(711,483,95,2),(741,513,95,2),(93,62,96,1),(198,133,96,3),(580,384,96,3),(639,422,96,1),(312,205,97,1),(360,238,97,3),(432,284,97,1),(442,290,97,3),(697,469,97,2),(727,499,97,2),(177,118,98,3),(265,176,98,1),(224,150,99,3),(272,181,99,3),(50,31,100,1),(675,448,100,1),(232,155,101,1),(372,245,101,1),(713,485,103,2),(743,515,103,2),(707,479,105,2),(737,509,105,2),(764,536,108,2),(791,563,111,2),(754,526,114,2),(699,471,115,2),(729,501,115,2),(701,473,118,2),(731,503,118,2),(799,571,121,2),(716,488,129,2),(746,518,129,2),(787,559,130,2),(692,464,133,2),(722,494,133,2),(756,528,135,2),(773,545,139,2),(717,489,140,2),(747,519,140,2),(715,487,143,2),(745,517,143,2),(704,476,145,2),(734,506,145,2),(714,486,149,2),(744,516,149,2),(798,570,150,2),(794,566,153,2),(700,472,156,2),(730,502,156,2),(781,553,158,2),(710,482,159,2),(740,512,159,2),(767,539,162,2),(762,534,163,2),(770,542,165,2),(698,470,168,2),(728,500,168,2),(757,529,169,2),(720,492,170,2),(750,522,170,2),(793,565,171,2),(703,475,174,2),(733,505,174,2),(776,548,176,2),(705,477,177,2),(735,507,177,2),(800,572,180,2),(790,562,184,2),(456,301,189,2),(457,302,189,2),(459,303,189,2),(461,304,189,2),(462,305,189,2),(463,306,189,2),(464,307,189,2),(465,308,189,2),(467,309,189,2),(469,310,189,2),(471,311,189,2),(472,312,189,2),(473,313,189,2),(474,314,189,2),(475,315,189,2),(476,316,189,2),(478,317,189,2),(480,318,189,2),(481,319,189,2),(482,320,189,2),(483,321,189,2),(484,322,189,2),(485,323,189,2),(486,324,189,2),(488,325,189,2),(489,326,189,2),(490,327,189,2),(491,328,189,2),(493,329,189,2),(494,330,189,2),(496,331,189,2),(497,332,189,2),(499,333,189,2),(500,334,189,2),(501,335,189,2),(502,336,189,2),(504,337,189,2),(506,338,189,2),(507,339,189,2),(509,340,189,2),(511,341,189,2),(513,342,189,2),(514,343,189,2),(516,344,189,2),(518,345,189,2),(520,346,189,2),(521,347,189,2),(522,348,189,2),(524,349,189,2),(526,350,189,2),(528,351,189,2),(529,352,189,2),(530,353,189,2),(531,354,189,2),(532,355,189,2),(533,356,189,2),(534,357,189,2),(536,358,189,2),(538,359,189,2),(540,360,189,2),(542,361,189,2),(544,362,189,2),(545,363,189,2),(547,364,189,2),(549,365,189,2),(550,366,189,2),(552,367,189,2),(553,368,189,2),(555,369,189,2),(556,370,189,2),(557,371,189,2),(559,372,189,2),(561,373,189,2),(563,374,189,2),(564,375,189,2),(565,376,189,2),(567,377,189,2),(568,378,189,2),(570,379,189,2),(572,380,189,2),(574,381,189,2),(575,382,189,2),(577,383,189,2),(579,384,189,2),(581,385,189,2),(583,386,189,2),(585,387,189,2),(586,388,189,2),(587,389,189,2),(588,390,189,2),(590,391,189,2),(592,392,189,2),(594,393,189,2),(596,394,189,2),(597,395,189,2),(599,396,189,2),(601,397,189,2),(603,398,189,2),(605,399,189,2),(606,400,189,2),(608,401,189,2),(609,402,189,2),(610,403,189,2),(612,404,189,2),(613,405,189,2),(614,406,189,2),(616,407,189,2),(617,408,189,2),(618,409,189,2),(619,410,189,2),(620,411,189,2),(622,412,189,2),(624,413,189,2),(626,414,189,2),(628,415,189,2),(629,416,189,2),(630,417,189,2),(632,418,189,2),(634,419,189,2),(636,420,189,2),(637,421,189,2),(638,422,189,2),(640,423,189,2),(641,424,189,2),(643,425,189,2),(645,426,189,2),(646,427,189,2),(648,428,189,2),(650,429,189,2),(651,430,189,2),(652,431,189,2),(653,432,189,2),(655,433,189,2),(656,434,189,2),(657,435,189,2),(659,436,189,2),(660,437,189,2),(661,438,189,2),(663,439,189,2),(665,440,189,2),(666,441,189,2),(667,442,189,2),(668,443,189,2),(670,444,189,2),(671,445,189,2),(672,446,189,2),(673,447,189,2),(674,448,189,2),(676,449,189,2),(677,450,189,2),(712,484,190,2),(742,514,190,2),(768,540,190,2),(766,538,192,2),(801,573,193,2),(708,480,195,2),(738,510,195,2),(775,547,200,2);
+INSERT INTO `civicrm_activity_contact` (`id`, `activity_id`, `contact_id`, `record_type_id`) VALUES (666,451,2,2),(258,171,3,3),(591,404,3,3),(594,406,3,1),(233,154,4,3),(539,368,4,3),(637,434,4,1),(667,452,4,2),(235,155,5,1),(296,200,5,1),(552,377,5,3),(780,565,5,2),(148,98,6,1),(393,266,6,3),(668,453,6,2),(33,19,7,3),(243,160,7,1),(601,411,7,3),(705,490,7,2),(735,520,7,2),(762,547,7,2),(631,430,8,3),(669,454,8,2),(768,553,8,2),(619,423,9,3),(237,156,11,3),(760,545,11,2),(458,311,12,1),(428,290,13,3),(697,482,13,2),(727,512,13,2),(770,555,14,2),(346,235,15,1),(537,367,16,3),(670,455,16,2),(172,115,17,1),(775,560,17,2),(687,472,18,2),(717,502,18,2),(414,280,19,3),(671,456,19,2),(206,136,20,3),(227,150,20,1),(260,172,20,1),(326,221,20,1),(93,61,21,3),(125,83,21,3),(437,296,21,1),(478,323,21,3),(535,366,21,1),(628,428,21,1),(685,470,21,2),(715,500,21,2),(155,103,22,3),(174,116,23,3),(446,303,23,3),(541,369,23,1),(558,381,23,1),(583,398,23,1),(763,548,23,2),(2,1,24,3),(349,237,24,3),(698,483,24,2),(728,513,24,2),(60,37,25,3),(136,90,25,1),(401,272,25,1),(664,449,26,3),(70,44,27,3),(140,93,27,3),(273,182,27,1),(422,286,28,1),(564,385,28,3),(651,441,28,1),(757,542,28,2),(79,51,29,3),(199,132,29,3),(363,246,29,3),(626,427,29,1),(680,465,29,2),(710,495,29,2),(46,27,30,1),(75,48,30,3),(512,347,30,1),(647,439,30,1),(682,467,30,2),(712,497,30,2),(264,175,31,1),(374,254,31,3),(574,393,31,3),(701,486,31,2),(731,516,31,2),(411,278,32,3),(578,395,32,3),(677,462,32,2),(678,463,32,2),(772,557,32,2),(452,307,33,1),(503,341,33,1),(505,342,33,3),(321,218,34,3),(476,322,34,3),(674,459,34,2),(18,10,35,3),(291,197,35,1),(439,297,35,1),(454,308,35,1),(606,414,35,3),(756,541,35,2),(472,320,36,1),(486,329,37,1),(653,442,37,3),(114,76,38,3),(167,112,38,1),(405,274,38,1),(195,130,39,3),(424,287,39,3),(480,324,39,1),(746,531,39,2),(599,410,40,1),(774,559,40,2),(158,105,41,3),(499,339,41,3),(617,422,41,1),(197,131,42,1),(450,306,42,1),(695,480,42,2),(725,510,42,2),(218,143,43,3),(655,443,43,3),(676,461,43,2),(699,484,43,2),(729,514,43,2),(30,17,44,1),(12,7,45,3),(55,34,45,3),(256,170,45,3),(316,215,45,3),(344,234,45,1),(184,122,46,1),(338,229,46,1),(464,315,47,3),(142,94,48,3),(98,64,49,3),(145,96,50,3),(203,134,50,1),(284,191,50,3),(572,392,50,1),(581,397,50,1),(108,72,51,1),(319,217,52,1),(779,564,52,2),(116,77,53,3),(127,84,53,1),(216,142,53,1),(314,214,53,1),(382,259,53,3),(649,440,53,3),(742,527,53,2),(62,38,54,1),(501,340,54,3),(533,365,54,1),(693,478,54,2),(723,508,54,2),(418,283,55,1),(686,471,55,2),(716,501,55,2),(151,100,56,3),(604,413,56,1),(750,535,56,2),(323,219,57,3),(576,394,57,1),(110,73,58,1),(131,87,58,3),(385,261,58,3),(641,436,58,1),(787,572,58,2),(367,249,59,3),(351,238,60,3),(679,464,60,2),(709,494,60,2),(766,551,60,2),(186,123,61,1),(332,225,61,3),(371,252,61,1),(643,437,63,3),(403,273,64,1),(378,257,65,3),(611,418,65,1),(658,445,65,3),(777,562,65,2),(90,59,66,1),(162,108,66,3),(182,121,66,3),(355,241,66,3),(547,374,66,1),(784,569,66,2),(201,133,67,3),(359,244,67,3),(516,350,67,1),(773,558,67,2),(466,316,68,1),(229,151,69,1),(703,488,69,2),(733,518,69,2),(170,114,71,3),(675,460,71,2),(398,270,72,1),(462,314,72,1),(691,476,72,2),(721,506,72,2),(133,88,73,3),(210,138,73,3),(361,245,73,1),(387,262,73,1),(509,345,73,1),(36,21,74,3),(118,78,74,1),(293,198,74,1),(49,29,75,1),(188,124,75,3),(586,400,75,1),(745,530,75,2),(708,493,76,2),(738,523,76,2),(177,118,77,1),(765,550,77,2),(14,8,78,1),(38,22,78,1),(68,43,78,3),(84,54,78,1),(122,81,78,1),(470,319,78,1),(20,11,79,1),(27,15,80,1),(556,380,80,1),(10,6,81,1),(57,35,81,1),(278,186,81,1),(433,293,81,3),(7,4,82,3),(213,140,82,3),(518,351,82,1),(623,425,82,1),(633,431,82,1),(672,457,82,2),(241,159,83,1),(304,207,83,3),(25,14,84,1),(42,25,84,1),(223,147,84,1),(488,330,84,1),(252,167,85,1),(4,2,87,3),(247,163,87,1),(308,210,87,3),(549,375,87,1),(615,421,87,1),(662,448,87,1),(179,119,88,3),(23,13,89,1),(95,62,89,3),(329,223,91,3),(497,338,92,1),(639,435,92,1),(673,458,92,2),(16,9,94,1),(267,177,95,1),(391,265,95,3),(621,424,95,1),(44,26,96,3),(408,276,96,3),(753,538,96,2),(105,70,97,3),(741,526,97,2),(208,137,98,1),(336,228,99,3),(81,52,100,3),(380,258,100,1),(645,438,100,3),(312,213,101,1),(431,292,101,3),(474,321,101,3),(560,382,101,3),(681,466,101,2),(711,496,101,2),(707,492,102,2),(737,522,102,2),(764,549,102,2),(740,525,103,2),(758,543,105,2),(755,540,106,2),(688,473,107,2),(718,503,107,2),(747,532,110,2),(700,485,111,2),(730,515,111,2),(786,571,112,2),(778,563,118,2),(751,536,122,2),(704,489,129,2),(734,519,129,2),(769,554,131,2),(228,151,133,2),(230,152,133,2),(231,153,133,2),(232,154,133,2),(234,155,133,2),(236,156,133,2),(238,157,133,2),(239,158,133,2),(240,159,133,2),(242,160,133,2),(244,161,133,2),(245,162,133,2),(246,163,133,2),(248,164,133,2),(249,165,133,2),(250,166,133,2),(251,167,133,2),(253,168,133,2),(254,169,133,2),(255,170,133,2),(257,171,133,2),(259,172,133,2),(261,173,133,2),(262,174,133,2),(263,175,133,2),(265,176,133,2),(266,177,133,2),(268,178,133,2),(269,179,133,2),(270,180,133,2),(271,181,133,2),(272,182,133,2),(274,183,133,2),(275,184,133,2),(276,185,133,2),(277,186,133,2),(279,187,133,2),(280,188,133,2),(281,189,133,2),(282,190,133,2),(283,191,133,2),(285,192,133,2),(286,193,133,2),(287,194,133,2),(288,195,133,2),(289,196,133,2),(290,197,133,2),(292,198,133,2),(294,199,133,2),(295,200,133,2),(297,201,133,2),(298,202,133,2),(299,203,133,2),(300,204,133,2),(301,205,133,2),(302,206,133,2),(303,207,133,2),(305,208,133,2),(306,209,133,2),(307,210,133,2),(309,211,133,2),(310,212,133,2),(311,213,133,2),(313,214,133,2),(315,215,133,2),(317,216,133,2),(318,217,133,2),(320,218,133,2),(322,219,133,2),(324,220,133,2),(325,221,133,2),(327,222,133,2),(328,223,133,2),(330,224,133,2),(331,225,133,2),(333,226,133,2),(334,227,133,2),(335,228,133,2),(337,229,133,2),(339,230,133,2),(340,231,133,2),(341,232,133,2),(342,233,133,2),(343,234,133,2),(345,235,133,2),(347,236,133,2),(348,237,133,2),(350,238,133,2),(352,239,133,2),(353,240,133,2),(354,241,133,2),(356,242,133,2),(357,243,133,2),(358,244,133,2),(360,245,133,2),(362,246,133,2),(364,247,133,2),(365,248,133,2),(366,249,133,2),(368,250,133,2),(369,251,133,2),(370,252,133,2),(372,253,133,2),(373,254,133,2),(375,255,133,2),(376,256,133,2),(377,257,133,2),(379,258,133,2),(381,259,133,2),(383,260,133,2),(384,261,133,2),(386,262,133,2),(388,263,133,2),(389,264,133,2),(390,265,133,2),(392,266,133,2),(394,267,133,2),(395,268,133,2),(396,269,133,2),(397,270,133,2),(399,271,133,2),(400,272,133,2),(402,273,133,2),(404,274,133,2),(406,275,133,2),(407,276,133,2),(409,277,133,2),(410,278,133,2),(412,279,133,2),(413,280,133,2),(415,281,133,2),(416,282,133,2),(417,283,133,2),(419,284,133,2),(420,285,133,2),(421,286,133,2),(423,287,133,2),(425,288,133,2),(426,289,133,2),(427,290,133,2),(429,291,133,2),(430,292,133,2),(432,293,133,2),(434,294,133,2),(435,295,133,2),(436,296,133,2),(438,297,133,2),(440,298,133,2),(441,299,133,2),(442,300,133,2),(743,528,136,2),(781,566,138,2),(754,539,140,2),(744,529,142,2),(684,469,146,2),(714,499,146,2),(696,481,148,2),(726,511,148,2),(759,544,148,2),(771,556,149,2),(782,567,150,2),(752,537,155,2),(443,301,157,2),(444,302,157,2),(445,303,157,2),(447,304,157,2),(448,305,157,2),(449,306,157,2),(451,307,157,2),(453,308,157,2),(455,309,157,2),(456,310,157,2),(457,311,157,2),(459,312,157,2),(460,313,157,2),(461,314,157,2),(463,315,157,2),(465,316,157,2),(467,317,157,2),(468,318,157,2),(469,319,157,2),(471,320,157,2),(473,321,157,2),(475,322,157,2),(477,323,157,2),(479,324,157,2),(481,325,157,2),(482,326,157,2),(483,327,157,2),(484,328,157,2),(485,329,157,2),(487,330,157,2),(489,331,157,2),(490,332,157,2),(491,333,157,2),(492,334,157,2),(493,335,157,2),(494,336,157,2),(495,337,157,2),(496,338,157,2),(498,339,157,2),(500,340,157,2),(502,341,157,2),(504,342,157,2),(506,343,157,2),(507,344,157,2),(508,345,157,2),(510,346,157,2),(511,347,157,2),(513,348,157,2),(514,349,157,2),(515,350,157,2),(517,351,157,2),(519,352,157,2),(520,353,157,2),(521,354,157,2),(522,355,157,2),(523,356,157,2),(524,357,157,2),(525,358,157,2),(526,359,157,2),(527,360,157,2),(528,361,157,2),(529,362,157,2),(530,363,157,2),(531,364,157,2),(532,365,157,2),(534,366,157,2),(536,367,157,2),(538,368,157,2),(540,369,157,2),(542,370,157,2),(543,371,157,2),(544,372,157,2),(545,373,157,2),(546,374,157,2),(548,375,157,2),(550,376,157,2),(551,377,157,2),(553,378,157,2),(554,379,157,2),(555,380,157,2),(557,381,157,2),(559,382,157,2),(561,383,157,2),(562,384,157,2),(563,385,157,2),(565,386,157,2),(566,387,157,2),(567,388,157,2),(568,389,157,2),(569,390,157,2),(570,391,157,2),(571,392,157,2),(573,393,157,2),(575,394,157,2),(577,395,157,2),(579,396,157,2),(580,397,157,2),(582,398,157,2),(584,399,157,2),(585,400,157,2),(587,401,157,2),(588,402,157,2),(589,403,157,2),(590,404,157,2),(592,405,157,2),(593,406,157,2),(595,407,157,2),(596,408,157,2),(597,409,157,2),(598,410,157,2),(600,411,157,2),(602,412,157,2),(603,413,157,2),(605,414,157,2),(607,415,157,2),(608,416,157,2),(609,417,157,2),(610,418,157,2),(612,419,157,2),(613,420,157,2),(614,421,157,2),(616,422,157,2),(618,423,157,2),(620,424,157,2),(622,425,157,2),(624,426,157,2),(625,427,157,2),(627,428,157,2),(629,429,157,2),(630,430,157,2),(632,431,157,2),(634,432,157,2),(635,433,157,2),(636,434,157,2),(638,435,157,2),(640,436,157,2),(642,437,157,2),(644,438,157,2),(646,439,157,2),(648,440,157,2),(650,441,157,2),(652,442,157,2),(654,443,157,2),(656,444,157,2),(657,445,157,2),(659,446,157,2),(660,447,157,2),(661,448,157,2),(663,449,157,2),(665,450,157,2),(702,487,157,2),(732,517,157,2),(748,533,159,2),(690,475,161,2),(720,505,161,2),(749,534,161,2),(692,477,167,2),(722,507,167,2),(767,552,168,2),(761,546,170,2),(785,570,177,2),(783,568,179,2),(689,474,182,2),(719,504,182,2),(694,479,188,2),(724,509,188,2),(776,561,188,2),(1,1,192,2),(3,2,192,2),(5,3,192,2),(6,4,192,2),(8,5,192,2),(9,6,192,2),(11,7,192,2),(13,8,192,2),(15,9,192,2),(17,10,192,2),(19,11,192,2),(21,12,192,2),(22,13,192,2),(24,14,192,2),(26,15,192,2),(28,16,192,2),(29,17,192,2),(31,18,192,2),(32,19,192,2),(34,20,192,2),(35,21,192,2),(37,22,192,2),(39,23,192,2),(40,24,192,2),(41,25,192,2),(43,26,192,2),(45,27,192,2),(47,28,192,2),(48,29,192,2),(50,30,192,2),(51,31,192,2),(52,32,192,2),(53,33,192,2),(54,34,192,2),(56,35,192,2),(58,36,192,2),(59,37,192,2),(61,38,192,2),(63,39,192,2),(64,40,192,2),(65,41,192,2),(66,42,192,2),(67,43,192,2),(69,44,192,2),(71,45,192,2),(72,46,192,2),(73,47,192,2),(74,48,192,2),(76,49,192,2),(77,50,192,2),(78,51,192,2),(80,52,192,2),(82,53,192,2),(83,54,192,2),(85,55,192,2),(86,56,192,2),(87,57,192,2),(88,58,192,2),(89,59,192,2),(91,60,192,2),(92,61,192,2),(94,62,192,2),(96,63,192,2),(97,64,192,2),(99,65,192,2),(100,66,192,2),(101,67,192,2),(102,68,192,2),(103,69,192,2),(104,70,192,2),(106,71,192,2),(107,72,192,2),(109,73,192,2),(111,74,192,2),(112,75,192,2),(113,76,192,2),(115,77,192,2),(117,78,192,2),(119,79,192,2),(120,80,192,2),(121,81,192,2),(123,82,192,2),(124,83,192,2),(126,84,192,2),(128,85,192,2),(129,86,192,2),(130,87,192,2),(132,88,192,2),(134,89,192,2),(135,90,192,2),(137,91,192,2),(138,92,192,2),(139,93,192,2),(141,94,192,2),(143,95,192,2),(144,96,192,2),(146,97,192,2),(147,98,192,2),(149,99,192,2),(150,100,192,2),(152,101,192,2),(153,102,192,2),(154,103,192,2),(156,104,192,2),(157,105,192,2),(159,106,192,2),(160,107,192,2),(161,108,192,2),(163,109,192,2),(164,110,192,2),(165,111,192,2),(166,112,192,2),(168,113,192,2),(169,114,192,2),(171,115,192,2),(173,116,192,2),(175,117,192,2),(176,118,192,2),(178,119,192,2),(180,120,192,2),(181,121,192,2),(183,122,192,2),(185,123,192,2),(187,124,192,2),(189,125,192,2),(190,126,192,2),(191,127,192,2),(192,128,192,2),(193,129,192,2),(194,130,192,2),(196,131,192,2),(198,132,192,2),(200,133,192,2),(202,134,192,2),(204,135,192,2),(205,136,192,2),(207,137,192,2),(209,138,192,2),(211,139,192,2),(212,140,192,2),(214,141,192,2),(215,142,192,2),(217,143,192,2),(219,144,192,2),(220,145,192,2),(221,146,192,2),(222,147,192,2),(224,148,192,2),(225,149,192,2),(226,150,192,2),(683,468,192,2),(713,498,192,2),(788,573,194,2),(706,491,198,2),(736,521,198,2),(789,574,200,2);
 /*!40000 ALTER TABLE `civicrm_activity_contact` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -107,7 +107,7 @@ UNLOCK TABLES;
 
 LOCK TABLES `civicrm_address` WRITE;
 /*!40000 ALTER TABLE `civicrm_address` DISABLE KEYS */;
-INSERT INTO `civicrm_address` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `street_address`, `street_number`, `street_number_suffix`, `street_number_predirectional`, `street_name`, `street_type`, `street_number_postdirectional`, `street_unit`, `supplemental_address_1`, `supplemental_address_2`, `supplemental_address_3`, `city`, `county_id`, `state_province_id`, `postal_code_suffix`, `postal_code`, `usps_adc`, `country_id`, `geo_code_1`, `geo_code_2`, `manual_geo_code`, `timezone`, `name`, `master_id`) VALUES (1,140,1,1,0,'637Y States St W',637,'Y',NULL,'States','St','W',NULL,NULL,NULL,NULL,'Strawberry Point',1,1014,NULL,'52076',NULL,1228,42.697689,-91.51505,0,NULL,NULL,NULL),(2,141,1,1,0,'334V States Path N',334,'V',NULL,'States','Path','N',NULL,NULL,NULL,NULL,'Pinedale',1,1049,NULL,'82941',NULL,1228,42.874606,-109.85694,0,NULL,NULL,NULL),(3,149,1,1,0,'223F Second Pl NW',223,'F',NULL,'Second','Pl','NW',NULL,NULL,NULL,NULL,'Spring City',1,1043,NULL,'84662',NULL,1228,39.461825,-111.47818,0,NULL,NULL,NULL),(4,51,1,1,0,'762E Northpoint Rd NE',762,'E',NULL,'Northpoint','Rd','NE',NULL,NULL,NULL,NULL,'Holton',1,1021,NULL,'49425',NULL,1228,43.443787,-86.10895,0,NULL,NULL,NULL),(5,181,1,1,0,'456B Northpoint Rd NE',456,'B',NULL,'Northpoint','Rd','NE',NULL,NULL,NULL,NULL,'Cylinder',1,1014,NULL,'50528',NULL,1228,43.117331,-94.54767,0,NULL,NULL,NULL),(6,34,1,1,0,'678F Lincoln St NE',678,'F',NULL,'Lincoln','St','NE',NULL,NULL,NULL,NULL,'Roosevelt',1,1002,NULL,'85545',NULL,1228,33.624008,-111.01062,0,NULL,NULL,NULL),(7,105,1,1,0,'607I Bay Blvd E',607,'I',NULL,'Bay','Blvd','E',NULL,NULL,NULL,NULL,'Springdale',1,1003,NULL,'72765',NULL,1228,36.172541,-94.153512,0,NULL,NULL,NULL),(8,121,1,1,0,'734H Caulder Path E',734,'H',NULL,'Caulder','Path','E',NULL,NULL,NULL,NULL,'Hillsboro',1,1047,NULL,'24946',NULL,1228,38.114627,-80.22808,0,NULL,NULL,NULL),(9,97,1,1,0,'682S Bay Ave NE',682,'S',NULL,'Bay','Ave','NE',NULL,NULL,NULL,NULL,'Opheim',1,1025,NULL,'59250',NULL,1228,48.860359,-106.47675,0,NULL,NULL,NULL),(10,2,1,1,0,'805C Woodbridge Path N',805,'C',NULL,'Woodbridge','Path','N',NULL,NULL,NULL,NULL,'Horseheads',1,1031,NULL,'14845',NULL,1228,42.181584,-76.83639,0,NULL,NULL,NULL),(11,7,1,1,0,'557P Second Blvd NE',557,'P',NULL,'Second','Blvd','NE',NULL,NULL,NULL,NULL,'Hampton',1,1012,NULL,'61256',NULL,1228,41.554666,-90.40987,0,NULL,NULL,NULL),(12,69,1,1,0,'500G El Camino Way NW',500,'G',NULL,'El Camino','Way','NW',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75264',NULL,1228,32.767268,-96.777626,0,NULL,NULL,NULL),(13,112,1,1,0,'721P Cadell St S',721,'P',NULL,'Cadell','St','S',NULL,NULL,NULL,NULL,'Erving',1,1020,NULL,'01344',NULL,1228,42.607051,-72.41396,0,NULL,NULL,NULL),(14,5,1,1,0,'921X Jackson Ln W',921,'X',NULL,'Jackson','Ln','W',NULL,NULL,NULL,NULL,'Fresno',1,1004,NULL,'93744',NULL,1228,36.746375,-119.639658,0,NULL,NULL,NULL),(15,183,1,1,0,'835X Woodbridge Path NW',835,'X',NULL,'Woodbridge','Path','NW',NULL,NULL,NULL,NULL,'Salitpa',1,1000,NULL,'36570',NULL,1228,31.613745,-88.01381,0,NULL,NULL,NULL),(16,41,1,1,0,'70P Van Ness Pl N',70,'P',NULL,'Van Ness','Pl','N',NULL,NULL,NULL,NULL,'Gainesville',1,1009,NULL,'30506',NULL,1228,34.346102,-83.901,0,NULL,NULL,NULL),(17,68,1,1,0,'708H Second Blvd NE',708,'H',NULL,'Second','Blvd','NE',NULL,NULL,NULL,NULL,'Auburntown',1,1041,NULL,'37016',NULL,1228,35.951494,-86.09259,0,NULL,NULL,NULL),(18,168,1,1,0,'694E Second Ln S',694,'E',NULL,'Second','Ln','S',NULL,NULL,NULL,NULL,'Orangeburg',1,1039,NULL,'29115',NULL,1228,33.487767,-80.8564,0,NULL,NULL,NULL),(19,106,1,1,0,'74L Main Ln N',74,'L',NULL,'Main','Ln','N',NULL,NULL,NULL,NULL,'Artemus',1,1016,NULL,'40903',NULL,1228,36.825088,-83.8385,0,NULL,NULL,NULL),(20,50,1,1,0,'111X Main Pl NE',111,'X',NULL,'Main','Pl','NE',NULL,NULL,NULL,NULL,'Elk City',1,1035,NULL,'73644',NULL,1228,35.405935,-99.41658,0,NULL,NULL,NULL),(21,75,1,1,0,'739H States Path SW',739,'H',NULL,'States','Path','SW',NULL,NULL,NULL,NULL,'Grain Valley',1,1024,NULL,'64029',NULL,1228,39.012404,-94.21156,0,NULL,NULL,NULL),(22,57,1,1,0,'831S Second Pl SE',831,'S',NULL,'Second','Pl','SE',NULL,NULL,NULL,NULL,'Syracuse',1,1031,NULL,'13219',NULL,1228,43.041566,-76.22072,0,NULL,NULL,NULL),(23,95,1,1,0,'595P Jackson Dr NW',595,'P',NULL,'Jackson','Dr','NW',NULL,NULL,NULL,NULL,'Sandy',1,1036,NULL,'97055',NULL,1228,45.375143,-122.21021,0,NULL,NULL,NULL),(24,87,1,1,0,'289E Cadell Ave SW',289,'E',NULL,'Cadell','Ave','SW',NULL,NULL,NULL,NULL,'Kansas City',1,1024,NULL,'64134',NULL,1228,38.928206,-94.49832,0,NULL,NULL,NULL),(25,198,1,1,0,'92Q Second Dr W',92,'Q',NULL,'Second','Dr','W',NULL,NULL,NULL,NULL,'Corpus Christi',1,1042,NULL,'78471',NULL,1228,27.777,-97.463213,0,NULL,NULL,NULL),(26,93,1,1,0,'9D Maple Ln SE',9,'D',NULL,'Maple','Ln','SE',NULL,NULL,NULL,NULL,'Miami',1,1008,NULL,'33183',NULL,1228,25.699968,-80.40811,0,NULL,NULL,NULL),(27,79,1,1,0,'464Z Beech Way N',464,'Z',NULL,'Beech','Way','N',NULL,NULL,NULL,NULL,'Goose Lake',1,1014,NULL,'52750',NULL,1228,41.926933,-90.41181,0,NULL,NULL,NULL),(28,128,1,1,0,'109Q Martin Luther King Pl SE',109,'Q',NULL,'Martin Luther King','Pl','SE',NULL,NULL,NULL,NULL,'New Market',1,1013,NULL,'47965',NULL,1228,39.950948,-86.92076,0,NULL,NULL,NULL),(29,74,1,1,0,'734B Lincoln Blvd NE',734,'B',NULL,'Lincoln','Blvd','NE',NULL,NULL,NULL,NULL,'Prairie Home',1,1024,NULL,'65068',NULL,1228,38.798727,-92.6068,0,NULL,NULL,NULL),(30,160,1,1,0,'171O Bay Dr S',171,'O',NULL,'Bay','Dr','S',NULL,NULL,NULL,NULL,'Arlington',1,1026,NULL,'68002',NULL,1228,41.47502,-96.34446,0,NULL,NULL,NULL),(31,133,1,1,0,'178F Dowlen Ave S',178,'F',NULL,'Dowlen','Ave','S',NULL,NULL,NULL,NULL,'Howe',1,1011,NULL,'83244',NULL,1228,43.854175,-113.04362,0,NULL,NULL,NULL),(32,26,1,1,0,'270P Green Way SE',270,'P',NULL,'Green','Way','SE',NULL,NULL,NULL,NULL,'Suffolk',1,1045,NULL,'23432',NULL,1228,36.871628,-76.56063,0,NULL,NULL,NULL),(33,15,1,1,0,'672Y El Camino Ln E',672,'Y',NULL,'El Camino','Ln','E',NULL,NULL,NULL,NULL,'Jameson',1,1024,NULL,'64647',NULL,1228,40.036453,-93.97143,0,NULL,NULL,NULL),(34,186,1,1,0,'300V Maple Ave NE',300,'V',NULL,'Maple','Ave','NE',NULL,NULL,NULL,NULL,'Leon',1,1015,NULL,'67074',NULL,1228,37.686034,-96.7069,0,NULL,NULL,NULL),(35,65,1,1,0,'44S College Blvd N',44,'S',NULL,'College','Blvd','N',NULL,NULL,NULL,NULL,'Maywood',1,1029,NULL,'07607',NULL,1228,40.90503,-74.06279,0,NULL,NULL,NULL),(36,47,1,1,0,'105F Cadell Ln NW',105,'F',NULL,'Cadell','Ln','NW',NULL,NULL,NULL,NULL,'Lansford',1,1033,NULL,'58750',NULL,1228,48.611257,-101.4194,0,NULL,NULL,NULL),(37,6,1,1,0,'273B Green Dr SE',273,'B',NULL,'Green','Dr','SE',NULL,NULL,NULL,NULL,'Holland',1,1042,NULL,'76534',NULL,1228,30.883556,-97.396,0,NULL,NULL,NULL),(38,154,1,1,0,'2T Second Dr E',2,'T',NULL,'Second','Dr','E',NULL,NULL,NULL,NULL,'Lomira',1,1048,NULL,'53048',NULL,1228,43.584926,-88.44594,0,NULL,NULL,NULL),(39,179,1,1,0,'716N Jackson Blvd W',716,'N',NULL,'Jackson','Blvd','W',NULL,NULL,NULL,NULL,'Kingfield',1,1018,NULL,'04947',NULL,1228,45.018122,-70.2669,0,NULL,NULL,NULL),(40,100,1,1,0,'555L Bay Blvd E',555,'L',NULL,'Bay','Blvd','E',NULL,NULL,NULL,NULL,'Carleton',1,1026,NULL,'68326',NULL,1228,40.29141,-97.68109,0,NULL,NULL,NULL),(41,189,1,1,0,'957B Pine Dr W',957,'B',NULL,'Pine','Dr','W',NULL,NULL,NULL,NULL,'Trujillo Alto',1,1056,NULL,'00977',NULL,1228,18.337004,-65.990099,0,NULL,NULL,NULL),(42,158,1,1,0,'132T Van Ness St S',132,'T',NULL,'Van Ness','St','S',NULL,NULL,NULL,NULL,'Humboldt',1,1015,NULL,'66748',NULL,1228,37.802718,-95.43452,0,NULL,NULL,NULL),(43,8,1,1,0,'687R College Way NE',687,'R',NULL,'College','Way','NE',NULL,NULL,NULL,NULL,'Sultana',1,1004,NULL,'93666',NULL,1228,36.545749,-119.33907,0,NULL,NULL,NULL),(44,173,1,1,0,'160Z El Camino Path SE',160,'Z',NULL,'El Camino','Path','SE',NULL,NULL,NULL,NULL,'Golden',1,1023,NULL,'38847',NULL,1228,34.428899,-88.22647,0,NULL,NULL,NULL),(45,70,1,1,0,'838W Van Ness Dr NE',838,'W',NULL,'Van Ness','Dr','NE',NULL,NULL,NULL,NULL,'Wilmington',1,1007,NULL,'19898',NULL,1228,39.564499,-75.597047,0,NULL,NULL,NULL),(46,92,1,1,0,'569U Northpoint Blvd N',569,'U',NULL,'Northpoint','Blvd','N',NULL,NULL,NULL,NULL,'Bleiblerville',1,1042,NULL,'78931',NULL,1228,29.849283,-96.313271,0,NULL,NULL,NULL),(47,36,1,1,0,'541K Second Dr E',541,'K',NULL,'Second','Dr','E',NULL,NULL,NULL,NULL,'East Jewett',1,1031,NULL,'12424',NULL,1228,42.240343,-74.15932,0,NULL,NULL,NULL),(48,136,1,1,0,'836K College Dr N',836,'K',NULL,'College','Dr','N',NULL,NULL,NULL,NULL,'Peralta',1,1030,NULL,'87042',NULL,1228,34.83436,-106.68375,0,NULL,NULL,NULL),(49,64,1,1,0,'343R Second Path W',343,'R',NULL,'Second','Path','W',NULL,NULL,NULL,NULL,'Pueblo',1,1005,NULL,'81001',NULL,1228,38.282872,-104.57029,0,NULL,NULL,NULL),(50,85,1,1,0,'498S Dowlen Ln S',498,'S',NULL,'Dowlen','Ln','S',NULL,NULL,NULL,NULL,'Hico',1,1047,NULL,'25854',NULL,1228,38.128245,-80.99151,0,NULL,NULL,NULL),(51,193,1,1,0,'63D Maple Dr E',63,'D',NULL,'Maple','Dr','E',NULL,NULL,NULL,NULL,'Cheney',1,1046,NULL,'99004',NULL,1228,47.466974,-117.60575,0,NULL,NULL,NULL),(52,45,1,1,0,'417I Caulder Pl SW',417,'I',NULL,'Caulder','Pl','SW',NULL,NULL,NULL,NULL,'Lexington',1,1009,NULL,'30648',NULL,1228,33.863779,-83.06063,0,NULL,NULL,NULL),(53,148,1,1,0,'716O College Dr W',716,'O',NULL,'College','Dr','W',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20504',NULL,1228,38.893311,-77.014647,0,NULL,NULL,NULL),(54,89,1,1,0,'833W College Pl SE',833,'W',NULL,'College','Pl','SE',NULL,NULL,NULL,NULL,'Baker',1,1008,NULL,'32531',NULL,1228,30.8752,-86.68607,0,NULL,NULL,NULL),(55,120,1,1,0,'58O States Ln N',58,'O',NULL,'States','Ln','N',NULL,NULL,NULL,NULL,'Farmington',1,1018,NULL,'04938',NULL,1228,44.66776,-70.12362,0,NULL,NULL,NULL),(56,108,1,1,0,'90X Van Ness Way NE',90,'X',NULL,'Van Ness','Way','NE',NULL,NULL,NULL,NULL,'Syracuse',1,1031,NULL,'13225',NULL,1228,43.02143,-76.197701,0,NULL,NULL,NULL),(57,12,1,1,0,'367Q Cadell Ln W',367,'Q',NULL,'Cadell','Ln','W',NULL,NULL,NULL,NULL,'Bradley',1,1004,NULL,'93426',NULL,1228,35.834919,-120.98093,0,NULL,NULL,NULL),(58,72,1,1,0,'880E Jackson Path S',880,'E',NULL,'Jackson','Path','S',NULL,NULL,NULL,NULL,'Palmyra',1,1048,NULL,'53156',NULL,1228,42.879242,-88.58987,0,NULL,NULL,NULL),(59,162,1,1,0,'362B Dowlen Rd W',362,'B',NULL,'Dowlen','Rd','W',NULL,NULL,NULL,NULL,'Burlington Junction',1,1024,NULL,'64428',NULL,1228,40.44627,-95.06768,0,NULL,NULL,NULL),(60,19,1,1,0,'349M College Blvd W',349,'M',NULL,'College','Blvd','W',NULL,NULL,NULL,NULL,'Honolulu',1,1010,NULL,'96805',NULL,1228,24.859832,-168.021815,0,NULL,NULL,NULL),(61,167,1,1,0,'142L College Path NW',142,'L',NULL,'College','Path','NW',NULL,NULL,NULL,NULL,'El Paso',1,1042,NULL,'88540',NULL,1228,31.694842,-106.299987,0,NULL,NULL,NULL),(62,88,1,1,0,'404K Beech St SE',404,'K',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Jackson',1,1041,NULL,'38305',NULL,1228,35.693101,-88.80653,0,NULL,NULL,NULL),(63,192,1,1,0,'475N Woodbridge Rd W',475,'N',NULL,'Woodbridge','Rd','W',NULL,NULL,NULL,NULL,'Loyal',1,1048,NULL,'54446',NULL,1228,44.758265,-90.48248,0,NULL,NULL,NULL),(64,117,1,1,0,'560E Green Ave NE',560,'E',NULL,'Green','Ave','NE',NULL,NULL,NULL,NULL,'Finley',1,1004,NULL,'95435',NULL,1228,39.00686,-122.859625,0,NULL,NULL,NULL),(65,24,1,1,0,'831S Bay Pl E',831,'S',NULL,'Bay','Pl','E',NULL,NULL,NULL,NULL,'Unionville',1,1045,NULL,'22567',NULL,1228,38.233223,-77.91258,0,NULL,NULL,NULL),(66,126,1,1,0,'3W Northpoint Dr W',3,'W',NULL,'Northpoint','Dr','W',NULL,NULL,NULL,NULL,'Cheltenham',1,1037,NULL,'19012',NULL,1228,40.060304,-75.10439,0,NULL,NULL,NULL),(67,110,1,1,0,'380K Woodbridge Path SE',380,'K',NULL,'Woodbridge','Path','SE',NULL,NULL,NULL,NULL,'Wilmington',1,1032,NULL,'28404',NULL,1228,33.926255,-78.07127,0,NULL,NULL,NULL),(68,18,1,1,0,'829D Green Path S',829,'D',NULL,'Green','Path','S',NULL,NULL,NULL,NULL,'Harwick',1,1037,NULL,'15049',NULL,1228,40.555627,-79.8064,0,NULL,NULL,NULL),(69,56,1,1,0,'400F Maple Ave S',400,'F',NULL,'Maple','Ave','S',NULL,NULL,NULL,NULL,'Gardner',1,1015,NULL,'66030',NULL,1228,38.813839,-94.9265,0,NULL,NULL,NULL),(70,46,1,1,0,'285N Cadell Pl W',285,'N',NULL,'Cadell','Pl','W',NULL,NULL,NULL,NULL,'Fort Myers',1,1008,NULL,'33994',NULL,1228,26.552895,-81.94861,0,NULL,NULL,NULL),(71,48,1,1,0,'47P Jackson Way NE',47,'P',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Sheldon',1,1048,NULL,'54766',NULL,1228,45.323865,-90.89376,0,NULL,NULL,NULL),(72,32,3,1,0,'694H Dowlen Way W',694,'H',NULL,'Dowlen','Way','W',NULL,'Mailstop 101',NULL,NULL,'Dixon',1,1016,NULL,'42409',NULL,1228,37.52165,-87.69701,0,NULL,NULL,NULL),(73,124,3,1,0,'847U Jackson Pl SW',847,'U',NULL,'Jackson','Pl','SW',NULL,'Disbursements',NULL,NULL,'Memphis',1,1041,NULL,'38136',NULL,1228,35.201738,-89.971538,0,NULL,NULL,NULL),(74,3,2,1,0,'847U Jackson Pl SW',847,'U',NULL,'Jackson','Pl','SW',NULL,'Disbursements',NULL,NULL,'Memphis',1,1041,NULL,'38136',NULL,1228,35.201738,-89.971538,0,NULL,NULL,73),(75,134,3,1,0,'396H States Blvd SE',396,'H',NULL,'States','Blvd','SE',NULL,'Attn: Development',NULL,NULL,'Mead',1,1035,NULL,'73449',NULL,1228,33.990978,-96.54409,0,NULL,NULL,NULL),(76,98,2,1,0,'396H States Blvd SE',396,'H',NULL,'States','Blvd','SE',NULL,'Attn: Development',NULL,NULL,'Mead',1,1035,NULL,'73449',NULL,1228,33.990978,-96.54409,0,NULL,NULL,75),(77,67,3,1,0,'847G College Blvd N',847,'G',NULL,'College','Blvd','N',NULL,'Editorial Dept',NULL,NULL,'Leavenworth',1,1015,NULL,'66048',NULL,1228,39.298776,-94.93555,0,NULL,NULL,NULL),(78,136,2,0,0,'847G College Blvd N',847,'G',NULL,'College','Blvd','N',NULL,'Editorial Dept',NULL,NULL,'Leavenworth',1,1015,NULL,'66048',NULL,1228,39.298776,-94.93555,0,NULL,NULL,77),(79,187,3,1,0,'103D Jackson St NW',103,'D',NULL,'Jackson','St','NW',NULL,'Donor Relations',NULL,NULL,'Columbus',1,1034,NULL,'43291',NULL,1228,39.969036,-83.011389,0,NULL,NULL,NULL),(80,42,3,1,0,'933P Green Pl E',933,'P',NULL,'Green','Pl','E',NULL,'Editorial Dept',NULL,NULL,'Gouldsboro',1,1018,NULL,'04607',NULL,1228,44.49569,-68.09467,0,NULL,NULL,NULL),(81,84,3,1,0,'301Q Martin Luther King Ave NE',301,'Q',NULL,'Martin Luther King','Ave','NE',NULL,'c/o PO Plus',NULL,NULL,'Springfield',1,1024,NULL,'65602',NULL,1228,37.859361,-92.705545,0,NULL,NULL,NULL),(82,5,2,0,0,'301Q Martin Luther King Ave NE',301,'Q',NULL,'Martin Luther King','Ave','NE',NULL,'c/o PO Plus',NULL,NULL,'Springfield',1,1024,NULL,'65602',NULL,1228,37.859361,-92.705545,0,NULL,NULL,81),(83,96,3,1,0,'652V States Ln SW',652,'V',NULL,'States','Ln','SW',NULL,'Urgent',NULL,NULL,'Petersham',1,1020,NULL,'01366',NULL,1228,42.474718,-72.21226,0,NULL,NULL,NULL),(84,69,2,0,0,'652V States Ln SW',652,'V',NULL,'States','Ln','SW',NULL,'Urgent',NULL,NULL,'Petersham',1,1020,NULL,'01366',NULL,1228,42.474718,-72.21226,0,NULL,NULL,83),(85,123,3,1,0,'737J Main Pl S',737,'J',NULL,'Main','Pl','S',NULL,'c/o OPDC',NULL,NULL,'Hamlet',1,1032,NULL,'28345',NULL,1228,34.879186,-79.69001,0,NULL,NULL,NULL),(86,51,2,0,0,'737J Main Pl S',737,'J',NULL,'Main','Pl','S',NULL,'c/o OPDC',NULL,NULL,'Hamlet',1,1032,NULL,'28345',NULL,1228,34.879186,-79.69001,0,NULL,NULL,85),(87,155,3,1,0,'727U Green Path E',727,'U',NULL,'Green','Path','E',NULL,'Churchgate',NULL,NULL,'Kansas City',1,1024,NULL,'64171',NULL,1228,39.035038,-94.356728,0,NULL,NULL,NULL),(88,87,2,0,0,'727U Green Path E',727,'U',NULL,'Green','Path','E',NULL,'Churchgate',NULL,NULL,'Kansas City',1,1024,NULL,'64171',NULL,1228,39.035038,-94.356728,0,NULL,NULL,87),(89,63,3,1,0,'57L Maple Dr NW',57,'L',NULL,'Maple','Dr','NW',NULL,'Community Relations',NULL,NULL,'Reynolds',1,1012,NULL,'61279',NULL,1228,41.31653,-90.70671,0,NULL,NULL,NULL),(90,122,2,1,0,'57L Maple Dr NW',57,'L',NULL,'Maple','Dr','NW',NULL,'Community Relations',NULL,NULL,'Reynolds',1,1012,NULL,'61279',NULL,1228,41.31653,-90.70671,0,NULL,NULL,89),(91,107,3,1,0,'586S Martin Luther King Way S',586,'S',NULL,'Martin Luther King','Way','S',NULL,'Attn: Accounting',NULL,NULL,'Statesville',1,1032,NULL,'28687',NULL,1228,35.529792,-80.947028,0,NULL,NULL,NULL),(92,75,2,0,0,'586S Martin Luther King Way S',586,'S',NULL,'Martin Luther King','Way','S',NULL,'Attn: Accounting',NULL,NULL,'Statesville',1,1032,NULL,'28687',NULL,1228,35.529792,-80.947028,0,NULL,NULL,91),(93,52,3,1,0,'138S College Ave SE',138,'S',NULL,'College','Ave','SE',NULL,'Attn: Development',NULL,NULL,'Strathmere',1,1029,NULL,'08248',NULL,1228,39.197394,-74.65699,0,NULL,NULL,NULL),(94,85,2,0,0,'138S College Ave SE',138,'S',NULL,'College','Ave','SE',NULL,'Attn: Development',NULL,NULL,'Strathmere',1,1029,NULL,'08248',NULL,1228,39.197394,-74.65699,0,NULL,NULL,93),(95,94,3,1,0,'234P Martin Luther King St NW',234,'P',NULL,'Martin Luther King','St','NW',NULL,'Urgent',NULL,NULL,'Montgomery',1,1000,NULL,'36140',NULL,1228,32.233377,-86.208528,0,NULL,NULL,NULL),(96,16,2,1,0,'234P Martin Luther King St NW',234,'P',NULL,'Martin Luther King','St','NW',NULL,'Urgent',NULL,NULL,'Montgomery',1,1000,NULL,'36140',NULL,1228,32.233377,-86.208528,0,NULL,NULL,95),(97,59,3,1,0,'178H States Pl NW',178,'H',NULL,'States','Pl','NW',NULL,'Disbursements',NULL,NULL,'Luray',1,1045,NULL,'22865',NULL,1228,38.65845,-78.426788,0,NULL,NULL,NULL),(98,169,2,1,0,'178H States Pl NW',178,'H',NULL,'States','Pl','NW',NULL,'Disbursements',NULL,NULL,'Luray',1,1045,NULL,'22865',NULL,1228,38.65845,-78.426788,0,NULL,NULL,97),(99,137,3,1,0,'247C Jackson Dr SE',247,'C',NULL,'Jackson','Dr','SE',NULL,'Attn: Accounting',NULL,NULL,'Crawfordsville',1,1014,NULL,'52621',NULL,1228,41.209047,-91.53273,0,NULL,NULL,NULL),(100,197,2,1,0,'247C Jackson Dr SE',247,'C',NULL,'Jackson','Dr','SE',NULL,'Attn: Accounting',NULL,NULL,'Crawfordsville',1,1014,NULL,'52621',NULL,1228,41.209047,-91.53273,0,NULL,NULL,99),(101,191,3,1,0,'136Z Pine Path E',136,'Z',NULL,'Pine','Path','E',NULL,'Churchgate',NULL,NULL,'Gulfport',1,1023,NULL,'39507',NULL,1228,30.397044,-89.03998,0,NULL,NULL,NULL),(102,39,2,1,0,'136Z Pine Path E',136,'Z',NULL,'Pine','Path','E',NULL,'Churchgate',NULL,NULL,'Gulfport',1,1023,NULL,'39507',NULL,1228,30.397044,-89.03998,0,NULL,NULL,101),(103,91,3,1,0,'241E Main Rd N',241,'E',NULL,'Main','Rd','N',NULL,'c/o OPDC',NULL,NULL,'Baton Rouge',1,1017,NULL,'70822',NULL,1228,30.51589,-91.080373,0,NULL,NULL,NULL),(104,77,2,1,0,'241E Main Rd N',241,'E',NULL,'Main','Rd','N',NULL,'c/o OPDC',NULL,NULL,'Baton Rouge',1,1017,NULL,'70822',NULL,1228,30.51589,-91.080373,0,NULL,NULL,103),(105,90,3,1,0,'230V College Blvd NW',230,'V',NULL,'College','Blvd','NW',NULL,'Community Relations',NULL,NULL,'Pensacola',1,1008,NULL,'32595',NULL,1228,30.61428,-87.275772,0,NULL,NULL,NULL),(106,74,2,0,0,'230V College Blvd NW',230,'V',NULL,'College','Blvd','NW',NULL,'Community Relations',NULL,NULL,'Pensacola',1,1008,NULL,'32595',NULL,1228,30.61428,-87.275772,0,NULL,NULL,105),(107,150,3,1,0,'141E Lincoln Path NE',141,'E',NULL,'Lincoln','Path','NE',NULL,'Mailstop 101',NULL,NULL,'Lineville',1,1014,NULL,'50147',NULL,1228,40.60243,-93.52778,0,NULL,NULL,NULL),(108,130,1,1,0,'417I Caulder Pl SW',417,'I',NULL,'Caulder','Pl','SW',NULL,NULL,NULL,NULL,'Lexington',1,1009,NULL,'30648',NULL,1228,33.863779,-83.06063,0,NULL,NULL,52),(109,188,1,1,0,'417I Caulder Pl SW',417,'I',NULL,'Caulder','Pl','SW',NULL,NULL,NULL,NULL,'Lexington',1,1009,NULL,'30648',NULL,1228,33.863779,-83.06063,0,NULL,NULL,52),(110,98,1,0,0,'417I Caulder Pl SW',417,'I',NULL,'Caulder','Pl','SW',NULL,NULL,NULL,NULL,'Lexington',1,1009,NULL,'30648',NULL,1228,33.863779,-83.06063,0,NULL,NULL,52),(111,86,1,1,0,'168P Green Dr NW',168,'P',NULL,'Green','Dr','NW',NULL,NULL,NULL,NULL,'Pageland',1,1039,NULL,'29728',NULL,1228,34.769259,-80.39935,0,NULL,NULL,NULL),(112,165,1,1,0,'716O College Dr W',716,'O',NULL,'College','Dr','W',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20504',NULL,1228,38.893311,-77.014647,0,NULL,NULL,53),(113,73,1,1,0,'716O College Dr W',716,'O',NULL,'College','Dr','W',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20504',NULL,1228,38.893311,-77.014647,0,NULL,NULL,53),(114,116,1,1,0,'716O College Dr W',716,'O',NULL,'College','Dr','W',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20504',NULL,1228,38.893311,-77.014647,0,NULL,NULL,53),(115,77,1,0,0,'716O College Dr W',716,'O',NULL,'College','Dr','W',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20504',NULL,1228,38.893311,-77.014647,0,NULL,NULL,53),(116,196,1,1,0,'833W College Pl SE',833,'W',NULL,'College','Pl','SE',NULL,NULL,NULL,NULL,'Baker',1,1008,NULL,'32531',NULL,1228,30.8752,-86.68607,0,NULL,NULL,54),(117,171,1,1,0,'833W College Pl SE',833,'W',NULL,'College','Pl','SE',NULL,NULL,NULL,NULL,'Baker',1,1008,NULL,'32531',NULL,1228,30.8752,-86.68607,0,NULL,NULL,54),(118,152,1,1,0,'833W College Pl SE',833,'W',NULL,'College','Pl','SE',NULL,NULL,NULL,NULL,'Baker',1,1008,NULL,'32531',NULL,1228,30.8752,-86.68607,0,NULL,NULL,54),(119,22,1,1,0,'833W College Pl SE',833,'W',NULL,'College','Pl','SE',NULL,NULL,NULL,NULL,'Baker',1,1008,NULL,'32531',NULL,1228,30.8752,-86.68607,0,NULL,NULL,54),(120,38,1,1,0,'58O States Ln N',58,'O',NULL,'States','Ln','N',NULL,NULL,NULL,NULL,'Farmington',1,1018,NULL,'04938',NULL,1228,44.66776,-70.12362,0,NULL,NULL,55),(121,104,1,1,0,'58O States Ln N',58,'O',NULL,'States','Ln','N',NULL,NULL,NULL,NULL,'Farmington',1,1018,NULL,'04938',NULL,1228,44.66776,-70.12362,0,NULL,NULL,55),(122,35,1,1,0,'58O States Ln N',58,'O',NULL,'States','Ln','N',NULL,NULL,NULL,NULL,'Farmington',1,1018,NULL,'04938',NULL,1228,44.66776,-70.12362,0,NULL,NULL,55),(123,55,1,1,0,'58O States Ln N',58,'O',NULL,'States','Ln','N',NULL,NULL,NULL,NULL,'Farmington',1,1018,NULL,'04938',NULL,1228,44.66776,-70.12362,0,NULL,NULL,55),(124,172,1,1,0,'90X Van Ness Way NE',90,'X',NULL,'Van Ness','Way','NE',NULL,NULL,NULL,NULL,'Syracuse',1,1031,NULL,'13225',NULL,1228,43.02143,-76.197701,0,NULL,NULL,56),(125,145,1,1,0,'90X Van Ness Way NE',90,'X',NULL,'Van Ness','Way','NE',NULL,NULL,NULL,NULL,'Syracuse',1,1031,NULL,'13225',NULL,1228,43.02143,-76.197701,0,NULL,NULL,56),(126,14,1,1,0,'90X Van Ness Way NE',90,'X',NULL,'Van Ness','Way','NE',NULL,NULL,NULL,NULL,'Syracuse',1,1031,NULL,'13225',NULL,1228,43.02143,-76.197701,0,NULL,NULL,56),(127,163,1,1,0,'90X Van Ness Way NE',90,'X',NULL,'Van Ness','Way','NE',NULL,NULL,NULL,NULL,'Syracuse',1,1031,NULL,'13225',NULL,1228,43.02143,-76.197701,0,NULL,NULL,56),(128,143,1,1,0,'367Q Cadell Ln W',367,'Q',NULL,'Cadell','Ln','W',NULL,NULL,NULL,NULL,'Bradley',1,1004,NULL,'93426',NULL,1228,35.834919,-120.98093,0,NULL,NULL,57),(129,83,1,1,0,'367Q Cadell Ln W',367,'Q',NULL,'Cadell','Ln','W',NULL,NULL,NULL,NULL,'Bradley',1,1004,NULL,'93426',NULL,1228,35.834919,-120.98093,0,NULL,NULL,57),(130,54,1,1,0,'367Q Cadell Ln W',367,'Q',NULL,'Cadell','Ln','W',NULL,NULL,NULL,NULL,'Bradley',1,1004,NULL,'93426',NULL,1228,35.834919,-120.98093,0,NULL,NULL,57),(131,127,1,1,0,'367Q Cadell Ln W',367,'Q',NULL,'Cadell','Ln','W',NULL,NULL,NULL,NULL,'Bradley',1,1004,NULL,'93426',NULL,1228,35.834919,-120.98093,0,NULL,NULL,57),(132,118,1,1,0,'880E Jackson Path S',880,'E',NULL,'Jackson','Path','S',NULL,NULL,NULL,NULL,'Palmyra',1,1048,NULL,'53156',NULL,1228,42.879242,-88.58987,0,NULL,NULL,58),(133,182,1,1,0,'880E Jackson Path S',880,'E',NULL,'Jackson','Path','S',NULL,NULL,NULL,NULL,'Palmyra',1,1048,NULL,'53156',NULL,1228,42.879242,-88.58987,0,NULL,NULL,58),(134,109,1,1,0,'880E Jackson Path S',880,'E',NULL,'Jackson','Path','S',NULL,NULL,NULL,NULL,'Palmyra',1,1048,NULL,'53156',NULL,1228,42.879242,-88.58987,0,NULL,NULL,58),(135,156,1,1,0,'622T Woodbridge Way SW',622,'T',NULL,'Woodbridge','Way','SW',NULL,NULL,NULL,NULL,'White Swan',1,1046,NULL,'98952',NULL,1228,46.377579,-120.7144,0,NULL,NULL,NULL),(136,16,1,0,0,'362B Dowlen Rd W',362,'B',NULL,'Dowlen','Rd','W',NULL,NULL,NULL,NULL,'Burlington Junction',1,1024,NULL,'64428',NULL,1228,40.44627,-95.06768,0,NULL,NULL,59),(137,197,1,0,0,'362B Dowlen Rd W',362,'B',NULL,'Dowlen','Rd','W',NULL,NULL,NULL,NULL,'Burlington Junction',1,1024,NULL,'64428',NULL,1228,40.44627,-95.06768,0,NULL,NULL,59),(138,82,1,1,0,'362B Dowlen Rd W',362,'B',NULL,'Dowlen','Rd','W',NULL,NULL,NULL,NULL,'Burlington Junction',1,1024,NULL,'64428',NULL,1228,40.44627,-95.06768,0,NULL,NULL,59),(139,62,1,1,0,'362B Dowlen Rd W',362,'B',NULL,'Dowlen','Rd','W',NULL,NULL,NULL,NULL,'Burlington Junction',1,1024,NULL,'64428',NULL,1228,40.44627,-95.06768,0,NULL,NULL,59),(140,194,1,1,0,'349M College Blvd W',349,'M',NULL,'College','Blvd','W',NULL,NULL,NULL,NULL,'Honolulu',1,1010,NULL,'96805',NULL,1228,24.859832,-168.021815,0,NULL,NULL,60),(141,174,1,1,0,'349M College Blvd W',349,'M',NULL,'College','Blvd','W',NULL,NULL,NULL,NULL,'Honolulu',1,1010,NULL,'96805',NULL,1228,24.859832,-168.021815,0,NULL,NULL,60),(142,132,1,1,0,'349M College Blvd W',349,'M',NULL,'College','Blvd','W',NULL,NULL,NULL,NULL,'Honolulu',1,1010,NULL,'96805',NULL,1228,24.859832,-168.021815,0,NULL,NULL,60),(143,184,1,1,0,'349M College Blvd W',349,'M',NULL,'College','Blvd','W',NULL,NULL,NULL,NULL,'Honolulu',1,1010,NULL,'96805',NULL,1228,24.859832,-168.021815,0,NULL,NULL,60),(144,161,1,1,0,'142L College Path NW',142,'L',NULL,'College','Path','NW',NULL,NULL,NULL,NULL,'El Paso',1,1042,NULL,'88540',NULL,1228,31.694842,-106.299987,0,NULL,NULL,61),(145,144,1,1,0,'142L College Path NW',142,'L',NULL,'College','Path','NW',NULL,NULL,NULL,NULL,'El Paso',1,1042,NULL,'88540',NULL,1228,31.694842,-106.299987,0,NULL,NULL,61),(146,99,1,1,0,'142L College Path NW',142,'L',NULL,'College','Path','NW',NULL,NULL,NULL,NULL,'El Paso',1,1042,NULL,'88540',NULL,1228,31.694842,-106.299987,0,NULL,NULL,61),(147,39,1,0,0,'142L College Path NW',142,'L',NULL,'College','Path','NW',NULL,NULL,NULL,NULL,'El Paso',1,1042,NULL,'88540',NULL,1228,31.694842,-106.299987,0,NULL,NULL,61),(148,164,1,1,0,'404K Beech St SE',404,'K',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Jackson',1,1041,NULL,'38305',NULL,1228,35.693101,-88.80653,0,NULL,NULL,62),(149,71,1,1,0,'404K Beech St SE',404,'K',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Jackson',1,1041,NULL,'38305',NULL,1228,35.693101,-88.80653,0,NULL,NULL,62),(150,176,1,1,0,'404K Beech St SE',404,'K',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Jackson',1,1041,NULL,'38305',NULL,1228,35.693101,-88.80653,0,NULL,NULL,62),(151,10,1,1,0,'404K Beech St SE',404,'K',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Jackson',1,1041,NULL,'38305',NULL,1228,35.693101,-88.80653,0,NULL,NULL,62),(152,125,1,1,0,'475N Woodbridge Rd W',475,'N',NULL,'Woodbridge','Rd','W',NULL,NULL,NULL,NULL,'Loyal',1,1048,NULL,'54446',NULL,1228,44.758265,-90.48248,0,NULL,NULL,63),(153,13,1,1,0,'475N Woodbridge Rd W',475,'N',NULL,'Woodbridge','Rd','W',NULL,NULL,NULL,NULL,'Loyal',1,1048,NULL,'54446',NULL,1228,44.758265,-90.48248,0,NULL,NULL,63),(154,142,1,1,0,'475N Woodbridge Rd W',475,'N',NULL,'Woodbridge','Rd','W',NULL,NULL,NULL,NULL,'Loyal',1,1048,NULL,'54446',NULL,1228,44.758265,-90.48248,0,NULL,NULL,63),(155,28,1,1,0,'475N Woodbridge Rd W',475,'N',NULL,'Woodbridge','Rd','W',NULL,NULL,NULL,NULL,'Loyal',1,1048,NULL,'54446',NULL,1228,44.758265,-90.48248,0,NULL,NULL,63),(156,157,1,1,0,'560E Green Ave NE',560,'E',NULL,'Green','Ave','NE',NULL,NULL,NULL,NULL,'Finley',1,1004,NULL,'95435',NULL,1228,39.00686,-122.859625,0,NULL,NULL,64),(157,180,1,1,0,'560E Green Ave NE',560,'E',NULL,'Green','Ave','NE',NULL,NULL,NULL,NULL,'Finley',1,1004,NULL,'95435',NULL,1228,39.00686,-122.859625,0,NULL,NULL,64),(158,101,1,1,0,'560E Green Ave NE',560,'E',NULL,'Green','Ave','NE',NULL,NULL,NULL,NULL,'Finley',1,1004,NULL,'95435',NULL,1228,39.00686,-122.859625,0,NULL,NULL,64),(159,81,1,1,0,'897A Bay Pl E',897,'A',NULL,'Bay','Pl','E',NULL,NULL,NULL,NULL,'Boynton Beach',1,1008,NULL,'33435',NULL,1228,26.524549,-80.06321,0,NULL,NULL,NULL),(160,60,1,1,0,'831S Bay Pl E',831,'S',NULL,'Bay','Pl','E',NULL,NULL,NULL,NULL,'Unionville',1,1045,NULL,'22567',NULL,1228,38.233223,-77.91258,0,NULL,NULL,65),(161,147,1,1,0,'831S Bay Pl E',831,'S',NULL,'Bay','Pl','E',NULL,NULL,NULL,NULL,'Unionville',1,1045,NULL,'22567',NULL,1228,38.233223,-77.91258,0,NULL,NULL,65),(162,27,1,1,0,'831S Bay Pl E',831,'S',NULL,'Bay','Pl','E',NULL,NULL,NULL,NULL,'Unionville',1,1045,NULL,'22567',NULL,1228,38.233223,-77.91258,0,NULL,NULL,65),(163,122,1,0,0,'831S Bay Pl E',831,'S',NULL,'Bay','Pl','E',NULL,NULL,NULL,NULL,'Unionville',1,1045,NULL,'22567',NULL,1228,38.233223,-77.91258,0,NULL,NULL,65),(164,23,1,1,0,'3W Northpoint Dr W',3,'W',NULL,'Northpoint','Dr','W',NULL,NULL,NULL,NULL,'Cheltenham',1,1037,NULL,'19012',NULL,1228,40.060304,-75.10439,0,NULL,NULL,66),(165,166,1,1,0,'3W Northpoint Dr W',3,'W',NULL,'Northpoint','Dr','W',NULL,NULL,NULL,NULL,'Cheltenham',1,1037,NULL,'19012',NULL,1228,40.060304,-75.10439,0,NULL,NULL,66),(166,119,1,1,0,'3W Northpoint Dr W',3,'W',NULL,'Northpoint','Dr','W',NULL,NULL,NULL,NULL,'Cheltenham',1,1037,NULL,'19012',NULL,1228,40.060304,-75.10439,0,NULL,NULL,66),(167,177,1,1,0,'922F El Camino Rd NE',922,'F',NULL,'El Camino','Rd','NE',NULL,NULL,NULL,NULL,'Nova',1,1034,NULL,'44859',NULL,1228,41.019566,-82.33622,0,NULL,NULL,NULL),(168,114,1,1,0,'380K Woodbridge Path SE',380,'K',NULL,'Woodbridge','Path','SE',NULL,NULL,NULL,NULL,'Wilmington',1,1032,NULL,'28404',NULL,1228,33.926255,-78.07127,0,NULL,NULL,67),(169,49,1,1,0,'380K Woodbridge Path SE',380,'K',NULL,'Woodbridge','Path','SE',NULL,NULL,NULL,NULL,'Wilmington',1,1032,NULL,'28404',NULL,1228,33.926255,-78.07127,0,NULL,NULL,67),(170,102,1,1,0,'380K Woodbridge Path SE',380,'K',NULL,'Woodbridge','Path','SE',NULL,NULL,NULL,NULL,'Wilmington',1,1032,NULL,'28404',NULL,1228,33.926255,-78.07127,0,NULL,NULL,67),(171,9,1,1,0,'380K Woodbridge Path SE',380,'K',NULL,'Woodbridge','Path','SE',NULL,NULL,NULL,NULL,'Wilmington',1,1032,NULL,'28404',NULL,1228,33.926255,-78.07127,0,NULL,NULL,67),(172,31,1,1,0,'829D Green Path S',829,'D',NULL,'Green','Path','S',NULL,NULL,NULL,NULL,'Harwick',1,1037,NULL,'15049',NULL,1228,40.555627,-79.8064,0,NULL,NULL,68),(173,159,1,1,0,'829D Green Path S',829,'D',NULL,'Green','Path','S',NULL,NULL,NULL,NULL,'Harwick',1,1037,NULL,'15049',NULL,1228,40.555627,-79.8064,0,NULL,NULL,68),(174,76,1,1,0,'829D Green Path S',829,'D',NULL,'Green','Path','S',NULL,NULL,NULL,NULL,'Harwick',1,1037,NULL,'15049',NULL,1228,40.555627,-79.8064,0,NULL,NULL,68),(175,170,1,1,0,'667G College Way N',667,'G',NULL,'College','Way','N',NULL,NULL,NULL,NULL,'Cuba',1,1031,NULL,'14727',NULL,1228,42.213216,-78.28649,0,NULL,NULL,NULL),(176,103,1,1,0,'400F Maple Ave S',400,'F',NULL,'Maple','Ave','S',NULL,NULL,NULL,NULL,'Gardner',1,1015,NULL,'66030',NULL,1228,38.813839,-94.9265,0,NULL,NULL,69),(177,40,1,1,0,'400F Maple Ave S',400,'F',NULL,'Maple','Ave','S',NULL,NULL,NULL,NULL,'Gardner',1,1015,NULL,'66030',NULL,1228,38.813839,-94.9265,0,NULL,NULL,69),(178,131,1,1,0,'400F Maple Ave S',400,'F',NULL,'Maple','Ave','S',NULL,NULL,NULL,NULL,'Gardner',1,1015,NULL,'66030',NULL,1228,38.813839,-94.9265,0,NULL,NULL,69),(179,178,1,1,0,'799R Beech Blvd NW',799,'R',NULL,'Beech','Blvd','NW',NULL,NULL,NULL,NULL,'Decaturville',1,1041,NULL,'38329',NULL,1228,35.546839,-88.12345,0,NULL,NULL,NULL),(180,199,1,1,0,'285N Cadell Pl W',285,'N',NULL,'Cadell','Pl','W',NULL,NULL,NULL,NULL,'Fort Myers',1,1008,NULL,'33994',NULL,1228,26.552895,-81.94861,0,NULL,NULL,70),(181,21,1,1,0,'285N Cadell Pl W',285,'N',NULL,'Cadell','Pl','W',NULL,NULL,NULL,NULL,'Fort Myers',1,1008,NULL,'33994',NULL,1228,26.552895,-81.94861,0,NULL,NULL,70),(182,25,1,1,0,'285N Cadell Pl W',285,'N',NULL,'Cadell','Pl','W',NULL,NULL,NULL,NULL,'Fort Myers',1,1008,NULL,'33994',NULL,1228,26.552895,-81.94861,0,NULL,NULL,70),(183,80,1,1,0,'285N Cadell Pl W',285,'N',NULL,'Cadell','Pl','W',NULL,NULL,NULL,NULL,'Fort Myers',1,1008,NULL,'33994',NULL,1228,26.552895,-81.94861,0,NULL,NULL,70),(184,146,1,1,0,'47P Jackson Way NE',47,'P',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Sheldon',1,1048,NULL,'54766',NULL,1228,45.323865,-90.89376,0,NULL,NULL,71),(185,115,1,1,0,'47P Jackson Way NE',47,'P',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Sheldon',1,1048,NULL,'54766',NULL,1228,45.323865,-90.89376,0,NULL,NULL,71),(186,139,1,1,0,'47P Jackson Way NE',47,'P',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Sheldon',1,1048,NULL,'54766',NULL,1228,45.323865,-90.89376,0,NULL,NULL,71),(187,58,1,1,0,'47P Jackson Way NE',47,'P',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Sheldon',1,1048,NULL,'54766',NULL,1228,45.323865,-90.89376,0,NULL,NULL,71),(188,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),(189,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),(190,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,180,1,1,0,'262S Beech Ave N',262,'S',NULL,'Beech','Ave','N',NULL,NULL,NULL,NULL,'Greig',1,1031,NULL,'13345',NULL,1228,43.818705,-75.480342,0,NULL,NULL,NULL),(2,109,1,1,0,'420K States Ln SE',420,'K',NULL,'States','Ln','SE',NULL,NULL,NULL,NULL,'Oxbow',1,1036,NULL,'97840',NULL,1228,44.973266,-116.8565,0,NULL,NULL,NULL),(3,91,1,1,0,'584N Green Path W',584,'N',NULL,'Green','Path','W',NULL,NULL,NULL,NULL,'Olga',1,1046,NULL,'98279',NULL,1228,48.63205,-122.81372,0,NULL,NULL,NULL),(4,151,1,1,0,'461R Van Ness Ln N',461,'R',NULL,'Van Ness','Ln','N',NULL,NULL,NULL,NULL,'Chesterfield',1,1024,NULL,'63006',NULL,1228,38.638318,-90.427118,0,NULL,NULL,NULL),(5,132,1,1,0,'126W Cadell Path N',126,'W',NULL,'Cadell','Path','N',NULL,NULL,NULL,NULL,'White Plains',1,1031,NULL,'10603',NULL,1228,41.053182,-73.77672,0,NULL,NULL,NULL),(6,98,1,1,0,'174D Martin Luther King Rd E',174,'D',NULL,'Martin Luther King','Rd','E',NULL,NULL,NULL,NULL,'Epworth',1,1014,NULL,'52045',NULL,1228,42.451496,-90.92851,0,NULL,NULL,NULL),(7,54,1,1,0,'142K Pine Rd E',142,'K',NULL,'Pine','Rd','E',NULL,NULL,NULL,NULL,'Austin',1,1042,NULL,'78708',NULL,1228,30.326374,-97.771258,0,NULL,NULL,NULL),(8,197,1,1,0,'851R Martin Luther King Rd NW',851,'R',NULL,'Martin Luther King','Rd','NW',NULL,NULL,NULL,NULL,'Denmark',1,1041,NULL,'38391',NULL,1228,35.560669,-89.00984,0,NULL,NULL,NULL),(9,176,1,1,0,'86A Maple Way S',86,'A',NULL,'Maple','Way','S',NULL,NULL,NULL,NULL,'Palm Bay',1,1008,NULL,'32909',NULL,1228,27.950975,-80.64679,0,NULL,NULL,NULL),(10,145,1,1,0,'771V Northpoint Pl NE',771,'V',NULL,'Northpoint','Pl','NE',NULL,NULL,NULL,NULL,'Douglas',1,1009,NULL,'31534',NULL,1228,31.571596,-82.854631,0,NULL,NULL,NULL),(11,112,1,1,0,'871Z Pine Way E',871,'Z',NULL,'Pine','Way','E',NULL,NULL,NULL,NULL,'Logan',1,1043,NULL,'84821',NULL,1228,41.717612,-111.868898,0,NULL,NULL,NULL),(12,32,1,1,0,'811Q Maple St NE',811,'Q',NULL,'Maple','St','NE',NULL,NULL,NULL,NULL,'Alleghany',1,1004,NULL,'95910',NULL,1228,39.465229,-120.84496,0,NULL,NULL,NULL),(13,163,1,1,0,'278Y Van Ness Pl SE',278,'Y',NULL,'Van Ness','Pl','SE',NULL,NULL,NULL,NULL,'Fairfield',1,1016,NULL,'40020',NULL,1228,37.9348,-85.38765,0,NULL,NULL,NULL),(14,88,1,1,0,'684M Dowlen Blvd N',684,'M',NULL,'Dowlen','Blvd','N',NULL,NULL,NULL,NULL,'Orlando',1,1008,NULL,'32806',NULL,1228,28.51483,-81.36054,0,NULL,NULL,NULL),(15,95,1,1,0,'416U Lincoln Ln S',416,'U',NULL,'Lincoln','Ln','S',NULL,NULL,NULL,NULL,'Biggsville',1,1012,NULL,'61418',NULL,1228,40.854865,-90.85925,0,NULL,NULL,NULL),(16,193,1,1,0,'600L Bay Way NE',600,'L',NULL,'Bay','Way','NE',NULL,NULL,NULL,NULL,'Fort Worth',1,1042,NULL,'76148',NULL,1228,32.869384,-97.25123,0,NULL,NULL,NULL),(17,38,1,1,0,'713F Dowlen Rd NE',713,'F',NULL,'Dowlen','Rd','NE',NULL,NULL,NULL,NULL,'Birmingham',1,1000,NULL,'35263',NULL,1228,33.522505,-86.80939,0,NULL,NULL,NULL),(18,74,1,1,0,'829Y Beech Path N',829,'Y',NULL,'Beech','Path','N',NULL,NULL,NULL,NULL,'Waymart',1,1037,NULL,'18472',NULL,1228,41.579472,-75.39613,0,NULL,NULL,NULL),(19,169,1,1,0,'298X Beech St NE',298,'X',NULL,'Beech','St','NE',NULL,NULL,NULL,NULL,'Watson',1,1022,NULL,'56295',NULL,1228,45.024344,-95.82794,0,NULL,NULL,NULL),(20,83,1,1,0,'730H Lincoln Pl SW',730,'H',NULL,'Lincoln','Pl','SW',NULL,NULL,NULL,NULL,'Modesto',1,1004,NULL,'95357',NULL,1228,37.667196,-120.9061,0,NULL,NULL,NULL),(21,53,1,1,0,'685A States Rd SE',685,'A',NULL,'States','Rd','SE',NULL,NULL,NULL,NULL,'Cedar Crest',1,1030,NULL,'87008',NULL,1228,35.136495,-106.37296,0,NULL,NULL,NULL),(22,107,1,1,0,'266A Lincoln Pl NW',266,'A',NULL,'Lincoln','Pl','NW',NULL,NULL,NULL,NULL,'Uriah',1,1000,NULL,'36480',NULL,1228,31.320897,-87.59607,0,NULL,NULL,NULL),(23,105,1,1,0,'851I Dowlen Pl E',851,'I',NULL,'Dowlen','Pl','E',NULL,NULL,NULL,NULL,'Crestline',1,1004,NULL,'92325',NULL,1228,34.242567,-117.28654,0,NULL,NULL,NULL),(24,191,1,1,0,'886U States Ave W',886,'U',NULL,'States','Ave','W',NULL,NULL,NULL,NULL,'Hurdle Mills',1,1032,NULL,'27541',NULL,1228,36.264894,-79.08338,0,NULL,NULL,NULL),(25,198,1,1,0,'232V Dowlen Blvd NE',232,'V',NULL,'Dowlen','Blvd','NE',NULL,NULL,NULL,NULL,'Roaring Branch',1,1037,NULL,'17765',NULL,1228,41.592461,-76.95078,0,NULL,NULL,NULL),(26,190,1,1,0,'25X Martin Luther King Dr W',25,'X',NULL,'Martin Luther King','Dr','W',NULL,NULL,NULL,NULL,'Robbinsville',1,1032,NULL,'28771',NULL,1228,35.345611,-83.79634,0,NULL,NULL,NULL),(27,57,1,1,0,'42F Maple Rd SE',42,'F',NULL,'Maple','Rd','SE',NULL,NULL,NULL,NULL,'Valdosta',1,1009,NULL,'31602',NULL,1228,30.866613,-83.30078,0,NULL,NULL,NULL),(28,173,1,1,0,'689J Woodbridge Way NW',689,'J',NULL,'Woodbridge','Way','NW',NULL,NULL,NULL,NULL,'Williston',1,1032,NULL,'28589',NULL,1228,34.7994,-76.49457,0,NULL,NULL,NULL),(29,117,1,1,0,'175J Van Ness Blvd E',175,'J',NULL,'Van Ness','Blvd','E',NULL,NULL,NULL,NULL,'Lewistown',1,1024,NULL,'63452',NULL,1228,40.101973,-91.79502,0,NULL,NULL,NULL),(30,47,1,1,0,'766P Caulder Dr S',766,'P',NULL,'Caulder','Dr','S',NULL,NULL,NULL,NULL,'Tannersville',1,1037,NULL,'18372',NULL,1228,41.048423,-75.31865,0,NULL,NULL,NULL),(31,24,1,1,0,'227A Beech Ave NW',227,'A',NULL,'Beech','Ave','NW',NULL,NULL,NULL,NULL,'Plessis',1,1031,NULL,'13675',NULL,1228,44.277365,-75.84263,0,NULL,NULL,NULL),(32,196,1,1,0,'34M Woodbridge Ln S',34,'M',NULL,'Woodbridge','Ln','S',NULL,NULL,NULL,NULL,'Mountain Pine',1,1003,NULL,'71956',NULL,1228,34.663502,-93.23591,0,NULL,NULL,NULL),(33,135,1,1,0,'8F States Dr SW',8,'F',NULL,'States','Dr','SW',NULL,NULL,NULL,NULL,'West Burlington',1,1031,NULL,'13482',NULL,1228,42.704333,-75.184913,0,NULL,NULL,NULL),(34,2,1,1,0,'90O College Dr E',90,'O',NULL,'College','Dr','E',NULL,NULL,NULL,NULL,'Collins',1,1014,NULL,'50055',NULL,1228,41.880967,-93.29691,0,NULL,NULL,NULL),(35,120,1,1,0,'607C Northpoint Ave E',607,'C',NULL,'Northpoint','Ave','E',NULL,NULL,NULL,NULL,'Gastonia',1,1032,NULL,'28051',NULL,1228,35.284018,-81.189693,0,NULL,NULL,NULL),(36,46,1,1,0,'375G Caulder Blvd W',375,'G',NULL,'Caulder','Blvd','W',NULL,NULL,NULL,NULL,'Harned',1,1016,NULL,'40144',NULL,1228,37.750101,-86.39972,0,NULL,NULL,NULL),(37,43,1,1,0,'413O Cadell Rd W',413,'O',NULL,'Cadell','Rd','W',NULL,NULL,NULL,NULL,'Breckenridge',1,1021,NULL,'48615',NULL,1228,43.422568,-84.47433,0,NULL,NULL,NULL),(38,170,1,1,0,'689W College Ave S',689,'W',NULL,'College','Ave','S',NULL,NULL,NULL,NULL,'Brighton',1,1012,NULL,'62012',NULL,1228,39.038752,-90.13819,0,NULL,NULL,NULL),(39,94,1,1,0,'422S Northpoint Ave S',422,'S',NULL,'Northpoint','Ave','S',NULL,NULL,NULL,NULL,'Holyoke',1,1022,NULL,'55749',NULL,1228,46.463827,-92.40766,0,NULL,NULL,NULL),(40,159,1,1,0,'251F Main Blvd N',251,'F',NULL,'Main','Blvd','N',NULL,NULL,NULL,NULL,'Nellis',1,1047,NULL,'25142',NULL,1228,37.997105,-81.71704,0,NULL,NULL,NULL),(41,124,1,1,0,'879Y Northpoint Ln E',879,'Y',NULL,'Northpoint','Ln','E',NULL,NULL,NULL,NULL,'Leeds',1,1000,NULL,'35094',NULL,1228,33.530698,-86.55506,0,NULL,NULL,NULL),(42,154,1,1,0,'439Y Lincoln Pl N',439,'Y',NULL,'Lincoln','Pl','N',NULL,NULL,NULL,NULL,'Charleston',1,1047,NULL,'25387',NULL,1228,38.296818,-81.554655,0,NULL,NULL,NULL),(43,22,1,1,0,'554U States Rd N',554,'U',NULL,'States','Rd','N',NULL,NULL,NULL,NULL,'Williams',1,1039,NULL,'29493',NULL,1228,33.03378,-80.84282,0,NULL,NULL,NULL),(44,172,1,1,0,'774M Northpoint Pl SW',774,'M',NULL,'Northpoint','Pl','SW',NULL,NULL,NULL,NULL,'Cherry',1,1012,NULL,'61317',NULL,1228,41.4276,-89.21243,0,NULL,NULL,NULL),(45,50,1,1,0,'247T Caulder Ave NW',247,'T',NULL,'Caulder','Ave','NW',NULL,NULL,NULL,NULL,'Boulder',1,1005,NULL,'80321',NULL,1228,40.087835,-105.373507,0,NULL,NULL,NULL),(46,118,1,1,0,'34M Beech Rd N',34,'M',NULL,'Beech','Rd','N',NULL,NULL,NULL,NULL,'Atwater',1,1004,NULL,'95301',NULL,1228,37.35115,-120.6056,0,NULL,NULL,NULL),(47,181,1,1,0,'431X Dowlen Pl SE',431,'X',NULL,'Dowlen','Pl','SE',NULL,NULL,NULL,NULL,'Cadwell',1,1009,NULL,'31009',NULL,1228,32.309003,-83.02647,0,NULL,NULL,NULL),(48,48,1,1,0,'477Q Martin Luther King Blvd E',477,'Q',NULL,'Martin Luther King','Blvd','E',NULL,NULL,NULL,NULL,'Linden',1,1042,NULL,'75563',NULL,1228,33.005009,-94.37603,0,NULL,NULL,NULL),(49,131,1,1,0,'150N Main Ave NE',150,'N',NULL,'Main','Ave','NE',NULL,NULL,NULL,NULL,'Guild',1,1028,NULL,'03754',NULL,1228,43.365618,-72.125562,0,NULL,NULL,NULL),(50,70,1,1,0,'166R Cadell Ln NE',166,'R',NULL,'Cadell','Ln','NE',NULL,NULL,NULL,NULL,'Ogema',1,1022,NULL,'56569',NULL,1228,47.093608,-95.84166,0,NULL,NULL,NULL),(51,122,1,1,0,'219F College Ave SW',219,'F',NULL,'College','Ave','SW',NULL,NULL,NULL,NULL,'Oaks',1,1035,NULL,'74359',NULL,1228,36.415938,-94.787091,0,NULL,NULL,NULL),(52,62,1,1,0,'696W Green Rd E',696,'W',NULL,'Green','Rd','E',NULL,NULL,NULL,NULL,'Vestal',1,1031,NULL,'13851',NULL,1228,42.206745,-75.74488,0,NULL,NULL,NULL),(53,89,1,1,0,'54J Martin Luther King Blvd NE',54,'J',NULL,'Martin Luther King','Blvd','NE',NULL,NULL,NULL,NULL,'Boise',1,1011,NULL,'83716',NULL,1228,43.601772,-116.02721,0,NULL,NULL,NULL),(54,25,1,1,0,'86T Northpoint Path NE',86,'T',NULL,'Northpoint','Path','NE',NULL,NULL,NULL,NULL,'Carolina',1,1056,NULL,'00986',NULL,1228,18.393355,-65.972495,0,NULL,NULL,NULL),(55,6,1,1,0,'306K El Camino Pl SE',306,'K',NULL,'El Camino','Pl','SE',NULL,NULL,NULL,NULL,'Decaturville',1,1041,NULL,'38329',NULL,1228,35.546839,-88.12345,0,NULL,NULL,NULL),(56,147,1,1,0,'585P Northpoint Blvd W',585,'P',NULL,'Northpoint','Blvd','W',NULL,NULL,NULL,NULL,'Worcester',1,1020,NULL,'01609',NULL,1228,42.271743,-71.81348,0,NULL,NULL,NULL),(57,156,1,1,0,'896A El Camino Ln SE',896,'A',NULL,'El Camino','Ln','SE',NULL,NULL,NULL,NULL,'Maceo',1,1016,NULL,'42355',NULL,1228,37.86975,-86.99535,0,NULL,NULL,NULL),(58,104,1,1,0,'75E Maple Dr SE',75,'E',NULL,'Maple','Dr','SE',NULL,NULL,NULL,NULL,'Stratford',1,1048,NULL,'54484',NULL,1228,44.793747,-90.06026,0,NULL,NULL,NULL),(59,100,1,1,0,'500M Lincoln Dr N',500,'M',NULL,'Lincoln','Dr','N',NULL,NULL,NULL,NULL,'Ringling',1,1025,NULL,'59642',NULL,1228,46.24656,-110.79404,0,NULL,NULL,NULL),(60,178,3,1,0,'921P Second Rd W',921,'P',NULL,'Second','Rd','W',NULL,'Churchgate',NULL,NULL,'Gaithersburg',1,1019,NULL,'20878',NULL,1228,39.11755,-77.23548,0,NULL,NULL,NULL),(61,160,2,1,0,'921P Second Rd W',921,'P',NULL,'Second','Rd','W',NULL,'Churchgate',NULL,NULL,'Gaithersburg',1,1019,NULL,'20878',NULL,1228,39.11755,-77.23548,0,NULL,NULL,60),(62,56,3,1,0,'471L States St NE',471,'L',NULL,'States','St','NE',NULL,'c/o OPDC',NULL,NULL,'Elk Garden',1,1047,NULL,'26717',NULL,1228,39.351231,-79.17606,0,NULL,NULL,NULL),(63,32,2,0,0,'471L States St NE',471,'L',NULL,'States','St','NE',NULL,'c/o OPDC',NULL,NULL,'Elk Garden',1,1047,NULL,'26717',NULL,1228,39.351231,-79.17606,0,NULL,NULL,62),(64,144,3,1,0,'623J Pine Way NE',623,'J',NULL,'Pine','Way','NE',NULL,'Subscriptions Dept',NULL,NULL,'Mount Wilson',1,1004,NULL,'91023',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL),(65,130,2,1,0,'623J Pine Way NE',623,'J',NULL,'Pine','Way','NE',NULL,'Subscriptions Dept',NULL,NULL,'Mount Wilson',1,1004,NULL,'91023',NULL,1228,33.786594,-118.298662,0,NULL,NULL,64),(66,140,3,1,0,'762I Beech Path W',762,'I',NULL,'Beech','Path','W',NULL,'Community Relations',NULL,NULL,'Buffalo',1,1031,NULL,'14276',NULL,1228,42.768413,-78.887094,0,NULL,NULL,NULL),(67,37,3,1,0,'75W Green Ave W',75,'W',NULL,'Green','Ave','W',NULL,'Attn: Accounting',NULL,NULL,'South Willard',1,1043,NULL,'84346',NULL,1228,41.346348,-112.063983,0,NULL,NULL,NULL),(68,36,3,1,0,'440M States Dr N',440,'M',NULL,'States','Dr','N',NULL,'Community Relations',NULL,NULL,'Pagosa Springs',1,1005,NULL,'81157',NULL,1228,37.270438,-107.093153,0,NULL,NULL,NULL),(69,57,2,0,0,'440M States Dr N',440,'M',NULL,'States','Dr','N',NULL,'Community Relations',NULL,NULL,'Pagosa Springs',1,1005,NULL,'81157',NULL,1228,37.270438,-107.093153,0,NULL,NULL,68),(70,82,3,1,0,'895D Maple Path SW',895,'D',NULL,'Maple','Path','SW',NULL,'c/o OPDC',NULL,NULL,'El Paso',1,1042,NULL,'79961',NULL,1228,31.694842,-106.299987,0,NULL,NULL,NULL),(71,175,2,1,0,'895D Maple Path SW',895,'D',NULL,'Maple','Path','SW',NULL,'c/o OPDC',NULL,NULL,'El Paso',1,1042,NULL,'79961',NULL,1228,31.694842,-106.299987,0,NULL,NULL,70),(72,51,3,1,0,'830T El Camino Path SE',830,'T',NULL,'El Camino','Path','SE',NULL,'c/o PO Plus',NULL,NULL,'Port Jefferson',1,1031,NULL,'11777',NULL,1228,40.946103,-73.06222,0,NULL,NULL,NULL),(73,119,2,1,0,'830T El Camino Path SE',830,'T',NULL,'El Camino','Path','SE',NULL,'c/o PO Plus',NULL,NULL,'Port Jefferson',1,1031,NULL,'11777',NULL,1228,40.946103,-73.06222,0,NULL,NULL,72),(74,44,3,1,0,'608Q Woodbridge Path E',608,'Q',NULL,'Woodbridge','Path','E',NULL,'Editorial Dept',NULL,NULL,'Reidsville',1,1009,NULL,'30499',NULL,1228,32.050694,-81.998348,0,NULL,NULL,NULL),(75,99,3,1,0,'601W Dowlen Rd SW',601,'W',NULL,'Dowlen','Rd','SW',NULL,'Editorial Dept',NULL,NULL,'Chicago',1,1012,NULL,'60619',NULL,1228,41.744834,-87.60444,0,NULL,NULL,NULL),(76,13,2,1,0,'601W Dowlen Rd SW',601,'W',NULL,'Dowlen','Rd','SW',NULL,'Editorial Dept',NULL,NULL,'Chicago',1,1012,NULL,'60619',NULL,1228,41.744834,-87.60444,0,NULL,NULL,75),(77,86,3,1,0,'567I El Camino Path N',567,'I',NULL,'El Camino','Path','N',NULL,'Editorial Dept',NULL,NULL,'McCaskill',1,1003,NULL,'71847',NULL,1228,33.920355,-93.63751,0,NULL,NULL,NULL),(78,61,2,1,0,'567I El Camino Path N',567,'I',NULL,'El Camino','Path','N',NULL,'Editorial Dept',NULL,NULL,'McCaskill',1,1003,NULL,'71847',NULL,1228,33.920355,-93.63751,0,NULL,NULL,77),(79,165,3,1,0,'346V Bay Way NW',346,'V',NULL,'Bay','Way','NW',NULL,'c/o OPDC',NULL,NULL,'Flat',1,1001,NULL,'99584',NULL,1228,65.226375,-151.025085,0,NULL,NULL,NULL),(80,67,3,1,0,'274S Main Blvd NW',274,'S',NULL,'Main','Blvd','NW',NULL,'Community Relations',NULL,NULL,'Raymond',1,1023,NULL,'39154',NULL,1228,32.230592,-90.45709,0,NULL,NULL,NULL),(81,194,2,1,0,'274S Main Blvd NW',274,'S',NULL,'Main','Blvd','NW',NULL,'Community Relations',NULL,NULL,'Raymond',1,1023,NULL,'39154',NULL,1228,32.230592,-90.45709,0,NULL,NULL,80),(82,126,3,1,0,'463U Woodbridge Ave E',463,'U',NULL,'Woodbridge','Ave','E',NULL,'Subscriptions Dept',NULL,NULL,'Evansville',1,1013,NULL,'47712',NULL,1228,37.966292,-87.63664,0,NULL,NULL,NULL),(83,85,3,1,0,'650N El Camino St W',650,'N',NULL,'El Camino','St','W',NULL,'Receiving',NULL,NULL,'Booth',1,1000,NULL,'36008',NULL,1228,32.501649,-86.572711,0,NULL,NULL,NULL),(84,164,3,1,0,'576R Dowlen Ln W',576,'R',NULL,'Dowlen','Ln','W',NULL,'Attn: Development',NULL,NULL,'Memphis',1,1041,NULL,'38143',NULL,1228,35.201738,-89.971538,0,NULL,NULL,NULL),(85,42,2,1,0,'576R Dowlen Ln W',576,'R',NULL,'Dowlen','Ln','W',NULL,'Attn: Development',NULL,NULL,'Memphis',1,1041,NULL,'38143',NULL,1228,35.201738,-89.971538,0,NULL,NULL,84),(86,5,3,1,0,'475G Beech Path E',475,'G',NULL,'Beech','Path','E',NULL,'Editorial Dept',NULL,NULL,'Bradleyville',1,1024,NULL,'65614',NULL,1228,36.734544,-92.89942,0,NULL,NULL,NULL),(87,113,2,1,0,'475G Beech Path E',475,'G',NULL,'Beech','Path','E',NULL,'Editorial Dept',NULL,NULL,'Bradleyville',1,1024,NULL,'65614',NULL,1228,36.734544,-92.89942,0,NULL,NULL,86),(88,187,3,1,0,'130O Green St NW',130,'O',NULL,'Green','St','NW',NULL,'c/o OPDC',NULL,NULL,'San Fernando',1,1004,NULL,'91340',NULL,1228,34.284935,-118.43821,0,NULL,NULL,NULL),(89,137,2,1,0,'130O Green St NW',130,'O',NULL,'Green','St','NW',NULL,'c/o OPDC',NULL,NULL,'San Fernando',1,1004,NULL,'91340',NULL,1228,34.284935,-118.43821,0,NULL,NULL,88),(90,39,3,1,0,'624V Northpoint Ln SW',624,'V',NULL,'Northpoint','Ln','SW',NULL,'Churchgate',NULL,NULL,'Wiley',1,1005,NULL,'81092',NULL,1228,38.17924,-102.75161,0,NULL,NULL,NULL),(91,153,2,1,0,'624V Northpoint Ln SW',624,'V',NULL,'Northpoint','Ln','SW',NULL,'Churchgate',NULL,NULL,'Wiley',1,1005,NULL,'81092',NULL,1228,38.17924,-102.75161,0,NULL,NULL,90),(92,116,3,1,0,'886T Northpoint Pl SW',886,'T',NULL,'Northpoint','Pl','SW',NULL,'Subscriptions Dept',NULL,NULL,'Chester',1,1035,NULL,'73838',NULL,1228,36.253795,-98.89818,0,NULL,NULL,NULL),(93,75,2,1,0,'886T Northpoint Pl SW',886,'T',NULL,'Northpoint','Pl','SW',NULL,'Subscriptions Dept',NULL,NULL,'Chester',1,1035,NULL,'73838',NULL,1228,36.253795,-98.89818,0,NULL,NULL,92),(94,103,1,1,0,'251F Main Blvd N',251,'F',NULL,'Main','Blvd','N',NULL,NULL,NULL,NULL,'Nellis',1,1047,NULL,'25142',NULL,1228,37.997105,-81.71704,0,NULL,NULL,40),(95,136,1,1,0,'251F Main Blvd N',251,'F',NULL,'Main','Blvd','N',NULL,NULL,NULL,NULL,'Nellis',1,1047,NULL,'25142',NULL,1228,37.997105,-81.71704,0,NULL,NULL,40),(96,114,1,1,0,'251F Main Blvd N',251,'F',NULL,'Main','Blvd','N',NULL,NULL,NULL,NULL,'Nellis',1,1047,NULL,'25142',NULL,1228,37.997105,-81.71704,0,NULL,NULL,40),(97,94,1,0,0,'251F Main Blvd N',251,'F',NULL,'Main','Blvd','N',NULL,NULL,NULL,NULL,'Nellis',1,1047,NULL,'25142',NULL,1228,37.997105,-81.71704,0,NULL,NULL,40),(98,65,1,1,0,'879Y Northpoint Ln E',879,'Y',NULL,'Northpoint','Ln','E',NULL,NULL,NULL,NULL,'Leeds',1,1000,NULL,'35094',NULL,1228,33.530698,-86.55506,0,NULL,NULL,41),(99,40,1,1,0,'879Y Northpoint Ln E',879,'Y',NULL,'Northpoint','Ln','E',NULL,NULL,NULL,NULL,'Leeds',1,1000,NULL,'35094',NULL,1228,33.530698,-86.55506,0,NULL,NULL,41),(100,10,1,1,0,'879Y Northpoint Ln E',879,'Y',NULL,'Northpoint','Ln','E',NULL,NULL,NULL,NULL,'Leeds',1,1000,NULL,'35094',NULL,1228,33.530698,-86.55506,0,NULL,NULL,41),(101,134,1,1,0,'879Y Northpoint Ln E',879,'Y',NULL,'Northpoint','Ln','E',NULL,NULL,NULL,NULL,'Leeds',1,1000,NULL,'35094',NULL,1228,33.530698,-86.55506,0,NULL,NULL,41),(102,30,1,1,0,'439Y Lincoln Pl N',439,'Y',NULL,'Lincoln','Pl','N',NULL,NULL,NULL,NULL,'Charleston',1,1047,NULL,'25387',NULL,1228,38.296818,-81.554655,0,NULL,NULL,42),(103,177,1,1,0,'439Y Lincoln Pl N',439,'Y',NULL,'Lincoln','Pl','N',NULL,NULL,NULL,NULL,'Charleston',1,1047,NULL,'25387',NULL,1228,38.296818,-81.554655,0,NULL,NULL,42),(104,76,1,1,0,'439Y Lincoln Pl N',439,'Y',NULL,'Lincoln','Pl','N',NULL,NULL,NULL,NULL,'Charleston',1,1047,NULL,'25387',NULL,1228,38.296818,-81.554655,0,NULL,NULL,42),(105,168,1,1,0,'902R Second Dr SE',902,'R',NULL,'Second','Dr','SE',NULL,NULL,NULL,NULL,'Summersville',1,1024,NULL,'65571',NULL,1228,37.184223,-91.65064,0,NULL,NULL,NULL),(106,41,1,1,0,'554U States Rd N',554,'U',NULL,'States','Rd','N',NULL,NULL,NULL,NULL,'Williams',1,1039,NULL,'29493',NULL,1228,33.03378,-80.84282,0,NULL,NULL,43),(107,33,1,1,0,'554U States Rd N',554,'U',NULL,'States','Rd','N',NULL,NULL,NULL,NULL,'Williams',1,1039,NULL,'29493',NULL,1228,33.03378,-80.84282,0,NULL,NULL,43),(108,194,1,0,0,'554U States Rd N',554,'U',NULL,'States','Rd','N',NULL,NULL,NULL,NULL,'Williams',1,1039,NULL,'29493',NULL,1228,33.03378,-80.84282,0,NULL,NULL,43),(109,87,1,1,0,'554U States Rd N',554,'U',NULL,'States','Rd','N',NULL,NULL,NULL,NULL,'Williams',1,1039,NULL,'29493',NULL,1228,33.03378,-80.84282,0,NULL,NULL,43),(110,68,1,1,0,'774M Northpoint Pl SW',774,'M',NULL,'Northpoint','Pl','SW',NULL,NULL,NULL,NULL,'Cherry',1,1012,NULL,'61317',NULL,1228,41.4276,-89.21243,0,NULL,NULL,44),(111,127,1,1,0,'774M Northpoint Pl SW',774,'M',NULL,'Northpoint','Pl','SW',NULL,NULL,NULL,NULL,'Cherry',1,1012,NULL,'61317',NULL,1228,41.4276,-89.21243,0,NULL,NULL,44),(112,182,1,1,0,'774M Northpoint Pl SW',774,'M',NULL,'Northpoint','Pl','SW',NULL,NULL,NULL,NULL,'Cherry',1,1012,NULL,'61317',NULL,1228,41.4276,-89.21243,0,NULL,NULL,44),(113,26,1,1,0,'774M Northpoint Pl SW',774,'M',NULL,'Northpoint','Pl','SW',NULL,NULL,NULL,NULL,'Cherry',1,1012,NULL,'61317',NULL,1228,41.4276,-89.21243,0,NULL,NULL,44),(114,142,1,1,0,'247T Caulder Ave NW',247,'T',NULL,'Caulder','Ave','NW',NULL,NULL,NULL,NULL,'Boulder',1,1005,NULL,'80321',NULL,1228,40.087835,-105.373507,0,NULL,NULL,45),(115,155,1,1,0,'247T Caulder Ave NW',247,'T',NULL,'Caulder','Ave','NW',NULL,NULL,NULL,NULL,'Boulder',1,1005,NULL,'80321',NULL,1228,40.087835,-105.373507,0,NULL,NULL,45),(116,138,1,1,0,'247T Caulder Ave NW',247,'T',NULL,'Caulder','Ave','NW',NULL,NULL,NULL,NULL,'Boulder',1,1005,NULL,'80321',NULL,1228,40.087835,-105.373507,0,NULL,NULL,45),(117,69,1,1,0,'86Z Dowlen St NE',86,'Z',NULL,'Dowlen','St','NE',NULL,NULL,NULL,NULL,'Trabuco Canyon',1,1004,NULL,'92678',NULL,1228,33.673979,-117.59457,0,NULL,NULL,NULL),(118,17,1,1,0,'34M Beech Rd N',34,'M',NULL,'Beech','Rd','N',NULL,NULL,NULL,NULL,'Atwater',1,1004,NULL,'95301',NULL,1228,37.35115,-120.6056,0,NULL,NULL,46),(119,199,1,1,0,'34M Beech Rd N',34,'M',NULL,'Beech','Rd','N',NULL,NULL,NULL,NULL,'Atwater',1,1004,NULL,'95301',NULL,1228,37.35115,-120.6056,0,NULL,NULL,46),(120,149,1,1,0,'34M Beech Rd N',34,'M',NULL,'Beech','Rd','N',NULL,NULL,NULL,NULL,'Atwater',1,1004,NULL,'95301',NULL,1228,37.35115,-120.6056,0,NULL,NULL,46),(121,55,1,1,0,'34M Beech Rd N',34,'M',NULL,'Beech','Rd','N',NULL,NULL,NULL,NULL,'Atwater',1,1004,NULL,'95301',NULL,1228,37.35115,-120.6056,0,NULL,NULL,46),(122,158,1,1,0,'431X Dowlen Pl SE',431,'X',NULL,'Dowlen','Pl','SE',NULL,NULL,NULL,NULL,'Cadwell',1,1009,NULL,'31009',NULL,1228,32.309003,-83.02647,0,NULL,NULL,47),(123,185,1,1,0,'431X Dowlen Pl SE',431,'X',NULL,'Dowlen','Pl','SE',NULL,NULL,NULL,NULL,'Cadwell',1,1009,NULL,'31009',NULL,1228,32.309003,-83.02647,0,NULL,NULL,47),(124,79,1,1,0,'431X Dowlen Pl SE',431,'X',NULL,'Dowlen','Pl','SE',NULL,NULL,NULL,NULL,'Cadwell',1,1009,NULL,'31009',NULL,1228,32.309003,-83.02647,0,NULL,NULL,47),(125,15,1,1,0,'431X Dowlen Pl SE',431,'X',NULL,'Dowlen','Pl','SE',NULL,NULL,NULL,NULL,'Cadwell',1,1009,NULL,'31009',NULL,1228,32.309003,-83.02647,0,NULL,NULL,47),(126,184,1,1,0,'477Q Martin Luther King Blvd E',477,'Q',NULL,'Martin Luther King','Blvd','E',NULL,NULL,NULL,NULL,'Linden',1,1042,NULL,'75563',NULL,1228,33.005009,-94.37603,0,NULL,NULL,48),(127,77,1,1,0,'477Q Martin Luther King Blvd E',477,'Q',NULL,'Martin Luther King','Blvd','E',NULL,NULL,NULL,NULL,'Linden',1,1042,NULL,'75563',NULL,1228,33.005009,-94.37603,0,NULL,NULL,48),(128,42,1,0,0,'477Q Martin Luther King Blvd E',477,'Q',NULL,'Martin Luther King','Blvd','E',NULL,NULL,NULL,NULL,'Linden',1,1042,NULL,'75563',NULL,1228,33.005009,-94.37603,0,NULL,NULL,48),(129,175,1,0,0,'892N Green Rd SE',892,'N',NULL,'Green','Rd','SE',NULL,NULL,NULL,NULL,'Gwinner',1,1033,NULL,'58040',NULL,1228,46.214772,-97.66923,0,NULL,NULL,NULL),(130,16,1,1,0,'150N Main Ave NE',150,'N',NULL,'Main','Ave','NE',NULL,NULL,NULL,NULL,'Guild',1,1028,NULL,'03754',NULL,1228,43.365618,-72.125562,0,NULL,NULL,49),(131,8,1,1,0,'150N Main Ave NE',150,'N',NULL,'Main','Ave','NE',NULL,NULL,NULL,NULL,'Guild',1,1028,NULL,'03754',NULL,1228,43.365618,-72.125562,0,NULL,NULL,49),(132,137,1,0,0,'150N Main Ave NE',150,'N',NULL,'Main','Ave','NE',NULL,NULL,NULL,NULL,'Guild',1,1028,NULL,'03754',NULL,1228,43.365618,-72.125562,0,NULL,NULL,49),(133,200,1,1,0,'785K Second Ln SW',785,'K',NULL,'Second','Ln','SW',NULL,NULL,NULL,NULL,'Masontown',1,1047,NULL,'26542',NULL,1228,39.561031,-79.79533,0,NULL,NULL,NULL),(134,78,1,1,0,'166R Cadell Ln NE',166,'R',NULL,'Cadell','Ln','NE',NULL,NULL,NULL,NULL,'Ogema',1,1022,NULL,'56569',NULL,1228,47.093608,-95.84166,0,NULL,NULL,50),(135,179,1,1,0,'166R Cadell Ln NE',166,'R',NULL,'Cadell','Ln','NE',NULL,NULL,NULL,NULL,'Ogema',1,1022,NULL,'56569',NULL,1228,47.093608,-95.84166,0,NULL,NULL,50),(136,31,1,1,0,'166R Cadell Ln NE',166,'R',NULL,'Cadell','Ln','NE',NULL,NULL,NULL,NULL,'Ogema',1,1022,NULL,'56569',NULL,1228,47.093608,-95.84166,0,NULL,NULL,50),(137,167,1,1,0,'177I Main Ln S',177,'I',NULL,'Main','Ln','S',NULL,NULL,NULL,NULL,'South Sterling',1,1037,NULL,'18460',NULL,1228,41.255644,-75.34474,0,NULL,NULL,NULL),(138,84,1,1,0,'219F College Ave SW',219,'F',NULL,'College','Ave','SW',NULL,NULL,NULL,NULL,'Oaks',1,1035,NULL,'74359',NULL,1228,36.415938,-94.787091,0,NULL,NULL,51),(139,110,1,1,0,'219F College Ave SW',219,'F',NULL,'College','Ave','SW',NULL,NULL,NULL,NULL,'Oaks',1,1035,NULL,'74359',NULL,1228,36.415938,-94.787091,0,NULL,NULL,51),(140,141,1,1,0,'219F College Ave SW',219,'F',NULL,'College','Ave','SW',NULL,NULL,NULL,NULL,'Oaks',1,1035,NULL,'74359',NULL,1228,36.415938,-94.787091,0,NULL,NULL,51),(141,23,1,1,0,'219F College Ave SW',219,'F',NULL,'College','Ave','SW',NULL,NULL,NULL,NULL,'Oaks',1,1035,NULL,'74359',NULL,1228,36.415938,-94.787091,0,NULL,NULL,51),(142,133,1,1,0,'696W Green Rd E',696,'W',NULL,'Green','Rd','E',NULL,NULL,NULL,NULL,'Vestal',1,1031,NULL,'13851',NULL,1228,42.206745,-75.74488,0,NULL,NULL,52),(143,153,1,0,0,'696W Green Rd E',696,'W',NULL,'Green','Rd','E',NULL,NULL,NULL,NULL,'Vestal',1,1031,NULL,'13851',NULL,1228,42.206745,-75.74488,0,NULL,NULL,52),(144,192,1,1,0,'696W Green Rd E',696,'W',NULL,'Green','Rd','E',NULL,NULL,NULL,NULL,'Vestal',1,1031,NULL,'13851',NULL,1228,42.206745,-75.74488,0,NULL,NULL,52),(145,3,1,1,0,'696W Green Rd E',696,'W',NULL,'Green','Rd','E',NULL,NULL,NULL,NULL,'Vestal',1,1031,NULL,'13851',NULL,1228,42.206745,-75.74488,0,NULL,NULL,52),(146,60,1,1,0,'54J Martin Luther King Blvd NE',54,'J',NULL,'Martin Luther King','Blvd','NE',NULL,NULL,NULL,NULL,'Boise',1,1011,NULL,'83716',NULL,1228,43.601772,-116.02721,0,NULL,NULL,53),(147,97,1,1,0,'54J Martin Luther King Blvd NE',54,'J',NULL,'Martin Luther King','Blvd','NE',NULL,NULL,NULL,NULL,'Boise',1,1011,NULL,'83716',NULL,1228,43.601772,-116.02721,0,NULL,NULL,53),(148,75,1,0,0,'54J Martin Luther King Blvd NE',54,'J',NULL,'Martin Luther King','Blvd','NE',NULL,NULL,NULL,NULL,'Boise',1,1011,NULL,'83716',NULL,1228,43.601772,-116.02721,0,NULL,NULL,53),(149,90,1,1,0,'327V States Ave W',327,'V',NULL,'States','Ave','W',NULL,NULL,NULL,NULL,'Big Piney',1,1049,NULL,'83113',NULL,1228,42.557035,-110.11482,0,NULL,NULL,NULL),(150,58,1,1,0,'86T Northpoint Path NE',86,'T',NULL,'Northpoint','Path','NE',NULL,NULL,NULL,NULL,'Carolina',1,1056,NULL,'00986',NULL,1228,18.393355,-65.972495,0,NULL,NULL,54),(151,119,1,0,0,'86T Northpoint Path NE',86,'T',NULL,'Northpoint','Path','NE',NULL,NULL,NULL,NULL,'Carolina',1,1056,NULL,'00986',NULL,1228,18.393355,-65.972495,0,NULL,NULL,54),(152,174,1,1,0,'86T Northpoint Path NE',86,'T',NULL,'Northpoint','Path','NE',NULL,NULL,NULL,NULL,'Carolina',1,1056,NULL,'00986',NULL,1228,18.393355,-65.972495,0,NULL,NULL,54),(153,4,1,1,0,'86T Northpoint Path NE',86,'T',NULL,'Northpoint','Path','NE',NULL,NULL,NULL,NULL,'Carolina',1,1056,NULL,'00986',NULL,1228,18.393355,-65.972495,0,NULL,NULL,54),(154,13,1,0,0,'306K El Camino Pl SE',306,'K',NULL,'El Camino','Pl','SE',NULL,NULL,NULL,NULL,'Decaturville',1,1041,NULL,'38329',NULL,1228,35.546839,-88.12345,0,NULL,NULL,55),(155,7,1,1,0,'306K El Camino Pl SE',306,'K',NULL,'El Camino','Pl','SE',NULL,NULL,NULL,NULL,'Decaturville',1,1041,NULL,'38329',NULL,1228,35.546839,-88.12345,0,NULL,NULL,55),(156,63,1,1,0,'306K El Camino Pl SE',306,'K',NULL,'El Camino','Pl','SE',NULL,NULL,NULL,NULL,'Decaturville',1,1041,NULL,'38329',NULL,1228,35.546839,-88.12345,0,NULL,NULL,55),(157,20,1,1,0,'257C College Dr W',257,'C',NULL,'College','Dr','W',NULL,NULL,NULL,NULL,'Richfield',1,1048,NULL,'53076',NULL,1228,43.265289,-88.20144,0,NULL,NULL,NULL),(158,80,1,1,0,'585P Northpoint Blvd W',585,'P',NULL,'Northpoint','Blvd','W',NULL,NULL,NULL,NULL,'Worcester',1,1020,NULL,'01609',NULL,1228,42.271743,-71.81348,0,NULL,NULL,56),(159,160,1,0,0,'585P Northpoint Blvd W',585,'P',NULL,'Northpoint','Blvd','W',NULL,NULL,NULL,NULL,'Worcester',1,1020,NULL,'01609',NULL,1228,42.271743,-71.81348,0,NULL,NULL,56),(160,106,1,1,0,'585P Northpoint Blvd W',585,'P',NULL,'Northpoint','Blvd','W',NULL,NULL,NULL,NULL,'Worcester',1,1020,NULL,'01609',NULL,1228,42.271743,-71.81348,0,NULL,NULL,56),(161,150,1,1,0,'590X Woodbridge Ave N',590,'X',NULL,'Woodbridge','Ave','N',NULL,NULL,NULL,NULL,'Martinton',1,1012,NULL,'60951',NULL,1228,40.912916,-87.75589,0,NULL,NULL,NULL),(162,66,1,1,0,'896A El Camino Ln SE',896,'A',NULL,'El Camino','Ln','SE',NULL,NULL,NULL,NULL,'Maceo',1,1016,NULL,'42355',NULL,1228,37.86975,-86.99535,0,NULL,NULL,57),(163,21,1,1,0,'896A El Camino Ln SE',896,'A',NULL,'El Camino','Ln','SE',NULL,NULL,NULL,NULL,'Maceo',1,1016,NULL,'42355',NULL,1228,37.86975,-86.99535,0,NULL,NULL,57),(164,27,1,1,0,'896A El Camino Ln SE',896,'A',NULL,'El Camino','Ln','SE',NULL,NULL,NULL,NULL,'Maceo',1,1016,NULL,'42355',NULL,1228,37.86975,-86.99535,0,NULL,NULL,57),(165,108,1,1,0,'896A El Camino Ln SE',896,'A',NULL,'El Camino','Ln','SE',NULL,NULL,NULL,NULL,'Maceo',1,1016,NULL,'42355',NULL,1228,37.86975,-86.99535,0,NULL,NULL,57),(166,129,1,1,0,'75E Maple Dr SE',75,'E',NULL,'Maple','Dr','SE',NULL,NULL,NULL,NULL,'Stratford',1,1048,NULL,'54484',NULL,1228,44.793747,-90.06026,0,NULL,NULL,58),(167,161,1,1,0,'75E Maple Dr SE',75,'E',NULL,'Maple','Dr','SE',NULL,NULL,NULL,NULL,'Stratford',1,1048,NULL,'54484',NULL,1228,44.793747,-90.06026,0,NULL,NULL,58),(168,111,1,1,0,'75E Maple Dr SE',75,'E',NULL,'Maple','Dr','SE',NULL,NULL,NULL,NULL,'Stratford',1,1048,NULL,'54484',NULL,1228,44.793747,-90.06026,0,NULL,NULL,58),(169,71,1,1,0,'430I Caulder Rd S',430,'I',NULL,'Caulder','Rd','S',NULL,NULL,NULL,NULL,'Lenora',1,1015,NULL,'67645',NULL,1228,39.609655,-99.91904,0,NULL,NULL,NULL),(170,34,1,1,0,'500M Lincoln Dr N',500,'M',NULL,'Lincoln','Dr','N',NULL,NULL,NULL,NULL,'Ringling',1,1025,NULL,'59642',NULL,1228,46.24656,-110.79404,0,NULL,NULL,59),(171,45,1,1,0,'500M Lincoln Dr N',500,'M',NULL,'Lincoln','Dr','N',NULL,NULL,NULL,NULL,'Ringling',1,1025,NULL,'59642',NULL,1228,46.24656,-110.79404,0,NULL,NULL,59),(172,61,1,0,0,'500M Lincoln Dr N',500,'M',NULL,'Lincoln','Dr','N',NULL,NULL,NULL,NULL,'Ringling',1,1025,NULL,'59642',NULL,1228,46.24656,-110.79404,0,NULL,NULL,59),(173,102,1,1,0,'738I Bay Blvd SW',738,'I',NULL,'Bay','Blvd','SW',NULL,NULL,NULL,NULL,'Douglas',1,1009,NULL,'31533',NULL,1228,31.522042,-82.84153,0,NULL,NULL,NULL),(174,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),(175,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),(176,NULL,1,1,1,'581O Lincoln Dr SW',581,'O',NULL,'Lincoln','Dr',NULL,NULL,NULL,NULL,NULL,'Santa Fe',NULL,1030,NULL,'87594',NULL,1228,35.5212,-105.982,0,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_address` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -135,7 +135,7 @@ UNLOCK TABLES;
 
 LOCK TABLES `civicrm_cache` WRITE;
 /*!40000 ALTER TABLE `civicrm_cache` DISABLE KEYS */;
-INSERT INTO `civicrm_cache` (`id`, `group_name`, `path`, `data`, `component_id`, `created_date`, `expired_date`) VALUES (1,'ext','mapper/moduleFiles','a:0:{}',NULL,'2013-12-11 12:10:37',NULL),(2,'CiviCRM setting Spec','All','a:82:{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:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 113\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Viewing Contacts\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"contact_edit_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_edit_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_edit_options\";}s:7:\"default\";s:25:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Editing Contacts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:23:\"advanced_search_options\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:4:\"name\";s:23:\"advanced_search_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:23:\"advanced_search_options\";}s:7:\"default\";s:43:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 112\ 113\ 115\ 116\ 117\ 118\ 119\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Contact Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:22:\"user_dashboard_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"user_dashboard_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:22:\"user_dashboard_options\";}s:7:\"default\";s:17:\"\ 11\ 12\ 13\ 14\ 15\ 17\ 18\ 19\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:17:\"Contact Dashboard\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"address_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"address_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:15:\"address_options\";}s:7:\"default\";s:19:\"\ 11\ 12\ 14\ 15\ 18\ 19\ 110\ 111\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:18:\"Addressing Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"address_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"address_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:8:\"TextArea\";s:7:\"default\";s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Address Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"mailing_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"mailing_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Mailing Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"display_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"display_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Display Name Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"sort_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"sort_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:43:\"{contact.last_name}{, }{contact.first_name}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";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:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:28:\"contact_autocomplete_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:28:\"contact_autocomplete_options\";}s:7:\"default\";s:15:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Contact Reference Autocomplete Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"contact_reference_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:25:\"contact_reference_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:25:\"contact_reference_options\";}s:7:\"default\";s:15:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";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.<br />Note: php.ini should support this file size.\";s:9:\"help_text\";N;}s:16:\"contact_undelete\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"contact_undelete\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:26:\"Contact Trash and Undelete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:200:\"If enabled, deleted contacts will be moved to trash (instead of being destroyed). Users with the proper permission are able to search for the deleted contacts and restore them (or delete permanently).\";s:9:\"help_text\";N;}s:24:\"allowPermDeleteFinancial\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:24:\"allowPermDeleteFinancial\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";b:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:24:\"Contact Permanent Delete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:81:\"Allow Permanent Delete for contacts who are linked to live financial transactions\";s:9:\"help_text\";N;}s:12:\"versionAlert\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionAlert\";s:4:\"type\";s:7:\"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:18:\"New Version Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:212:\"Displays an on-screen alert to users with \"Administer CiviCRM\" permissions when a new version of CiviCRM is available. This setting will only work if the \"Version Check & Statistics Reporting\" setting is enabled.\";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:17:\"Checksum Lifespan\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:7:\"blogUrl\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:7:\"blogUrl\";s:8:\"prefetch\";i:0;s:11:\"config_only\";i:0;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:128;}s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Blog Feed URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:38:\"Blog feed URL used by the blog dashlet\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:20:\"communityMessagesUrl\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"communityMessagesUrl\";s:8:\"prefetch\";i:0;s: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:128;}s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Community Messages URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:44:\"Service providing CiviCRM community messages\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:12:\"resCacheCode\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"resCacheCode\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s: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:10:\"wpBasePage\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:10:\"wpBasePage\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"text\";s:15:\"quick_form_type\";s:7:\"Element\";s:8:\"prefetch\";i:1;s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"WordPress Base Page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:54:\"If set, CiviCRM will use this setting as the base url.\";s:9:\"help_text\";s:177:\"By default, CiviCRM will generate front-facing pages using the home page at http://wp/ as its base. If you want to use a different template for CiviCRM pages, set the path here.\";}s:23:\"secondDegRelPermissions\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:23:\"secondDegRelPermissions\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:44:\"Allow second-degree relationship permissions\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"If enabled, contacts with the permission to edit a related contact will inherit that contact\'s permission to edit other related contacts\";s:9:\"help_text\";N;}s:17:\"enable_components\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"enable_components\";s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:17:\"Enable Components\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;s:9:\"on_change\";a:2:{i:0;a:2:{i:0;s:13:\"CRM_Case_Info\";i:1;s:18:\"onToggleComponents\";}i:1;a:2:{i:0;s:18:\"CRM_Core_Component\";i:1;s:22:\"flushEnabledComponents\";}}}s:16:\"disable_core_css\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"disable_core_css\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:19:\"Disable CiviCRM css\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:55:\"Prevent the stylesheet \"civicrm.css\" from being loaded.\";s:9:\"help_text\";N;}s: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:21:\"defaultContactCountry\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:21:\"defaultContactCountry\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:4;}s:7:\"default\";s:4:\"1228\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Default Country\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:68:\"This value is selected by default when adding a new contact address.\";s:9:\"help_text\";N;}s:12:\"countryLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:12:\"countryLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Available Countries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"provinceLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"provinceLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Available States and Provinces\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"inheritLocale\";a:14:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"inheritLocale\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Inherit CMS Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:18:\"dateformatDatetime\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:18:\"dateformatDatetime\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:20:\"%B %E%f, %Y %l:%M %P\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Complete Date and Time\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:14:\"dateformatFull\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:14:\"dateformatFull\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:11:\"%B %E%f, %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Complete Date\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:17:\"dateformatPartial\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:17:\"dateformatPartial\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"%B %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:14:\"Month and Year\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:10:\"lcMessages\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:10:\"lcMessages\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"en_US\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:20:\"profile_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"profile_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:22:\"track_civimail_replies\";a:13:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:22:\"track_civimail_replies\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:41:\"CRM_Core_BAO_Setting::validateBoolSetting\";}s:17:\"civimail_workflow\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:17:\"civimail_workflow\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";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:30:\"disable_mandatory_tokens_check\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:30:\"disable_mandatory_tokens_check\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:34:\"Disable check for mandatory tokens\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:345:\"Don\'t check for presence of mandatory tokens (domain address; unsubscribe/opt-out) before sending mailings. WARNING: Mandatory tokens are a safe-guard which facilitate compliance with the US CAN-SPAM Act. They should only be disabled if your organization adopts other mechanisms for compliance or if your organization is not subject to CAN-SPAM.\";s:9:\"help_text\";N;}s: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:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";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:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";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:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";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-12-11 12:10:37',NULL),(3,'CiviCRM setting Specs','settingsMetadata___name_uploadDir','a:1:{s:9:\"uploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:9:\"uploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";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.\";}}',NULL,'2013-12-11 12:10:38',NULL),(4,'CiviCRM setting Specs','settingsMetadata___name_imageUploadDir','a:1:{s:14:\"imageUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:14:\"imageUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2013-12-11 12:10:38',NULL),(5,'CiviCRM setting Specs','settingsMetadata___name_customFileUploadDir','a:1:{s:19:\"customFileUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:19:\"customFileUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2013-12-11 12:10:38',NULL),(6,'CiviCRM setting Specs','settingsMetadata___name_userFrameworkResourceURL','a:1:{s:24:\"userFrameworkResourceURL\";a:12:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";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\";}}',NULL,'2013-12-11 12:10:38',NULL),(7,'CiviCRM setting Specs','settingsMetadata___name_imageUploadURL','a:1:{s:14:\"imageUploadURL\";a:12:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:14:\"imageUploadURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:16:\"Image Upload URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2013-12-11 12:10:38',NULL);
+INSERT INTO `civicrm_cache` (`id`, `group_name`, `path`, `data`, `component_id`, `created_date`, `expired_date`) VALUES (1,'ext','mapper/moduleFiles','a:0:{}',NULL,'2014-01-08 12:19:39',NULL),(2,'CiviCRM setting Spec','All','a:82:{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:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 113\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Viewing Contacts\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"contact_edit_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_edit_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_edit_options\";}s:7:\"default\";s:25:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Editing Contacts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:23:\"advanced_search_options\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:4:\"name\";s:23:\"advanced_search_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:23:\"advanced_search_options\";}s:7:\"default\";s:43:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 112\ 113\ 115\ 116\ 117\ 118\ 119\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Contact Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:22:\"user_dashboard_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"user_dashboard_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:22:\"user_dashboard_options\";}s:7:\"default\";s:17:\"\ 11\ 12\ 13\ 14\ 15\ 17\ 18\ 19\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:17:\"Contact Dashboard\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"address_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"address_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:15:\"address_options\";}s:7:\"default\";s:19:\"\ 11\ 12\ 14\ 15\ 18\ 19\ 110\ 111\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:18:\"Addressing Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"address_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"address_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:8:\"TextArea\";s:7:\"default\";s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Address Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"mailing_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"mailing_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Mailing Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"display_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"display_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Display Name Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"sort_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"sort_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:43:\"{contact.last_name}{, }{contact.first_name}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";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:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:28:\"contact_autocomplete_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:28:\"contact_autocomplete_options\";}s:7:\"default\";s:15:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Contact Reference Autocomplete Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"contact_reference_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:25:\"contact_reference_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:25:\"contact_reference_options\";}s:7:\"default\";s:15:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";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.<br />Note: php.ini should support this file size.\";s:9:\"help_text\";N;}s:16:\"contact_undelete\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"contact_undelete\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:26:\"Contact Trash and Undelete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:200:\"If enabled, deleted contacts will be moved to trash (instead of being destroyed). Users with the proper permission are able to search for the deleted contacts and restore them (or delete permanently).\";s:9:\"help_text\";N;}s:24:\"allowPermDeleteFinancial\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:24:\"allowPermDeleteFinancial\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";b:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:24:\"Contact Permanent Delete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:81:\"Allow Permanent Delete for contacts who are linked to live financial transactions\";s:9:\"help_text\";N;}s:12:\"versionAlert\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionAlert\";s:4:\"type\";s:7:\"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:18:\"New Version Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:212:\"Displays an on-screen alert to users with \"Administer CiviCRM\" permissions when a new version of CiviCRM is available. This setting will only work if the \"Version Check & Statistics Reporting\" setting is enabled.\";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:17:\"Checksum Lifespan\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:7:\"blogUrl\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:7:\"blogUrl\";s:8:\"prefetch\";i:0;s:11:\"config_only\";i:0;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:128;}s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Blog Feed URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:38:\"Blog feed URL used by the blog dashlet\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:20:\"communityMessagesUrl\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"communityMessagesUrl\";s:8:\"prefetch\";i:0;s: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:128;}s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Community Messages URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:44:\"Service providing CiviCRM community messages\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:12:\"resCacheCode\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"resCacheCode\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s: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:10:\"wpBasePage\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:10:\"wpBasePage\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"text\";s:15:\"quick_form_type\";s:7:\"Element\";s:8:\"prefetch\";i:1;s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"WordPress Base Page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:54:\"If set, CiviCRM will use this setting as the base url.\";s:9:\"help_text\";s:177:\"By default, CiviCRM will generate front-facing pages using the home page at http://wp/ as its base. If you want to use a different template for CiviCRM pages, set the path here.\";}s:23:\"secondDegRelPermissions\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:23:\"secondDegRelPermissions\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:44:\"Allow second-degree relationship permissions\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"If enabled, contacts with the permission to edit a related contact will inherit that contact\'s permission to edit other related contacts\";s:9:\"help_text\";N;}s:17:\"enable_components\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"enable_components\";s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:17:\"Enable Components\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;s:9:\"on_change\";a:2:{i:0;a:2:{i:0;s:13:\"CRM_Case_Info\";i:1;s:18:\"onToggleComponents\";}i:1;a:2:{i:0;s:18:\"CRM_Core_Component\";i:1;s:22:\"flushEnabledComponents\";}}}s:16:\"disable_core_css\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"disable_core_css\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:19:\"Disable CiviCRM css\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:55:\"Prevent the stylesheet \"civicrm.css\" from being loaded.\";s:9:\"help_text\";N;}s: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:21:\"defaultContactCountry\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:21:\"defaultContactCountry\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:4;}s:7:\"default\";s:4:\"1228\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Default Country\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:68:\"This value is selected by default when adding a new contact address.\";s:9:\"help_text\";N;}s:12:\"countryLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:12:\"countryLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Available Countries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"provinceLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"provinceLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Available States and Provinces\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"inheritLocale\";a:14:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"inheritLocale\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Inherit CMS Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:18:\"dateformatDatetime\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:18:\"dateformatDatetime\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:20:\"%B %E%f, %Y %l:%M %P\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Complete Date and Time\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:14:\"dateformatFull\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:14:\"dateformatFull\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:11:\"%B %E%f, %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Complete Date\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:17:\"dateformatPartial\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:17:\"dateformatPartial\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"%B %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:14:\"Month and Year\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:10:\"lcMessages\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:10:\"lcMessages\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"en_US\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:20:\"profile_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"profile_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:22:\"track_civimail_replies\";a:13:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:22:\"track_civimail_replies\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:41:\"CRM_Core_BAO_Setting::validateBoolSetting\";}s:17:\"civimail_workflow\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:17:\"civimail_workflow\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";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:30:\"disable_mandatory_tokens_check\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:30:\"disable_mandatory_tokens_check\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:34:\"Disable check for mandatory tokens\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:345:\"Don\'t check for presence of mandatory tokens (domain address; unsubscribe/opt-out) before sending mailings. WARNING: Mandatory tokens are a safe-guard which facilitate compliance with the US CAN-SPAM Act. They should only be disabled if your organization adopts other mechanisms for compliance or if your organization is not subject to CAN-SPAM.\";s:9:\"help_text\";N;}s: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:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";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:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";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:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";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,'2014-01-08 12:19:39',NULL),(3,'CiviCRM setting Specs','settingsMetadata___name_uploadDir','a:1:{s:9:\"uploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:9:\"uploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";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.\";}}',NULL,'2014-01-08 12:19:39',NULL),(4,'CiviCRM setting Specs','settingsMetadata___name_imageUploadDir','a:1:{s:14:\"imageUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:14:\"imageUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2014-01-08 12:19:39',NULL),(5,'CiviCRM setting Specs','settingsMetadata___name_customFileUploadDir','a:1:{s:19:\"customFileUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:19:\"customFileUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";N;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2014-01-08 12:19:39',NULL),(6,'CiviCRM setting Specs','settingsMetadata___name_userFrameworkResourceURL','a:1:{s:24:\"userFrameworkResourceURL\";a:12:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";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\";}}',NULL,'2014-01-08 12:19:39',NULL),(7,'CiviCRM setting Specs','settingsMetadata___name_imageUploadURL','a:1:{s:14:\"imageUploadURL\";a:12:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:14:\"imageUploadURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:16:\"Image Upload URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2014-01-08 12:19:40',NULL);
 /*!40000 ALTER TABLE `civicrm_cache` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -200,7 +200,7 @@ UNLOCK TABLES;
 
 LOCK TABLES `civicrm_contact` WRITE;
 /*!40000 ALTER TABLE `civicrm_contact` DISABLE KEYS */;
-INSERT INTO `civicrm_contact` (`id`, `contact_type`, `contact_sub_type`, `do_not_email`, `do_not_phone`, `do_not_mail`, `do_not_sms`, `do_not_trade`, `is_opt_out`, `legal_identifier`, `external_identifier`, `sort_name`, `display_name`, `nick_name`, `legal_name`, `image_URL`, `preferred_communication_method`, `preferred_language`, `preferred_mail_format`, `hash`, `api_key`, `source`, `first_name`, `middle_name`, `last_name`, `prefix_id`, `suffix_id`, `formal_title`, `communication_style_id`, `email_greeting_id`, `email_greeting_custom`, `email_greeting_display`, `postal_greeting_id`, `postal_greeting_custom`, `postal_greeting_display`, `addressee_id`, `addressee_custom`, `addressee_display`, `job_title`, `gender_id`, `birth_date`, `is_deceased`, `deceased_date`, `household_name`, `primary_contact_id`, `organization_name`, `sic_code`, `user_unique_id`, `employer_id`, `is_deleted`, `created_date`, `modified_date`) VALUES (1,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Default Organization','Default Organization',NULL,'Default Organization',NULL,NULL,NULL,'Both',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'Default Organization',NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:16'),(2,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'ivanov.alida@sample.biz','ivanov.alida@sample.biz',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-187369261',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear ivanov.alida@sample.biz',1,NULL,'Dear ivanov.alida@sample.biz',1,NULL,'ivanov.alida@sample.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:54'),(3,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Grant, Winford','Dr. Winford Grant',NULL,NULL,NULL,NULL,NULL,'Both','431528979',NULL,'Sample Data','Winford','','Grant',4,NULL,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Dr. Winford Grant',NULL,2,'1981-06-18',0,NULL,NULL,NULL,'Memphis Sustainability School',NULL,NULL,124,0,NULL,'2013-12-11 06:41:26'),(4,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'kk.wattson@fishmail.co.nz','kk.wattson@fishmail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','815055213',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear kk.wattson@fishmail.co.nz',1,NULL,'Dear kk.wattson@fishmail.co.nz',1,NULL,'kk.wattson@fishmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:53'),(5,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Adams, Nicole','Dr. Nicole Adams',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1724528090',NULL,'Sample Data','Nicole','Q','Adams',4,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Dr. Nicole Adams',NULL,1,'1940-09-29',0,NULL,NULL,NULL,'Missouri Music Partners',NULL,NULL,84,0,NULL,'2013-12-11 06:41:28'),(6,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Jed','Jed Blackwell',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','38907930',NULL,'Sample Data','Jed','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Blackwell',NULL,NULL,'1987-02-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:02'),(7,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'jacobs.megan44@mymail.co.nz','jacobs.megan44@mymail.co.nz',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-2036462511',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jacobs.megan44@mymail.co.nz',1,NULL,'Dear jacobs.megan44@mymail.co.nz',1,NULL,'jacobs.megan44@mymail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:54'),(8,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Carylon','Mrs. Carylon Lee',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-275891104',NULL,'Sample Data','Carylon','','Lee',1,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Mrs. Carylon Lee',NULL,1,'1985-04-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:05'),(9,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Omar','Mr. Omar Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','-707591528',NULL,'Sample Data','Omar','U','Blackwell',3,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Mr. Omar Blackwell',NULL,2,'1964-05-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:19'),(10,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Troy','Troy Terrell III',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-1762944746',NULL,'Sample Data','Troy','','Terrell',NULL,4,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Terrell III',NULL,NULL,'1963-03-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:16'),(11,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Daren','Daren Barkley II',NULL,NULL,NULL,NULL,NULL,'Both','-1290749365',NULL,'Sample Data','Daren','','Barkley',NULL,3,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Barkley II',NULL,2,'1933-12-01',1,'2013-04-23',NULL,NULL,'Ohio Action Collective',NULL,NULL,187,0,NULL,'2013-12-11 06:41:27'),(12,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Jacobs-Patel family','Jacobs-Patel family',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-451538497',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jacobs-Patel family',5,NULL,'Dear Jacobs-Patel family',2,NULL,'Jacobs-Patel family',NULL,NULL,NULL,0,NULL,'Jacobs-Patel family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:24'),(13,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Kandace','Mrs. Kandace McReynolds',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','249116029',NULL,'Sample Data','Kandace','','McReynolds',1,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Mrs. Kandace McReynolds',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:17'),(14,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Tanya','Tanya Müller',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','1478253205',NULL,'Sample Data','Tanya','M','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Müller',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:12'),(15,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Magan','Dr. Magan Terrell',NULL,NULL,NULL,NULL,NULL,'Both','790509945',NULL,'Sample Data','Magan','S','Terrell',4,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Dr. Magan Terrell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:01'),(16,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Díaz, Valene','Ms. Valene Díaz',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-762310903',NULL,'Sample Data','Valene','','Díaz',2,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Ms. Valene Díaz',NULL,NULL,'1957-04-18',0,NULL,NULL,NULL,'Alabama Wellness Services',NULL,NULL,94,0,NULL,'2013-12-11 06:41:31'),(17,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jacobs, Teddy','Teddy Jacobs',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','730676702',NULL,'Sample Data','Teddy','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Jacobs',NULL,NULL,'1991-12-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:01'),(18,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Smith family','Smith family',NULL,NULL,NULL,NULL,NULL,'Both','-212194651',NULL,'Sample Data',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-12-11 06:41:25'),(19,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Lee family','Lee family',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','845831176',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Lee family',5,NULL,'Dear Lee family',2,NULL,'Lee family',NULL,NULL,NULL,0,NULL,'Lee family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:24'),(20,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'chowski.tanya31@lol.co.uk','chowski.tanya31@lol.co.uk',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-191183123',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear chowski.tanya31@lol.co.uk',1,NULL,'Dear chowski.tanya31@lol.co.uk',1,NULL,'chowski.tanya31@lol.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:07'),(21,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Tanya','Tanya Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','-1543966230',NULL,'Sample Data','Tanya','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Blackwell',NULL,NULL,'2004-10-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:22'),(22,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Zope, Barry','Dr. Barry Zope',NULL,NULL,NULL,NULL,NULL,'Both','1953474040',NULL,'Sample Data','Barry','O','Zope',4,NULL,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Dr. Barry Zope',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:09'),(23,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'jones.b.teresa@mymail.co.nz','jones.b.teresa@mymail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','-358755181',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jones.b.teresa@mymail.co.nz',1,NULL,'Dear jones.b.teresa@mymail.co.nz',1,NULL,'jones.b.teresa@mymail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:19'),(24,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Müller family','Müller family',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1144797465',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Müller family',5,NULL,'Dear Müller family',2,NULL,'Müller family',NULL,NULL,NULL,0,NULL,'Müller family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:25'),(25,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Blackwell, Carlos','Carlos Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','-620713331',NULL,'Sample Data','Carlos','C','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Blackwell',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:22'),(26,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Billy','Billy Jacobs II',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1211186164',NULL,'Sample Data','Billy','','Jacobs',NULL,3,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Jacobs II',NULL,2,'1941-06-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:00'),(27,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Carlos','Carlos Müller',NULL,NULL,NULL,NULL,NULL,'Both','457253515',NULL,'Sample Data','Carlos','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Müller',NULL,2,'1999-01-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:19'),(28,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Damaris','Damaris McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','-1732997244',NULL,'Sample Data','Damaris','','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Damaris McReynolds',NULL,1,'1980-02-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:17'),(29,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Jay','Dr. Jay Jones Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-190781027',NULL,'Sample Data','Jay','','Jones',4,2,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Dr. Jay Jones Sr.',NULL,2,'1985-10-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:51'),(30,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Zope, Kathlyn','Ms. Kathlyn Zope',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1348907697',NULL,'Sample Data','Kathlyn','Q','Zope',2,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Ms. Kathlyn Zope',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:07'),(31,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'smith.brigette49@airmail.com','smith.brigette49@airmail.com',NULL,NULL,NULL,NULL,NULL,'Both','869422009',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear smith.brigette49@airmail.com',1,NULL,'Dear smith.brigette49@airmail.com',1,NULL,'smith.brigette49@airmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:20'),(32,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Dixon Health Collective','Dixon Health Collective',NULL,NULL,NULL,NULL,NULL,'Both','1291562997',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Dixon Health Collective',NULL,NULL,NULL,0,NULL,NULL,NULL,'Dixon Health Collective',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:26'),(33,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Lashawnda','Lashawnda Samuels',NULL,NULL,NULL,NULL,NULL,'Both','-770765074',NULL,'Sample Data','Lashawnda','J','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Samuels',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:03'),(34,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wilson, Ashlie','Ashlie Wilson',NULL,NULL,NULL,NULL,NULL,'Both','-916161186',NULL,'Sample Data','Ashlie','','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Wilson',NULL,1,'1936-01-02',1,'2013-02-21',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:53'),(35,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Errol','Errol Roberts Sr.',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','152825771',NULL,'Sample Data','Errol','','Roberts',NULL,2,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Roberts Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:11'),(36,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Beula','Beula Grant',NULL,NULL,NULL,NULL,NULL,'Both','-1690084312',NULL,'Sample Data','Beula','','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Grant',NULL,1,'1936-04-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:06'),(37,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Olsen, Carlos','Mr. Carlos Olsen Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-1692997790',NULL,'Sample Data','Carlos','','Olsen',3,2,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Mr. Carlos Olsen Sr.',NULL,2,NULL,1,'2013-08-22',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:00'),(38,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Roberts, Toby','Mr. Toby Roberts',NULL,NULL,NULL,NULL,NULL,'Both','-528197729',NULL,'Sample Data','Toby','','Roberts',3,NULL,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Mr. Toby Roberts',NULL,NULL,'1971-01-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:10'),(39,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Landon','Landon Jensen Jr.',NULL,NULL,NULL,NULL,NULL,'Both','901849490',NULL,'Sample Data','Landon','S','Jensen',NULL,1,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Jensen Jr.',NULL,2,'1955-05-26',1,NULL,NULL,NULL,'Pine Environmental Services',NULL,NULL,191,0,NULL,'2013-12-11 06:41:32'),(40,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson-McReynolds, Andrew','Andrew Jameson-McReynolds Sr.',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','1634722098',NULL,'Sample Data','Andrew','W','Jameson-McReynolds',NULL,2,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Jameson-McReynolds Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:21'),(41,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Samson, Elbert','Elbert Samson Jr.',NULL,NULL,NULL,NULL,NULL,'Both','-878370943',NULL,'Sample Data','Elbert','E','Samson',NULL,1,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Samson Jr.',NULL,2,'1991-02-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:56'),(42,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Gouldsboro Advocacy Fund','Gouldsboro Advocacy Fund',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1366793659',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Gouldsboro Advocacy Fund',NULL,NULL,NULL,0,NULL,NULL,NULL,'Gouldsboro Advocacy Fund',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:28'),(43,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Rosario','Dr. Rosario Terry Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1264009879',NULL,'Sample Data','Rosario','B','Terry',4,1,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Dr. Rosario Terry Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:04'),(44,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Lawerence','Lawerence Adams',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-2024322440',NULL,'Sample Data','Lawerence','','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence Adams',NULL,2,'1970-08-05',1,'2013-03-01',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:00'),(45,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Samson family','Samson family',NULL,NULL,NULL,NULL,NULL,'Both','333421926',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samson family',5,NULL,'Dear Samson family',2,NULL,'Samson family',NULL,NULL,NULL,0,NULL,'Samson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:23'),(46,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell family','Blackwell family',NULL,NULL,NULL,NULL,NULL,'Both','-1076325786',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Blackwell family',5,NULL,'Dear Blackwell family',2,NULL,'Blackwell family',NULL,NULL,NULL,0,NULL,'Blackwell family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:26'),(47,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Shauna','Dr. Shauna Wattson',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','255999578',NULL,'Sample Data','Shauna','Q','Wattson',4,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Dr. Shauna Wattson',NULL,1,'1973-03-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:01'),(48,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner-Prentice family','Wagner-Prentice family',NULL,NULL,NULL,NULL,NULL,'Both','-594151422',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wagner-Prentice family',5,NULL,'Dear Wagner-Prentice family',2,NULL,'Wagner-Prentice family',NULL,NULL,NULL,0,NULL,'Wagner-Prentice family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:26'),(49,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell-Reynolds, Rosario','Rosario Blackwell-Reynolds',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','2012523570',NULL,'Sample Data','Rosario','L','Blackwell-Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Blackwell-Reynolds',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:20'),(50,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'estagrant18@sample.info','estagrant18@sample.info',NULL,NULL,NULL,NULL,NULL,'Both','1129146464',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear estagrant18@sample.info',1,NULL,'Dear estagrant18@sample.info',1,NULL,'estagrant18@sample.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:57'),(51,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jameson, Felisha','Dr. Felisha Jameson',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-2096790680',NULL,'Sample Data','Felisha','','Jameson',4,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Dr. Felisha Jameson',NULL,NULL,NULL,0,NULL,NULL,NULL,'North Carolina Sustainability School',NULL,NULL,123,0,NULL,'2013-12-11 06:41:29'),(52,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'College Food Alliance','College Food Alliance',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1017700412',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'College Food Alliance',NULL,NULL,NULL,0,NULL,NULL,85,'College Food Alliance',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:31'),(53,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Shauna','Dr. Shauna McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','-1017939650',NULL,'Sample Data','Shauna','G','McReynolds',4,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Dr. Shauna McReynolds',NULL,NULL,'1969-01-12',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:05'),(54,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jacobs-Patel, Omar','Omar Jacobs-Patel Sr.',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','512737382',NULL,'Sample Data','Omar','H','Jacobs-Patel',NULL,2,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Omar Jacobs-Patel Sr.',NULL,2,'1983-02-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:12'),(55,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'roberts.bob@fishmail.co.in','roberts.bob@fishmail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','633255259',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear roberts.bob@fishmail.co.in',1,NULL,'Dear roberts.bob@fishmail.co.in',1,NULL,'roberts.bob@fishmail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:10'),(56,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Jameson-McReynolds family','Jameson-McReynolds family',NULL,NULL,NULL,NULL,NULL,'Both','238641827',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson-McReynolds family',5,NULL,'Dear Jameson-McReynolds family',2,NULL,'Jameson-McReynolds family',NULL,NULL,NULL,0,NULL,'Jameson-McReynolds family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:26'),(57,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Margaret','Margaret Prentice',NULL,NULL,NULL,NULL,NULL,'Both','356395124',NULL,'Sample Data','Margaret','Y','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Prentice',NULL,1,'1991-12-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:57'),(58,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Miguel','Mr. Miguel Prentice III',NULL,NULL,NULL,NULL,NULL,'Both','-1201200237',NULL,'Sample Data','Miguel','','Prentice',3,4,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Mr. Miguel Prentice III',NULL,2,'1957-02-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:22'),(59,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'States Legal Services','States Legal Services',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-1863153108',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'States Legal Services',NULL,NULL,NULL,0,NULL,NULL,169,'States Legal Services',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:31'),(60,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Damaris','Ms. Damaris Müller',NULL,NULL,NULL,NULL,NULL,'Both','282196089',NULL,'Sample Data','Damaris','','Müller',2,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Ms. Damaris Müller',NULL,1,'1946-10-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:18'),(61,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Beula','Beula Grant',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-1690084312',NULL,'Sample Data','Beula','','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Grant',NULL,1,'1985-12-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:00'),(62,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'ro.daz64@infomail.com','ro.daz64@infomail.com',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-1740186755',NULL,'Sample Data',NULL,NULL,NULL,NULL,2,NULL,NULL,1,NULL,'Dear ro.daz64@infomail.com',1,NULL,'Dear ro.daz64@infomail.com',1,NULL,'ro.daz64@infomail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:13'),(63,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Illinois Development Partners','Illinois Development Partners',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-216196455',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Illinois Development Partners',NULL,NULL,NULL,0,NULL,NULL,122,'Illinois Development Partners',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:30'),(64,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'gonzleza@notmail.org','gonzleza@notmail.org',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','584224688',NULL,'Sample Data',NULL,NULL,NULL,3,4,NULL,NULL,1,NULL,'Dear gonzleza@notmail.org',1,NULL,'Dear gonzleza@notmail.org',1,NULL,'gonzleza@notmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:06'),(65,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Brigette','Brigette Jacobs',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1570276428',NULL,'Sample Data','Brigette','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette Jacobs',NULL,1,'1960-09-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:01'),(66,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Magan','Magan Díaz',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-303495149',NULL,'Sample Data','Magan','H','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Díaz',NULL,1,'1971-05-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:06'),(67,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'College Poetry Fund','College Poetry Fund',NULL,NULL,NULL,NULL,NULL,'Both','1669064599',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'College Poetry Fund',NULL,NULL,NULL,0,NULL,NULL,136,'College Poetry Fund',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:27'),(68,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Brigette','Dr. Brigette Müller',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-722824294',NULL,'Sample Data','Brigette','F','Müller',4,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Dr. Brigette Müller',NULL,1,'1987-10-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:56'),(69,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Cooper, Clint','Clint Cooper III',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','303284897',NULL,'Sample Data','Clint','J','Cooper',NULL,4,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Cooper III',NULL,2,'1951-08-10',0,NULL,NULL,NULL,'Urban Wellness Association',NULL,NULL,96,0,NULL,'2013-12-11 06:41:28'),(70,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice, Sharyn','Sharyn Prentice',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-1803150112',NULL,'Sample Data','Sharyn','','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Prentice',NULL,1,'1968-02-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:05'),(71,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell-Jensen, Sharyn','Dr. Sharyn Terrell-Jensen',NULL,NULL,NULL,NULL,NULL,'Both','949180933',NULL,'Sample Data','Sharyn','M','Terrell-Jensen',4,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Dr. Sharyn Terrell-Jensen',NULL,1,'1975-01-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:16'),(72,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Roberts family','Roberts family',NULL,NULL,NULL,NULL,NULL,'Both','2097305882',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Roberts family',5,NULL,'Dear Roberts family',2,NULL,'Roberts family',NULL,NULL,NULL,0,NULL,'Roberts family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:24'),(73,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Ivanov-González, Santina','Santina Ivanov-González',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-1358288501',NULL,'Sample Data','Santina','','Ivanov-González',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Ivanov-González',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:09'),(74,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Łąchowski, Clint','Dr. Clint Łąchowski II',NULL,NULL,NULL,NULL,NULL,'Both','-555576388',NULL,'Sample Data','Clint','','Łąchowski',4,3,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Dr. Clint Łąchowski II',NULL,2,NULL,0,NULL,NULL,NULL,'College Education Alliance',NULL,NULL,90,0,NULL,'2013-12-11 06:41:32'),(75,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Olsen, Clint','Dr. Clint Olsen Jr.',NULL,NULL,NULL,NULL,NULL,'Both','654679479',NULL,'Sample Data','Clint','','Olsen',4,1,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Dr. Clint Olsen Jr.',NULL,2,'1930-12-02',1,NULL,NULL,NULL,'Martin Luther King Health Fellowship',NULL,NULL,107,0,NULL,'2013-12-11 06:41:30'),(76,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Eleonor','Eleonor Smith',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','574097129',NULL,'Sample Data','Eleonor','','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor Smith',NULL,1,'2011-05-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:21'),(77,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Bryon','Mr. Bryon Ivanov Jr.',NULL,NULL,NULL,NULL,NULL,'Both','-1234104444',NULL,'Sample Data','Bryon','','Ivanov',3,1,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Mr. Bryon Ivanov Jr.',NULL,2,'1989-01-23',0,NULL,NULL,NULL,'Friends Food Association',NULL,NULL,91,0,NULL,'2013-12-11 06:41:32'),(78,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Wagner, Elbert','Elbert Wagner',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','9097371',NULL,'Sample Data','Elbert','','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Wagner',NULL,NULL,'2007-03-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:50'),(79,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Truman','Truman Terrell III',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','653635789',NULL,'Sample Data','Truman','Y','Terrell',NULL,4,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Terrell III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:58'),(80,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Blackwell, Lou','Lou Blackwell',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-1769798448',NULL,'Sample Data','Lou','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Blackwell',NULL,NULL,'1960-09-14',1,'2013-09-12',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:22'),(81,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Allan','Allan Jameson III',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-786920980',NULL,'Sample Data','Allan','','Jameson',NULL,4,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Jameson III',NULL,2,'1981-06-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:17'),(82,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Díaz, Sharyn','Sharyn Díaz',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-165688067',NULL,'Sample Data','Sharyn','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Díaz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:13'),(83,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jacobs-Patel, Jay','Jay Jacobs-Patel',NULL,NULL,NULL,NULL,NULL,'Both','944401271',NULL,'Sample Data','Jay','S','Jacobs-Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Jacobs-Patel',NULL,2,'2001-07-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:12'),(84,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Missouri Music Partners','Missouri Music Partners',NULL,NULL,NULL,NULL,NULL,'Both','138629156',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Missouri Music Partners',NULL,NULL,NULL,0,NULL,NULL,5,'Missouri Music Partners',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:28'),(85,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Brzęczysław','Brzęczysław Jacobs',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1026883277',NULL,'Sample Data','Brzęczysław','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Jacobs',NULL,2,'1942-08-10',0,NULL,NULL,NULL,'College Food Alliance',NULL,NULL,52,0,NULL,'2013-12-11 06:41:30'),(86,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Jackson','Mr. Jackson Terry Jr.',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','179207055',NULL,'Sample Data','Jackson','','Terry',3,1,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Mr. Jackson Terry Jr.',NULL,2,'1988-05-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:08'),(87,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Allan','Dr. Allan McReynolds II',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-475400183',NULL,'Sample Data','Allan','P','McReynolds',4,3,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Dr. Allan McReynolds II',NULL,NULL,'1987-06-15',0,NULL,NULL,NULL,'Community Software Association',NULL,NULL,155,0,NULL,'2013-12-11 06:41:29'),(88,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Terrell-Jensen family','Terrell-Jensen family',NULL,NULL,NULL,NULL,NULL,'Both','1816020828',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terrell-Jensen family',5,NULL,'Dear Terrell-Jensen family',2,NULL,'Terrell-Jensen family',NULL,NULL,NULL,0,NULL,'Terrell-Jensen family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:24'),(89,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Zope-Samson family','Zope-Samson family',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-1673668233',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Zope-Samson family',5,NULL,'Dear Zope-Samson family',2,NULL,'Zope-Samson family',NULL,NULL,NULL,0,NULL,'Zope-Samson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:23'),(90,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'College Education Alliance','College Education Alliance',NULL,NULL,NULL,NULL,NULL,'Both','1039212250',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'College Education Alliance',NULL,NULL,NULL,0,NULL,NULL,74,'College Education Alliance',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:32'),(91,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Friends Food Association','Friends Food Association',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','318455564',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Food Association',NULL,NULL,NULL,0,NULL,NULL,77,'Friends Food Association',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:32'),(92,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Tanya','Mrs. Tanya Yadav',NULL,NULL,NULL,NULL,NULL,'Both','1976540184',NULL,'Sample Data','Tanya','','Yadav',1,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Mrs. Tanya Yadav',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:06'),(93,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Robertson, Shauna','Mrs. Shauna Robertson',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','2123826543',NULL,'Sample Data','Shauna','J','Robertson',1,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Mrs. Shauna Robertson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:58'),(94,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Alabama Wellness Services','Alabama Wellness Services',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','998809799',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Alabama Wellness Services',NULL,NULL,NULL,0,NULL,NULL,16,'Alabama Wellness Services',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:31'),(95,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Dimitrov, Allan','Allan Dimitrov II',NULL,NULL,NULL,NULL,NULL,'Both','-1867880194',NULL,'Sample Data','Allan','','Dimitrov',NULL,3,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Dimitrov II',NULL,NULL,NULL,1,'2012-12-23',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:57'),(96,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Urban Wellness Association','Urban Wellness Association',NULL,NULL,NULL,NULL,NULL,'Both','-1055961238',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Wellness Association',NULL,NULL,NULL,0,NULL,NULL,69,'Urban Wellness Association',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:29'),(97,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Patel, Bob','Dr. Bob Patel II',NULL,NULL,NULL,NULL,NULL,'Both','165677913',NULL,'Sample Data','Bob','H','Patel',4,3,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Dr. Bob Patel II',NULL,NULL,'1952-09-25',1,'2013-06-01',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:54'),(98,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Bob','Bob Samson',NULL,NULL,NULL,NULL,NULL,'Both','-490109784',NULL,'Sample Data','Bob','V','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Samson',NULL,2,'1998-03-19',0,NULL,NULL,NULL,'Mead Music Partnership',NULL,NULL,134,0,NULL,'2013-12-11 06:41:27'),(99,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jensen, Brzęczysław','Dr. Brzęczysław Jensen',NULL,NULL,NULL,NULL,NULL,'Both','-1185439691',NULL,'Sample Data','Brzęczysław','','Jensen',4,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Dr. Brzęczysław Jensen',NULL,2,'1971-02-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:16'),(100,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Scarlet','Ms. Scarlet Olsen',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-2063353970',NULL,'Sample Data','Scarlet','I','Olsen',2,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Ms. Scarlet Olsen',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:04'),(101,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Shad','Shad Jameson',NULL,NULL,NULL,NULL,NULL,'Both','-1806053146',NULL,'Sample Data','Shad','','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Jameson',NULL,NULL,'2002-02-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:18'),(102,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell-Reynolds, Kiara','Kiara Blackwell-Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','-228681367',NULL,'Sample Data','Kiara','','Blackwell-Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Blackwell-Reynolds',NULL,1,'1994-02-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:20'),(103,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Eleonor','Eleonor McReynolds',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1720935960',NULL,'Sample Data','Eleonor','','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor McReynolds',NULL,1,'1987-05-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:21'),(104,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Shauna','Shauna Roberts',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','927862076',NULL,'Sample Data','Shauna','','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Roberts',NULL,NULL,'2005-09-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:11'),(105,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Landon','Landon Díaz',NULL,NULL,NULL,NULL,NULL,'Both','1440703617',NULL,'Sample Data','Landon','G','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Díaz',NULL,NULL,'1947-04-06',1,'2013-09-24',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:53'),(106,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Truman','Mr. Truman Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','-1993473157',NULL,'Sample Data','Truman','','Ivanov',3,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Mr. Truman Ivanov',NULL,2,NULL,1,'2013-08-11',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:56'),(107,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Martin Luther King Health Fellowship','Martin Luther King Health Fellowship',NULL,NULL,NULL,NULL,NULL,'Both','-2006158823',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Martin Luther King Health Fellowship',NULL,NULL,NULL,0,NULL,NULL,75,'Martin Luther King Health Fellowship',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:30'),(108,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Müller family','Müller family',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1144797465',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Müller family',5,NULL,'Dear Müller family',2,NULL,'Müller family',NULL,NULL,NULL,0,NULL,'Müller family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:24'),(109,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Shad','Shad Roberts',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','808928953',NULL,'Sample Data','Shad','','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Roberts',NULL,2,'1985-10-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:13'),(110,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Blackwell-Reynolds family','Blackwell-Reynolds family',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','567430319',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Blackwell-Reynolds family',5,NULL,'Dear Blackwell-Reynolds family',2,NULL,'Blackwell-Reynolds family',NULL,NULL,NULL,0,NULL,'Blackwell-Reynolds family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:25'),(111,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Esta','Dr. Esta Müller',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','792383763',NULL,'Sample Data','Esta','B','Müller',4,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Dr. Esta Müller',NULL,1,'1983-09-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:50'),(112,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Wilson, Kathlyn','Kathlyn Wilson',NULL,NULL,NULL,NULL,NULL,'Both','-726518304',NULL,'Sample Data','Kathlyn','T','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Kathlyn Wilson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:55'),(113,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wattson, Elizabeth','Elizabeth Wattson',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','144172133',NULL,'Sample Data','Elizabeth','G','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Elizabeth Wattson',NULL,NULL,'1928-09-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:53'),(114,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Reynolds, Shauna','Mrs. Shauna Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','564809255',NULL,'Sample Data','Shauna','Z','Reynolds',1,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Mrs. Shauna Reynolds',NULL,1,'1967-09-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:20'),(115,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner-Prentice, Roland','Roland Wagner-Prentice Sr.',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-992990592',NULL,'Sample Data','Roland','C','Wagner-Prentice',NULL,2,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland Wagner-Prentice Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:23'),(116,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Ivanov-González, Ashlie','Ashlie Ivanov-González',NULL,NULL,NULL,NULL,NULL,'Both','-68508672',NULL,'Sample Data','Ashlie','M','Ivanov-González',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Ivanov-González',NULL,NULL,'1994-11-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:09'),(117,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson family','Jameson family',NULL,NULL,NULL,NULL,NULL,'Both','-2039317527',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson family',5,NULL,'Dear Jameson family',2,NULL,'Jameson family',NULL,NULL,NULL,0,NULL,'Jameson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:24'),(118,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Roberts, Josefa','Dr. Josefa Roberts',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-1890044909',NULL,'Sample Data','Josefa','P','Roberts',4,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Dr. Josefa Roberts',NULL,NULL,'1972-10-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:12'),(119,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jones, Allan','Allan Jones II',NULL,NULL,NULL,NULL,NULL,'Both','358340154',NULL,'Sample Data','Allan','N','Jones',NULL,3,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Jones II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:19'),(120,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Roberts family','Roberts family',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2097305882',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Roberts family',5,NULL,'Dear Roberts family',2,NULL,'Roberts family',NULL,NULL,NULL,0,NULL,'Roberts family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:23'),(121,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Magan','Mrs. Magan Grant',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-1396553620',NULL,'Sample Data','Magan','K','Grant',1,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Mrs. Magan Grant',NULL,1,'1957-11-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:53'),(122,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Müller, Bob','Bob Müller',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1294670578',NULL,'Sample Data','Bob','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Müller',NULL,2,NULL,0,NULL,NULL,NULL,'Illinois Development Partners',NULL,NULL,63,0,NULL,'2013-12-11 06:41:30'),(123,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'North Carolina Sustainability School','North Carolina Sustainability School',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-1665161847',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'North Carolina Sustainability School',NULL,NULL,NULL,0,NULL,NULL,51,'North Carolina Sustainability School',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:29'),(124,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Memphis Sustainability School','Memphis Sustainability School',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','2017447910',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Memphis Sustainability School',NULL,NULL,NULL,0,NULL,NULL,3,'Memphis Sustainability School',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:27'),(125,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'emcreynolds@testing.biz','emcreynolds@testing.biz',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-1745713815',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear emcreynolds@testing.biz',1,NULL,'Dear emcreynolds@testing.biz',1,NULL,'emcreynolds@testing.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:17'),(126,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Jones family','Jones family',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1110516799',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jones family',5,NULL,'Dear Jones family',2,NULL,'Jones family',NULL,NULL,NULL,0,NULL,'Jones family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:25'),(127,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Ray','Ray Jacobs Sr.',NULL,NULL,NULL,NULL,NULL,'Both','50050695',NULL,'Sample Data','Ray','','Jacobs',NULL,2,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Jacobs Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:12'),(128,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terry, Rebekah','Ms. Rebekah Terry',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2103758784',NULL,'Sample Data','Rebekah','','Terry',2,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Ms. Rebekah Terry',NULL,1,'1973-10-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:59'),(129,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terrell, Lincoln','Mr. Lincoln Terrell',NULL,NULL,NULL,NULL,NULL,'Both','1872516790',NULL,'Sample Data','Lincoln','R','Terrell',3,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Mr. Lincoln Terrell',NULL,2,'1982-05-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:07'),(130,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Samson, Justina','Dr. Justina Samson',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-1255558190',NULL,'Sample Data','Justina','K','Samson',4,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Dr. Justina Samson',NULL,1,'1953-07-29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:08'),(131,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'jameson-mcreynolds.clint@airmail.biz','jameson-mcreynolds.clint@airmail.biz',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-171101667',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jameson-mcreynolds.clint@airmail.biz',1,NULL,'Dear jameson-mcreynolds.clint@airmail.biz',1,NULL,'jameson-mcreynolds.clint@airmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:22'),(132,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Lee, Jay','Mr. Jay Lee',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','378929971',NULL,'Sample Data','Jay','','Lee',3,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Mr. Jay Lee',NULL,2,'1974-02-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:15'),(133,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Barkley, Lincoln','Mr. Lincoln Barkley',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1151829541',NULL,'Sample Data','Lincoln','','Barkley',3,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Mr. Lincoln Barkley',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:00'),(134,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Mead Music Partnership','Mead Music Partnership',NULL,NULL,NULL,NULL,NULL,'Both','-201218570',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Mead Music Partnership',NULL,NULL,NULL,0,NULL,NULL,98,'Mead Music Partnership',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:27'),(135,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'jacobsa@infomail.co.uk','jacobsa@infomail.co.uk',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-1516126711',NULL,'Sample Data',NULL,NULL,NULL,3,2,NULL,NULL,1,NULL,'Dear jacobsa@infomail.co.uk',1,NULL,'Dear jacobsa@infomail.co.uk',1,NULL,'jacobsa@infomail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:01'),(136,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Troy','Troy Wagner II',NULL,NULL,NULL,NULL,NULL,'Both','-1895602556',NULL,'Sample Data','Troy','Z','Wagner',NULL,3,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Wagner II',NULL,2,NULL,0,NULL,NULL,NULL,'College Poetry Fund',NULL,NULL,67,0,NULL,'2013-12-11 06:41:27'),(137,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Iowa Environmental Collective','Iowa Environmental Collective',NULL,NULL,NULL,NULL,NULL,'Both','-2128102145',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Iowa Environmental Collective',NULL,NULL,NULL,0,NULL,NULL,197,'Iowa Environmental Collective',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:31'),(138,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Rolando','Dr. Rolando Smith',NULL,NULL,NULL,NULL,NULL,'Both','1810396759',NULL,'Sample Data','Rolando','','Smith',4,NULL,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Dr. Rolando Smith',NULL,NULL,NULL,1,'2013-10-15',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:03'),(139,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner-Prentice, Winford','Mr. Winford Wagner-Prentice II',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','193814853',NULL,'Sample Data','Winford','','Wagner-Prentice',3,3,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Mr. Winford Wagner-Prentice II',NULL,2,'1981-12-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:23'),(140,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Wagner, Rebekah','Rebekah Wagner',NULL,NULL,NULL,NULL,NULL,'Both','1468156824',NULL,'Sample Data','Rebekah','','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Rebekah Wagner',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:50'),(141,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'González, Kacey','Mrs. Kacey González',NULL,NULL,NULL,NULL,NULL,'Both','-1042592407',NULL,'Sample Data','Kacey','','González',1,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Mrs. Kacey González',NULL,1,'1960-10-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:50'),(142,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'McReynolds, Delana','Delana McReynolds',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-866820899',NULL,'Sample Data','Delana','S','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana McReynolds',NULL,1,'1995-05-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:17'),(143,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Patel, Lashawnda','Lashawnda Patel',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-408109240',NULL,'Sample Data','Lashawnda','H','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Patel',NULL,1,'1981-03-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:12'),(144,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Jensen, Allan','Allan Jensen',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','2028803249',NULL,'Sample Data','Allan','A','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Jensen',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:15'),(145,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'mllerf@airmail.com','mllerf@airmail.com',NULL,NULL,NULL,NULL,NULL,'Both','1138354968',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear mllerf@airmail.com',1,NULL,'Dear mllerf@airmail.com',1,NULL,'mllerf@airmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:11'),(146,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Wagner-Prentice, Margaret','Margaret Wagner-Prentice',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-302797712',NULL,'Sample Data','Margaret','','Wagner-Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Wagner-Prentice',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:23'),(147,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Ashley','Ashley Müller',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1765273869',NULL,'Sample Data','Ashley','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Müller',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:18'),(148,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov-González family','Ivanov-González family',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1112663010',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Ivanov-González family',5,NULL,'Dear Ivanov-González family',2,NULL,'Ivanov-González family',NULL,NULL,NULL,0,NULL,'Ivanov-González family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:23'),(149,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Prentice, Esta','Ms. Esta Prentice',NULL,NULL,NULL,NULL,NULL,'Both','754414279',NULL,'Sample Data','Esta','Y','Prentice',2,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Ms. Esta Prentice',NULL,NULL,'1928-10-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:51'),(150,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Lineville Family Solutions','Lineville Family Solutions',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','392699464',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Lineville Family Solutions',NULL,NULL,NULL,0,NULL,NULL,NULL,'Lineville Family Solutions',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:33'),(151,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'terryj69@spamalot.co.uk','terryj69@spamalot.co.uk',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','876118420',NULL,'Sample Data',NULL,NULL,NULL,3,4,NULL,NULL,1,NULL,'Dear terryj69@spamalot.co.uk',1,NULL,'Dear terryj69@spamalot.co.uk',1,NULL,'terryj69@spamalot.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:51'),(152,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope-Samson, Bryon','Bryon Zope-Samson',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-1201717989',NULL,'Sample Data','Bryon','','Zope-Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Zope-Samson',NULL,2,'1967-08-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:10'),(153,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Prentice, Maria','Mr. Maria Prentice Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-340837299',NULL,'Sample Data','Maria','R','Prentice',3,2,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Mr. Maria Prentice Sr.',NULL,2,'1952-12-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:52'),(154,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'mcreynoldsp@lol.org','mcreynoldsp@lol.org',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1262715175',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear mcreynoldsp@lol.org',1,NULL,'Dear mcreynoldsp@lol.org',1,NULL,'mcreynoldsp@lol.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:02'),(155,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Community Software Association','Community Software Association',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2021777523',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Community Software Association',NULL,NULL,NULL,0,NULL,NULL,87,'Community Software Association',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:29'),(156,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Roberts, Rodrigo','Rodrigo Roberts III',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-1660445688',NULL,'Sample Data','Rodrigo','','Roberts',NULL,4,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Roberts III',NULL,NULL,'1959-10-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:12'),(157,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'reynolds-jamesonb50@infomail.co.uk','reynolds-jamesonb50@infomail.co.uk',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-1108987939',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear reynolds-jamesonb50@infomail.co.uk',1,NULL,'Dear reynolds-jamesonb50@infomail.co.uk',1,NULL,'reynolds-jamesonb50@infomail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:18'),(158,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jensen, Ashlie','Mrs. Ashlie Jensen',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','2039449284',NULL,'Sample Data','Ashlie','','Jensen',1,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Mrs. Ashlie Jensen',NULL,NULL,'1958-01-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:04'),(159,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Andrew','Andrew Smith',NULL,NULL,NULL,NULL,NULL,'Both','-1997461681',NULL,'Sample Data','Andrew','H','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Smith',NULL,2,'1975-06-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:21'),(160,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Jackson','Jackson Barkley Jr.',NULL,NULL,NULL,NULL,NULL,'Both','-938355461',NULL,'Sample Data','Jackson','X','Barkley',NULL,1,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Jackson Barkley Jr.',NULL,NULL,'1991-12-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:59'),(161,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jensen, Jina','Ms. Jina Jensen',NULL,NULL,NULL,NULL,NULL,'Both','105596008',NULL,'Sample Data','Jina','','Jensen',2,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Ms. Jina Jensen',NULL,1,'1946-04-06',1,'2013-05-03',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:15'),(162,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz family','Díaz family',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-2125717461',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Díaz family',5,NULL,'Dear Díaz family',2,NULL,'Díaz family',NULL,NULL,NULL,0,NULL,'Díaz family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:24'),(163,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Müller, Jerome','Jerome Müller',NULL,NULL,NULL,NULL,NULL,'Both','225098761',NULL,'Sample Data','Jerome','S','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Müller',NULL,2,'1979-09-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:11'),(164,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jensen, Mei','Ms. Mei Jensen',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-989476056',NULL,'Sample Data','Mei','','Jensen',2,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Ms. Mei Jensen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:16'),(165,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'González, Margaret','Dr. Margaret González',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','361656632',NULL,'Sample Data','Margaret','Z','González',4,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Dr. Margaret González',NULL,NULL,NULL,1,'2013-04-17',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:09'),(166,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Sharyn','Sharyn Jones',NULL,NULL,NULL,NULL,NULL,'Both','-335125116',NULL,'Sample Data','Sharyn','K','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Jones',NULL,1,'1983-10-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:19'),(167,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen family','Jensen family',NULL,NULL,NULL,NULL,NULL,'Both','797435572',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jensen family',5,NULL,'Dear Jensen family',2,NULL,'Jensen family',NULL,NULL,NULL,0,NULL,'Jensen family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:24'),(168,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Brent','Dr. Brent Smith',NULL,NULL,NULL,NULL,NULL,'Both','645749990',NULL,'Sample Data','Brent','','Smith',4,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Dr. Brent Smith',NULL,NULL,'1976-06-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:56'),(169,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Landon','Mr. Landon Wagner Jr.',NULL,NULL,NULL,NULL,NULL,'Both','-1777400565',NULL,'Sample Data','Landon','','Wagner',3,1,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Mr. Landon Wagner Jr.',NULL,2,NULL,0,NULL,NULL,NULL,'States Legal Services',NULL,NULL,59,0,NULL,'2013-12-11 06:41:31'),(170,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'darens5@example.co.uk','darens5@example.co.uk',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','523284977',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear darens5@example.co.uk',1,NULL,'Dear darens5@example.co.uk',1,NULL,'darens5@example.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:20'),(171,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Zope-Samson, Allan','Allan Zope-Samson II',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-883479694',NULL,'Sample Data','Allan','S','Zope-Samson',NULL,3,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Zope-Samson II',NULL,2,'2009-01-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:10'),(172,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Alida','Alida Müller',NULL,NULL,NULL,NULL,NULL,'Both','-128589789',NULL,'Sample Data','Alida','P','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Müller',NULL,1,'1982-02-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:11'),(173,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'kandaceb22@airmail.co.nz','kandaceb22@airmail.co.nz',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','891894187',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear kandaceb22@airmail.co.nz',1,NULL,'Dear kandaceb22@airmail.co.nz',1,NULL,'kandaceb22@airmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:05'),(174,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'slee36@spamalot.co.pl','slee36@spamalot.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','-226356639',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear slee36@spamalot.co.pl',1,NULL,'Dear slee36@spamalot.co.pl',1,NULL,'slee36@spamalot.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:15'),(175,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Smith, Sonny','Sonny Smith Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-1419051318',NULL,'Sample Data','Sonny','','Smith',NULL,2,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Sonny Smith Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:52'),(176,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Terrell-Jensen, Valene','Valene Terrell-Jensen',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','471636465',NULL,'Sample Data','Valene','B','Terrell-Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Valene Terrell-Jensen',NULL,1,'1968-05-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:17'),(177,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Tanya','Tanya Jones',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1578190771',NULL,'Sample Data','Tanya','','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Jones',NULL,NULL,'1975-01-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:19'),(178,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Lincoln','Mr. Lincoln Jameson',NULL,NULL,NULL,NULL,NULL,'Both','-1541067304',NULL,'Sample Data','Lincoln','','Jameson',3,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Mr. Lincoln Jameson',NULL,2,'1963-11-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:21'),(179,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'González, Elbert','Mr. Elbert González',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','672613238',NULL,'Sample Data','Elbert','N','González',3,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Mr. Elbert González',NULL,2,'1936-11-02',1,'2013-07-05',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:03'),(180,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Alexia','Alexia Jameson',NULL,NULL,NULL,NULL,NULL,'Both','1617185067',NULL,'Sample Data','Alexia','I','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Jameson',NULL,NULL,'1997-07-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:18'),(181,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Ashley','Ashley Blackwell II',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-1451853557',NULL,'Sample Data','Ashley','P','Blackwell',NULL,3,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Blackwell II',NULL,NULL,'1944-10-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:52'),(182,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Elina','Mrs. Elina Roberts',NULL,NULL,NULL,NULL,NULL,'Both','-838545814',NULL,'Sample Data','Elina','','Roberts',1,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Mrs. Elina Roberts',NULL,1,'1985-11-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:13'),(183,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Deforest, Scott','Dr. Scott Deforest',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','493842649',NULL,'Sample Data','Scott','R','Deforest',4,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Dr. Scott Deforest',NULL,2,'1965-02-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:55'),(184,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Lee, Allan','Mr. Allan Lee',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1694543373',NULL,'Sample Data','Allan','','Lee',3,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Mr. Allan Lee',NULL,2,'1942-03-05',1,'2013-09-07',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:14'),(185,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Bernadette','Mrs. Bernadette Roberts',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-69866350',NULL,'Sample Data','Bernadette','H','Roberts',1,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Mrs. Bernadette Roberts',NULL,1,'1971-11-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:58'),(186,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Bernadette','Dr. Bernadette Robertson',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1938070020',NULL,'Sample Data','Bernadette','','Robertson',4,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Dr. Bernadette Robertson',NULL,NULL,'1986-08-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:01'),(187,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Ohio Action Collective','Ohio Action Collective',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','205347801',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Ohio Action Collective',NULL,NULL,NULL,0,NULL,NULL,11,'Ohio Action Collective',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:28'),(188,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Omar','Omar Samson',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1847935667',NULL,'Sample Data','Omar','A','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Omar Samson',NULL,2,'1984-01-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:08'),(189,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Margaret','Ms. Margaret Bachman',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2110616060',NULL,'Sample Data','Margaret','Z','Bachman',2,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Ms. Margaret Bachman',NULL,1,'1987-09-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:04'),(190,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jensen, Teresa','Mrs. Teresa Jensen',NULL,NULL,NULL,NULL,NULL,'Both','1107412344',NULL,'Sample Data','Teresa','A','Jensen',1,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Mrs. Teresa Jensen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:06'),(191,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Pine Environmental Services','Pine Environmental Services',NULL,NULL,NULL,NULL,NULL,'Both','-1667264574',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Pine Environmental Services',NULL,NULL,NULL,0,NULL,NULL,39,'Pine Environmental Services',NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:32'),(192,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds family','McReynolds family',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-1262286324',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear McReynolds family',5,NULL,'Dear McReynolds family',2,NULL,'McReynolds family',NULL,NULL,NULL,0,NULL,'McReynolds family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:24'),(193,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Grant, Craig','Mr. Craig Grant II',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-455720862',NULL,'Sample Data','Craig','Q','Grant',3,3,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Mr. Craig Grant II',NULL,2,'1926-12-18',1,'2013-11-05',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:07'),(194,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Lee, Ivey','Ms. Ivey Lee',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-1447651770',NULL,'Sample Data','Ivey','W','Lee',2,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ms. Ivey Lee',NULL,NULL,'1978-09-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:15'),(195,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Ivey','Dr. Ivey Jacobs',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-268176618',NULL,'Sample Data','Ivey','','Jacobs',4,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Dr. Ivey Jacobs',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:55'),(196,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'samson.alexia@testmail.co.nz','samson.alexia@testmail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','-1187001126',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear samson.alexia@testmail.co.nz',1,NULL,'Dear samson.alexia@testmail.co.nz',1,NULL,'samson.alexia@testmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:09'),(197,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Díaz, Jackson','Jackson Díaz II',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','770065800',NULL,'Sample Data','Jackson','N','Díaz',NULL,3,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Jackson Díaz II',NULL,2,'1971-05-03',1,'2013-06-19',NULL,NULL,'Iowa Environmental Collective',NULL,NULL,137,0,NULL,'2013-12-11 06:41:31'),(198,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Nicole','Mrs. Nicole Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','-332239534',NULL,'Sample Data','Nicole','G','Dimitrov',1,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Mrs. Nicole Dimitrov',NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:58'),(199,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Ivey','Ivey Blackwell',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','326438233',NULL,'Sample Data','Ivey','X','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Blackwell',NULL,1,'1979-10-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:22'),(200,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Teresa','Ms. Teresa Zope',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-1741901327',NULL,'Sample Data','Teresa','','Zope',2,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Ms. Teresa Zope',NULL,1,'1989-03-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:41:04'),(201,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Clint','Clint Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','147013282',NULL,'Sample Data','Clint','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Jacobs',NULL,2,'1935-02-12',1,'2012-12-14',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2013-12-11 06:40:59');
+INSERT INTO `civicrm_contact` (`id`, `contact_type`, `contact_sub_type`, `do_not_email`, `do_not_phone`, `do_not_mail`, `do_not_sms`, `do_not_trade`, `is_opt_out`, `legal_identifier`, `external_identifier`, `sort_name`, `display_name`, `nick_name`, `legal_name`, `image_URL`, `preferred_communication_method`, `preferred_language`, `preferred_mail_format`, `hash`, `api_key`, `source`, `first_name`, `middle_name`, `last_name`, `prefix_id`, `suffix_id`, `formal_title`, `communication_style_id`, `email_greeting_id`, `email_greeting_custom`, `email_greeting_display`, `postal_greeting_id`, `postal_greeting_custom`, `postal_greeting_display`, `addressee_id`, `addressee_custom`, `addressee_display`, `job_title`, `gender_id`, `birth_date`, `is_deceased`, `deceased_date`, `household_name`, `primary_contact_id`, `organization_name`, `sic_code`, `user_unique_id`, `employer_id`, `is_deleted`, `created_date`, `modified_date`) VALUES (1,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Default Organization','Default Organization',NULL,'Default Organization',NULL,NULL,NULL,'Both',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'Default Organization',NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:22'),(2,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'McReynolds, Jina','Jina McReynolds',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','644172968',NULL,'Sample Data','Jina','','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina McReynolds',NULL,1,'1978-07-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:00'),(3,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'adams.d.toby@notmail.co.in','adams.d.toby@notmail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','725772085',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear adams.d.toby@notmail.co.in',1,NULL,'Dear adams.d.toby@notmail.co.in',1,NULL,'adams.d.toby@notmail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:10'),(4,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cruz, Sonny','Mr. Sonny Cruz',NULL,NULL,NULL,NULL,NULL,'Both','-761463442',NULL,'Sample Data','Sonny','','Cruz',3,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Mr. Sonny Cruz',NULL,NULL,'1951-03-13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:11'),(5,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Urban Family Center','Urban Family Center',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','216761887',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Family Center',NULL,NULL,NULL,0,NULL,NULL,113,'Urban Family Center',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:22'),(6,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Terrell family','Terrell family',NULL,NULL,NULL,NULL,NULL,'Both','1136333121',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terrell family',5,NULL,'Dear Terrell family',2,NULL,'Terrell family',NULL,NULL,NULL,0,NULL,'Terrell family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:17'),(7,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Carlos','Carlos Terrell III',NULL,NULL,NULL,NULL,NULL,'Both','2130082917',NULL,'Sample Data','Carlos','','Terrell',NULL,4,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Terrell III',NULL,2,'1979-07-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:12'),(8,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Bryon','Dr. Bryon Terry',NULL,NULL,NULL,NULL,NULL,'Both','86438947',NULL,'Sample Data','Bryon','S','Terry',4,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Dr. Bryon Terry',NULL,NULL,'1975-09-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:09'),(9,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Elizabeth','Elizabeth Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','818500223',NULL,'Sample Data','Elizabeth','T','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Elizabeth Ivanov',NULL,1,'1925-11-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:54'),(10,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'prentice-gonzlezj@testmail.co.nz','prentice-gonzlezj@testmail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','833114165',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear prentice-gonzlezj@testmail.co.nz',1,NULL,'Dear prentice-gonzlezj@testmail.co.nz',1,NULL,'prentice-gonzlezj@testmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:04'),(11,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Robertson, Beula','Dr. Beula Robertson',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-1771472000',NULL,'Sample Data','Beula','M','Robertson',4,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Dr. Beula Robertson',NULL,NULL,'1938-08-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:00'),(12,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'McReynolds, Toby','Toby McReynolds II',NULL,NULL,NULL,NULL,NULL,'Both','771213292',NULL,'Sample Data','Toby','','McReynolds',NULL,3,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Toby McReynolds II',NULL,2,'1973-01-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:03'),(13,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'terrell.eleonor@spamalot.co.pl','terrell.eleonor@spamalot.co.pl',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','70115630',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear terrell.eleonor@spamalot.co.pl',1,NULL,'Dear terrell.eleonor@spamalot.co.pl',1,NULL,'terrell.eleonor@spamalot.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,'Illinois Advocacy Fund',NULL,NULL,99,0,NULL,'2014-01-08 06:50:20'),(14,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Scarlet','Scarlet Müller',NULL,NULL,NULL,NULL,NULL,'Both','1549122199',NULL,'Sample Data','Scarlet','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Müller',NULL,NULL,'1991-09-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:54'),(15,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Alexia','Alexia Wagner',NULL,NULL,NULL,NULL,NULL,'Both','-690375322',NULL,'Sample Data','Alexia','P','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Wagner',NULL,1,'1971-03-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:07'),(16,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell-Terry, Bryon','Bryon Blackwell-Terry',NULL,NULL,NULL,NULL,NULL,'Both','-1395893282',NULL,'Sample Data','Bryon','F','Blackwell-Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Blackwell-Terry',NULL,2,'1968-07-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:08'),(17,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Kathleen','Mrs. Kathleen Terry',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1992671393',NULL,'Sample Data','Kathleen','E','Terry',1,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Mrs. Kathleen Terry',NULL,1,'1949-05-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:07'),(18,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Lee, Miguel','Miguel Lee',NULL,NULL,NULL,NULL,NULL,'Both','2016060544',NULL,'Sample Data','Miguel','F','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Lee',NULL,2,'1985-12-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:50'),(19,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'sy.daz52@sample.biz','sy.daz52@sample.biz',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-1782053110',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear sy.daz52@sample.biz',1,NULL,'Dear sy.daz52@sample.biz',1,NULL,'sy.daz52@sample.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:50'),(20,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Bryon','Dr. Bryon Terrell Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1742337325',NULL,'Sample Data','Bryon','Y','Terrell',4,2,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Dr. Bryon Terrell Sr.',NULL,NULL,'1975-10-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:12'),(21,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Barkley, Josefa','Josefa Barkley',NULL,NULL,NULL,NULL,NULL,'Both','-61537123',NULL,'Sample Data','Josefa','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Barkley',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:13'),(22,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Smith family','Smith family',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-212194651',NULL,'Sample Data',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,'2014-01-08 06:50:15'),(23,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Olsen, Maria','Maria Olsen Sr.',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1487979958',NULL,'Sample Data','Maria','','Olsen',NULL,2,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Maria Olsen Sr.',NULL,2,'1947-08-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:10'),(24,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'elinagonzlez@airmail.co.pl','elinagonzlez@airmail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','-857408012',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear elinagonzlez@airmail.co.pl',1,NULL,'Dear elinagonzlez@airmail.co.pl',1,NULL,'elinagonzlez@airmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:59'),(25,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz family','Cruz family',NULL,NULL,NULL,NULL,NULL,'Both','-1968428799',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cruz family',5,NULL,'Dear Cruz family',2,NULL,'Cruz family',NULL,NULL,NULL,0,NULL,'Cruz family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:17'),(26,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Erik','Erik Patel Sr.',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1879150423',NULL,'Sample Data','Erik','D','Patel',NULL,2,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Patel Sr.',NULL,2,'1984-04-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:06'),(27,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Ashley','Ashley Barkley',NULL,NULL,NULL,NULL,NULL,'Both','-2096452007',NULL,'Sample Data','Ashley','L','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Barkley',NULL,2,'1973-09-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:14'),(28,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Bernadette','Mrs. Bernadette Cooper',NULL,NULL,NULL,NULL,NULL,'Both','1160205929',NULL,'Sample Data','Bernadette','','Cooper',1,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Mrs. Bernadette Cooper',NULL,1,'1931-08-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:58'),(29,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Jerome','Mr. Jerome Samuels',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','2129032486',NULL,'Sample Data','Jerome','H','Samuels',3,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Mr. Jerome Samuels',NULL,2,'1942-01-22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:01'),(30,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jensen-Wagner, Lashawnda','Ms. Lashawnda Jensen-Wagner',NULL,NULL,NULL,NULL,NULL,'Both','-792863664',NULL,'Sample Data','Lashawnda','','Jensen-Wagner',2,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Ms. Lashawnda Jensen-Wagner',NULL,1,'1976-04-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:04'),(31,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Brittney','Dr. Brittney Terrell',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','21549293',NULL,'Sample Data','Brittney','','Terrell',4,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Dr. Brittney Terrell',NULL,NULL,'1973-01-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:09'),(32,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Lashawnda','Lashawnda Jameson',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-239066542',NULL,'Sample Data','Lashawnda','Q','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Jameson',NULL,1,'1943-04-13',0,NULL,NULL,NULL,'States Poetry Solutions',NULL,NULL,56,0,NULL,'2014-01-08 06:50:18'),(33,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Felisha','Felisha Smith',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-1012558037',NULL,'Sample Data','Felisha','','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Felisha Smith',NULL,1,'1995-03-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:05'),(34,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'tanyap42@notmail.co.pl','tanyap42@notmail.co.pl',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-894248523',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear tanyap42@notmail.co.pl',1,NULL,'Dear tanyap42@notmail.co.pl',1,NULL,'tanyap42@notmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:15'),(35,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Jay','Dr. Jay Smith',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-1550842110',NULL,'Sample Data','Jay','D','Smith',4,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Dr. Jay Smith',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:56'),(36,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Colorado Advocacy School','Colorado Advocacy School',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-730620890',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Colorado Advocacy School',NULL,NULL,NULL,0,NULL,NULL,57,'Colorado Advocacy School',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:19'),(37,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Sierra Development Initiative','Sierra Development Initiative',NULL,NULL,NULL,NULL,NULL,'Both','766474156',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Sierra Development Initiative',NULL,NULL,NULL,0,NULL,NULL,98,'Sierra Development Initiative',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:19'),(38,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Bachman, Alida','Dr. Alida Bachman',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-633190347',NULL,'Sample Data','Alida','','Bachman',4,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Dr. Alida Bachman',NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:54'),(39,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Northpoint Wellness Center','Northpoint Wellness Center',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','417665452',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Northpoint Wellness Center',NULL,NULL,NULL,0,NULL,NULL,153,'Northpoint Wellness Center',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:22'),(40,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice-González, Mei','Mei Prentice-González',NULL,NULL,NULL,NULL,NULL,'Both','1187166458',NULL,'Sample Data','Mei','','Prentice-González',NULL,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei Prentice-González',NULL,NULL,'1987-05-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:03'),(41,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry-Smith, Beula','Beula Terry-Smith',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-368392754',NULL,'Sample Data','Beula','','Terry-Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Terry-Smith',NULL,1,'1980-10-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:05'),(42,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Shauna','Shauna Bachman',NULL,NULL,NULL,NULL,NULL,'Both','1518911519',NULL,'Sample Data','Shauna','','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Bachman',NULL,NULL,'2000-11-13',0,NULL,NULL,NULL,'Global Wellness Systems',NULL,NULL,164,0,NULL,'2014-01-08 06:50:21'),(43,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice, Shauna','Mrs. Shauna Prentice',NULL,NULL,NULL,NULL,NULL,'Both','83202914',NULL,'Sample Data','Shauna','','Prentice',1,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Mrs. Shauna Prentice',NULL,1,'1935-02-12',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:02'),(44,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Rural Technology Alliance','Rural Technology Alliance',NULL,NULL,NULL,NULL,NULL,'Both','1092904195',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rural Technology Alliance',NULL,NULL,NULL,0,NULL,NULL,111,'Rural Technology Alliance',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:20'),(45,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'mller-patel.t.lincoln@infomail.co.pl','mller-patel.t.lincoln@infomail.co.pl',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-744630531',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear mller-patel.t.lincoln@infomail.co.pl',1,NULL,'Dear mller-patel.t.lincoln@infomail.co.pl',1,NULL,'mller-patel.t.lincoln@infomail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:15'),(46,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Díaz, Troy','Troy Díaz',NULL,NULL,NULL,NULL,NULL,'Both','-1239067478',NULL,'Sample Data','Troy','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Díaz',NULL,2,'1954-07-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:01'),(47,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jensen, Santina','Santina Jensen',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','864111104',NULL,'Sample Data','Santina','','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Jensen',NULL,1,'1969-12-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:59'),(48,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman family','Bachman family',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','1714131215',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Bachman family',5,NULL,'Dear Bachman family',2,NULL,'Bachman family',NULL,NULL,NULL,0,NULL,'Bachman family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:16'),(49,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'beulad@testing.biz','beulad@testing.biz',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-539823742',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear beulad@testing.biz',1,NULL,'Dear beulad@testing.biz',1,NULL,'beulad@testing.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:58'),(50,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts family','Roberts family',NULL,NULL,NULL,NULL,NULL,'Both','2097305882',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Roberts family',5,NULL,'Dear Roberts family',2,NULL,'Roberts family',NULL,NULL,NULL,0,NULL,'Roberts family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:15'),(51,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Port Jefferson Literacy Solutions','Port Jefferson Literacy Solutions',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-1905617927',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Port Jefferson Literacy Solutions',NULL,NULL,NULL,0,NULL,NULL,119,'Port Jefferson Literacy Solutions',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:20'),(52,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'cruz.princess@fishmail.info','cruz.princess@fishmail.info',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-766347215',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear cruz.princess@fishmail.info',1,NULL,'Dear cruz.princess@fishmail.info',1,NULL,'cruz.princess@fishmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:56'),(53,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Daren','Daren Díaz Sr.',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-1636249859',NULL,'Sample Data','Daren','S','Díaz',NULL,2,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Díaz Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:55'),(54,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Roland','Mr. Roland Cooper',NULL,NULL,NULL,NULL,NULL,'Both','983247946',NULL,'Sample Data','Roland','','Cooper',3,NULL,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Mr. Roland Cooper',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:51'),(55,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Bryon','Bryon Terry Sr.',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','86438947',NULL,'Sample Data','Bryon','M','Terry',NULL,2,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Terry Sr.',NULL,2,'1962-10-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:07'),(56,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'States Poetry Solutions','States Poetry Solutions',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1377465650',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'States Poetry Solutions',NULL,NULL,NULL,0,NULL,NULL,32,'States Poetry Solutions',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:18'),(57,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Norris','Dr. Norris Smith',NULL,NULL,NULL,NULL,NULL,'Both','-1704116356',NULL,'Sample Data','Norris','','Smith',4,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Dr. Norris Smith',NULL,NULL,'1936-05-27',1,'2013-11-10',NULL,NULL,'Colorado Advocacy School',NULL,NULL,36,0,NULL,'2014-01-08 06:50:19'),(58,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Cruz, Junko','Dr. Junko Cruz',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','158072434',NULL,'Sample Data','Junko','','Cruz',4,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Dr. Junko Cruz',NULL,1,'1988-05-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:12'),(59,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Craig','Craig Łąchowski II',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-1412942415',NULL,'Sample Data','Craig','H','Łąchowski',NULL,3,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Łąchowski II',NULL,2,'1992-01-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:57'),(60,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Juliann','Dr. Juliann Łąchowski',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-817879565',NULL,'Sample Data','Juliann','','Łąchowski',4,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Dr. Juliann Łąchowski',NULL,1,'1950-09-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:11'),(61,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller-Patel, Sharyn','Sharyn Müller-Patel',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-1843219759',NULL,'Sample Data','Sharyn','','Müller-Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Müller-Patel',NULL,NULL,NULL,0,NULL,NULL,NULL,'Urban Family Initiative',NULL,NULL,86,0,NULL,'2014-01-08 06:50:20'),(62,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Adams family','Adams family',NULL,NULL,NULL,NULL,NULL,'Both','1515323104',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Adams family',5,NULL,'Dear Adams family',2,NULL,'Adams family',NULL,NULL,NULL,0,NULL,'Adams family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:17'),(63,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Claudio','Claudio Terrell Sr.',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','941491020',NULL,'Sample Data','Claudio','M','Terrell',NULL,2,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Claudio Terrell Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:13'),(64,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Grant, Kandace','Ms. Kandace Grant',NULL,NULL,NULL,NULL,NULL,'Both','-774103357',NULL,'Sample Data','Kandace','I','Grant',2,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Ms. Kandace Grant',NULL,NULL,'1948-05-14',1,'2013-05-13',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:59'),(65,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Jerome','Jerome González II',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','775254007',NULL,'Sample Data','Jerome','','González',NULL,3,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome González II',NULL,NULL,'1976-01-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:03'),(66,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Shauna','Ms. Shauna Barkley',NULL,NULL,NULL,NULL,NULL,'Both','1145257394',NULL,'Sample Data','Shauna','','Barkley',2,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Ms. Shauna Barkley',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:13'),(67,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Main Arts Fund','Main Arts Fund',NULL,NULL,NULL,NULL,NULL,'Both','582057481',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Main Arts Fund',NULL,NULL,NULL,0,NULL,NULL,194,'Main Arts Fund',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:21'),(68,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Lawerence','Mr. Lawerence Patel III',NULL,NULL,NULL,NULL,NULL,'Both','973187101',NULL,'Sample Data','Lawerence','','Patel',3,4,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Mr. Lawerence Patel III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:06'),(69,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Roberts, Ray','Ray Roberts Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1321167237',NULL,'Sample Data','Ray','','Roberts',NULL,1,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Roberts Jr.',NULL,NULL,'1951-03-02',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:06'),(70,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Terrell family','Terrell family',NULL,NULL,NULL,NULL,NULL,'Both','1136333121',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terrell family',5,NULL,'Dear Terrell family',2,NULL,'Terrell family',NULL,NULL,NULL,0,NULL,'Terrell family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:17'),(71,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Barkley, Jed','Mr. Jed Barkley',NULL,NULL,NULL,NULL,NULL,'Both','-471779051',NULL,'Sample Data','Jed','','Barkley',3,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Mr. Jed Barkley',NULL,2,'1976-06-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:14'),(72,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'González, Maria','Mr. Maria González II',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-324622636',NULL,'Sample Data','Maria','Y','González',3,3,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Mr. Maria González II',NULL,2,'1992-01-27',0,NULL,NULL,NULL,'Bay Wellness Services',NULL,NULL,165,0,NULL,'2014-01-08 06:50:20'),(73,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Landon','Mr. Landon Jensen',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','901849490',NULL,'Sample Data','Landon','P','Jensen',3,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Mr. Landon Jensen',NULL,2,'1962-01-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:02'),(74,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Norris','Norris Terrell Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1035663398',NULL,'Sample Data','Norris','','Terrell',NULL,1,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Terrell Jr.',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:54'),(75,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'delana8@fishmail.biz','delana8@fishmail.biz',NULL,NULL,NULL,NULL,NULL,'Both','-12889778',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear delana8@fishmail.biz',1,NULL,'Dear delana8@fishmail.biz',1,NULL,'delana8@fishmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,'Northpoint Action Fellowship',NULL,NULL,116,0,NULL,'2014-01-08 06:50:23'),(76,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'wagner.laree@testing.com','wagner.laree@testing.com',NULL,NULL,NULL,NULL,NULL,'Both','-1031582350',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear wagner.laree@testing.com',1,NULL,'Dear wagner.laree@testing.com',1,NULL,'wagner.laree@testing.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:04'),(77,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'justinab@lol.co.pl','justinab@lol.co.pl',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-1380343513',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear justinab@lol.co.pl',1,NULL,'Dear justinab@lol.co.pl',1,NULL,'justinab@lol.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:08'),(78,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Bernadette','Bernadette Terrell',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1643953272',NULL,'Sample Data','Bernadette','','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Bernadette Terrell',NULL,1,'1952-04-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:09'),(79,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Barry','Dr. Barry Wagner III',NULL,NULL,NULL,NULL,NULL,'Both','1267143153',NULL,'Sample Data','Barry','','Wagner',4,4,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Dr. Barry Wagner III',NULL,2,'1991-02-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:08'),(80,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wagner, Andrew','Andrew Wagner III',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1096023784',NULL,'Sample Data','Andrew','','Wagner',NULL,4,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Wagner III',NULL,2,'1987-09-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:13'),(81,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'mllera@fakemail.net','mllera@fakemail.net',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-345305016',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear mllera@fakemail.net',1,NULL,'Dear mllera@fakemail.net',1,NULL,'mllera@fakemail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:01'),(82,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Texas Agriculture Association','Texas Agriculture Association',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-919912660',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Texas Agriculture Association',NULL,NULL,NULL,0,NULL,NULL,175,'Texas Agriculture Association',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:19'),(83,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Margaret','Margaret Olsen',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-455482377',NULL,'Sample Data','Margaret','P','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Olsen',NULL,NULL,'1985-01-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:55'),(84,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper-Olsen, Elizabeth','Dr. Elizabeth Cooper-Olsen',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','774218334',NULL,'Sample Data','Elizabeth','V','Cooper-Olsen',4,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Dr. Elizabeth Cooper-Olsen',NULL,1,'1973-09-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:10'),(85,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Alabama Peace Systems','Alabama Peace Systems',NULL,NULL,NULL,NULL,NULL,'Both','-1264940822',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Alabama Peace Systems',NULL,NULL,NULL,0,NULL,NULL,NULL,'Alabama Peace Systems',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:21'),(86,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Urban Family Initiative','Urban Family Initiative',NULL,NULL,NULL,NULL,NULL,'Both','1349271308',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Family Initiative',NULL,NULL,NULL,0,NULL,NULL,61,'Urban Family Initiative',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:20'),(87,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Sanford','Sanford Smith',NULL,NULL,NULL,NULL,NULL,'Both','-1710591710',NULL,'Sample Data','Sanford','V','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Smith',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:05'),(88,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Kiara','Dr. Kiara Lee',NULL,NULL,NULL,NULL,NULL,'Both','-504985138',NULL,'Sample Data','Kiara','R','Lee',4,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Dr. Kiara Lee',NULL,1,'1987-08-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:53'),(89,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Łąchowski family','Łąchowski family',NULL,NULL,NULL,NULL,NULL,'Both','-1887890041',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Łąchowski family',5,NULL,'Dear Łąchowski family',2,NULL,'Łąchowski family',NULL,NULL,NULL,0,NULL,'Łąchowski family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:17'),(90,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Łąchowski, Rosario','Rosario Łąchowski Sr.',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','941507939',NULL,'Sample Data','Rosario','U','Łąchowski',NULL,2,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Łąchowski Sr.',NULL,NULL,'1960-05-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:11'),(91,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'cprentice@mymail.info','cprentice@mymail.info',NULL,NULL,NULL,NULL,NULL,'Both','-1841953202',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear cprentice@mymail.info',1,NULL,'Dear cprentice@mymail.info',1,NULL,'cprentice@mymail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:50'),(92,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'rolandsamuels73@airmail.co.nz','rolandsamuels73@airmail.co.nz',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-2082077472',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear rolandsamuels73@airmail.co.nz',1,NULL,'Dear rolandsamuels73@airmail.co.nz',1,NULL,'rolandsamuels73@airmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:02'),(93,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Santina','Dr. Santina Jones',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-1633892950',NULL,'Sample Data','Santina','Z','Jones',4,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Dr. Santina Jones',NULL,1,'1929-12-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:57'),(94,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Ivanov, Delana','Dr. Delana Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','1796516445',NULL,'Sample Data','Delana','','Ivanov',4,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Dr. Delana Ivanov',NULL,NULL,'1944-07-08',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:03'),(95,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Zope, Shauna','Mrs. Shauna Zope',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-597724443',NULL,'Sample Data','Shauna','','Zope',1,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Mrs. Shauna Zope',NULL,1,'1990-08-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:53'),(96,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'reynoldsd@fakemail.co.nz','reynoldsd@fakemail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','1521372644',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear reynoldsd@fakemail.co.nz',1,NULL,'Dear reynoldsd@fakemail.co.nz',1,NULL,'reynoldsd@fakemail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:55'),(97,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Bob','Bob Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','1721371649',NULL,'Sample Data','Bob','B','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Łąchowski',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:11'),(98,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samson, Ashlie','Mrs. Ashlie Samson',NULL,NULL,NULL,NULL,NULL,'Both','292449607',NULL,'Sample Data','Ashlie','','Samson',1,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Mrs. Ashlie Samson',NULL,NULL,NULL,0,NULL,NULL,NULL,'Sierra Development Initiative',NULL,NULL,37,0,NULL,'2014-01-08 06:50:19'),(99,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Illinois Advocacy Fund','Illinois Advocacy Fund',NULL,NULL,NULL,NULL,NULL,'Both','-1428151211',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Illinois Advocacy Fund',NULL,NULL,NULL,0,NULL,NULL,13,'Illinois Advocacy Fund',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:20'),(100,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Müller-Patel family','Müller-Patel family',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-677721038',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Müller-Patel family',5,NULL,'Dear Müller-Patel family',2,NULL,'Müller-Patel family',NULL,NULL,NULL,0,NULL,'Müller-Patel family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:18'),(101,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'rnielsen12@notmail.info','rnielsen12@notmail.info',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-1066826561',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Dear rnielsen12@notmail.info',1,NULL,'Dear rnielsen12@notmail.info',1,NULL,'rnielsen12@notmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:01'),(102,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Müller, Josefa','Josefa Müller',NULL,NULL,NULL,NULL,NULL,'Both','375937993',NULL,'Sample Data','Josefa','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Müller',NULL,1,'1971-09-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:15'),(103,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Roberts, Arlyne','Arlyne Roberts',NULL,NULL,NULL,NULL,NULL,'Both','-1357003729',NULL,'Sample Data','Arlyne','','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Roberts',NULL,1,'1977-05-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:03'),(104,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Barkley family','Barkley family',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-1406905187',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Barkley family',5,NULL,'Dear Barkley family',2,NULL,'Barkley family',NULL,NULL,NULL,0,NULL,'Barkley family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:18'),(105,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jameson, Shauna','Ms. Shauna Jameson',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','318889656',NULL,'Sample Data','Shauna','U','Jameson',2,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Ms. Shauna Jameson',NULL,1,'1940-01-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:56'),(106,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Wagner, Rosario','Rosario Wagner',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1639040719',NULL,'Sample Data','Rosario','','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Wagner',NULL,2,'2001-11-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:13'),(107,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'zope.roland@airmail.co.pl','zope.roland@airmail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','822579931',NULL,'Sample Data',NULL,NULL,NULL,4,4,NULL,NULL,1,NULL,'Dear zope.roland@airmail.co.pl',1,NULL,'Dear zope.roland@airmail.co.pl',1,NULL,'zope.roland@airmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:55'),(108,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Barkley, Clint','Clint Barkley Jr.',NULL,NULL,NULL,NULL,NULL,'Both','-37760346',NULL,'Sample Data','Clint','H','Barkley',NULL,1,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Barkley Jr.',NULL,NULL,'1988-03-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:13'),(109,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Esta','Esta Cooper',NULL,NULL,NULL,NULL,NULL,'Both','-159167721',NULL,'Sample Data','Esta','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Esta Cooper',NULL,1,'1950-02-02',1,NULL,NULL,NULL,'Indiana Arts Trust',NULL,NULL,126,0,NULL,'2014-01-08 06:50:21'),(110,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Claudio','Claudio Olsen Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-1499498892',NULL,'Sample Data','Claudio','','Olsen',NULL,2,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Claudio Olsen Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:10'),(111,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Barkley, Shad','Shad Barkley',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-1386401763',NULL,'Sample Data','Shad','H','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Barkley',NULL,NULL,NULL,0,NULL,NULL,NULL,'Rural Technology Alliance',NULL,NULL,44,0,NULL,'2014-01-08 06:50:20'),(112,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Parker, Princess','Princess Parker',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1904893975',NULL,'Sample Data','Princess','W','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Parker',NULL,1,NULL,1,'2013-03-31',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:52'),(113,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terry, Nicole','Nicole Terry',NULL,NULL,NULL,NULL,NULL,'Both','551067213',NULL,'Sample Data','Nicole','F','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Terry',NULL,1,'1960-05-20',0,NULL,NULL,NULL,'Urban Family Center',NULL,NULL,5,0,NULL,'2014-01-08 06:50:22'),(114,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Roberts, Herminia','Herminia Roberts',NULL,NULL,NULL,NULL,NULL,'Both','-1051836772',NULL,'Sample Data','Herminia','','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Roberts',NULL,NULL,'1982-07-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:03'),(115,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Robertson, Roland','Mr. Roland Robertson',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-1631310556',NULL,'Sample Data','Roland','','Robertson',3,NULL,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Mr. Roland Robertson',NULL,NULL,'1981-07-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:00'),(116,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Northpoint Action Fellowship','Northpoint Action Fellowship',NULL,NULL,NULL,NULL,NULL,'Both','724269512',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Northpoint Action Fellowship',NULL,NULL,NULL,0,NULL,NULL,75,'Northpoint Action Fellowship',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:23'),(117,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Deforest, Shauna','Shauna Deforest',NULL,NULL,NULL,NULL,NULL,'Both','826633613',NULL,'Sample Data','Shauna','','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Deforest',NULL,NULL,'1933-08-10',1,'2013-10-17',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:58'),(118,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Terry family','Terry family',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','558108751',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terry family',5,NULL,'Dear Terry family',2,NULL,'Terry family',NULL,NULL,NULL,0,NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:16'),(119,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cruz, Sanford','Mr. Sanford Cruz Jr.',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-915922813',NULL,'Sample Data','Sanford','T','Cruz',3,1,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Mr. Sanford Cruz Jr.',NULL,2,'1976-09-01',0,NULL,NULL,NULL,'Port Jefferson Literacy Solutions',NULL,NULL,51,0,NULL,'2014-01-08 06:50:20'),(120,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terry, Princess','Mrs. Princess Terry',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','383206962',NULL,'Sample Data','Princess','','Terry',1,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Mrs. Princess Terry',NULL,1,'1990-04-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:00'),(121,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terrell, Alida','Alida Terrell',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-2963333',NULL,'Sample Data','Alida','','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Terrell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:03'),(122,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen family','Olsen family',NULL,NULL,NULL,NULL,NULL,'Both','1990073228',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Olsen family',5,NULL,'Dear Olsen family',2,NULL,'Olsen family',NULL,NULL,NULL,0,NULL,'Olsen family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:17'),(123,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Lee, Merrie','Merrie Lee',NULL,NULL,NULL,NULL,NULL,'Both','171642625',NULL,'Sample Data','Merrie','','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Lee',NULL,1,'1965-07-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:51'),(124,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice-González family','Prentice-González family',NULL,NULL,NULL,NULL,NULL,'Both','1434837608',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Prentice-González family',5,NULL,'Dear Prentice-González family',2,NULL,'Prentice-González family',NULL,NULL,NULL,0,NULL,'Prentice-González family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:15'),(125,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice, Brigette','Dr. Brigette Prentice',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','1103079124',NULL,'Sample Data','Brigette','','Prentice',4,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Dr. Brigette Prentice',NULL,1,'1976-07-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:02'),(126,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Indiana Arts Trust','Indiana Arts Trust',NULL,NULL,NULL,NULL,NULL,'Both','1312452421',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Indiana Arts Trust',NULL,NULL,NULL,0,NULL,NULL,109,'Indiana Arts Trust',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:21'),(127,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Norris','Mr. Norris Patel',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-766563291',NULL,'Sample Data','Norris','','Patel',3,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Mr. Norris Patel',NULL,NULL,'1987-12-02',0,NULL,NULL,NULL,'Buffalo Sustainability Initiative',NULL,NULL,140,0,NULL,'2014-01-08 06:50:19'),(128,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Terry, Merrie','Merrie Terry',NULL,NULL,NULL,NULL,NULL,'Both','-493816450',NULL,'Sample Data','Merrie','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Terry',NULL,1,'1970-10-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:59'),(129,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Magan','Mrs. Magan Barkley',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-1065255771',NULL,'Sample Data','Magan','F','Barkley',1,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Mrs. Magan Barkley',NULL,1,'1979-09-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:14'),(130,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Teresa','Teresa Robertson',NULL,NULL,NULL,NULL,NULL,'Both','988071547',NULL,'Sample Data','Teresa','','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Robertson',NULL,NULL,'1963-11-20',0,NULL,NULL,NULL,'Local Family Services',NULL,NULL,144,0,NULL,'2014-01-08 06:50:18'),(131,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Terry family','Terry family',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','558108751',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terry family',5,NULL,'Dear Terry family',2,NULL,'Terry family',NULL,NULL,NULL,0,NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:17'),(132,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Arlyne','Arlyne Cooper',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1117506834',NULL,'Sample Data','Arlyne','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Cooper',NULL,1,'1927-01-20',1,'2013-09-13',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:50'),(133,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams, Elina','Ms. Elina Adams',NULL,NULL,NULL,NULL,NULL,'Both','-380147312',NULL,'Sample Data','Elina','','Adams',2,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Ms. Elina Adams',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:10'),(134,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice, Allen','Allen Prentice',NULL,NULL,NULL,NULL,NULL,'Both','-158870154',NULL,'Sample Data','Allen','J','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Allen Prentice',NULL,2,'1972-02-11',1,'2013-06-11',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:03'),(135,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Junko','Dr. Junko Wagner',NULL,NULL,NULL,NULL,NULL,'Both','-563815259',NULL,'Sample Data','Junko','Y','Wagner',4,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Dr. Junko Wagner',NULL,1,'1960-10-10',1,'2013-11-28',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:00'),(136,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'roberts.a.clint44@lol.info','roberts.a.clint44@lol.info',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-1253756186',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear roberts.a.clint44@lol.info',1,NULL,'Dear roberts.a.clint44@lol.info',1,NULL,'roberts.a.clint44@lol.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:03'),(137,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'terryb@spamalot.co.uk','terryb@spamalot.co.uk',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1698283608',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear terryb@spamalot.co.uk',1,NULL,'Dear terryb@spamalot.co.uk',1,NULL,'terryb@spamalot.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,'Local Technology Systems',NULL,NULL,187,0,NULL,'2014-01-08 06:50:22'),(138,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Roberts, Merrie','Merrie Roberts',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-103999924',NULL,'Sample Data','Merrie','V','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Roberts',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:06'),(139,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Dimitrov, Laree','Ms. Laree Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','2136401508',NULL,'Sample Data','Laree','Q','Dimitrov',2,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Ms. Laree Dimitrov',NULL,1,'1989-11-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:56'),(140,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Buffalo Sustainability Initiative','Buffalo Sustainability Initiative',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-1259716271',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Buffalo Sustainability Initiative',NULL,NULL,NULL,0,NULL,NULL,127,'Buffalo Sustainability Initiative',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:19'),(141,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'olsen.t.bob95@notmail.biz','olsen.t.bob95@notmail.biz',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1012974928',NULL,'Sample Data',NULL,NULL,NULL,NULL,3,NULL,NULL,1,NULL,'Dear olsen.t.bob95@notmail.biz',1,NULL,'Dear olsen.t.bob95@notmail.biz',1,NULL,'olsen.t.bob95@notmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:10'),(142,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'roberts.elizabeth@notmail.co.nz','roberts.elizabeth@notmail.co.nz',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','-511949083',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear roberts.elizabeth@notmail.co.nz',1,NULL,'Dear roberts.elizabeth@notmail.co.nz',1,NULL,'roberts.elizabeth@notmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:06'),(143,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Scott','Dr. Scott Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','1388417537',NULL,'Sample Data','Scott','','Łąchowski',4,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Dr. Scott Łąchowski',NULL,2,'1936-12-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:57'),(144,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Local Family Services','Local Family Services',NULL,NULL,NULL,NULL,NULL,'Both','-670664004',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Family Services',NULL,NULL,NULL,0,NULL,NULL,130,'Local Family Services',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:18'),(145,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'carylonj@infomail.info','carylonj@infomail.info',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','724378924',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear carylonj@infomail.info',1,NULL,'Dear carylonj@infomail.info',1,NULL,'carylonj@infomail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:52'),(146,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Ivanov, Clint','Dr. Clint Ivanov II',NULL,NULL,NULL,NULL,NULL,'Both','-1014469165',NULL,'Sample Data','Clint','','Ivanov',4,3,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Dr. Clint Ivanov II',NULL,2,'1992-01-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:02'),(147,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Wagner family','Wagner family',NULL,NULL,NULL,NULL,NULL,'Both','1570966486',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wagner family',5,NULL,'Dear Wagner family',2,NULL,'Wagner family',NULL,NULL,NULL,0,NULL,'Wagner family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:17'),(148,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Herminia','Herminia Jacobs',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-286858970',NULL,'Sample Data','Herminia','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Jacobs',NULL,NULL,'1942-04-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:59'),(149,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Winford','Dr. Winford Terry II',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-527710314',NULL,'Sample Data','Winford','W','Terry',4,3,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Dr. Winford Terry II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:07'),(150,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wagner, Errol','Errol Wagner',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','700104039',NULL,'Sample Data','Errol','','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Wagner',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:13'),(151,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'jamesone@testing.org','jamesone@testing.org',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-1910894189',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear jamesone@testing.org',1,NULL,'Dear jamesone@testing.org',1,NULL,'jamesone@testing.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:50'),(152,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Bryon','Dr. Bryon Parker',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1027230255',NULL,'Sample Data','Bryon','C','Parker',4,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Dr. Bryon Parker',NULL,2,'1945-03-01',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:59'),(153,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'angelikaa@notmail.com','angelikaa@notmail.com',NULL,NULL,NULL,NULL,NULL,'Both','-2074334737',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear angelikaa@notmail.com',1,NULL,'Dear angelikaa@notmail.com',1,NULL,'angelikaa@notmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,'Northpoint Wellness Center',NULL,NULL,39,0,NULL,'2014-01-08 06:50:22'),(154,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner family','Wagner family',NULL,NULL,NULL,NULL,NULL,'Both','1570966486',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wagner family',5,NULL,'Dear Wagner family',2,NULL,'Wagner family',NULL,NULL,NULL,0,NULL,'Wagner family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:15'),(155,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Ray','Mr. Ray Roberts',NULL,NULL,NULL,NULL,NULL,'Both','1321167237',NULL,'Sample Data','Ray','','Roberts',3,NULL,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Mr. Ray Roberts',NULL,2,'1982-12-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:06'),(156,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley family','Barkley family',NULL,NULL,NULL,NULL,NULL,'Both','-1406905187',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Barkley family',5,NULL,'Dear Barkley family',2,NULL,'Barkley family',NULL,NULL,NULL,0,NULL,'Barkley family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:17'),(157,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams, Lou','Mr. Lou Adams',NULL,NULL,NULL,NULL,NULL,'Both','-144519829',NULL,'Sample Data','Lou','I','Adams',3,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Mr. Lou Adams',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:57'),(158,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González-Wagner, Billy','Billy González-Wagner',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','571459406',NULL,'Sample Data','Billy','','González-Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy González-Wagner',NULL,2,'1946-03-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:07'),(159,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Roberts family','Roberts family',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2097305882',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Roberts family',5,NULL,'Dear Roberts family',2,NULL,'Roberts family',NULL,NULL,NULL,0,NULL,'Roberts family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:15'),(160,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wagner, Jerome','Jerome Wagner Sr.',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','111737882',NULL,'Sample Data','Jerome','L','Wagner',NULL,2,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Wagner Sr.',NULL,2,'2003-02-14',0,NULL,NULL,NULL,'Second Empowerment Partners',NULL,NULL,178,0,NULL,'2014-01-08 06:50:18'),(161,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Tanya','Tanya Barkley',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-1341901039',NULL,'Sample Data','Tanya','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Barkley',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:14'),(162,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Lawerence','Lawerence Samson Jr.',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-1342924265',NULL,'Sample Data','Lawerence','S','Samson',NULL,1,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence Samson Jr.',NULL,NULL,'1949-02-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:58'),(163,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Ashlie','Ashlie Terry',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1408134822',NULL,'Sample Data','Ashlie','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Terry',NULL,1,'1948-12-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:52'),(164,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Global Wellness Systems','Global Wellness Systems',NULL,NULL,NULL,NULL,NULL,'Both','-1926498379',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Wellness Systems',NULL,NULL,NULL,0,NULL,NULL,42,'Global Wellness Systems',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:21'),(165,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Bay Wellness Services','Bay Wellness Services',NULL,NULL,NULL,NULL,NULL,'Both','993721789',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Bay Wellness Services',NULL,NULL,NULL,0,NULL,NULL,72,'Bay Wellness Services',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:20'),(166,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Zope, Bernadette','Ms. Bernadette Zope',NULL,NULL,NULL,NULL,NULL,'Both','-1692062452',NULL,'Sample Data','Bernadette','','Zope',2,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Ms. Bernadette Zope',NULL,NULL,'1955-12-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:02'),(167,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Jacob','Jacob Terrell',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','218246160',NULL,'Sample Data','Jacob','Q','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob Terrell',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:09'),(168,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Wagner, Jackson','Jackson Wagner',NULL,NULL,NULL,NULL,NULL,'Both','541654999',NULL,'Sample Data','Jackson','X','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Jackson Wagner',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:04'),(169,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'cruz.q.clint28@fakemail.com','cruz.q.clint28@fakemail.com',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2114341792',NULL,'Sample Data',NULL,NULL,NULL,3,4,NULL,NULL,1,NULL,'Dear cruz.q.clint28@fakemail.com',1,NULL,'Dear cruz.q.clint28@fakemail.com',1,NULL,'cruz.q.clint28@fakemail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:54'),(170,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Rolando','Mr. Rolando Jensen II',NULL,NULL,NULL,NULL,NULL,'Both','-1427962111',NULL,'Sample Data','Rolando','S','Jensen',3,3,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Mr. Rolando Jensen II',NULL,2,'1968-07-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:02'),(171,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Kenny','Dr. Kenny Dimitrov Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-1596099917',NULL,'Sample Data','Kenny','R','Dimitrov',4,2,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Dr. Kenny Dimitrov Sr.',NULL,2,'1991-12-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:59'),(172,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Patel family','Patel family',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','1669281794',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Patel family',5,NULL,'Dear Patel family',2,NULL,'Patel family',NULL,NULL,NULL,0,NULL,'Patel family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:15'),(173,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Nielsen, Rodrigo','Dr. Rodrigo Nielsen Sr.',NULL,NULL,NULL,NULL,NULL,'Both','976050360',NULL,'Sample Data','Rodrigo','','Nielsen',4,2,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Dr. Rodrigo Nielsen Sr.',NULL,NULL,'1958-09-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:57'),(174,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Cruz, Bob','Bob Cruz II',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1833840419',NULL,'Sample Data','Bob','','Cruz',NULL,3,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Cruz II',NULL,2,'2008-01-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:12'),(175,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Bachman, Errol','Dr. Errol Bachman III',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','305276862',NULL,'Sample Data','Errol','','Bachman',4,4,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Dr. Errol Bachman III',NULL,2,'1964-03-30',1,'2013-09-08',NULL,NULL,'Texas Agriculture Association',NULL,NULL,82,0,NULL,'2014-01-08 06:50:19'),(176,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Winford','Winford Robertson II',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-630451533',NULL,'Sample Data','Winford','C','Robertson',NULL,3,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Robertson II',NULL,2,'1941-12-08',1,'2013-02-21',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:52'),(177,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Ivey','Ivey Wagner',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','-795432560',NULL,'Sample Data','Ivey','V','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Wagner',NULL,NULL,'1990-03-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:04'),(178,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Second Empowerment Partners','Second Empowerment Partners',NULL,NULL,NULL,NULL,NULL,'Both','641191386',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Second Empowerment Partners',NULL,NULL,NULL,0,NULL,NULL,160,'Second Empowerment Partners',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:18'),(179,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Terrell, Angelika','Angelika Terrell',NULL,NULL,NULL,NULL,NULL,'Both','1430135515',NULL,'Sample Data','Angelika','O','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Terrell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:09'),(180,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Roberts, Omar','Mr. Omar Roberts III',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-655894236',NULL,'Sample Data','Omar','','Roberts',3,4,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Mr. Omar Roberts III',NULL,2,'1970-10-28',1,'2013-06-20',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:49'),(181,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Wagner family','Wagner family',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1570966486',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wagner family',5,NULL,'Dear Wagner family',2,NULL,'Wagner family',NULL,NULL,NULL,0,NULL,'Wagner family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:16'),(182,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Patel, Troy','Troy Patel II',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1028090211',NULL,'Sample Data','Troy','','Patel',NULL,3,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Patel II',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:06'),(183,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wilson, Maxwell','Dr. Maxwell Wilson',NULL,NULL,NULL,NULL,NULL,'Both','-1400760667',NULL,'Sample Data','Maxwell','','Wilson',4,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Dr. Maxwell Wilson',NULL,2,'1941-03-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:01'),(184,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Betty','Ms. Betty Bachman',NULL,NULL,NULL,NULL,NULL,'Both','-1380268213',NULL,'Sample Data','Betty','Q','Bachman',2,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Ms. Betty Bachman',NULL,1,'1986-08-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:08'),(185,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wagner, Alida','Alida Wagner',NULL,NULL,NULL,NULL,NULL,'Both','-506801428',NULL,'Sample Data','Alida','Q','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Wagner',NULL,NULL,'1978-09-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:07'),(186,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Wattson, Jed','Jed Wattson',NULL,NULL,NULL,NULL,NULL,'Both','369430772',NULL,'Sample Data','Jed','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Wattson',NULL,NULL,'1935-06-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:55'),(187,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Local Technology Systems','Local Technology Systems',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','-1297727332',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Technology Systems',NULL,NULL,NULL,0,NULL,NULL,137,'Local Technology Systems',NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:22'),(188,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Juliann','Juliann Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','-21625909',NULL,'Sample Data','Juliann','F','Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Reynolds',NULL,1,'1985-05-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:53'),(189,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Ivanov, Jed','Jed Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','-1737307799',NULL,'Sample Data','Jed','X','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Ivanov',NULL,2,'1983-10-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:58'),(190,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Barkley, Princess','Dr. Princess Barkley',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1098730680',NULL,'Sample Data','Princess','','Barkley',4,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Dr. Princess Barkley',NULL,NULL,'1992-01-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:57'),(191,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Justina','Justina Terry',NULL,NULL,NULL,NULL,NULL,'Both','1650909503',NULL,'Sample Data','Justina','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Terry',NULL,1,'1974-03-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:56'),(192,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Alexia','Alexia Adams',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','426037770',NULL,'Sample Data','Alexia','N','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Adams',NULL,1,NULL,1,'2013-07-22',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:11'),(193,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Łąchowski, Kiara','Kiara Łąchowski',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1559609409',NULL,'Sample Data','Kiara','','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Łąchowski',NULL,1,'1981-04-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:53'),(194,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Craig','Craig Smith Sr.',NULL,NULL,NULL,NULL,NULL,'Both','-672462189',NULL,'Sample Data','Craig','','Smith',NULL,2,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Smith Sr.',NULL,2,'2004-05-30',0,NULL,NULL,NULL,'Main Arts Fund',NULL,NULL,67,0,NULL,'2014-01-08 06:50:21'),(195,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Esta','Mrs. Esta Müller',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','792383763',NULL,'Sample Data','Esta','Q','Müller',1,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Mrs. Esta Müller',NULL,NULL,'1971-09-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:49'),(196,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wagner, Rodrigo','Mr. Rodrigo Wagner',NULL,NULL,NULL,NULL,NULL,'Both','2133660723',NULL,'Sample Data','Rodrigo','T','Wagner',3,NULL,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Mr. Rodrigo Wagner',NULL,2,'1992-01-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:00'),(197,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wattson, Bryon','Bryon Wattson',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','-1919868972',NULL,'Sample Data','Bryon','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Wattson',NULL,NULL,'1954-11-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:51'),(198,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'McReynolds, Kathleen','Kathleen McReynolds',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','-941088779',NULL,'Sample Data','Kathleen','D','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Kathleen McReynolds',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:49:56'),(199,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'sterry@fishmail.net','sterry@fishmail.net',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','97544354',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear sterry@fishmail.net',1,NULL,'Dear sterry@fishmail.net',1,NULL,'sterry@fishmail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:07'),(200,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terry, Bryon','Mr. Bryon Terry',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','86438947',NULL,'Sample Data','Bryon','P','Terry',3,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Mr. Bryon Terry',NULL,2,'1974-02-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:08'),(201,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav, Brittney','Ms. Brittney Yadav',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','653356179',NULL,'Sample Data','Brittney','','Yadav',2,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Ms. Brittney Yadav',NULL,1,'1944-10-20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2014-01-08 06:50:02');
 /*!40000 ALTER TABLE `civicrm_contact` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -220,7 +220,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,133,2,NULL,1,'2013-12-11 12:13:17',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,25,2,NULL,1,'2013-12-11 12:13:17',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,3,2,NULL,1,'2013-12-11 12:13:17',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,43,2,NULL,1,'2013-12-11 12:13:17',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,4,2,NULL,1,'2013-12-11 12:13:17',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,97,2,NULL,1,'2013-12-11 12:13:17',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,168,2,NULL,1,'2013-12-11 12:13:17',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,115,2,NULL,1,'2013-12-11 12:13:17',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,156,2,NULL,1,'2013-12-11 12:13:17',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,118,2,NULL,1,'2013-12-11 12:13:17',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),(24,55,2,NULL,1,'2013-12-11 12:13:17',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,174,2,NULL,1,'2013-12-11 12:13:17',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,145,2,NULL,1,'2013-12-11 12:13:17',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,177,2,NULL,1,'2013-12-11 12:13:17',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,26,2,NULL,1,'2013-12-11 12:13:17',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,105,2,NULL,1,'2013-12-11 12:13:17',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,195,2,NULL,1,'2013-12-11 12:13:17',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,14,2,NULL,1,'2013-12-11 12:13:17',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,159,2,NULL,1,'2013-12-11 12:13:17',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,95,2,NULL,1,'2013-12-11 12:13:17',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,190,2,NULL,1,'2013-12-11 12:13:17',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,103,2,NULL,1,'2013-12-11 12:13:17',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,149,2,NULL,1,'2013-12-11 12:13:17',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,143,2,NULL,1,'2013-12-11 12:13:17',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,129,2,NULL,1,'2013-12-11 12:13:17',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,140,2,NULL,1,'2013-12-11 12:13:17',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,33,2,NULL,1,'2013-12-11 12:13:17',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,28,2,NULL,1,'2013-12-11 12:13:17',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,170,2,NULL,1,'2013-12-11 12:13:17',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,82,2,NULL,1,'2013-12-11 12:13:17',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,1,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(46,2,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(47,6,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(48,12,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(49,13,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(50,15,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(51,16,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(52,18,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(53,22,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(54,24,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(55,28,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(56,32,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(57,36,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(58,47,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(59,57,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(60,60,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(61,61,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(62,66,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(63,68,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(64,70,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(65,73,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(66,74,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(67,75,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(68,78,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(69,79,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(70,82,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(71,84,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(72,90,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(73,108,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(74,111,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(75,114,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(76,121,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(77,130,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(78,135,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(79,139,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(80,150,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(81,153,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(82,158,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(83,162,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(84,163,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(85,165,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(86,169,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(87,171,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(88,176,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(89,180,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(90,184,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(91,190,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(92,192,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(93,193,4,NULL,1,'2013-12-11 12:13:30',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(94,200,4,NULL,1,'2013-12-11 12:13:30',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2013-12-11 12:13:30',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,60,2,NULL,1,'2014-01-08 12:21:48',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,29,2,NULL,1,'2014-01-08 12:21:48',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,101,2,NULL,1,'2014-01-08 12:21:48',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,30,2,NULL,1,'2014-01-08 12:21:48',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,192,2,NULL,1,'2014-01-08 12:21:48',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,146,2,NULL,1,'2014-01-08 12:21:48',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,21,2,NULL,1,'2014-01-08 12:21:48',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,55,2,NULL,1,'2014-01-08 12:21:48',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,18,2,NULL,1,'2014-01-08 12:21:48',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,107,2,NULL,1,'2014-01-08 12:21:48',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,182,2,NULL,1,'2014-01-08 12:21:48',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,161,2,NULL,1,'2014-01-08 12:21:48',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,72,2,NULL,1,'2014-01-08 12:21:48',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,167,2,NULL,1,'2014-01-08 12:21:48',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,54,2,NULL,1,'2014-01-08 12:21:48',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,188,2,NULL,1,'2014-01-08 12:21:48',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,42,2,NULL,1,'2014-01-08 12:21:48',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,148,2,NULL,1,'2014-01-08 12:21:48',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,13,2,NULL,1,'2014-01-08 12:21:48',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,24,2,NULL,1,'2014-01-08 12:21:48',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,43,2,NULL,1,'2014-01-08 12:21:48',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,111,2,NULL,1,'2014-01-08 12:21:48',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,31,2,NULL,1,'2014-01-08 12:21:48',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,157,2,NULL,1,'2014-01-08 12:21:48',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,69,2,NULL,1,'2014-01-08 12:21:48',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,129,2,NULL,1,'2014-01-08 12:21:48',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,1,'2014-01-08 12:21:48',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,198,2,NULL,1,'2014-01-08 12:21:48',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,102,2,NULL,1,'2014-01-08 12:21:48',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,76,2,NULL,1,'2014-01-08 12:21:48',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,5,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(46,7,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(47,8,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(48,11,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(49,14,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(50,17,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(51,23,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(52,28,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(53,32,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(54,35,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(55,39,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(56,40,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(57,52,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(58,53,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(59,56,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(60,58,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(61,60,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(62,65,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(63,66,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(64,67,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(65,75,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(66,77,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(67,96,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(68,97,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(69,102,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(70,103,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(71,105,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(72,106,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(73,110,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(74,112,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(75,118,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(76,122,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(77,131,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(78,136,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(79,138,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(80,140,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(81,142,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(82,148,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(83,149,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(84,150,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(85,155,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(86,159,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(87,161,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(88,168,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(89,170,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(90,177,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(91,179,4,NULL,1,'2014-01-08 12:21:59',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(92,188,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(93,194,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL),(94,200,4,NULL,1,'2014-01-08 12:21:59',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2014-01-08 12:21:59',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_contribution` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -258,7 +258,7 @@ UNLOCK TABLES;
 
 LOCK TABLES `civicrm_contribution_soft` WRITE;
 /*!40000 ALTER TABLE `civicrm_contribution_soft` DISABLE KEYS */;
-INSERT INTO `civicrm_contribution_soft` (`id`, `contribution_id`, `contact_id`, `amount`, `currency`, `pcp_id`, `pcp_display_in_roll`, `pcp_roll_nickname`, `pcp_personal_note`, `soft_credit_type_id`) VALUES (1,8,141,10.00,'USD',1,1,'Jones Family','Helping Hands',10),(2,9,141,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10);
+INSERT INTO `civicrm_contribution_soft` (`id`, `contribution_id`, `contact_id`, `amount`, `currency`, `pcp_id`, `pcp_display_in_roll`, `pcp_roll_nickname`, `pcp_personal_note`, `soft_credit_type_id`) VALUES (1,8,109,10.00,'USD',1,1,'Jones Family','Helping Hands',10),(2,9,109,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10);
 /*!40000 ALTER TABLE `civicrm_contribution_soft` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -392,7 +392,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,78,1,'elbertwagner49@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(3,78,1,'ewagner@infomail.net',0,0,0,0,NULL,NULL,NULL,NULL),(4,141,1,'kgonzlez@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(5,169,1,'wagnerl16@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(6,151,1,'terryj69@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(7,153,1,'prentice.r.maria@notmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(8,153,1,'prentice.r.maria43@sample.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(9,175,1,'sonnys73@example.info',1,0,0,0,NULL,NULL,NULL,NULL),(10,175,1,'smith.sonny48@spamalot.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(11,181,1,'blackwell.p.ashley@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(12,181,1,'blackwell.p.ashley@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(13,113,1,'wattsone@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL),(14,113,1,'wattson.elizabeth@sample.com',0,0,0,0,NULL,NULL,NULL,NULL),(15,121,1,'magang15@lol.net',1,0,0,0,NULL,NULL,NULL,NULL),(16,4,1,'kk.wattson@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(17,97,1,'patelb20@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(18,97,1,'patel.h.bob98@sample.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(19,2,1,'ivanov.alida@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),(20,7,1,'jacobsm@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(21,7,1,'jacobs.megan44@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(22,69,1,'cooper.j.clint@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),(23,112,1,'wilsonk@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(24,195,1,'jacobs.ivey@example.biz',1,0,0,0,NULL,NULL,NULL,NULL),(25,195,1,'iveyjacobs51@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(26,183,1,'scottd66@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(27,183,1,'scottd17@fishmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(28,41,1,'elberts83@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(29,68,1,'mller.brigette@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(30,68,1,'bf.mller@testmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(31,106,1,'trumani98@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(32,106,1,'trumani78@sample.org',0,0,0,0,NULL,NULL,NULL,NULL),(33,50,1,'estagrant18@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(34,75,1,'colsen@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(35,57,1,'prenticem@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(36,57,1,'prenticem@lol.net',0,0,0,0,NULL,NULL,NULL,NULL),(37,87,1,'allanmcreynolds@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL),(38,87,1,'mcreynolds.p.allan@notmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(39,198,1,'ng.dimitrov@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(40,198,1,'ng.dimitrov52@sample.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(41,185,1,'bernadetter36@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(42,79,1,'terrell.y.truman@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(43,201,1,'jacobs.clint@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(44,74,1,'clint1@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(45,74,1,'chowski.clint29@airmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(46,160,1,'barkley.jackson28@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(47,160,1,'jx.barkley@sample.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(48,133,1,'barkley.lincoln@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(49,133,1,'barkleyl@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(50,44,1,'lawerencea@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(51,44,1,'lawerencea@testing.com',0,0,0,0,NULL,NULL,NULL,NULL),(52,65,1,'jacobs.brigette@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(53,135,1,'jacobsa@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(54,47,1,'shaunawattson58@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(55,6,1,'jedblackwell44@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(56,6,1,'jedb43@mymail.org',0,0,0,0,NULL,NULL,NULL,NULL),(57,154,1,'mcreynolds.princess@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(58,154,1,'mcreynoldsp@lol.org',0,0,0,0,NULL,NULL,NULL,NULL),(59,179,1,'gonzleze80@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(60,179,1,'gonzlez.n.elbert35@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(61,189,1,'margaretbachman75@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(62,200,1,'zope.teresa29@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(63,200,1,'zopet78@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(64,158,1,'ajensen@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(65,173,1,'blackwellk@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(66,173,1,'kandaceb22@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(67,3,1,'grant.winford@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(68,3,1,'grant.winford62@lol.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(69,53,1,'shaunam@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(70,92,1,'tanyayadav78@testmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(71,64,1,'gonzleza@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(72,30,1,'zope.q.kathlyn@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(73,30,1,'kathlynzope@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(74,85,1,'jacobs.brzczysaw@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(75,85,1,'jacobsb@fishmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(76,193,1,'craiggrant@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(77,129,1,'terrelll@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL),(78,20,1,'chowski.tanya31@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(79,86,1,'terry.jackson@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL),(80,188,1,'samson.a.omar9@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(81,188,1,'samson.a.omar@mymail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(82,98,1,'samson.v.bob@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(83,98,1,'samson.bob59@example.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(84,77,1,'bivanov@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(85,165,1,'mz.gonzlez@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(86,165,1,'gonzlez.margaret@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(87,73,1,'ivanov-gonzlezs@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(88,116,1,'ivanov-gonzleza@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(89,116,1,'ashlieivanov-gonzlez12@example.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(90,22,1,'barryz20@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(91,196,1,'samson.alexia@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(92,171,1,'zope-samson.allan@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(93,171,1,'allanz@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(94,152,1,'bryonz@notmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(95,152,1,'bzope-samson82@fishmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(96,55,1,'roberts.bob@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(97,38,1,'tobyr@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(98,38,1,'roberts.toby@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(99,104,1,'shaunar@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(100,104,1,'robertss@example.biz',0,0,0,0,NULL,NULL,NULL,NULL),(101,35,1,'robertse@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(102,35,1,'roberts.errol@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(103,163,1,'jeromem87@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(104,163,1,'jeromemller@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(105,145,1,'mller.felisha@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(106,145,1,'mllerf@airmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(107,14,1,'mller.m.tanya@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(108,127,1,'rayj68@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),(109,127,1,'rjacobs27@fishmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(110,54,1,'jacobs-patel.omar@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(111,54,1,'oh.jacobs-patel@airmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(112,156,1,'rodrigor@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(113,118,1,'roberts.p.josefa72@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(114,118,1,'jp.roberts@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(115,109,1,'roberts.shad@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),(116,109,1,'shadroberts@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL),(117,62,1,'rolanddaz@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(118,62,1,'ro.daz64@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL),(119,16,1,'valened@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(120,16,1,'daz.valene72@airmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(121,197,1,'jacksond@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(122,197,1,'jacksond@notmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(123,82,1,'sharynd@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(124,82,1,'sdaz60@fishmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(125,184,1,'allanlee48@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),(126,194,1,'lee.w.ivey@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(127,174,1,'slee36@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(128,39,1,'landonj@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(129,39,1,'ls.jensen@infomail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(130,161,1,'jinaj@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(131,99,1,'brzczysawjensen@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL),(132,99,1,'jensen.brzczysaw@testing.org',0,0,0,0,NULL,NULL,NULL,NULL),(133,164,1,'meijensen@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(134,164,1,'meij@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(135,71,1,'sharynterrell-jensen@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL),(136,71,1,'sm.terrell-jensen@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(137,176,1,'terrell-jensenv@example.biz',1,0,0,0,NULL,NULL,NULL,NULL),(138,28,1,'dmcreynolds@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(139,28,1,'mcreynoldsd75@testing.info',0,0,0,0,NULL,NULL,NULL,NULL),(140,125,1,'mcreynolds.eleonor@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(141,125,1,'emcreynolds@testing.biz',0,0,0,0,NULL,NULL,NULL,NULL),(142,13,1,'kmcreynolds@example.com',1,0,0,0,NULL,NULL,NULL,NULL),(143,13,1,'kandacem83@spamalot.info',0,0,0,0,NULL,NULL,NULL,NULL),(144,142,1,'mcreynolds.delana25@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(145,142,1,'delanamcreynolds@fishmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(146,157,1,'reynolds-jamesonb21@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(147,157,1,'reynolds-jamesonb50@infomail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(148,101,1,'sjameson47@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(149,101,1,'shadjameson@notmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(150,122,1,'mller.bob@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL),(151,122,1,'mller.bob@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(152,60,1,'mllerd@example.biz',1,0,0,0,NULL,NULL,NULL,NULL),(153,60,1,'mllerd66@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(154,147,1,'mller.ashley69@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(155,147,1,'mller.ashley96@notmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(156,27,1,'mller.carlos20@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(157,27,1,'mllerc71@testmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(158,177,1,'jones.tanya@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(159,177,1,'tanyajones56@fishmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(160,23,1,'jones.b.teresa@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(161,166,1,'jones.sharyn@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(162,166,1,'jones.k.sharyn@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(163,119,1,'allanjones@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(164,114,1,'shaunareynolds6@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(165,102,1,'blackwell-reynoldsk@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),(166,170,1,'darens5@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(167,31,1,'smith.brigette49@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(168,31,1,'smith.brigette49@airmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(169,159,1,'andrewsmith@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL),(170,76,1,'smith.eleonor@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(171,178,1,'ljameson35@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(172,178,1,'jamesonl@example.com',0,0,0,0,NULL,NULL,NULL,NULL),(173,103,1,'mcreynolds.eleonor@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL),(174,131,1,'clintjameson-mcreynolds@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(175,131,1,'jameson-mcreynolds.clint@airmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(176,80,1,'lblackwell28@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(177,80,1,'lblackwell@infomail.info',0,0,0,0,NULL,NULL,NULL,NULL),(178,199,1,'blackwell.x.ivey@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(179,199,1,'blackwelli@testmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(180,21,1,'blackwell.tanya91@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(181,58,1,'miguelprentice@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(182,146,1,'mwagner-prentice@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(183,146,1,'margaretw@fakemail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(184,139,1,'winfordwagner-prentice@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(185,139,1,'winfordwagner-prentice14@fakemail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(186,32,3,'sales@dixonhealth.org',1,0,0,0,NULL,NULL,NULL,NULL),(187,124,3,'info@memphisschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(188,3,2,'grantw8@memphisschool.org',0,0,0,0,NULL,NULL,NULL,NULL),(189,134,3,'sales@meadmusicpartnership.org',1,0,0,0,NULL,NULL,NULL,NULL),(190,98,2,'samson.v.bob@meadmusicpartnership.org',0,0,0,0,NULL,NULL,NULL,NULL),(191,187,3,'contact@ohioaction.org',1,0,0,0,NULL,NULL,NULL,NULL),(192,11,2,'barkley.daren@ohioaction.org',1,0,0,0,NULL,NULL,NULL,NULL),(193,42,3,'service@gouldsboroadvocacy.org',1,0,0,0,NULL,NULL,NULL,NULL),(194,84,3,'info@missourimusic.org',1,0,0,0,NULL,NULL,NULL,NULL),(195,5,2,'adams.nicole@missourimusic.org',1,0,0,0,NULL,NULL,NULL,NULL),(196,96,3,'sales@urbanwellnessassociation.org',1,0,0,0,NULL,NULL,NULL,NULL),(197,69,2,'clintcooper@urbanwellnessassociation.org',0,0,0,0,NULL,NULL,NULL,NULL),(198,123,3,'feedback@ncsustainabilityschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(199,51,2,'fjameson@ncsustainabilityschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(200,155,3,'info@communitysoftware.org',1,0,0,0,NULL,NULL,NULL,NULL),(201,87,2,'allanmcreynolds@communitysoftware.org',0,0,0,0,NULL,NULL,NULL,NULL),(202,63,3,'feedback@illinoispartners.org',1,0,0,0,NULL,NULL,NULL,NULL),(203,122,2,'bobm63@illinoispartners.org',0,0,0,0,NULL,NULL,NULL,NULL),(204,107,3,'service@mlkinghealth.org',1,0,0,0,NULL,NULL,NULL,NULL),(205,75,2,'olsenc@mlkinghealth.org',0,0,0,0,NULL,NULL,NULL,NULL),(206,94,3,'contact@alabamawellnessservices.org',1,0,0,0,NULL,NULL,NULL,NULL),(207,16,2,'daz.valene@alabamawellnessservices.org',0,0,0,0,NULL,NULL,NULL,NULL),(208,59,3,'contact@stateslegalservices.org',1,0,0,0,NULL,NULL,NULL,NULL),(209,169,2,'landonwagner@stateslegalservices.org',0,0,0,0,NULL,NULL,NULL,NULL),(210,191,3,'service@pineenvironmentalservices.org',1,0,0,0,NULL,NULL,NULL,NULL),(211,39,2,'jensen.s.landon34@pineenvironmentalservices.org',0,0,0,0,NULL,NULL,NULL,NULL),(212,90,3,'feedback@collegealliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(213,74,2,'chowskic58@collegealliance.org',0,0,0,0,NULL,NULL,NULL,NULL),(214,150,3,'feedback@linevillefamily.org',1,0,0,0,NULL,NULL,NULL,NULL),(215,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(216,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(217,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,19,1,'sy.daz52@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),(3,109,1,'ecooper@lol.net',1,0,0,0,NULL,NULL,NULL,NULL),(4,109,1,'ecooper5@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(5,91,1,'prentice.carylon72@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),(6,91,1,'cprentice@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL),(7,151,1,'ejameson@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(8,151,1,'jamesone@testing.org',0,0,0,0,NULL,NULL,NULL,NULL),(9,98,1,'asamson@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL),(10,54,1,'rcooper@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(11,123,1,'merriel@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(12,176,1,'robertson.c.winford@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(13,176,1,'winfordr@airmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(14,145,1,'carylonjameson@example.org',1,0,0,0,NULL,NULL,NULL,NULL),(15,145,1,'carylonj@infomail.info',0,0,0,0,NULL,NULL,NULL,NULL),(16,112,1,'parker.w.princess@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(17,32,1,'jamesonl@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(18,32,1,'jamesonl57@testmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(19,163,1,'ashliet@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(20,88,1,'leek@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(21,95,1,'zopes42@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(22,95,1,'zopes13@fishmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(23,193,1,'chowski.kiara@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(24,169,1,'cruz.q.clint28@fakemail.com',1,0,0,0,NULL,NULL,NULL,NULL),(25,72,1,'gonzlez.maria@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(26,96,1,'reynoldsd@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(27,83,1,'mp.olsen21@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(28,107,1,'zope.roland@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(29,105,1,'jameson.shauna@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(30,35,1,'jd.smith67@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(31,35,1,'jd.smith16@lol.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(32,198,1,'mcreynoldsk9@testing.info',1,0,0,0,NULL,NULL,NULL,NULL),(33,198,1,'mcreynoldsk@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(34,52,1,'cruz.princess@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(35,190,1,'barkleyp82@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(36,190,1,'princessbarkley@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(37,57,1,'smith.norris91@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL),(38,157,1,'adams.lou30@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(39,157,1,'loua@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(40,59,1,'chowski.h.craig@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(41,59,1,'ch.chowski@fishmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(42,130,1,'robertsont@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(43,117,1,'sdeforest46@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(44,117,1,'shaunad@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(45,162,1,'lawerencesamson@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(46,162,1,'samson.s.lawerence85@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(47,113,1,'nf.terry@example.org',1,0,0,0,NULL,NULL,NULL,NULL),(48,49,1,'beulad@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(49,171,1,'kennyd@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(50,171,1,'dimitrovk@example.info',0,0,0,0,NULL,NULL,NULL,NULL),(51,148,1,'hjacobs@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(52,24,1,'elinagonzlez@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(53,196,1,'rodrigow86@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(54,196,1,'rodrigow@fakemail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(55,120,1,'terryp@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(56,11,1,'beularobertson3@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(57,46,1,'troyd75@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(58,46,1,'tdaz@sample.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(59,183,1,'wilson.maxwell@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(60,183,1,'maxwellw@spamalot.biz',0,0,0,0,NULL,NULL,NULL,NULL),(61,81,1,'mllera@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(62,101,1,'nielsen.rolando@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(63,101,1,'rnielsen12@notmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(64,170,1,'jensen.s.rolando84@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(65,125,1,'prentice.brigette@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(66,125,1,'brigetteprentice29@example.info',0,0,0,0,NULL,NULL,NULL,NULL),(67,92,1,'rolandsamuels73@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(68,73,1,'jensen.landon70@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL),(69,94,1,'delanai47@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(70,103,1,'arlyneroberts92@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(71,103,1,'arlyner@testing.com',0,0,0,0,NULL,NULL,NULL,NULL),(72,136,1,'roberts.a.clint44@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),(73,114,1,'hroberts39@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL),(74,40,1,'prentice-gonzlez.mei56@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(75,40,1,'prentice-gonzlez.mei@infomail.info',0,0,0,0,NULL,NULL,NULL,NULL),(76,10,1,'prentice-gonzlezj@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(77,168,1,'jacksonwagner@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(78,30,1,'lashawndajensen-wagner52@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(79,76,1,'wagner.laree@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),(80,87,1,'sanfordsmith@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),(81,87,1,'smiths78@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(82,41,1,'terry-smith.beula@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(83,33,1,'smith.felisha@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL),(84,26,1,'ed.patel88@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(85,26,1,'ed.patel91@airmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(86,182,1,'troyp@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(87,142,1,'roberts.elizabeth@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(88,138,1,'robertsm@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(89,138,1,'roberts.merrie18@sample.org',0,0,0,0,NULL,NULL,NULL,NULL),(90,55,1,'bryont@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(91,55,1,'terry.bryon@fakemail.com',0,0,0,0,NULL,NULL,NULL,NULL),(92,199,1,'sterry@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(93,149,1,'terryw@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL),(94,149,1,'ww.terry@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(95,15,1,'wagner.alexia31@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL),(96,15,1,'ap.wagner87@infomail.info',0,0,0,0,NULL,NULL,NULL,NULL),(97,158,1,'gonzlez-wagner.billy78@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(98,185,1,'wagner.alida70@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(99,185,1,'alidaw@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(100,175,1,'bachman.errol@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(101,175,1,'bachman.errol@airmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(102,184,1,'bettybachman67@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(103,77,1,'justinab@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(104,42,1,'bachmans@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL),(105,42,1,'bachman.shauna@fakemail.com',0,0,0,0,NULL,NULL,NULL,NULL),(106,8,1,'terryb36@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(107,8,1,'terryb74@testmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(108,137,1,'brittneyt@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(109,137,1,'terryb@spamalot.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(110,167,1,'jacobt84@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(111,78,1,'terrell.bernadette@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(112,78,1,'bernadetteterrell@notmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(113,179,1,'terrell.angelika17@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(114,179,1,'angelikaterrell93@fishmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(115,31,1,'terrellb@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(116,23,1,'olsenm@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(117,23,1,'molsen28@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(118,84,1,'cooper-olsen.elizabeth39@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(119,84,1,'elizabethc@testing.com',0,0,0,0,NULL,NULL,NULL,NULL),(120,110,1,'colsen38@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(121,110,1,'olsen.claudio@infomail.info',0,0,0,0,NULL,NULL,NULL,NULL),(122,141,1,'olsen.t.bob95@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(123,3,1,'td.adams@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(124,3,1,'adams.d.toby@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(125,153,1,'adams.j.angelika@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(126,153,1,'angelikaa@notmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(127,192,1,'adamsa80@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),(128,192,1,'an.adams75@airmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(129,60,1,'juliann@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL),(130,97,1,'chowski.b.bob2@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(131,75,1,'delanachowski@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(132,75,1,'delana8@fishmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(133,58,1,'jcruz71@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(134,119,1,'cruz.t.sanford@example.biz',1,0,0,0,NULL,NULL,NULL,NULL),(135,174,1,'bcruz@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(136,20,1,'terrell.bryon@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(137,13,1,'terrell.eleonor@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(138,63,1,'terrellc@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(139,63,1,'claudiot@sample.org',0,0,0,0,NULL,NULL,NULL,NULL),(140,150,1,'wagnere@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(141,80,1,'awagner@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(142,160,1,'wagner.jerome@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(143,106,1,'wagner.rosario16@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL),(144,21,1,'josefabarkley70@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL),(145,27,1,'barkley.l.ashley@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(146,27,1,'barkley.l.ashley@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(147,71,1,'jbarkley31@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(148,129,1,'maganb@fishmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(149,129,1,'barkleym87@fakemail.com',0,0,0,0,NULL,NULL,NULL,NULL),(150,111,1,'barkley.h.shad@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),(151,111,1,'sh.barkley@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(152,102,1,'mller.josefa@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL),(153,34,1,'tanyap42@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(154,45,1,'lt.mller-patel31@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(155,45,1,'mller-patel.t.lincoln@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(156,56,3,'contact@statespoetry.org',1,0,0,0,NULL,NULL,NULL,NULL),(157,32,2,'lq.jameson@statespoetry.org',0,0,0,0,NULL,NULL,NULL,NULL),(158,144,3,'service@localfamilyservices.org',1,0,0,0,NULL,NULL,NULL,NULL),(159,130,2,'robertson.teresa53@localfamilyservices.org',0,0,0,0,NULL,NULL,NULL,NULL),(160,140,3,'contact@buffaloinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL),(161,127,2,'npatel@buffaloinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL),(162,37,3,'service@sierradevelopmentinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL),(163,98,2,'samsona@sierradevelopmentinitiative.org',0,0,0,0,NULL,NULL,NULL,NULL),(164,36,3,'info@coloradoadvocacyschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(165,57,2,'smithn34@coloradoadvocacyschool.org',0,0,0,0,NULL,NULL,NULL,NULL),(166,44,3,'contact@ruraltechnologyalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(167,111,2,'barkley.h.shad@ruraltechnologyalliance.org',0,0,0,0,NULL,NULL,NULL,NULL),(168,67,3,'feedback@mainarts.org',1,0,0,0,NULL,NULL,NULL,NULL),(169,194,2,'csmith@mainarts.org',1,0,0,0,NULL,NULL,NULL,NULL),(170,126,3,'service@indianaarts.org',1,0,0,0,NULL,NULL,NULL,NULL),(171,109,2,'estac@indianaarts.org',0,0,0,0,NULL,NULL,NULL,NULL),(172,85,3,'info@alabamasystems.org',1,0,0,0,NULL,NULL,NULL,NULL),(173,164,3,'contact@globalwellness.org',1,0,0,0,NULL,NULL,NULL,NULL),(174,42,2,'shaunab@globalwellness.org',0,0,0,0,NULL,NULL,NULL,NULL),(175,5,3,'contact@urbanfamilycenter.org',1,0,0,0,NULL,NULL,NULL,NULL),(176,113,2,'nicoleterry27@urbanfamilycenter.org',0,0,0,0,NULL,NULL,NULL,NULL),(177,187,3,'contact@localtechnologysystems.org',1,0,0,0,NULL,NULL,NULL,NULL),(178,137,2,'.38@localtechnologysystems.org',0,0,0,0,NULL,NULL,NULL,NULL),(179,116,3,'contact@northpointfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL),(180,75,2,'6@northpointfellowship.org',0,0,0,0,NULL,NULL,NULL,NULL),(181,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(182,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(183,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_email` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -420,7 +420,7 @@ UNLOCK TABLES;
 
 LOCK TABLES `civicrm_entity_financial_account` WRITE;
 /*!40000 ALTER TABLE `civicrm_entity_financial_account` DISABLE KEYS */;
-INSERT INTO `civicrm_entity_financial_account` (`id`, `entity_table`, `entity_id`, `account_relationship`, `financial_account_id`) VALUES (1,'civicrm_financial_type',1,1,1),(2,'civicrm_financial_type',1,5,5),(3,'civicrm_financial_type',1,3,7),(4,'civicrm_financial_type',1,7,9),(5,'civicrm_financial_type',2,1,2),(6,'civicrm_financial_type',2,5,5),(7,'civicrm_financial_type',2,3,7),(8,'civicrm_financial_type',2,7,9),(9,'civicrm_financial_type',3,1,3),(10,'civicrm_financial_type',3,5,5),(11,'civicrm_financial_type',3,3,7),(12,'civicrm_financial_type',3,7,9),(13,'civicrm_financial_type',4,5,5),(14,'civicrm_financial_type',4,3,7),(15,'civicrm_financial_type',4,1,4),(16,'civicrm_financial_type',4,7,9),(17,'civicrm_option_value',83,6,6),(18,'civicrm_option_value',84,6,6),(19,'civicrm_option_value',85,6,6),(20,'civicrm_option_value',81,6,12),(21,'civicrm_option_value',82,6,12);
+INSERT INTO `civicrm_entity_financial_account` (`id`, `entity_table`, `entity_id`, `account_relationship`, `financial_account_id`) VALUES (1,'civicrm_financial_type',1,1,1),(2,'civicrm_financial_type',1,5,5),(3,'civicrm_financial_type',1,3,7),(4,'civicrm_financial_type',1,7,9),(5,'civicrm_financial_type',2,1,2),(6,'civicrm_financial_type',2,5,5),(7,'civicrm_financial_type',2,3,7),(8,'civicrm_financial_type',2,7,9),(9,'civicrm_financial_type',3,1,3),(10,'civicrm_financial_type',3,5,5),(11,'civicrm_financial_type',3,3,7),(12,'civicrm_financial_type',3,7,9),(13,'civicrm_financial_type',4,5,5),(14,'civicrm_financial_type',4,3,7),(15,'civicrm_financial_type',4,1,4),(16,'civicrm_financial_type',4,7,9),(17,'civicrm_option_value',85,6,6),(18,'civicrm_option_value',86,6,6),(19,'civicrm_option_value',87,6,6),(20,'civicrm_option_value',83,6,12),(21,'civicrm_option_value',84,6,12);
 /*!40000 ALTER TABLE `civicrm_entity_financial_account` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -430,7 +430,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',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',40,25,100.00),(50,'civicrm_financial_item',25,25,100.00),(51,'civicrm_contribution',42,26,100.00),(52,'civicrm_financial_item',26,26,100.00),(53,'civicrm_contribution',15,27,50.00),(54,'civicrm_financial_item',27,27,50.00),(55,'civicrm_contribution',17,28,50.00),(56,'civicrm_financial_item',28,28,50.00),(57,'civicrm_contribution',19,29,50.00),(58,'civicrm_financial_item',29,29,50.00),(59,'civicrm_contribution',21,30,50.00),(60,'civicrm_financial_item',30,30,50.00),(61,'civicrm_contribution',23,31,50.00),(62,'civicrm_financial_item',31,31,50.00),(63,'civicrm_contribution',25,32,50.00),(64,'civicrm_financial_item',32,32,50.00),(65,'civicrm_contribution',27,33,50.00),(66,'civicrm_financial_item',33,33,50.00),(67,'civicrm_contribution',28,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',37,37,50.00),(74,'civicrm_financial_item',37,37,50.00),(75,'civicrm_contribution',38,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',75,44,50.00),(88,'civicrm_financial_item',44,44,50.00),(89,'civicrm_contribution',86,45,50.00),(90,'civicrm_financial_item',45,45,50.00),(91,'civicrm_contribution',62,46,50.00),(92,'civicrm_financial_item',46,46,50.00),(93,'civicrm_contribution',46,47,50.00),(94,'civicrm_financial_item',47,47,50.00),(95,'civicrm_contribution',92,48,50.00),(96,'civicrm_financial_item',48,48,50.00),(97,'civicrm_contribution',52,49,50.00),(98,'civicrm_financial_item',49,49,50.00),(99,'civicrm_contribution',61,50,50.00),(100,'civicrm_financial_item',50,50,50.00),(101,'civicrm_contribution',94,51,50.00),(102,'civicrm_financial_item',51,51,50.00),(103,'civicrm_contribution',72,52,50.00),(104,'civicrm_financial_item',52,52,50.00),(105,'civicrm_contribution',49,53,50.00),(106,'civicrm_financial_item',53,53,50.00),(107,'civicrm_contribution',50,54,50.00),(108,'civicrm_financial_item',54,54,50.00),(109,'civicrm_contribution',57,55,50.00),(110,'civicrm_financial_item',55,55,50.00),(111,'civicrm_contribution',74,56,50.00),(112,'civicrm_financial_item',56,56,50.00),(113,'civicrm_contribution',81,57,50.00),(114,'civicrm_financial_item',57,57,50.00),(115,'civicrm_contribution',51,58,50.00),(116,'civicrm_financial_item',58,58,50.00),(117,'civicrm_contribution',89,59,50.00),(118,'civicrm_financial_item',59,59,50.00),(119,'civicrm_contribution',47,60,800.00),(120,'civicrm_financial_item',60,60,800.00),(121,'civicrm_contribution',69,61,800.00),(122,'civicrm_financial_item',61,61,800.00),(123,'civicrm_contribution',45,62,800.00),(124,'civicrm_financial_item',62,62,800.00),(125,'civicrm_contribution',73,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',85,65,800.00),(130,'civicrm_financial_item',65,65,800.00),(131,'civicrm_contribution',79,66,800.00),(132,'civicrm_financial_item',66,66,800.00),(133,'civicrm_contribution',88,67,800.00),(134,'civicrm_financial_item',67,67,800.00),(135,'civicrm_contribution',59,68,800.00),(136,'civicrm_financial_item',68,68,800.00),(137,'civicrm_contribution',71,69,800.00),(138,'civicrm_financial_item',69,69,800.00),(139,'civicrm_contribution',55,70,800.00),(140,'civicrm_financial_item',70,70,800.00),(141,'civicrm_contribution',53,71,800.00),(142,'civicrm_financial_item',71,71,800.00),(143,'civicrm_contribution',66,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',60,74,800.00),(148,'civicrm_financial_item',74,74,800.00),(149,'civicrm_contribution',80,75,800.00),(150,'civicrm_financial_item',75,75,800.00),(151,'civicrm_contribution',93,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',64,78,50.00),(156,'civicrm_financial_item',78,78,50.00),(157,'civicrm_contribution',78,79,50.00),(158,'civicrm_financial_item',79,79,50.00),(159,'civicrm_contribution',67,80,50.00),(160,'civicrm_financial_item',80,80,50.00),(161,'civicrm_contribution',84,81,50.00),(162,'civicrm_financial_item',81,81,50.00),(163,'civicrm_contribution',70,82,50.00),(164,'civicrm_financial_item',82,82,50.00),(165,'civicrm_contribution',91,83,50.00),(166,'civicrm_financial_item',83,83,50.00),(167,'civicrm_contribution',68,84,50.00),(168,'civicrm_financial_item',84,84,50.00),(169,'civicrm_contribution',65,85,50.00),(170,'civicrm_financial_item',85,85,50.00),(171,'civicrm_contribution',63,86,50.00),(172,'civicrm_financial_item',86,86,50.00),(173,'civicrm_contribution',82,87,50.00),(174,'civicrm_financial_item',87,87,50.00),(175,'civicrm_contribution',48,88,50.00),(176,'civicrm_financial_item',88,88,50.00),(177,'civicrm_contribution',77,89,50.00),(178,'civicrm_financial_item',89,89,50.00),(179,'civicrm_contribution',90,90,50.00),(180,'civicrm_financial_item',90,90,50.00),(181,'civicrm_contribution',87,91,50.00),(182,'civicrm_financial_item',91,91,50.00),(183,'civicrm_contribution',56,92,50.00),(184,'civicrm_financial_item',92,92,50.00),(185,'civicrm_contribution',76,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',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',38,26,100.00),(52,'civicrm_financial_item',26,26,100.00),(53,'civicrm_contribution',40,27,100.00),(54,'civicrm_financial_item',27,27,100.00),(55,'civicrm_contribution',42,28,100.00),(56,'civicrm_financial_item',28,28,100.00),(57,'civicrm_contribution',43,29,100.00),(58,'civicrm_financial_item',29,29,100.00),(59,'civicrm_contribution',15,30,50.00),(60,'civicrm_financial_item',30,30,50.00),(61,'civicrm_contribution',17,31,50.00),(62,'civicrm_financial_item',31,31,50.00),(63,'civicrm_contribution',19,32,50.00),(64,'civicrm_financial_item',32,32,50.00),(65,'civicrm_contribution',21,33,50.00),(66,'civicrm_financial_item',33,33,50.00),(67,'civicrm_contribution',25,34,50.00),(68,'civicrm_financial_item',34,34,50.00),(69,'civicrm_contribution',27,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',33,38,50.00),(76,'civicrm_financial_item',38,38,50.00),(77,'civicrm_contribution',37,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',68,44,50.00),(88,'civicrm_financial_item',44,44,50.00),(89,'civicrm_contribution',81,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',59,47,50.00),(94,'civicrm_financial_item',47,47,50.00),(95,'civicrm_contribution',67,48,50.00),(96,'civicrm_financial_item',48,48,50.00),(97,'civicrm_contribution',54,49,50.00),(98,'civicrm_financial_item',49,49,50.00),(99,'civicrm_contribution',82,50,50.00),(100,'civicrm_financial_item',50,50,50.00),(101,'civicrm_contribution',46,51,50.00),(102,'civicrm_financial_item',51,51,50.00),(103,'civicrm_contribution',61,52,50.00),(104,'civicrm_financial_item',52,52,50.00),(105,'civicrm_contribution',77,53,50.00),(106,'civicrm_financial_item',53,53,50.00),(107,'civicrm_contribution',53,54,50.00),(108,'civicrm_financial_item',54,54,50.00),(109,'civicrm_contribution',50,55,50.00),(110,'civicrm_financial_item',55,55,50.00),(111,'civicrm_contribution',75,56,50.00),(112,'civicrm_financial_item',56,56,50.00),(113,'civicrm_contribution',79,57,50.00),(114,'civicrm_financial_item',57,57,50.00),(115,'civicrm_contribution',63,58,50.00),(116,'civicrm_financial_item',58,58,50.00),(117,'civicrm_contribution',60,59,50.00),(118,'civicrm_financial_item',59,59,50.00),(119,'civicrm_contribution',58,60,800.00),(120,'civicrm_financial_item',60,60,800.00),(121,'civicrm_contribution',65,61,800.00),(122,'civicrm_financial_item',61,61,800.00),(123,'civicrm_contribution',86,62,800.00),(124,'civicrm_financial_item',62,62,800.00),(125,'civicrm_contribution',76,63,800.00),(126,'civicrm_financial_item',63,63,800.00),(127,'civicrm_contribution',80,64,800.00),(128,'civicrm_financial_item',64,64,800.00),(129,'civicrm_contribution',52,65,800.00),(130,'civicrm_financial_item',65,65,800.00),(131,'civicrm_contribution',48,66,800.00),(132,'civicrm_financial_item',66,66,800.00),(133,'civicrm_contribution',51,67,800.00),(134,'civicrm_financial_item',67,67,800.00),(135,'civicrm_contribution',69,68,800.00),(136,'civicrm_financial_item',68,68,800.00),(137,'civicrm_contribution',88,69,800.00),(138,'civicrm_financial_item',69,69,800.00),(139,'civicrm_contribution',49,70,800.00),(140,'civicrm_financial_item',70,70,800.00),(141,'civicrm_contribution',64,71,800.00),(142,'civicrm_financial_item',71,71,800.00),(143,'civicrm_contribution',92,72,800.00),(144,'civicrm_financial_item',72,72,800.00),(145,'civicrm_contribution',57,73,800.00),(146,'civicrm_financial_item',73,73,800.00),(147,'civicrm_contribution',84,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',93,76,800.00),(152,'civicrm_financial_item',76,76,800.00),(153,'civicrm_contribution',94,77,800.00),(154,'civicrm_financial_item',77,77,800.00),(155,'civicrm_contribution',70,78,50.00),(156,'civicrm_financial_item',78,78,50.00),(157,'civicrm_contribution',78,79,50.00),(158,'civicrm_financial_item',79,79,50.00),(159,'civicrm_contribution',55,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',85,82,50.00),(164,'civicrm_financial_item',82,82,50.00),(165,'civicrm_contribution',72,83,50.00),(166,'civicrm_financial_item',83,83,50.00),(167,'civicrm_contribution',71,84,50.00),(168,'civicrm_financial_item',84,84,50.00),(169,'civicrm_contribution',89,85,50.00),(170,'civicrm_financial_item',85,85,50.00),(171,'civicrm_contribution',66,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',83,88,50.00),(176,'civicrm_financial_item',88,88,50.00),(177,'civicrm_contribution',56,89,50.00),(178,'civicrm_financial_item',89,89,50.00),(179,'civicrm_contribution',62,90,50.00),(180,'civicrm_financial_item',90,90,50.00),(181,'civicrm_contribution',45,91,50.00),(182,'civicrm_financial_item',91,91,50.00),(183,'civicrm_contribution',91,92,50.00),(184,'civicrm_financial_item',92,92,50.00),(185,'civicrm_contribution',74,93,50.00),(186,'civicrm_financial_item',93,93,50.00);
 /*!40000 ALTER TABLE `civicrm_entity_financial_trxn` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -440,7 +440,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 (24,'civicrm_contact',2,4),(58,'civicrm_contact',3,4),(59,'civicrm_contact',3,5),(23,'civicrm_contact',4,4),(49,'civicrm_contact',6,4),(50,'civicrm_contact',6,5),(57,'civicrm_contact',8,4),(108,'civicrm_contact',9,4),(109,'civicrm_contact',9,5),(94,'civicrm_contact',10,4),(40,'civicrm_contact',11,4),(97,'civicrm_contact',13,5),(44,'civicrm_contact',17,4),(117,'civicrm_contact',21,4),(118,'civicrm_contact',21,5),(73,'civicrm_contact',22,5),(96,'civicrm_contact',28,5),(1,'civicrm_contact',32,1),(61,'civicrm_contact',36,4),(62,'civicrm_contact',36,5),(43,'civicrm_contact',37,4),(90,'civicrm_contact',39,4),(91,'civicrm_contact',39,5),(115,'civicrm_contact',40,4),(110,'civicrm_contact',49,4),(18,'civicrm_contact',51,4),(19,'civicrm_contact',51,5),(7,'civicrm_contact',52,3),(60,'civicrm_contact',53,4),(76,'civicrm_contact',55,5),(119,'civicrm_contact',58,5),(8,'civicrm_contact',59,3),(85,'civicrm_contact',62,4),(6,'civicrm_contact',63,1),(65,'civicrm_contact',64,4),(63,'civicrm_contact',66,4),(64,'civicrm_contact',66,5),(31,'civicrm_contact',68,5),(25,'civicrm_contact',69,4),(26,'civicrm_contact',69,5),(95,'civicrm_contact',71,5),(72,'civicrm_contact',73,4),(33,'civicrm_contact',75,4),(34,'civicrm_contact',75,5),(71,'civicrm_contact',77,5),(11,'civicrm_contact',78,4),(12,'civicrm_contact',78,5),(116,'civicrm_contact',80,4),(98,'civicrm_contact',81,4),(99,'civicrm_contact',81,5),(81,'civicrm_contact',83,4),(4,'civicrm_contact',84,2),(66,'civicrm_contact',85,4),(69,'civicrm_contact',86,5),(10,'civicrm_contact',90,1),(35,'civicrm_contact',95,4),(77,'civicrm_contact',104,5),(21,'civicrm_contact',105,4),(22,'civicrm_contact',105,5),(32,'civicrm_contact',106,4),(20,'civicrm_contact',113,5),(120,'civicrm_contact',115,5),(102,'civicrm_contact',122,4),(5,'civicrm_contact',123,3),(80,'civicrm_contact',127,4),(39,'civicrm_contact',128,4),(67,'civicrm_contact',129,4),(68,'civicrm_contact',129,5),(42,'civicrm_contact',133,5),(2,'civicrm_contact',134,3),(47,'civicrm_contact',135,4),(48,'civicrm_contact',135,5),(52,'civicrm_contact',138,4),(53,'civicrm_contact',138,5),(13,'civicrm_contact',140,5),(92,'civicrm_contact',144,4),(93,'civicrm_contact',144,5),(79,'civicrm_contact',145,5),(103,'civicrm_contact',147,4),(104,'civicrm_contact',147,5),(15,'civicrm_contact',149,4),(16,'civicrm_contact',153,4),(17,'civicrm_contact',153,5),(82,'civicrm_contact',156,4),(83,'civicrm_contact',156,5),(112,'civicrm_contact',159,4),(113,'civicrm_contact',159,5),(41,'civicrm_contact',160,4),(78,'civicrm_contact',163,4),(107,'civicrm_contact',166,4),(14,'civicrm_contact',169,5),(111,'civicrm_contact',170,5),(74,'civicrm_contact',171,4),(75,'civicrm_contact',171,5),(88,'civicrm_contact',174,4),(89,'civicrm_contact',174,5),(105,'civicrm_contact',177,4),(106,'civicrm_contact',177,5),(114,'civicrm_contact',178,4),(51,'civicrm_contact',179,5),(100,'civicrm_contact',180,4),(101,'civicrm_contact',180,5),(84,'civicrm_contact',182,4),(29,'civicrm_contact',183,4),(30,'civicrm_contact',183,5),(87,'civicrm_contact',184,4),(38,'civicrm_contact',185,4),(45,'civicrm_contact',186,4),(46,'civicrm_contact',186,5),(3,'civicrm_contact',187,1),(70,'civicrm_contact',188,5),(54,'civicrm_contact',189,4),(55,'civicrm_contact',189,5),(9,'civicrm_contact',191,3),(27,'civicrm_contact',195,4),(28,'civicrm_contact',195,5),(86,'civicrm_contact',197,4),(36,'civicrm_contact',198,4),(37,'civicrm_contact',198,5),(56,'civicrm_contact',200,5);
+INSERT INTO `civicrm_entity_tag` (`id`, `entity_table`, `entity_id`, `tag_id`) VALUES (96,'civicrm_contact',3,4),(97,'civicrm_contact',3,5),(103,'civicrm_contact',4,4),(9,'civicrm_contact',5,3),(106,'civicrm_contact',7,5),(91,'civicrm_contact',8,4),(25,'civicrm_contact',9,4),(26,'civicrm_contact',9,5),(64,'civicrm_contact',12,4),(65,'civicrm_contact',12,5),(24,'civicrm_contact',14,4),(85,'civicrm_contact',15,4),(86,'civicrm_contact',15,5),(15,'civicrm_contact',18,4),(16,'civicrm_contact',18,5),(13,'civicrm_contact',19,5),(105,'civicrm_contact',20,4),(112,'civicrm_contact',21,4),(113,'civicrm_contact',21,5),(94,'civicrm_contact',23,4),(78,'civicrm_contact',26,5),(42,'civicrm_contact',28,4),(76,'civicrm_contact',33,4),(77,'civicrm_contact',33,5),(3,'civicrm_contact',37,2),(10,'civicrm_contact',39,3),(69,'civicrm_contact',40,4),(59,'civicrm_contact',43,4),(5,'civicrm_contact',44,2),(118,'civicrm_contact',45,4),(119,'civicrm_contact',45,5),(46,'civicrm_contact',47,5),(83,'civicrm_contact',55,5),(41,'civicrm_contact',59,5),(47,'civicrm_contact',64,5),(7,'civicrm_contact',67,2),(80,'civicrm_contact',69,4),(81,'civicrm_contact',69,5),(114,'civicrm_contact',71,5),(27,'civicrm_contact',72,4),(28,'civicrm_contact',72,5),(89,'civicrm_contact',77,5),(57,'civicrm_contact',81,4),(58,'civicrm_contact',81,5),(4,'civicrm_contact',82,3),(29,'civicrm_contact',83,5),(8,'civicrm_contact',85,2),(6,'civicrm_contact',86,1),(74,'civicrm_contact',87,4),(75,'civicrm_contact',87,5),(100,'civicrm_contact',90,4),(101,'civicrm_contact',90,5),(14,'civicrm_contact',91,4),(62,'civicrm_contact',92,4),(39,'civicrm_contact',93,4),(40,'civicrm_contact',93,5),(66,'civicrm_contact',94,4),(22,'civicrm_contact',95,4),(102,'civicrm_contact',97,5),(17,'civicrm_contact',98,4),(116,'civicrm_contact',102,4),(117,'civicrm_contact',102,5),(32,'civicrm_contact',105,4),(33,'civicrm_contact',105,5),(110,'civicrm_contact',108,4),(111,'civicrm_contact',108,5),(95,'civicrm_contact',110,5),(20,'civicrm_contact',112,5),(45,'civicrm_contact',113,5),(54,'civicrm_contact',115,4),(43,'civicrm_contact',117,4),(44,'civicrm_contact',117,5),(104,'civicrm_contact',119,4),(52,'civicrm_contact',120,4),(53,'civicrm_contact',120,5),(79,'civicrm_contact',127,5),(48,'civicrm_contact',128,4),(68,'civicrm_contact',134,4),(50,'civicrm_contact',135,4),(51,'civicrm_contact',135,5),(67,'civicrm_contact',136,4),(34,'civicrm_contact',139,4),(38,'civicrm_contact',143,4),(2,'civicrm_contact',144,1),(107,'civicrm_contact',150,4),(108,'civicrm_contact',150,5),(49,'civicrm_contact',152,4),(98,'civicrm_contact',153,4),(99,'civicrm_contact',153,5),(82,'civicrm_contact',155,4),(109,'civicrm_contact',160,5),(115,'civicrm_contact',161,5),(21,'civicrm_contact',163,4),(63,'civicrm_contact',166,4),(92,'civicrm_contact',167,4),(70,'civicrm_contact',168,4),(71,'civicrm_contact',168,5),(88,'civicrm_contact',175,5),(19,'civicrm_contact',176,4),(72,'civicrm_contact',177,4),(73,'civicrm_contact',177,5),(1,'civicrm_contact',178,2),(93,'civicrm_contact',179,5),(55,'civicrm_contact',183,4),(56,'civicrm_contact',183,5),(87,'civicrm_contact',185,5),(30,'civicrm_contact',186,4),(31,'civicrm_contact',186,5),(23,'civicrm_contact',188,4),(37,'civicrm_contact',190,5),(11,'civicrm_contact',195,4),(12,'civicrm_contact',195,5),(18,'civicrm_contact',197,5),(35,'civicrm_contact',198,4),(36,'civicrm_contact',198,5),(84,'civicrm_contact',199,5),(90,'civicrm_contact',200,5),(60,'civicrm_contact',201,4),(61,'civicrm_contact',201,5);
 /*!40000 ALTER TABLE `civicrm_entity_tag` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -450,7 +450,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,'2014-06-11 17:00:00','2014-06-13 17:00:00',1,'Register Now',NULL,NULL,100,'Sorry! The Fall Fundraiser Dinner is full. Please call Jane at 204 222-1000 ext 33 if you want to be added to the waiting list.',1,4,NULL,1,1,'Dinner Contribution',1,1,1,'Fill in the information below to join as at this wonderful dinner event.',NULL,'Confirm Your Registration Information','Review the information below carefully.',NULL,1,'Contact the Development Department if you need to make any changes to your registration.','Fundraising Dept.','development@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!','<p>Thank you for your support. Your contribution will help us build even better tools.</p><p>Please tell your friends and colleagues about this wonderful event.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',0,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,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-12-10 12:00:00','2013-12-10 17:00:00',1,'Register Now',NULL,NULL,50,'We have all the singers we can handle. Come to the pavilion anyway and join in from the audience.',1,2,NULL,NULL,1,'Festival Fee',1,2,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','<p>Thank you for your support. Your participation will help build new parks.</p><p>Please tell your friends and colleagues about the concert.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',0,NULL,NULL,0,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,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,'2014-07-11 07:00:00','2014-07-14 17:00:00',1,'Register Now',NULL,NULL,500,'Sorry! All available team slots for this tournament have been filled. Contact Jill Futbol for information about the waiting list and next years event.',1,4,NULL,NULL,1,'Tournament Fees',1,3,1,'Complete the form below to register your team for this year\'s tournament.','<em>A Soccer Youth Event</em>','Review and Confirm Your Registration Information','','<em>A Soccer Youth Event</em>',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','<p>Thank you for your support. Your participation will help save thousands of acres of rainforest.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',0,NULL,NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,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,'2014-07-08 17:00:00','2014-07-10 17:00:00',1,'Register Now',NULL,NULL,100,'Sorry! The Fall Fundraiser Dinner is full. Please call Jane at 204 222-1000 ext 33 if you want to be added to the waiting list.',1,4,NULL,1,1,'Dinner Contribution',1,1,1,'Fill in the information below to join as at this wonderful dinner event.',NULL,'Confirm Your Registration Information','Review the information below carefully.',NULL,1,'Contact the Development Department if you need to make any changes to your registration.','Fundraising Dept.','development@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!','<p>Thank you for your support. Your contribution will help us build even better tools.</p><p>Please tell your friends and colleagues about this wonderful event.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',0,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,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,'2014-01-07 12:00:00','2014-01-07 17:00:00',1,'Register Now',NULL,NULL,50,'We have all the singers we can handle. Come to the pavilion anyway and join in from the audience.',1,2,NULL,NULL,1,'Festival Fee',1,2,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','<p>Thank you for your support. Your participation will help build new parks.</p><p>Please tell your friends and colleagues about the concert.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',0,NULL,NULL,0,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,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,'2014-08-08 07:00:00','2014-08-11 17:00:00',1,'Register Now',NULL,NULL,500,'Sorry! All available team slots for this tournament have been filled. Contact Jill Futbol for information about the waiting list and next years event.',1,4,NULL,NULL,1,'Tournament Fees',1,3,1,'Complete the form below to register your team for this year\'s tournament.','<em>A Soccer Youth Event</em>','Review and Confirm Your Registration Information','','<em>A Soccer Youth Event</em>',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','<p>Thank you for your support. Your participation will help save thousands of acres of rainforest.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',0,NULL,NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,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;
 
@@ -506,7 +506,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-12-11 06:43:20','2010-04-11 00:00:00',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),(2,'2013-12-11 06:43:20','2010-03-21 00:00:00',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),(3,'2013-12-11 06:43:21','2010-04-29 00:00:00',6,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',3),(4,'2013-12-11 06:43:21','2010-04-11 00:00:00',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),(5,'2013-12-11 06:43:21','2010-04-15 00:00:00',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',5),(6,'2013-12-11 06:43:21','2010-04-11 00:00:00',19,'Contribution Amount',175.00,'USD',1,1,'civicrm_line_item',6),(7,'2013-12-11 06:43:22','2010-03-27 00:00:00',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',7),(8,'2013-12-11 06:43:22','2010-03-08 00:00:00',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',8),(9,'2013-12-11 06:43:22','2010-04-22 00:00:00',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',9),(10,'2013-12-11 06:43:22','2009-07-01 11:53:50',71,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',10),(11,'2013-12-11 06:43:22','2009-07-01 12:55:41',43,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',11),(12,'2013-12-11 06:43:23','2009-10-01 11:53:50',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',12),(13,'2013-12-11 06:43:23','2009-12-01 12:55:41',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',13),(14,'2013-12-11 06:43:23','2013-12-11 12:13:17',133,'General',100.00,'USD',2,1,'civicrm_line_item',16),(15,'2013-12-11 06:43:23','2013-12-11 12:13:17',3,'General',100.00,'USD',2,1,'civicrm_line_item',17),(16,'2013-12-11 06:43:24','2013-12-11 12:13:17',4,'General',100.00,'USD',2,1,'civicrm_line_item',18),(17,'2013-12-11 06:43:24','2013-12-11 12:13:17',168,'General',100.00,'USD',2,1,'civicrm_line_item',19),(18,'2013-12-11 06:43:24','2013-12-11 12:13:17',156,'General',100.00,'USD',2,1,'civicrm_line_item',20),(19,'2013-12-11 06:43:24','2013-12-11 12:13:17',145,'General',100.00,'USD',2,1,'civicrm_line_item',21),(20,'2013-12-11 06:43:24','2013-12-11 12:13:17',195,'General',100.00,'USD',2,1,'civicrm_line_item',22),(21,'2013-12-11 06:43:25','2013-12-11 12:13:17',159,'General',100.00,'USD',2,1,'civicrm_line_item',23),(22,'2013-12-11 06:43:25','2013-12-11 12:13:17',95,'General',100.00,'USD',2,1,'civicrm_line_item',24),(23,'2013-12-11 06:43:25','2013-12-11 12:13:17',190,'General',100.00,'USD',2,1,'civicrm_line_item',25),(24,'2013-12-11 06:43:25','2013-12-11 12:13:17',149,'General',100.00,'USD',2,1,'civicrm_line_item',26),(25,'2013-12-11 06:43:25','2013-12-11 12:13:17',33,'General',100.00,'USD',2,1,'civicrm_line_item',27),(26,'2013-12-11 06:43:26','2013-12-11 12:13:17',170,'General',100.00,'USD',2,1,'civicrm_line_item',28),(27,'2013-12-11 06:43:26','2013-12-11 12:13:17',25,'Student',50.00,'USD',2,1,'civicrm_line_item',29),(28,'2013-12-11 06:43:26','2013-12-11 12:13:17',43,'Student',50.00,'USD',2,1,'civicrm_line_item',30),(29,'2013-12-11 06:43:26','2013-12-11 12:13:17',97,'Student',50.00,'USD',2,1,'civicrm_line_item',31),(30,'2013-12-11 06:43:27','2013-12-11 12:13:17',115,'Student',50.00,'USD',2,1,'civicrm_line_item',32),(31,'2013-12-11 06:43:27','2013-12-11 12:13:17',118,'Student',50.00,'USD',2,1,'civicrm_line_item',33),(32,'2013-12-11 06:43:27','2013-12-11 12:13:17',174,'Student',50.00,'USD',2,1,'civicrm_line_item',34),(33,'2013-12-11 06:43:27','2013-12-11 12:13:17',177,'Student',50.00,'USD',2,1,'civicrm_line_item',35),(34,'2013-12-11 06:43:27','2013-12-11 12:13:17',26,'Student',50.00,'USD',2,1,'civicrm_line_item',36),(35,'2013-12-11 06:43:28','2013-12-11 12:13:17',105,'Student',50.00,'USD',2,1,'civicrm_line_item',37),(36,'2013-12-11 06:43:28','2013-12-11 12:13:17',14,'Student',50.00,'USD',2,1,'civicrm_line_item',38),(37,'2013-12-11 06:43:28','2013-12-11 12:13:17',143,'Student',50.00,'USD',2,1,'civicrm_line_item',39),(38,'2013-12-11 06:43:28','2013-12-11 12:13:17',129,'Student',50.00,'USD',2,1,'civicrm_line_item',40),(39,'2013-12-11 06:43:29','2013-12-11 12:13:17',140,'Student',50.00,'USD',2,1,'civicrm_line_item',41),(40,'2013-12-11 06:43:29','2013-12-11 12:13:17',28,'Student',50.00,'USD',2,1,'civicrm_line_item',42),(41,'2013-12-11 06:43:29','2013-12-11 12:13:17',82,'Student',50.00,'USD',2,1,'civicrm_line_item',43),(42,'2013-12-11 06:43:29','2013-12-11 12:13:17',55,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',44),(43,'2013-12-11 06:43:30','2013-12-11 12:13:17',103,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',45),(44,'2013-12-11 06:43:31','2013-12-11 12:13:31',114,'Soprano',50.00,'USD',2,1,'civicrm_line_item',81),(45,'2013-12-11 06:43:31','2013-12-11 12:13:31',169,'Soprano',50.00,'USD',2,1,'civicrm_line_item',82),(46,'2013-12-11 06:43:31','2013-12-11 12:13:31',66,'Soprano',50.00,'USD',2,1,'civicrm_line_item',83),(47,'2013-12-11 06:43:31','2013-12-11 12:13:31',2,'Soprano',50.00,'USD',2,1,'civicrm_line_item',84),(48,'2013-12-11 06:43:32','2013-12-11 12:13:31',192,'Soprano',50.00,'USD',2,1,'civicrm_line_item',85),(49,'2013-12-11 06:43:32','2013-12-11 12:13:31',18,'Soprano',50.00,'USD',2,1,'civicrm_line_item',86),(50,'2013-12-11 06:43:32','2013-12-11 12:13:31',61,'Soprano',50.00,'USD',2,1,'civicrm_line_item',87),(51,'2013-12-11 06:43:32','2013-12-11 12:13:31',200,'Soprano',50.00,'USD',2,1,'civicrm_line_item',88),(52,'2013-12-11 06:43:32','2013-12-11 12:13:31',90,'Soprano',50.00,'USD',2,1,'civicrm_line_item',89),(53,'2013-12-11 06:43:33','2013-12-11 12:13:31',13,'Soprano',50.00,'USD',2,1,'civicrm_line_item',90),(54,'2013-12-11 06:43:33','2013-12-11 12:13:31',15,'Soprano',50.00,'USD',2,1,'civicrm_line_item',91),(55,'2013-12-11 06:43:33','2013-12-11 12:13:31',36,'Soprano',50.00,'USD',2,1,'civicrm_line_item',92),(56,'2013-12-11 06:43:33','2013-12-11 12:13:31',111,'Soprano',50.00,'USD',2,1,'civicrm_line_item',93),(57,'2013-12-11 06:43:34','2013-12-11 12:13:31',153,'Soprano',50.00,'USD',2,1,'civicrm_line_item',94),(58,'2013-12-11 06:43:34','2013-12-11 12:13:31',16,'Soprano',50.00,'USD',2,1,'civicrm_line_item',95),(59,'2013-12-11 06:43:34','2013-12-11 12:13:31',180,'Soprano',50.00,'USD',2,1,'civicrm_line_item',96),(60,'2013-12-11 06:43:34','2013-12-11 12:13:31',6,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',47),(61,'2013-12-11 06:43:34','2013-12-11 12:13:31',79,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',48),(62,'2013-12-11 06:43:35','2013-12-11 12:13:31',1,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',49),(63,'2013-12-11 06:43:35','2013-12-11 12:13:31',108,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',50),(64,'2013-12-11 06:43:35','2013-12-11 12:13:31',162,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',51),(65,'2013-12-11 06:43:35','2013-12-11 12:13:31',165,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',52),(66,'2013-12-11 06:43:36','2013-12-11 12:13:31',139,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',53),(67,'2013-12-11 06:43:36','2013-12-11 12:13:31',176,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',54),(68,'2013-12-11 06:43:36','2013-12-11 12:13:31',57,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',55),(69,'2013-12-11 06:43:36','2013-12-11 12:13:31',84,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',56),(70,'2013-12-11 06:43:37','2013-12-11 12:13:31',28,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',57),(71,'2013-12-11 06:43:37','2013-12-11 12:13:31',22,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',58),(72,'2013-12-11 06:43:37','2013-12-11 12:13:31',74,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',59),(73,'2013-12-11 06:43:37','2013-12-11 12:13:31',24,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',60),(74,'2013-12-11 06:43:37','2013-12-11 12:13:31',60,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',61),(75,'2013-12-11 06:43:37','2013-12-11 12:13:31',150,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',62),(76,'2013-12-11 06:43:38','2013-12-11 12:13:31',193,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),(77,'2013-12-11 06:43:38','2013-12-11 12:13:31',47,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),(78,'2013-12-11 06:43:38','2013-12-11 12:13:31',70,'Single',50.00,'USD',4,1,'civicrm_line_item',65),(79,'2013-12-11 06:43:38','2013-12-11 12:13:31',135,'Single',50.00,'USD',4,1,'civicrm_line_item',66),(80,'2013-12-11 06:43:39','2013-12-11 12:13:31',75,'Single',50.00,'USD',4,1,'civicrm_line_item',67),(81,'2013-12-11 06:43:39','2013-12-11 12:13:31',163,'Single',50.00,'USD',4,1,'civicrm_line_item',68),(82,'2013-12-11 06:43:39','2013-12-11 12:13:31',82,'Single',50.00,'USD',4,1,'civicrm_line_item',69),(83,'2013-12-11 06:43:39','2013-12-11 12:13:31',190,'Single',50.00,'USD',4,1,'civicrm_line_item',70),(84,'2013-12-11 06:43:40','2013-12-11 12:13:31',78,'Single',50.00,'USD',4,1,'civicrm_line_item',71),(85,'2013-12-11 06:43:40','2013-12-11 12:13:31',73,'Single',50.00,'USD',4,1,'civicrm_line_item',72),(86,'2013-12-11 06:43:41','2013-12-11 12:13:31',68,'Single',50.00,'USD',4,1,'civicrm_line_item',73),(87,'2013-12-11 06:43:41','2013-12-11 12:13:31',158,'Single',50.00,'USD',4,1,'civicrm_line_item',74),(88,'2013-12-11 06:43:42','2013-12-11 12:13:31',12,'Single',50.00,'USD',4,1,'civicrm_line_item',75),(89,'2013-12-11 06:43:42','2013-12-11 12:13:31',130,'Single',50.00,'USD',4,1,'civicrm_line_item',76),(90,'2013-12-11 06:43:42','2013-12-11 12:13:31',184,'Single',50.00,'USD',4,1,'civicrm_line_item',77),(91,'2013-12-11 06:43:42','2013-12-11 12:13:31',171,'Single',50.00,'USD',4,1,'civicrm_line_item',78),(92,'2013-12-11 06:43:43','2013-12-11 12:13:31',32,'Single',50.00,'USD',4,1,'civicrm_line_item',79),(93,'2013-12-11 06:43:43','2013-12-11 12:13:31',121,'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,'2014-01-08 06:51:50','2010-04-11 00:00:00',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),(2,'2014-01-08 06:51:50','2010-03-21 00:00:00',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),(3,'2014-01-08 06:51:51','2010-04-29 00:00:00',6,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',3),(4,'2014-01-08 06:51:51','2010-04-11 00:00:00',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),(5,'2014-01-08 06:51:51','2010-04-15 00:00:00',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',5),(6,'2014-01-08 06:51:51','2010-04-11 00:00:00',19,'Contribution Amount',175.00,'USD',1,1,'civicrm_line_item',6),(7,'2014-01-08 06:51:51','2010-03-27 00:00:00',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',7),(8,'2014-01-08 06:51:51','2010-03-08 00:00:00',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',8),(9,'2014-01-08 06:51:52','2010-04-22 00:00:00',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',9),(10,'2014-01-08 06:51:52','2009-07-01 11:53:50',71,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',10),(11,'2014-01-08 06:51:52','2009-07-01 12:55:41',43,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',11),(12,'2014-01-08 06:51:52','2009-10-01 11:53:50',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',12),(13,'2014-01-08 06:51:52','2009-12-01 12:55:41',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',13),(14,'2014-01-08 06:51:53','2014-01-08 12:21:48',60,'General',100.00,'USD',2,1,'civicrm_line_item',16),(15,'2014-01-08 06:51:53','2014-01-08 12:21:48',101,'General',100.00,'USD',2,1,'civicrm_line_item',17),(16,'2014-01-08 06:51:53','2014-01-08 12:21:48',192,'General',100.00,'USD',2,1,'civicrm_line_item',18),(17,'2014-01-08 06:51:53','2014-01-08 12:21:48',21,'General',100.00,'USD',2,1,'civicrm_line_item',19),(18,'2014-01-08 06:51:53','2014-01-08 12:21:48',18,'General',100.00,'USD',2,1,'civicrm_line_item',20),(19,'2014-01-08 06:51:53','2014-01-08 12:21:48',107,'General',100.00,'USD',2,1,'civicrm_line_item',21),(20,'2014-01-08 06:51:54','2014-01-08 12:21:48',72,'General',100.00,'USD',2,1,'civicrm_line_item',22),(21,'2014-01-08 06:51:54','2014-01-08 12:21:48',54,'General',100.00,'USD',2,1,'civicrm_line_item',23),(22,'2014-01-08 06:51:54','2014-01-08 12:21:48',42,'General',100.00,'USD',2,1,'civicrm_line_item',24),(23,'2014-01-08 06:51:54','2014-01-08 12:21:48',13,'General',100.00,'USD',2,1,'civicrm_line_item',25),(24,'2014-01-08 06:51:54','2014-01-08 12:21:48',43,'General',100.00,'USD',2,1,'civicrm_line_item',26),(25,'2014-01-08 06:51:55','2014-01-08 12:21:48',31,'General',100.00,'USD',2,1,'civicrm_line_item',27),(26,'2014-01-08 06:51:55','2014-01-08 12:21:48',69,'General',100.00,'USD',2,1,'civicrm_line_item',28),(27,'2014-01-08 06:51:55','2014-01-08 12:21:48',7,'General',100.00,'USD',2,1,'civicrm_line_item',29),(28,'2014-01-08 06:51:55','2014-01-08 12:21:48',102,'General',100.00,'USD',2,1,'civicrm_line_item',30),(29,'2014-01-08 06:51:55','2014-01-08 12:21:48',76,'General',100.00,'USD',2,1,'civicrm_line_item',31),(30,'2014-01-08 06:51:55','2014-01-08 12:21:48',29,'Student',50.00,'USD',2,1,'civicrm_line_item',32),(31,'2014-01-08 06:51:56','2014-01-08 12:21:48',30,'Student',50.00,'USD',2,1,'civicrm_line_item',33),(32,'2014-01-08 06:51:56','2014-01-08 12:21:48',146,'Student',50.00,'USD',2,1,'civicrm_line_item',34),(33,'2014-01-08 06:51:56','2014-01-08 12:21:48',55,'Student',50.00,'USD',2,1,'civicrm_line_item',35),(34,'2014-01-08 06:51:56','2014-01-08 12:21:48',161,'Student',50.00,'USD',2,1,'civicrm_line_item',36),(35,'2014-01-08 06:51:57','2014-01-08 12:21:48',167,'Student',50.00,'USD',2,1,'civicrm_line_item',37),(36,'2014-01-08 06:51:57','2014-01-08 12:21:48',188,'Student',50.00,'USD',2,1,'civicrm_line_item',38),(37,'2014-01-08 06:51:57','2014-01-08 12:21:48',148,'Student',50.00,'USD',2,1,'civicrm_line_item',39),(38,'2014-01-08 06:51:58','2014-01-08 12:21:48',24,'Student',50.00,'USD',2,1,'civicrm_line_item',40),(39,'2014-01-08 06:51:58','2014-01-08 12:21:48',157,'Student',50.00,'USD',2,1,'civicrm_line_item',41),(40,'2014-01-08 06:51:58','2014-01-08 12:21:48',129,'Student',50.00,'USD',2,1,'civicrm_line_item',42),(41,'2014-01-08 06:51:58','2014-01-08 12:21:48',198,'Student',50.00,'USD',2,1,'civicrm_line_item',43),(42,'2014-01-08 06:51:58','2014-01-08 12:21:48',182,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',44),(43,'2014-01-08 06:51:58','2014-01-08 12:21:48',111,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',45),(44,'2014-01-08 06:51:59','2014-01-08 12:21:59',97,'Soprano',50.00,'USD',2,1,'civicrm_line_item',81),(45,'2014-01-08 06:51:59','2014-01-08 12:21:59',142,'Soprano',50.00,'USD',2,1,'civicrm_line_item',82),(46,'2014-01-08 06:51:59','2014-01-08 12:21:59',110,'Soprano',50.00,'USD',2,1,'civicrm_line_item',83),(47,'2014-01-08 06:51:59','2014-01-08 12:21:59',56,'Soprano',50.00,'USD',2,1,'civicrm_line_item',84),(48,'2014-01-08 06:52:00','2014-01-08 12:21:59',96,'Soprano',50.00,'USD',2,1,'civicrm_line_item',85),(49,'2014-01-08 06:52:00','2014-01-08 12:21:59',35,'Soprano',50.00,'USD',2,1,'civicrm_line_item',86),(50,'2014-01-08 06:52:00','2014-01-08 12:21:59',148,'Soprano',50.00,'USD',2,1,'civicrm_line_item',87),(51,'2014-01-08 06:52:00','2014-01-08 12:21:59',7,'Soprano',50.00,'USD',2,1,'civicrm_line_item',88),(52,'2014-01-08 06:52:00','2014-01-08 12:21:59',60,'Soprano',50.00,'USD',2,1,'civicrm_line_item',89),(53,'2014-01-08 06:52:01','2014-01-08 12:21:59',131,'Soprano',50.00,'USD',2,1,'civicrm_line_item',90),(54,'2014-01-08 06:52:01','2014-01-08 12:21:59',32,'Soprano',50.00,'USD',2,1,'civicrm_line_item',91),(55,'2014-01-08 06:52:01','2014-01-08 12:21:59',17,'Soprano',50.00,'USD',2,1,'civicrm_line_item',92),(56,'2014-01-08 06:52:01','2014-01-08 12:21:59',118,'Soprano',50.00,'USD',2,1,'civicrm_line_item',93),(57,'2014-01-08 06:52:01','2014-01-08 12:21:59',138,'Soprano',50.00,'USD',2,1,'civicrm_line_item',94),(58,'2014-01-08 06:52:01','2014-01-08 12:21:59',66,'Soprano',50.00,'USD',2,1,'civicrm_line_item',95),(59,'2014-01-08 06:52:02','2014-01-08 12:21:59',58,'Soprano',50.00,'USD',2,1,'civicrm_line_item',96),(60,'2014-01-08 06:52:02','2014-01-08 12:21:59',53,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',47),(61,'2014-01-08 06:52:02','2014-01-08 12:21:59',75,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',48),(62,'2014-01-08 06:52:02','2014-01-08 12:21:59',159,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',49),(63,'2014-01-08 06:52:02','2014-01-08 12:21:59',122,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',50),(64,'2014-01-08 06:52:03','2014-01-08 12:21:59',140,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',51),(65,'2014-01-08 06:52:03','2014-01-08 12:21:59',28,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',52),(66,'2014-01-08 06:52:03','2014-01-08 12:21:59',11,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',53),(67,'2014-01-08 06:52:03','2014-01-08 12:21:59',23,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',54),(68,'2014-01-08 06:52:03','2014-01-08 12:21:59',102,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',55),(69,'2014-01-08 06:52:03','2014-01-08 12:21:59',168,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',56),(70,'2014-01-08 06:52:04','2014-01-08 12:21:59',14,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',57),(71,'2014-01-08 06:52:04','2014-01-08 12:21:59',67,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',58),(72,'2014-01-08 06:52:04','2014-01-08 12:21:59',188,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',59),(73,'2014-01-08 06:52:04','2014-01-08 12:21:59',52,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',60),(74,'2014-01-08 06:52:04','2014-01-08 12:21:59',150,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',61),(75,'2014-01-08 06:52:05','2014-01-08 12:21:59',177,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',62),(76,'2014-01-08 06:52:05','2014-01-08 12:21:59',194,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),(77,'2014-01-08 06:52:05','2014-01-08 12:21:59',200,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),(78,'2014-01-08 06:52:05','2014-01-08 12:21:59',103,'Single',50.00,'USD',4,1,'civicrm_line_item',65),(79,'2014-01-08 06:52:05','2014-01-08 12:21:59',136,'Single',50.00,'USD',4,1,'civicrm_line_item',66),(80,'2014-01-08 06:52:05','2014-01-08 12:21:59',39,'Single',50.00,'USD',4,1,'civicrm_line_item',67),(81,'2014-01-08 06:52:06','2014-01-08 12:21:59',161,'Single',50.00,'USD',4,1,'civicrm_line_item',68),(82,'2014-01-08 06:52:06','2014-01-08 12:21:59',155,'Single',50.00,'USD',4,1,'civicrm_line_item',69),(83,'2014-01-08 06:52:06','2014-01-08 12:21:59',106,'Single',50.00,'USD',4,1,'civicrm_line_item',70),(84,'2014-01-08 06:52:06','2014-01-08 12:21:59',105,'Single',50.00,'USD',4,1,'civicrm_line_item',71),(85,'2014-01-08 06:52:06','2014-01-08 12:21:59',170,'Single',50.00,'USD',4,1,'civicrm_line_item',72),(86,'2014-01-08 06:52:06','2014-01-08 12:21:59',77,'Single',50.00,'USD',4,1,'civicrm_line_item',73),(87,'2014-01-08 06:52:07','2014-01-08 12:21:59',8,'Single',50.00,'USD',4,1,'civicrm_line_item',74),(88,'2014-01-08 06:52:07','2014-01-08 12:21:59',149,'Single',50.00,'USD',4,1,'civicrm_line_item',75),(89,'2014-01-08 06:52:07','2014-01-08 12:21:59',40,'Single',50.00,'USD',4,1,'civicrm_line_item',76),(90,'2014-01-08 06:52:08','2014-01-08 12:21:59',65,'Single',50.00,'USD',4,1,'civicrm_line_item',77),(91,'2014-01-08 06:52:09','2014-01-08 12:21:59',5,'Single',50.00,'USD',4,1,'civicrm_line_item',78),(92,'2014-01-08 06:52:09','2014-01-08 12:21:59',179,'Single',50.00,'USD',4,1,'civicrm_line_item',79),(93,'2014-01-08 06:52:09','2014-01-08 12:21:59',112,'Single',50.00,'USD',4,1,'civicrm_line_item',80);
 /*!40000 ALTER TABLE `civicrm_financial_item` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -516,7 +516,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,12,'2013-12-11 12:13:17',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(15,NULL,12,'2013-12-11 12:13:17',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(16,NULL,12,'2013-12-11 12:13:17',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(17,NULL,12,'2013-12-11 12:13:17',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(18,NULL,12,'2013-12-11 12:13:17',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(19,NULL,12,'2013-12-11 12:13:17',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(20,NULL,12,'2013-12-11 12:13:17',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(21,NULL,12,'2013-12-11 12:13:17',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(22,NULL,12,'2013-12-11 12:13:17',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(23,NULL,12,'2013-12-11 12:13:17',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(24,NULL,12,'2013-12-11 12:13:17',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(25,NULL,12,'2013-12-11 12:13:17',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(26,NULL,12,'2013-12-11 12:13:17',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(27,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(28,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(29,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(30,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(31,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(32,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(33,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(34,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(35,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(36,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(37,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(38,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(39,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(40,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(41,NULL,12,'2013-12-11 12:13:17',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(42,NULL,12,'2013-12-11 12:13:17',1200.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(43,NULL,12,'2013-12-11 12:13:17',1200.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(44,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(45,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(46,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(47,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(48,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(49,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(50,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(51,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(52,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(53,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(54,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(55,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(56,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(57,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(58,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(59,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(60,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(61,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(62,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(63,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(64,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(65,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(66,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(67,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(68,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(69,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(70,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(71,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(72,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(73,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(74,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(75,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(76,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(77,NULL,NULL,'2013-12-11 12:13:31',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(78,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(79,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(80,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(81,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(82,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(83,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(84,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(85,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(86,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(87,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(88,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(89,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(90,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(91,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(92,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(93,NULL,NULL,'2013-12-11 12:13:31',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL);
+INSERT INTO `civicrm_financial_trxn` (`id`, `from_financial_account_id`, `to_financial_account_id`, `trxn_date`, `total_amount`, `fee_amount`, `net_amount`, `currency`, `trxn_id`, `trxn_result_code`, `status_id`, `payment_processor_id`, `payment_instrument_id`, `check_number`) VALUES (1,NULL,6,'2010-04-11 00:00:00',125.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'1041'),(2,NULL,12,'2010-03-21 00:00:00',50.00,NULL,NULL,'USD','P20901X1',NULL,1,NULL,1,NULL),(3,NULL,6,'2010-04-29 00:00:00',25.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'2095'),(4,NULL,6,'2010-04-11 00:00:00',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'10552'),(5,NULL,6,'2010-04-15 00:00:00',500.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'509'),(6,NULL,6,'2010-04-11 00:00:00',175.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'102'),(7,NULL,12,'2010-03-27 00:00:00',50.00,NULL,NULL,'USD','P20193L2',NULL,1,NULL,1,NULL),(8,NULL,12,'2010-03-08 00:00:00',10.00,NULL,NULL,'USD','P40232Y3',NULL,1,NULL,1,NULL),(9,NULL,12,'2010-04-22 00:00:00',250.00,NULL,NULL,'USD','P20193L6',NULL,1,NULL,1,NULL),(10,NULL,12,'2009-07-01 11:53:50',500.00,NULL,NULL,'USD','PL71',NULL,1,NULL,1,NULL),(11,NULL,12,'2009-07-01 12:55:41',200.00,NULL,NULL,'USD','PL43II',NULL,1,NULL,1,NULL),(12,NULL,12,'2009-10-01 11:53:50',200.00,NULL,NULL,'USD','PL32I',NULL,1,NULL,1,NULL),(13,NULL,12,'2009-12-01 12:55:41',200.00,NULL,NULL,'USD','PL32II',NULL,1,NULL,1,NULL),(14,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(15,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(16,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(17,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(18,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(19,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(20,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(21,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(22,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(23,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(24,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(25,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(26,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(27,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(28,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(29,NULL,12,'2014-01-08 12:21:48',100.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(30,NULL,12,'2014-01-08 12:21:48',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(31,NULL,12,'2014-01-08 12:21:48',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(32,NULL,12,'2014-01-08 12:21:48',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(33,NULL,12,'2014-01-08 12:21:48',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(34,NULL,12,'2014-01-08 12:21:48',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(35,NULL,12,'2014-01-08 12:21:48',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(36,NULL,12,'2014-01-08 12:21:48',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(37,NULL,12,'2014-01-08 12:21:48',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(38,NULL,12,'2014-01-08 12:21:48',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(39,NULL,12,'2014-01-08 12:21:48',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(40,NULL,12,'2014-01-08 12:21:48',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(41,NULL,12,'2014-01-08 12:21:48',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(42,NULL,12,'2014-01-08 12:21:48',1200.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(43,NULL,12,'2014-01-08 12:21:48',1200.00,NULL,NULL,'USD',NULL,NULL,1,NULL,1,NULL),(44,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(45,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(46,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(47,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(48,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(49,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(50,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(51,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(52,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(53,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(54,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(55,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(56,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(57,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(58,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(59,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(60,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(61,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(62,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(63,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(64,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(65,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(66,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(67,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(68,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(69,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(70,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(71,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(72,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(73,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(74,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(75,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(76,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(77,NULL,NULL,'2014-01-08 12:21:59',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(78,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(79,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(80,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(81,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(82,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(83,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(84,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(85,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(86,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(87,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(88,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(89,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(90,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(91,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(92,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(93,NULL,NULL,'2014-01-08 12:21:59',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL);
 /*!40000 ALTER TABLE `civicrm_financial_trxn` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -555,7 +555,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,78,'Added',NULL,NULL),(2,2,111,'Added',NULL,NULL),(3,2,140,'Added',NULL,NULL),(4,2,141,'Added',NULL,NULL),(5,2,169,'Added',NULL,NULL),(6,2,151,'Added',NULL,NULL),(7,2,149,'Added',NULL,NULL),(8,2,29,'Added',NULL,NULL),(9,2,153,'Added',NULL,NULL),(10,2,175,'Added',NULL,NULL),(11,2,51,'Added',NULL,NULL),(12,2,181,'Added',NULL,NULL),(13,2,113,'Added',NULL,NULL),(14,2,34,'Added',NULL,NULL),(15,2,105,'Added',NULL,NULL),(16,2,121,'Added',NULL,NULL),(17,2,4,'Added',NULL,NULL),(18,2,97,'Added',NULL,NULL),(19,2,2,'Added',NULL,NULL),(20,2,7,'Added',NULL,NULL),(21,2,69,'Added',NULL,NULL),(22,2,112,'Added',NULL,NULL),(23,2,195,'Added',NULL,NULL),(24,2,5,'Added',NULL,NULL),(25,2,183,'Added',NULL,NULL),(26,2,41,'Added',NULL,NULL),(27,2,68,'Added',NULL,NULL),(28,2,168,'Added',NULL,NULL),(29,2,106,'Added',NULL,NULL),(30,2,50,'Added',NULL,NULL),(31,2,75,'Added',NULL,NULL),(32,2,57,'Added',NULL,NULL),(33,2,95,'Added',NULL,NULL),(34,2,87,'Added',NULL,NULL),(35,2,198,'Added',NULL,NULL),(36,2,93,'Added',NULL,NULL),(37,2,185,'Added',NULL,NULL),(38,2,79,'Added',NULL,NULL),(39,2,128,'Added',NULL,NULL),(40,2,201,'Added',NULL,NULL),(41,2,11,'Added',NULL,NULL),(42,2,74,'Added',NULL,NULL),(43,2,160,'Added',NULL,NULL),(44,2,61,'Added',NULL,NULL),(45,2,133,'Added',NULL,NULL),(46,2,26,'Added',NULL,NULL),(47,2,37,'Added',NULL,NULL),(48,2,44,'Added',NULL,NULL),(49,2,17,'Added',NULL,NULL),(50,2,15,'Added',NULL,NULL),(51,2,186,'Added',NULL,NULL),(52,2,65,'Added',NULL,NULL),(53,2,135,'Added',NULL,NULL),(54,2,47,'Added',NULL,NULL),(55,2,6,'Added',NULL,NULL),(56,2,154,'Added',NULL,NULL),(57,2,179,'Added',NULL,NULL),(58,2,33,'Added',NULL,NULL),(59,2,138,'Added',NULL,NULL),(60,2,100,'Added',NULL,NULL),(61,3,189,'Added',NULL,NULL),(62,3,43,'Added',NULL,NULL),(63,3,200,'Added',NULL,NULL),(64,3,158,'Added',NULL,NULL),(65,3,8,'Added',NULL,NULL),(66,3,173,'Added',NULL,NULL),(67,3,3,'Added',NULL,NULL),(68,3,70,'Added',NULL,NULL),(69,3,53,'Added',NULL,NULL),(70,3,92,'Added',NULL,NULL),(71,3,36,'Added',NULL,NULL),(72,3,190,'Added',NULL,NULL),(73,3,66,'Added',NULL,NULL),(74,3,136,'Added',NULL,NULL),(75,3,64,'Added',NULL,NULL),(76,4,78,'Added',NULL,NULL),(77,4,29,'Added',NULL,NULL),(78,4,105,'Added',NULL,NULL),(79,4,112,'Added',NULL,NULL),(80,4,106,'Added',NULL,NULL),(81,4,93,'Added',NULL,NULL),(82,4,160,'Added',NULL,NULL),(83,4,15,'Added',NULL,NULL);
+INSERT INTO `civicrm_group_contact` (`id`, `group_id`, `contact_id`, `status`, `location_id`, `email_id`) VALUES (1,2,195,'Added',NULL,NULL),(2,2,180,'Added',NULL,NULL),(3,2,19,'Added',NULL,NULL),(4,2,109,'Added',NULL,NULL),(5,2,91,'Added',NULL,NULL),(6,2,151,'Added',NULL,NULL),(7,2,18,'Added',NULL,NULL),(8,2,132,'Added',NULL,NULL),(9,2,98,'Added',NULL,NULL),(10,2,54,'Added',NULL,NULL),(11,2,197,'Added',NULL,NULL),(12,2,123,'Added',NULL,NULL),(13,2,176,'Added',NULL,NULL),(14,2,145,'Added',NULL,NULL),(15,2,112,'Added',NULL,NULL),(16,2,32,'Added',NULL,NULL),(17,2,163,'Added',NULL,NULL),(18,2,88,'Added',NULL,NULL),(19,2,95,'Added',NULL,NULL),(20,2,193,'Added',NULL,NULL),(21,2,188,'Added',NULL,NULL),(22,2,38,'Added',NULL,NULL),(23,2,14,'Added',NULL,NULL),(24,2,74,'Added',NULL,NULL),(25,2,9,'Added',NULL,NULL),(26,2,169,'Added',NULL,NULL),(27,2,72,'Added',NULL,NULL),(28,2,96,'Added',NULL,NULL),(29,2,83,'Added',NULL,NULL),(30,2,53,'Added',NULL,NULL),(31,2,186,'Added',NULL,NULL),(32,2,107,'Added',NULL,NULL),(33,2,105,'Added',NULL,NULL),(34,2,191,'Added',NULL,NULL),(35,2,139,'Added',NULL,NULL),(36,2,35,'Added',NULL,NULL),(37,2,198,'Added',NULL,NULL),(38,2,52,'Added',NULL,NULL),(39,2,190,'Added',NULL,NULL),(40,2,57,'Added',NULL,NULL),(41,2,143,'Added',NULL,NULL),(42,2,173,'Added',NULL,NULL),(43,2,93,'Added',NULL,NULL),(44,2,157,'Added',NULL,NULL),(45,2,59,'Added',NULL,NULL),(46,2,189,'Added',NULL,NULL),(47,2,28,'Added',NULL,NULL),(48,2,130,'Added',NULL,NULL),(49,2,117,'Added',NULL,NULL),(50,2,162,'Added',NULL,NULL),(51,2,113,'Added',NULL,NULL),(52,2,49,'Added',NULL,NULL),(53,2,47,'Added',NULL,NULL),(54,2,171,'Added',NULL,NULL),(55,2,64,'Added',NULL,NULL),(56,2,148,'Added',NULL,NULL),(57,2,128,'Added',NULL,NULL),(58,2,24,'Added',NULL,NULL),(59,2,152,'Added',NULL,NULL),(60,2,196,'Added',NULL,NULL),(61,3,135,'Added',NULL,NULL),(62,3,2,'Added',NULL,NULL),(63,3,120,'Added',NULL,NULL),(64,3,11,'Added',NULL,NULL),(65,3,115,'Added',NULL,NULL),(66,3,46,'Added',NULL,NULL),(67,3,183,'Added',NULL,NULL),(68,3,29,'Added',NULL,NULL),(69,3,81,'Added',NULL,NULL),(70,3,101,'Added',NULL,NULL),(71,3,43,'Added',NULL,NULL),(72,3,170,'Added',NULL,NULL),(73,3,201,'Added',NULL,NULL),(74,3,125,'Added',NULL,NULL),(75,3,92,'Added',NULL,NULL),(76,4,195,'Added',NULL,NULL),(77,4,132,'Added',NULL,NULL),(78,4,112,'Added',NULL,NULL),(79,4,38,'Added',NULL,NULL),(80,4,83,'Added',NULL,NULL),(81,4,35,'Added',NULL,NULL),(82,4,93,'Added',NULL,NULL),(83,4,162,'Added',NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_group_contact` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -620,7 +620,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',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',40,4,'General',1,100.00,100.00,NULL,7,2,0.00),(28,'civicrm_contribution',42,4,'General',1,100.00,100.00,NULL,7,2,0.00),(29,'civicrm_contribution',15,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(30,'civicrm_contribution',17,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(31,'civicrm_contribution',19,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(32,'civicrm_contribution',21,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(33,'civicrm_contribution',23,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(34,'civicrm_contribution',25,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(35,'civicrm_contribution',27,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(36,'civicrm_contribution',28,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',37,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(40,'civicrm_contribution',38,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);
+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',38,4,'General',1,100.00,100.00,NULL,7,2,0.00),(29,'civicrm_contribution',40,4,'General',1,100.00,100.00,NULL,7,2,0.00),(30,'civicrm_contribution',42,4,'General',1,100.00,100.00,NULL,7,2,0.00),(31,'civicrm_contribution',43,4,'General',1,100.00,100.00,NULL,7,2,0.00),(32,'civicrm_contribution',15,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(33,'civicrm_contribution',17,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(34,'civicrm_contribution',19,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(35,'civicrm_contribution',21,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(36,'civicrm_contribution',25,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(37,'civicrm_contribution',27,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',33,4,'Student',1,50.00,50.00,NULL,8,2,0.00),(41,'civicrm_contribution',37,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);
 /*!40000 ALTER TABLE `civicrm_line_item` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -630,7 +630,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,188,215,161,NULL,NULL,NULL,NULL,NULL),(2,189,216,162,NULL,NULL,NULL,NULL,NULL),(3,190,217,163,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,174,181,160,NULL,NULL,NULL,NULL,NULL),(2,175,182,161,NULL,NULL,NULL,NULL,NULL),(3,176,183,162,NULL,NULL,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_loc_block` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -870,7 +870,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,133,1,'2013-12-11','2013-12-11','2015-12-10','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(2,25,2,'2013-12-10','2013-12-10','2014-12-09','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(3,3,1,'2013-12-09','2013-12-09','2015-12-08','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(4,43,2,'2013-12-08','2013-12-08','2014-12-07','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(5,4,1,'2011-11-09','2011-11-09','2013-11-08','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(6,97,2,'2013-12-06','2013-12-06','2014-12-05','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(7,168,1,'2013-12-05','2013-12-05','2015-12-04','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(8,115,2,'2013-12-04','2013-12-04','2014-12-03','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(9,156,1,'2013-12-03','2013-12-03','2015-12-02','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(10,118,2,'2012-12-02','2012-12-02','2013-12-01','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL),(11,55,3,'2013-12-01','2013-12-01',NULL,'Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(12,174,2,'2013-11-30','2013-11-30','2014-11-29','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(13,145,1,'2013-11-29','2013-11-29','2015-11-28','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(14,177,2,'2013-11-28','2013-11-28','2014-11-27','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(15,26,2,'2012-11-27','2012-11-27','2013-11-26','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL),(16,105,2,'2013-11-26','2013-11-26','2014-11-25','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(17,195,1,'2013-11-25','2013-11-25','2015-11-24','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(18,14,2,'2013-11-24','2013-11-24','2014-11-23','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(19,159,1,'2013-11-23','2013-11-23','2015-11-22','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(20,95,1,'2011-07-12','2011-07-12','2013-07-11','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(21,190,1,'2013-11-21','2013-11-21','2015-11-20','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(22,103,3,'2013-11-20','2013-11-20',NULL,'Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(23,149,1,'2013-11-19','2013-11-19','2015-11-18','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(24,143,2,'2013-11-18','2013-11-18','2014-11-17','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(25,129,2,'2012-11-17','2012-11-17','2013-11-16','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL),(26,140,2,'2013-11-16','2013-11-16','2014-11-15','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(27,33,1,'2013-11-15','2013-11-15','2015-11-14','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(28,28,2,'2013-11-14','2013-11-14','2014-11-13','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(29,170,1,'2013-11-13','2013-11-13','2015-11-12','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(30,82,2,'2012-11-12','2012-11-12','2013-11-11','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL);
+INSERT INTO `civicrm_membership` (`id`, `contact_id`, `membership_type_id`, `join_date`, `start_date`, `end_date`, `source`, `status_id`, `is_override`, `owner_membership_id`, `max_related`, `is_test`, `is_pay_later`, `contribution_recur_id`, `campaign_id`) VALUES (1,60,1,'2014-01-08','2014-01-08','2016-01-07','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(2,29,2,'2014-01-07','2014-01-07','2015-01-06','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(3,101,1,'2014-01-06','2014-01-06','2016-01-05','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(4,30,2,'2014-01-05','2014-01-05','2015-01-04','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(5,192,1,'2011-12-07','2011-12-07','2013-12-06','Donation',3,NULL,NULL,NULL,0,0,NULL,NULL),(6,146,2,'2014-01-03','2014-01-03','2015-01-02','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(7,21,1,'2014-01-02','2014-01-02','2016-01-01','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(8,55,2,'2014-01-01','2014-01-01','2014-12-31','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(9,18,1,'2013-12-31','2013-12-31','2015-12-30','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(10,107,1,'2011-10-28','2011-10-28','2013-10-27','Payment',3,NULL,NULL,NULL,0,0,NULL,NULL),(11,182,3,'2013-12-29','2013-12-29',NULL,'Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(12,161,2,'2013-12-28','2013-12-28','2014-12-27','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(13,72,1,'2013-12-27','2013-12-27','2015-12-26','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(14,167,2,'2013-12-26','2013-12-26','2014-12-25','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(15,54,1,'2011-09-18','2011-09-18','2013-09-17','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(16,188,2,'2013-12-24','2013-12-24','2014-12-23','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(17,42,1,'2013-12-23','2013-12-23','2015-12-22','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(18,148,2,'2013-12-22','2013-12-22','2014-12-21','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(19,13,1,'2013-12-21','2013-12-21','2015-12-20','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(20,24,2,'2012-12-20','2012-12-20','2013-12-19','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL),(21,43,1,'2013-12-19','2013-12-19','2015-12-18','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(22,111,3,'2013-12-18','2013-12-18',NULL,'Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(23,31,1,'2013-12-17','2013-12-17','2015-12-16','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(24,157,2,'2013-12-16','2013-12-16','2014-12-15','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(25,69,1,'2011-06-30','2011-06-30','2013-06-29','Donation',3,NULL,NULL,NULL,0,0,NULL,NULL),(26,129,2,'2013-12-14','2013-12-14','2014-12-13','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(27,7,1,'2013-12-13','2013-12-13','2015-12-12','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(28,198,2,'2013-12-12','2013-12-12','2014-12-11','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(29,102,1,'2013-12-11','2013-12-11','2015-12-10','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(30,76,1,'2011-05-21','2011-05-21','2013-05-20','Donation',3,NULL,NULL,NULL,0,0,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_membership` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -890,7 +890,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,3,1,'2013-12-09','2015-12-08',3,'2013-12-11',1,NULL),(2,5,3,'2011-11-09','2013-11-08',4,'2013-12-11',1,NULL),(3,18,1,'2013-11-24','2014-11-23',14,'2013-12-11',2,NULL),(4,2,1,'2013-12-10','2014-12-09',25,'2013-12-11',2,NULL),(5,15,4,'2012-11-27','2013-11-26',26,'2013-12-11',2,NULL),(6,28,1,'2013-11-14','2014-11-13',28,'2013-12-11',2,NULL),(7,27,1,'2013-11-15','2015-11-14',33,'2013-12-11',1,NULL),(8,4,1,'2013-12-08','2014-12-07',43,'2013-12-11',2,NULL),(9,11,1,'2013-12-01',NULL,55,'2013-12-11',3,NULL),(10,30,4,'2012-11-12','2013-11-11',82,'2013-12-11',2,NULL),(11,20,3,'2011-07-12','2013-07-11',95,'2013-12-11',1,NULL),(12,6,1,'2013-12-06','2014-12-05',97,'2013-12-11',2,NULL),(13,22,1,'2013-11-20',NULL,103,'2013-12-11',3,NULL),(14,16,1,'2013-11-26','2014-11-25',105,'2013-12-11',2,NULL),(15,8,1,'2013-12-04','2014-12-03',115,'2013-12-11',2,NULL),(16,10,4,'2012-12-02','2013-12-01',118,'2013-12-11',2,NULL),(17,25,4,'2012-11-17','2013-11-16',129,'2013-12-11',2,NULL),(18,1,1,'2013-12-11','2015-12-10',133,'2013-12-11',1,NULL),(19,26,1,'2013-11-16','2014-11-15',140,'2013-12-11',2,NULL),(20,24,1,'2013-11-18','2014-11-17',143,'2013-12-11',2,NULL),(21,13,1,'2013-11-29','2015-11-28',145,'2013-12-11',1,NULL),(22,23,1,'2013-11-19','2015-11-18',149,'2013-12-11',1,NULL),(23,9,1,'2013-12-03','2015-12-02',156,'2013-12-11',1,NULL),(24,19,1,'2013-11-23','2015-11-22',159,'2013-12-11',1,NULL),(25,7,1,'2013-12-05','2015-12-04',168,'2013-12-11',1,NULL),(26,29,1,'2013-11-13','2015-11-12',170,'2013-12-11',1,NULL),(27,12,1,'2013-11-30','2014-11-29',174,'2013-12-11',2,NULL),(28,14,1,'2013-11-28','2014-11-27',177,'2013-12-11',2,NULL),(29,21,1,'2013-11-21','2015-11-20',190,'2013-12-11',1,NULL),(30,17,1,'2013-11-25','2015-11-24',195,'2013-12-11',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,27,1,'2013-12-13','2015-12-12',7,'2014-01-08',1,NULL),(2,19,1,'2013-12-21','2015-12-20',13,'2014-01-08',1,NULL),(3,9,1,'2013-12-31','2015-12-30',18,'2014-01-08',1,NULL),(4,7,1,'2014-01-02','2016-01-01',21,'2014-01-08',1,NULL),(5,20,4,'2012-12-20','2013-12-19',24,'2014-01-08',2,NULL),(6,2,1,'2014-01-07','2015-01-06',29,'2014-01-08',2,NULL),(7,4,1,'2014-01-05','2015-01-04',30,'2014-01-08',2,NULL),(8,23,1,'2013-12-17','2015-12-16',31,'2014-01-08',1,NULL),(9,17,1,'2013-12-23','2015-12-22',42,'2014-01-08',1,NULL),(10,21,1,'2013-12-19','2015-12-18',43,'2014-01-08',1,NULL),(11,15,3,'2011-09-18','2013-09-17',54,'2014-01-08',1,NULL),(12,8,1,'2014-01-01','2014-12-31',55,'2014-01-08',2,NULL),(13,1,1,'2014-01-08','2016-01-07',60,'2014-01-08',1,NULL),(14,25,3,'2011-06-30','2013-06-29',69,'2014-01-08',1,NULL),(15,13,1,'2013-12-27','2015-12-26',72,'2014-01-08',1,NULL),(16,30,3,'2011-05-21','2013-05-20',76,'2014-01-08',1,NULL),(17,3,1,'2014-01-06','2016-01-05',101,'2014-01-08',1,NULL),(18,29,1,'2013-12-11','2015-12-10',102,'2014-01-08',1,NULL),(19,10,3,'2011-10-28','2013-10-27',107,'2014-01-08',1,NULL),(20,22,1,'2013-12-18',NULL,111,'2014-01-08',3,NULL),(21,26,1,'2013-12-14','2014-12-13',129,'2014-01-08',2,NULL),(22,6,1,'2014-01-03','2015-01-02',146,'2014-01-08',2,NULL),(23,18,1,'2013-12-22','2014-12-21',148,'2014-01-08',2,NULL),(24,24,1,'2013-12-16','2014-12-15',157,'2014-01-08',2,NULL),(25,12,1,'2013-12-28','2014-12-27',161,'2014-01-08',2,NULL),(26,14,1,'2013-12-26','2014-12-25',167,'2014-01-08',2,NULL),(27,11,1,'2013-12-29',NULL,182,'2014-01-08',3,NULL),(28,16,1,'2013-12-24','2014-12-23',188,'2014-01-08',2,NULL),(29,5,3,'2011-12-07','2013-12-06',192,'2014-01-08',1,NULL),(30,28,1,'2013-12-12','2014-12-11',198,'2014-01-08',2,NULL);
 /*!40000 ALTER TABLE `civicrm_membership_log` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -939,7 +939,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Activity Summary{/ts} - {$activityTypeName}\n      </th>\n     </tr>\n     {if $isCaseActivity}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Your Case Role(s){/ts}\n       </td>\n       <td {$valueStyle}>\n        {$contact.role}\n       </td>\n      </tr>\n      {if $manageCaseURL}\n       <tr>\n       <td colspan=\"2\" {$valueStyle}>\n     <a href=\"{$manageCaseURL}\" title=\"{ts}Manage Case{/ts}\">{ts}Manage Case{/ts}</a>\n       </td>\n       </tr>\n      {/if}\n     {/if}\n     {if $editActURL}\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n   <a href=\"{$editActURL}\" title=\"{ts}Edit this activity{/ts}\">{ts}Edit this activity{/ts}</a>\n       </td>\n     </tr>\n     {/if}\n     {if $viewActURL}\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n   <a href=\"{$viewActURL}\" title=\"{ts}View this activity{/ts}\">{ts}View this activity{/ts}</a>\n       </td>\n     </tr>\n     {/if}\n     {foreach from=$activity.fields item=field}\n      <tr>\n       <td {$labelStyle}>\n        {$field.label}{if $field.category}({$field.category}){/if}\n       </td>\n       <td {$valueStyle}>\n        {if $field.type eq \'Date\'}\n         {$field.value|crmDate:$config->dateformatDatetime}\n        {else}\n         {$field.value}\n        {/if}\n       </td>\n      </tr>\n     {/foreach}\n\n     {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n      <tr>\n       <th {$headerStyle}>\n        {$customGroupName}\n       </th>\n      </tr>\n      {foreach from=$customGroup item=field}\n       <tr>\n        <td {$labelStyle}>\n         {$field.label}\n        </td>\n        <td {$valueStyle}>\n         {if $field.type eq \'Date\'}\n          {$field.value|crmDate:$config->dateformatDatetime}\n         {else}\n          {$field.value}\n         {/if}\n        </td>\n       </tr>\n      {/foreach}\n     {/foreach}\n    </table>\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,699,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Activity Summary{/ts} - {$activityTypeName}\n      </th>\n     </tr>\n     {if $isCaseActivity}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Your Case Role(s){/ts}\n       </td>\n       <td {$valueStyle}>\n        {$contact.role}\n       </td>\n      </tr>\n      {if $manageCaseURL}\n       <tr>\n       <td colspan=\"2\" {$valueStyle}>\n     <a href=\"{$manageCaseURL}\" title=\"{ts}Manage Case{/ts}\">{ts}Manage Case{/ts}</a>\n       </td>\n       </tr>\n      {/if}\n     {/if}\n     {if $editActURL}\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n   <a href=\"{$editActURL}\" title=\"{ts}Edit this activity{/ts}\">{ts}Edit this activity{/ts}</a>\n       </td>\n     </tr>\n     {/if}\n     {if $viewActURL}\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n   <a href=\"{$viewActURL}\" title=\"{ts}View this activity{/ts}\">{ts}View this activity{/ts}</a>\n       </td>\n     </tr>\n     {/if}\n     {foreach from=$activity.fields item=field}\n      <tr>\n       <td {$labelStyle}>\n        {$field.label}{if $field.category}({$field.category}){/if}\n       </td>\n       <td {$valueStyle}>\n        {if $field.type eq \'Date\'}\n         {$field.value|crmDate:$config->dateformatDatetime}\n        {else}\n         {$field.value}\n        {/if}\n       </td>\n      </tr>\n     {/foreach}\n\n     {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n      <tr>\n       <th {$headerStyle}>\n        {$customGroupName}\n       </th>\n      </tr>\n      {foreach from=$customGroup item=field}\n       <tr>\n        <td {$labelStyle}>\n         {$field.label}\n        </td>\n        <td {$valueStyle}>\n         {if $field.type eq \'Date\'}\n          {$field.value|crmDate:$config->dateformatDatetime}\n         {else}\n          {$field.value}\n         {/if}\n        </td>\n       </tr>\n      {/foreach}\n     {/foreach}\n    </table>\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,699,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 \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}</p>\n    <p>{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Name{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Email{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfEmail}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Contact Id{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfID}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <p>{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}</p>\n   </td>\n  </tr>\n  {if $receiptMessage}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts}Copy of Contribution Receipt{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {* FIXME: the below is most probably not HTML-ised *}\n        {$receiptMessage}\n       </td>\n      </tr>\n     </table>\n    </td>\n   </tr>\n  {/if}\n </table>\n</center>\n\n</body>\n</html>\n',1,700,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 \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}</p>\n    <p>{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Name{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Email{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfEmail}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Contact Id{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfID}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <p>{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}</p>\n   </td>\n  </tr>\n  {if $receiptMessage}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts}Copy of Contribution Receipt{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {* FIXME: the below is most probably not HTML-ised *}\n        {$receiptMessage}\n       </td>\n      </tr>\n     </table>\n    </td>\n   </tr>\n  {/if}\n </table>\n</center>\n\n</body>\n</html>\n',1,700,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $formValues.receipt_text}\n     <p>{$formValues.receipt_text|htmlize}</p>\n    {else}\n     <p>{ts}Thanks for your support.{/ts}</p>\n    {/if}\n\n    <p>{ts}Please print this receipt for your records.{/ts}</p>\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Contribution Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Financial Type{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$formValues.contributionType_name}\n      </td>\n     </tr>\n\n     {if $lineItem and !$is_quick_config}\n      {foreach from=$lineItem item=value key=priceset}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n          <tr>\n           <th>{ts}Item{/ts}</th>\n           <th>{ts}Qty{/ts}</th>\n           <th>{ts}Each{/ts}</th>\n           <th>{ts}Total{/ts}</th>\n          </tr>\n          {foreach from=$value item=line}\n           <tr>\n            <td>\n            {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n            </td>\n            <td>\n             {$line.qty}\n            </td>\n            <td>\n             {$line.unit_price|crmMoney:$currency}\n            </td>\n            <td>\n             {$line.line_total|crmMoney:$currency}\n            </td>\n           </tr>\n          {/foreach}\n         </table>\n        </td>\n       </tr>\n      {/foreach}\n     {/if}\n\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$formValues.total_amount|crmMoney:$currency}\n      </td>\n     </tr>\n\n     {if $receive_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Received Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|truncate:10:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n      {if $receipt_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Receipt Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receipt_date|truncate:10:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $formValues.paidBy and !$formValues.hidden_CreditCard}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Paid By{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$formValues.paidBy}\n       </td>\n      </tr>\n      {if $formValues.check_number}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Check Number{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.check_number}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $formValues.trxn_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction ID{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$formValues.trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if $ccContribution}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Billing Name and Address{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$billingName}<br />\n        {$address|nl2br}\n       </td>\n      </tr>\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if $formValues.honor_first_name}\n      <tr>\n       <th {$headerStyle}>\n        {$formValues.honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}<br />\n        {if $formValues.honor_email}\n         {ts}Honoree Email{/ts}: {$formValues.honor_email}\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $formValues.product_name}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$formValues.product_name}\n       </td>\n      </tr>\n      {if $formValues.product_option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_option}\n        </td>\n       </tr>\n      {/if}\n      {if $formValues.product_sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_sku}\n        </td>\n       </tr>\n      {/if}\n      {if $fulfilled_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Sent{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$fulfilled_date|truncate:10:\'\'|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,701,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $formValues.receipt_text}\n     <p>{$formValues.receipt_text|htmlize}</p>\n    {else}\n     <p>{ts}Thanks for your support.{/ts}</p>\n    {/if}\n\n    <p>{ts}Please print this receipt for your records.{/ts}</p>\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Contribution Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Financial Type{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$formValues.contributionType_name}\n      </td>\n     </tr>\n\n     {if $lineItem and !$is_quick_config}\n      {foreach from=$lineItem item=value key=priceset}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n          <tr>\n           <th>{ts}Item{/ts}</th>\n           <th>{ts}Qty{/ts}</th>\n           <th>{ts}Each{/ts}</th>\n           <th>{ts}Total{/ts}</th>\n          </tr>\n          {foreach from=$value item=line}\n           <tr>\n            <td>\n            {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n            </td>\n            <td>\n             {$line.qty}\n            </td>\n            <td>\n             {$line.unit_price|crmMoney:$currency}\n            </td>\n            <td>\n             {$line.line_total|crmMoney:$currency}\n            </td>\n           </tr>\n          {/foreach}\n         </table>\n        </td>\n       </tr>\n      {/foreach}\n     {/if}\n\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$formValues.total_amount|crmMoney:$currency}\n      </td>\n     </tr>\n\n     {if $receive_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Received Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|truncate:10:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n      {if $receipt_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Receipt Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receipt_date|truncate:10:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $formValues.paidBy and !$formValues.hidden_CreditCard}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Paid By{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$formValues.paidBy}\n       </td>\n      </tr>\n      {if $formValues.check_number}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Check Number{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.check_number}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $formValues.trxn_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction ID{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$formValues.trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if $ccContribution}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Billing Name and Address{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$billingName}<br />\n        {$address|nl2br}\n       </td>\n      </tr>\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if $formValues.honor_first_name}\n      <tr>\n       <th {$headerStyle}>\n        {$formValues.honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}<br />\n        {if $formValues.honor_email}\n         {ts}Honoree Email{/ts}: {$formValues.honor_email}\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $formValues.product_name}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$formValues.product_name}\n       </td>\n      </tr>\n      {if $formValues.product_option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_option}\n        </td>\n       </tr>\n      {/if}\n      {if $formValues.product_sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_sku}\n        </td>\n       </tr>\n      {/if}\n      {if $fulfilled_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Sent{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$fulfilled_date|truncate:10:\'\'|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,701,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{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $receipt_text}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  </table>\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n     {if $amount}\n\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Contribution Information{/ts}\n       </th>\n      </tr>\n\n      {if $lineItem and $priceSetID and !$is_quick_config}\n\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Qty{/ts}</th>\n            <th>{ts}Each{/ts}</th>\n            <th>{ts}Total{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n             {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n             </td>\n             <td>\n              {$line.qty}\n             </td>\n             <td>\n              {$line.unit_price|crmMoney:$currency}\n             </td>\n             <td>\n              {$line.line_total|crmMoney:$currency}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney:$currency}\n        </td>\n       </tr>\n\n      {else}\n\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney:$currency} {if $amount_level} - {$amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n     {/if}\n\n\n     {if $receive_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $is_monetary and $trxn_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if $is_recur}\n      {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n       <tr>\n        <td  colspan=\"2\" {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl}This is a recurring contribution. You can cancel future contributions by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n        {if $updateSubscriptionBillingUrl}\n         <tr>\n         </tr>\n         <td colspan=\"2\" {$labelStyle}>\n          {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n         </td>\n        {/if}\n       <tr>\n       </tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$honor_prefix} {$honor_first_name} {$honor_last_name}\n       </td>\n      </tr>\n      {if $honor_email}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Honoree Email{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$honor_email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $pcpBlock}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $onBehalfProfile}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if $isShare}\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\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        </td>\n      </tr>\n     {/if}\n\n     {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n      {if $is_pay_later}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Registered Email{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$email}\n        </td>\n       </tr>\n      {elseif $amount GT 0}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if $selectPremium}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $contact_email OR $contact_phone}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if $contact_email}\n          <p>{$contact_email}</p>\n         {/if}\n         {if $contact_phone}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if $is_deductible AND $price}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if $customPre}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customPost}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n</center>\n\n</body>\n</html>\n',1,702,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{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $receipt_text}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  </table>\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n     {if $amount}\n\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Contribution Information{/ts}\n       </th>\n      </tr>\n\n      {if $lineItem and $priceSetID and !$is_quick_config}\n\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Qty{/ts}</th>\n            <th>{ts}Each{/ts}</th>\n            <th>{ts}Total{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n             {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n             </td>\n             <td>\n              {$line.qty}\n             </td>\n             <td>\n              {$line.unit_price|crmMoney:$currency}\n             </td>\n             <td>\n              {$line.line_total|crmMoney:$currency}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney:$currency}\n        </td>\n       </tr>\n\n      {else}\n\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney:$currency} {if $amount_level} - {$amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n     {/if}\n\n\n     {if $receive_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $is_monetary and $trxn_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if $is_recur}\n      {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n       <tr>\n        <td  colspan=\"2\" {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl}This is a recurring contribution. You can cancel future contributions by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n        {if $updateSubscriptionBillingUrl}\n         <tr>\n         </tr>\n         <td colspan=\"2\" {$labelStyle}>\n          {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n         </td>\n        {/if}\n       <tr>\n       </tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$honor_prefix} {$honor_first_name} {$honor_last_name}\n       </td>\n      </tr>\n      {if $honor_email}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Honoree Email{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$honor_email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $pcpBlock}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $onBehalfProfile}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if $isShare}\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\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        </td>\n      </tr>\n     {/if}\n\n     {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n      {if $is_pay_later}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Registered Email{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$email}\n        </td>\n       </tr>\n      {elseif $amount GT 0}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if $selectPremium}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $contact_email OR $contact_phone}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if $contact_email}\n          <p>{$contact_email}</p>\n         {/if}\n         {if $contact_phone}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if $is_deductible AND $price}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if $customPre}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customPost}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n</center>\n\n</body>\n</html>\n',1,702,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 <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/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 <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$displayName}Dear %1{/ts},</p>\n   </td>\n  </tr>\n\n  <tr>\n   <td>&nbsp;</td>\n  </tr>\n\n    {if $recur_txnType eq \'START\'}\n     {if $auto_renew_membership}\n       <tr>\n        <td>\n         <p>{ts}Thanks for your auto renew membership sign-up.{/ts}</p>\n         <p>{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}</p>\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Thanks for your recurring contribution sign-up.{/ts}</p>\n        <p>{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}</p>\n        <p>{ts}Start Date{/ts}: {$recur_start_date|crmDate}</p>\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n   {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n     {/if}\n\n    {elseif $recur_txnType eq \'END\'}\n\n     {if $auto_renew_membership}\n      <tr>\n       <td>\n        <p>{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}</p>\n       </td>\n      </tr>\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Your recurring contribution term has ended.{/ts}</p>\n        <p>{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}</p>\n       </td>\n      </tr>\n      <tr>\n       <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Start Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_start_date|crmDate}\n       </td>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}End Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_end_date|crmDate}\n       </td>\n      </tr>\n     </table>\n       </td>\n      </tr>\n\n     {/if}\n    {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,703,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 <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/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 <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$displayName}Dear %1{/ts},</p>\n   </td>\n  </tr>\n\n  <tr>\n   <td>&nbsp;</td>\n  </tr>\n\n    {if $recur_txnType eq \'START\'}\n     {if $auto_renew_membership}\n       <tr>\n        <td>\n         <p>{ts}Thanks for your auto renew membership sign-up.{/ts}</p>\n         <p>{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}</p>\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Thanks for your recurring contribution sign-up.{/ts}</p>\n        <p>{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}</p>\n        <p>{ts}Start Date{/ts}: {$recur_start_date|crmDate}</p>\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n   {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n     {/if}\n\n    {elseif $recur_txnType eq \'END\'}\n\n     {if $auto_renew_membership}\n      <tr>\n       <td>\n        <p>{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}</p>\n       </td>\n      </tr>\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Your recurring contribution term has ended.{/ts}</p>\n        <p>{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}</p>\n       </td>\n      </tr>\n      <tr>\n       <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Start Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_start_date|crmDate}\n       </td>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}End Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_end_date|crmDate}\n       </td>\n      </tr>\n     </table>\n       </td>\n      </tr>\n\n     {/if}\n    {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,703,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,704,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,704,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}','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n<tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n            {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n       </tr>\n  </table>\n</center>\n\n</body>\n</html>',1,705,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}','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n<tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n            {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n       </tr>\n  </table>\n</center>\n\n</body>\n</html>',1,705,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}','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/ts}</p>\n    <p>{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}</p>\n\n    <p>{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,706,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}','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/ts}</p>\n    <p>{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}</p>\n\n    <p>{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,706,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/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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL     }{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n\n<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Personal Campaign Page Notification{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Action{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {if $mode EQ \'Update\'}\n        {ts}Updated personal campaign page{/ts}\n       {else}\n        {ts}New personal campaign page{/ts}\n       {/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Personal Campaign Page Title{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpTitle}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Current Status{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpStatus}\n      </td>\n     </tr>\n\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$pcpURL}\">{ts}View Page{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Supporter{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$supporterUrl}\">{$supporterName}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Linked to Contribution Page{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$contribPageUrl}\">{$contribPageTitle}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$managePCPUrl}\">{ts}Manage Personal Campaign Pages{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n\n    </table>\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,707,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/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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL     }{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n\n<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Personal Campaign Page Notification{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Action{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {if $mode EQ \'Update\'}\n        {ts}Updated personal campaign page{/ts}\n       {else}\n        {ts}New personal campaign page{/ts}\n       {/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Personal Campaign Page Title{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpTitle}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Current Status{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpStatus}\n      </td>\n     </tr>\n\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$pcpURL}\">{ts}View Page{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Supporter{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$supporterUrl}\">{$supporterName}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Linked to Contribution Page{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$contribPageUrl}\">{$contribPageTitle}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$managePCPUrl}\">{ts}Manage Personal Campaign Pages{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n\n    </table>\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,707,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\n\n<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    <h1>{ts}Your Personal Campaign Page{/ts}</h1>\n\n    {if $pcpStatus eq \'Approved\'}\n\n     <p>{ts}Your personal campaign page has been approved and is now live.{/ts}</p>\n     <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n     <ol>\n      <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n      <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n     </ol>\n     <p>{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}</p>\n\n     {if $isTellFriendEnabled}\n      <p><a href=\"{$pcpTellFriendURL}\">{ts}After logging in, you can use this form to promote your fundraising page{/ts}</a></p>\n     {/if}\n\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {elseif $pcpStatus eq \'Not Approved\'}\n\n     <p>{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}</p>\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {/if}\n\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,708,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\n\n<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    <h1>{ts}Your Personal Campaign Page{/ts}</h1>\n\n    {if $pcpStatus eq \'Approved\'}\n\n     <p>{ts}Your personal campaign page has been approved and is now live.{/ts}</p>\n     <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n     <ol>\n      <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n      <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n     </ol>\n     <p>{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}</p>\n\n     {if $isTellFriendEnabled}\n      <p><a href=\"{$pcpTellFriendURL}\">{ts}After logging in, you can use this form to promote your fundraising page{/ts}</a></p>\n     {/if}\n\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {elseif $pcpStatus eq \'Not Approved\'}\n\n     <p>{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}</p>\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {/if}\n\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,708,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts}Dear supporter{/ts},</p>\n    <p>{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}</p>\n   </td>\n  </tr>\n\n  {if $pcpStatus eq \'Approved\'}\n\n    <tr>\n     <td>\n      <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n       <tr>\n        <th {$headerStyle}>\n         {ts}Promoting Your Page{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {if $isTellFriendEnabled}\n          <p>{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:</p>\n          <ol>\n           <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n           <li><a href=\"{$pcpTellFriendURL}\">{ts}Click this link and follow the prompts{/ts}</a></li>\n          </ol>\n         {else}\n          <p>{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}</p>\n         {/if}\n        </td>\n       </tr>\n       <tr>\n        <th {$headerStyle}>\n         {ts}Managing Your Page{/ts}\n        </th>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n         <ol>\n          <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n          <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n         </ol>\n         <p>{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}</p>\n        </td>\n       </tr>\n       </tr>\n      </table>\n     </td>\n    </tr>\n\n   {elseif $pcpStatus EQ \'Waiting Review\'}\n\n    <tr>\n     <td>\n      <p>{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}</p>\n      <p>{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}</p>\n      <p>{ts}You can still preview your page prior to approval{/ts}:</p>\n      <ol>\n       <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n       <li><a href=\"{$pcpInfoURL}\">{ts}Click this link{/ts}</a></li>\n      </ol>\n     </td>\n    </tr>\n\n   {/if}\n\n   {if $pcpNotifyEmailAddress}\n    <tr>\n     <td>\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     </td>\n    </tr>\n   {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,709,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts}Dear supporter{/ts},</p>\n    <p>{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}</p>\n   </td>\n  </tr>\n\n  {if $pcpStatus eq \'Approved\'}\n\n    <tr>\n     <td>\n      <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n       <tr>\n        <th {$headerStyle}>\n         {ts}Promoting Your Page{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {if $isTellFriendEnabled}\n          <p>{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:</p>\n          <ol>\n           <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n           <li><a href=\"{$pcpTellFriendURL}\">{ts}Click this link and follow the prompts{/ts}</a></li>\n          </ol>\n         {else}\n          <p>{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}</p>\n         {/if}\n        </td>\n       </tr>\n       <tr>\n        <th {$headerStyle}>\n         {ts}Managing Your Page{/ts}\n        </th>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n         <ol>\n          <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n          <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n         </ol>\n         <p>{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}</p>\n        </td>\n       </tr>\n       </tr>\n      </table>\n     </td>\n    </tr>\n\n   {elseif $pcpStatus EQ \'Waiting Review\'}\n\n    <tr>\n     <td>\n      <p>{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}</p>\n      <p>{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}</p>\n      <p>{ts}You can still preview your page prior to approval{/ts}:</p>\n      <ol>\n       <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n       <li><a href=\"{$pcpInfoURL}\">{ts}Click this link{/ts}</a></li>\n      </ol>\n     </td>\n    </tr>\n\n   {/if}\n\n   {if $pcpNotifyEmailAddress}\n    <tr>\n     <td>\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     </td>\n    </tr>\n   {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,709,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} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n     <p>{$event.confirm_email_text|htmlize}</p>\n    {/if}\n\n    {if $isOnWaitlist}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if $isPrimary}\n       <p>{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif $isRequireApproval}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if $isPrimary}\n      <p>{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}</p>\n     {/if}\n    {elseif $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n\n     {if $event.participant_role neq \'Attendee\' and $defaultRole}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $location.address.1.name}\n         {$location.address.1.name}<br />\n        {/if}\n        {if $location.address.1.street_address}\n         {$location.address.1.street_address}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_1}\n         {$location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_2}\n         {$location.address.1.supplemental_address_2}<br />\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}<br />\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $location.phone.1.phone || $location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n     {if $email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$email}\n       </td>\n      </tr>\n     {/if}\n\n\n     {if $event.is_monetary}\n\n      <tr>\n       <th {$headerStyle}>\n        {$event.fee_label}\n       </th>\n      </tr>\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           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             <th>{ts}Total{/ts}</th>\n       {if $pricesetFieldsCount }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n        {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.qty}\n              </td>\n              <td>\n               {$line.unit_price|crmMoney}\n              </td>\n              <td>\n               {$line.line_total|crmMoney}\n              </td>\n        {if  $pricesetFieldsCount }\n        <td>\n    {$line.participant_count}\n              </td>\n        {/if}\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n      {/if}\n\n      {if $amount && !$lineItem}\n       {foreach from=$amount item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n      {if $isPrimary}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n       {if $pricesetFieldsCount }\n     <tr>\n       <td {$labelStyle}>\n   {ts}Total Participants{/ts}</td>\n       <td {$valueStyle}>\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       </td>\n     </tr>\n     {/if}\n       {if $is_pay_later}\n        <tr>\n         <td colspan=\"2\" {$labelStyle}>\n          {$pay_later_receipt}\n         </td>\n        </tr>\n       {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $receive_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributionTypeName}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$contributionTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if $trxn_id}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if $paidBy}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if $checkNumber}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n      {/if}\n\n     {/if} {* End of conditional section for Paid events *}\n\n     {if $customPre}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=value key=customName}\n       {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customPost}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=value key=customName}\n       {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customProfile}\n      {foreach from=$customProfile item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n        </th>\n       </tr>\n       {foreach from=$value item=val key=field}\n        {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n         <tr>\n          <td colspan=\"2\" {$labelStyle}>\n           {if $field eq \'additionalCustomPre\'}\n            {$additionalCustomPre_grouptitle}\n           {else}\n            {$additionalCustomPost_grouptitle}\n           {/if}\n          </td>\n         </tr>\n         {foreach from=$val item=v key=f}\n          <tr>\n           <td {$labelStyle}>\n            {$f}\n           </td>\n           <td {$valueStyle}>\n            {$v}\n           </td>\n          </tr>\n         {/foreach}\n        {/if}\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,710,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} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n     <p>{$event.confirm_email_text|htmlize}</p>\n    {/if}\n\n    {if $isOnWaitlist}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if $isPrimary}\n       <p>{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif $isRequireApproval}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if $isPrimary}\n      <p>{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}</p>\n     {/if}\n    {elseif $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n\n     {if $event.participant_role neq \'Attendee\' and $defaultRole}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $location.address.1.name}\n         {$location.address.1.name}<br />\n        {/if}\n        {if $location.address.1.street_address}\n         {$location.address.1.street_address}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_1}\n         {$location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_2}\n         {$location.address.1.supplemental_address_2}<br />\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}<br />\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $location.phone.1.phone || $location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n     {if $email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$email}\n       </td>\n      </tr>\n     {/if}\n\n\n     {if $event.is_monetary}\n\n      <tr>\n       <th {$headerStyle}>\n        {$event.fee_label}\n       </th>\n      </tr>\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           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             <th>{ts}Total{/ts}</th>\n       {if $pricesetFieldsCount }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n        {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.qty}\n              </td>\n              <td>\n               {$line.unit_price|crmMoney}\n              </td>\n              <td>\n               {$line.line_total|crmMoney}\n              </td>\n        {if  $pricesetFieldsCount }\n        <td>\n    {$line.participant_count}\n              </td>\n        {/if}\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n      {/if}\n\n      {if $amount && !$lineItem}\n       {foreach from=$amount item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n      {if $isPrimary}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n       {if $pricesetFieldsCount }\n     <tr>\n       <td {$labelStyle}>\n   {ts}Total Participants{/ts}</td>\n       <td {$valueStyle}>\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       </td>\n     </tr>\n     {/if}\n       {if $is_pay_later}\n        <tr>\n         <td colspan=\"2\" {$labelStyle}>\n          {$pay_later_receipt}\n         </td>\n        </tr>\n       {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $receive_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributionTypeName}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$contributionTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if $trxn_id}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if $paidBy}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if $checkNumber}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n      {/if}\n\n     {/if} {* End of conditional section for Paid events *}\n\n     {if $customPre}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=value key=customName}\n       {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customPost}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=value key=customName}\n       {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customProfile}\n      {foreach from=$customProfile item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n        </th>\n       </tr>\n       {foreach from=$value item=val key=field}\n        {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n         <tr>\n          <td colspan=\"2\" {$labelStyle}>\n           {if $field eq \'additionalCustomPre\'}\n            {$additionalCustomPre_grouptitle}\n           {else}\n            {$additionalCustomPost_grouptitle}\n           {/if}\n          </td>\n         </tr>\n         {foreach from=$val item=v key=f}\n          <tr>\n           <td {$labelStyle}>\n            {$f}\n           </td>\n           <td {$valueStyle}>\n            {$v}\n           </td>\n          </tr>\n         {/foreach}\n        {/if}\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,710,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}.\n\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location}    {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n  <p>Dear {contact.display_name},</p>\n\n    {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n     <p>{$event.confirm_email_text|htmlize}</p>\n\n    {else}\n  <p>Thank you for your participation.  This letter is a confirmation that your registration has been received and your status has been updated to <strong>{if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}</strong>.</p>\n\n    {/if}\n\n    <p>\n    {if $isOnWaitlist}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if $isPrimary}\n       <p>{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif $isRequireApproval}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if $isPrimary}\n      <p>{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}</p>\n     {/if}\n    {elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n\n\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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          <em>{$group_by_day|date_format:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n\n     {if $event.participant_role neq \'Attendee\' and $defaultRole}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $location.address.1.name}\n         {$location.address.1.name}<br />\n        {/if}\n        {if $location.address.1.street_address}\n         {$location.address.1.street_address}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_1}\n         {$location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_2}\n         {$location.address.1.supplemental_address_2}<br />\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}<br />\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $location.phone.1.phone || $location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n    {if $event.is_share}\n        <tr>\n            <td colspan=\"2\" {$valueStyle}>\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            </td>\n        </tr>\n    {/if}\n    {if $payer.name}\n     <tr>\n       <th {$headerStyle}>\n         {ts}You were registered by:{/ts}\n       </th>\n     </tr>\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$payer.name}\n       </td>\n     </tr>\n    {/if}\n    {if $event.is_monetary}\n\n      <tr>\n       <th {$headerStyle}>\n        {$event.fee_label}\n       </th>\n      </tr>\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           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             <th>{ts}Total{/ts}</th>\n       {if  $pricesetFieldsCount }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n              {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.qty}\n              </td>\n              <td>\n               {$line.unit_price|crmMoney:$currency}\n              </td>\n              <td>\n               {$line.line_total|crmMoney:$currency}\n              </td>\n        {if $pricesetFieldsCount }<td>{$line.participant_count}</td> {/if}\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n      {/if}\n\n      {if $amounts && !$lineItem}\n       {foreach from=$amounts item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney:$currency} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n\n      {if $isPrimary}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n       {if $pricesetFieldsCount }\n     <tr>\n       <td {$labelStyle}>\n      {ts}Total Participants{/ts}</td>\n      <td {$valueStyle}>\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     </td> </tr>\n      {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $receive_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributionTypeName}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$contributionTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if $trxn_id}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if $paidBy}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if $checkNumber}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\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   <tr> <th {$headerStyle}>{$customPre_grouptitle.$i}</th></tr>\n   {foreach from=$customPr item=customValue key=customName}\n   {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n   {/if}\n   {/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n   <tr> <th {$headerStyle}>{$customPost_grouptitle.$j}</th></tr>\n   {foreach from=$customPos item=customValue key=customName}\n   {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customProfile}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n     <tr><th {$headerStyle}>{ts 1=$participantID+2}Participant %1{/ts} </th></tr>\n     {foreach from=$eachParticipant item=eachProfile key=pid}\n     <tr><th {$headerStyle}>{$customProfile.title.$pid}</th></tr>\n     {foreach from=$eachProfile item=val key=field}\n     <tr>{foreach from=$val item=v key=f}\n         <td {$labelStyle}>{$field}</td>\n         <td {$valueStyle}>{$v}</td>\n         {/foreach}\n     </tr>\n     {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n    {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,711,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}.\n\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location}    {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n  <p>Dear {contact.display_name},</p>\n\n    {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n     <p>{$event.confirm_email_text|htmlize}</p>\n\n    {else}\n  <p>Thank you for your participation.  This letter is a confirmation that your registration has been received and your status has been updated to <strong>{if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}</strong>.</p>\n\n    {/if}\n\n    <p>\n    {if $isOnWaitlist}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if $isPrimary}\n       <p>{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif $isRequireApproval}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if $isPrimary}\n      <p>{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}</p>\n     {/if}\n    {elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n\n\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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          <em>{$group_by_day|date_format:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n\n     {if $event.participant_role neq \'Attendee\' and $defaultRole}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $location.address.1.name}\n         {$location.address.1.name}<br />\n        {/if}\n        {if $location.address.1.street_address}\n         {$location.address.1.street_address}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_1}\n         {$location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_2}\n         {$location.address.1.supplemental_address_2}<br />\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}<br />\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $location.phone.1.phone || $location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n    {if $event.is_share}\n        <tr>\n            <td colspan=\"2\" {$valueStyle}>\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            </td>\n        </tr>\n    {/if}\n    {if $payer.name}\n     <tr>\n       <th {$headerStyle}>\n         {ts}You were registered by:{/ts}\n       </th>\n     </tr>\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$payer.name}\n       </td>\n     </tr>\n    {/if}\n    {if $event.is_monetary}\n\n      <tr>\n       <th {$headerStyle}>\n        {$event.fee_label}\n       </th>\n      </tr>\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           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             <th>{ts}Total{/ts}</th>\n       {if  $pricesetFieldsCount }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n              {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.qty}\n              </td>\n              <td>\n               {$line.unit_price|crmMoney:$currency}\n              </td>\n              <td>\n               {$line.line_total|crmMoney:$currency}\n              </td>\n        {if $pricesetFieldsCount }<td>{$line.participant_count}</td> {/if}\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n      {/if}\n\n      {if $amounts && !$lineItem}\n       {foreach from=$amounts item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney:$currency} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n\n      {if $isPrimary}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n       {if $pricesetFieldsCount }\n     <tr>\n       <td {$labelStyle}>\n      {ts}Total Participants{/ts}</td>\n      <td {$valueStyle}>\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     </td> </tr>\n      {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $receive_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributionTypeName}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$contributionTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if $trxn_id}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if $paidBy}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if $checkNumber}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\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   <tr> <th {$headerStyle}>{$customPre_grouptitle.$i}</th></tr>\n   {foreach from=$customPr item=customValue key=customName}\n   {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n   {/if}\n   {/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n   <tr> <th {$headerStyle}>{$customPost_grouptitle.$j}</th></tr>\n   {foreach from=$customPos item=customValue key=customName}\n   {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customProfile}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n     <tr><th {$headerStyle}>{ts 1=$participantID+2}Participant %1{/ts} </th></tr>\n     {foreach from=$eachParticipant item=eachProfile key=pid}\n     <tr><th {$headerStyle}>{$customProfile.title.$pid}</th></tr>\n     {foreach from=$eachProfile item=val key=field}\n     <tr>{foreach from=$val item=v key=f}\n         <td {$labelStyle}>{$field}</td>\n         <td {$valueStyle}>{$v}</td>\n         {/foreach}\n     </tr>\n     {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n    {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,711,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n  <head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n    <title></title>\n  </head>\n  <body>\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    <p>Dear {contact.display_name},</p>\n    {if $is_pay_later}\n      <p>\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      </p>\n    {else}\n      <p>\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      </p>\n    {/if}\n\n    {if $is_pay_later}\n      <p>{$pay_later_receipt}</p>\n    {/if}\n\n    <p>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\"}:</p>\n\n\n{if $billing_name}\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Billing Name and Address{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$billing_name}<br />\n      {$billing_street_address}<br />\n      {$billing_city}, {$billing_state} {$billing_postal_code}<br/>\n      <br/>\n      {$email}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if $credit_card_type}\n  <p>&nbsp;</p>\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Credit Card Information{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$credit_card_type}<br />\n      {$credit_card_number}<br />\n      {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if $source}\n    <p>&nbsp;</p>\n    {$source}\n{/if}\n    <p>&nbsp;</p>\n    <table width=\"600\">\n      <thead>\n    <tr>\n{if $line_items}\n      <th style=\"text-align: left;\">\n      Event\n      </th>\n      <th style=\"text-align: left;\">\n      Participants\n      </th>\n{/if}\n      <th style=\"text-align: left;\">\n      Price\n      </th>\n      <th style=\"text-align: left;\">\n      Total\n      </th>\n    </tr>\n    </thead>\n      <tbody>\n  {foreach from=$line_items item=line_item}\n  <tr>\n    <td style=\"width: 220px\">\n      {$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})<br />\n      {if $line_item.event->is_show_location}\n        {if $line_item.location.address.1.name}\n    {$line_item.location.address.1.name}<br />\n        {/if}\n        {if $line_item.location.address.1.street_address}\n    {$line_item.location.address.1.street_address}<br />\n        {/if}\n        {if $line_item.location.address.1.supplemental_address_1}\n    {$line_item.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $line_item.location.address.1.supplemental_address_2}\n    {$line_item.location.address.1.supplemental_address_2}<br />\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*}<br /><br />\n      {$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n    </td>\n    <td style=\"width: 180px\">\n    {$line_item.num_participants}\n      {if $line_item.num_participants > 0}\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n      {if $line_item.num_waiting_participants > 0}\n      Waitlisted:<br/>\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.waiting_participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n    </td>\n    <td style=\"width: 100px\">\n      {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n    <td style=\"width: 100px\">\n      &nbsp;{$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {/foreach}\n      </tbody>\n      <tfoot>\n  {if $discounts}\n  <tr>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      Subtotal:\n    </td>\n    <td>\n      &nbsp;{$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {foreach from=$discounts key=myId item=i}\n  <tr>\n    <td>\n      {$i.title}\n    </td>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      -{$i.amount}\n    </td>\n  </tr>\n  {/foreach}\n  {/if}\n  <tr>\n{if $line_items}\n    <td>\n    </td>\n    <td>\n    </td>\n{/if}\n    <td>\n      <strong>Total:</strong>\n    </td>\n    <td>\n      <strong>&nbsp;{$total|crmMoney:$currency|string_format:\"%10s\"}</strong>\n    </td>\n  </tr>\n      </tfoot>\n    </table>\n\n    If you have questions about the status of your registration or purchase please feel free to contact us.\n  </body>\n</html>\n',1,712,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n  <head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n    <title></title>\n  </head>\n  <body>\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    <p>Dear {contact.display_name},</p>\n    {if $is_pay_later}\n      <p>\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      </p>\n    {else}\n      <p>\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      </p>\n    {/if}\n\n    {if $is_pay_later}\n      <p>{$pay_later_receipt}</p>\n    {/if}\n\n    <p>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\"}:</p>\n\n\n{if $billing_name}\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Billing Name and Address{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$billing_name}<br />\n      {$billing_street_address}<br />\n      {$billing_city}, {$billing_state} {$billing_postal_code}<br/>\n      <br/>\n      {$email}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if $credit_card_type}\n  <p>&nbsp;</p>\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Credit Card Information{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$credit_card_type}<br />\n      {$credit_card_number}<br />\n      {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if $source}\n    <p>&nbsp;</p>\n    {$source}\n{/if}\n    <p>&nbsp;</p>\n    <table width=\"600\">\n      <thead>\n    <tr>\n{if $line_items}\n      <th style=\"text-align: left;\">\n      Event\n      </th>\n      <th style=\"text-align: left;\">\n      Participants\n      </th>\n{/if}\n      <th style=\"text-align: left;\">\n      Price\n      </th>\n      <th style=\"text-align: left;\">\n      Total\n      </th>\n    </tr>\n    </thead>\n      <tbody>\n  {foreach from=$line_items item=line_item}\n  <tr>\n    <td style=\"width: 220px\">\n      {$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})<br />\n      {if $line_item.event->is_show_location}\n        {if $line_item.location.address.1.name}\n    {$line_item.location.address.1.name}<br />\n        {/if}\n        {if $line_item.location.address.1.street_address}\n    {$line_item.location.address.1.street_address}<br />\n        {/if}\n        {if $line_item.location.address.1.supplemental_address_1}\n    {$line_item.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $line_item.location.address.1.supplemental_address_2}\n    {$line_item.location.address.1.supplemental_address_2}<br />\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*}<br /><br />\n      {$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n    </td>\n    <td style=\"width: 180px\">\n    {$line_item.num_participants}\n      {if $line_item.num_participants > 0}\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n      {if $line_item.num_waiting_participants > 0}\n      Waitlisted:<br/>\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.waiting_participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n    </td>\n    <td style=\"width: 100px\">\n      {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n    <td style=\"width: 100px\">\n      &nbsp;{$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {/foreach}\n      </tbody>\n      <tfoot>\n  {if $discounts}\n  <tr>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      Subtotal:\n    </td>\n    <td>\n      &nbsp;{$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {foreach from=$discounts key=myId item=i}\n  <tr>\n    <td>\n      {$i.title}\n    </td>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      -{$i.amount}\n    </td>\n  </tr>\n  {/foreach}\n  {/if}\n  <tr>\n{if $line_items}\n    <td>\n    </td>\n    <td>\n    </td>\n{/if}\n    <td>\n      <strong>Total:</strong>\n    </td>\n    <td>\n      <strong>&nbsp;{$total|crmMoney:$currency|string_format:\"%10s\"}</strong>\n    </td>\n  </tr>\n      </tfoot>\n    </table>\n\n    If you have questions about the status of your registration or purchase please feel free to contact us.\n  </body>\n</html>\n',1,712,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts}Your Event Registration has been cancelled.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $event.location.address.1.name}\n         {$event.location.address.1.name}<br />\n        {/if}\n        {if $event.location.address.1.street_address}\n         {$event.location.address.1.street_address}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_1}\n         {$event.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_2}\n         {$event.location.address.1.supplemental_address_2}<br />\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       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\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     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n\n     {if $contact.email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,713,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts}Your Event Registration has been cancelled.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $event.location.address.1.name}\n         {$event.location.address.1.name}<br />\n        {/if}\n        {if $event.location.address.1.street_address}\n         {$event.location.address.1.street_address}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_1}\n         {$event.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_2}\n         {$event.location.address.1.supplemental_address_2}<br />\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       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\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     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n\n     {if $contact.email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,713,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n   </td>\n  </tr>\n  {if !$isAdditional and $participant.id}\n   <tr>\n    <th {$headerStyle}>\n     {ts}Confirm Your Registration{/ts}\n    </th>\n   </tr>\n   <tr>\n    <td colspan=\"2\" {$valueStyle}>\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     <a href=\"{$confirmUrl}\">Go to a web page where you can confirm your registration online</a>\n    </td>\n   </tr>\n  {/if}\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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          <em>{$group_by_day|date_format:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $event.location.address.1.name}\n         {$event.location.address.1.name}<br />\n        {/if}\n        {if $event.location.address.1.street_address}\n         {$event.location.address.1.street_address}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_1}\n         {$event.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_2}\n         {$event.location.address.1.supplemental_address_2}<br />\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       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\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     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n\n     {if $contact.email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,714,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n   </td>\n  </tr>\n  {if !$isAdditional and $participant.id}\n   <tr>\n    <th {$headerStyle}>\n     {ts}Confirm Your Registration{/ts}\n    </th>\n   </tr>\n   <tr>\n    <td colspan=\"2\" {$valueStyle}>\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     <a href=\"{$confirmUrl}\">Go to a web page where you can confirm your registration online</a>\n    </td>\n   </tr>\n  {/if}\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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          <em>{$group_by_day|date_format:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $event.location.address.1.name}\n         {$event.location.address.1.name}<br />\n        {/if}\n        {if $event.location.address.1.street_address}\n         {$event.location.address.1.street_address}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_1}\n         {$event.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_2}\n         {$event.location.address.1.supplemental_address_2}<br />\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       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\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     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n\n     {if $contact.email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,714,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $event.location.address.1.name}\n         {$event.location.address.1.name}<br />\n        {/if}\n        {if $event.location.address.1.street_address}\n         {$event.location.address.1.street_address}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_1}\n         {$event.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_2}\n         {$event.location.address.1.supplemental_address_2}<br />\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       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\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     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n\n     {if $contact.email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,715,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $event.location.address.1.name}\n         {$event.location.address.1.name}<br />\n        {/if}\n        {if $event.location.address.1.street_address}\n         {$event.location.address.1.street_address}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_1}\n         {$event.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_2}\n         {$event.location.address.1.supplemental_address_2}<br />\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       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\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     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n\n     {if $contact.email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,715,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{$senderMessage}</p>\n    {if $generalLink}\n     <p><a href=\"{$generalLink}\">{ts}More information{/ts}</a></p>\n    {/if}\n    {if $contribute}\n     <p><a href=\"{$pageURL}\">{ts}Make a contribution{/ts}</a></p>\n    {/if}\n    {if $event}\n     <p><a href=\"{$pageURL}\">{ts}Find out more about this event{/ts}</a></p>\n    {/if}\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,716,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{$senderMessage}</p>\n    {if $generalLink}\n     <p><a href=\"{$generalLink}\">{ts}More information{/ts}</a></p>\n    {/if}\n    {if $contribute}\n     <p><a href=\"{$pageURL}\">{ts}Make a contribution{/ts}</a></p>\n    {/if}\n    {if $event}\n     <p><a href=\"{$pageURL}\">{ts}Find out more about this event{/ts}</a></p>\n    {/if}\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,716,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {if $formValues.receipt_text_signup}\n     <p>{$formValues.receipt_text_signup|htmlize}</p>\n    {elseif $formValues.receipt_text_renewal}\n     <p>{$formValues.receipt_text_renewal|htmlize}</p>\n    {else}\n     <p>{ts}Thanks for your support.{/ts}</p>\n    {/if}\n    {if ! $cancelled}\n     <p>{ts}Please print this receipt for your records.{/ts}</p>\n    {/if}\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     {if !$lineItem}\n     <tr>\n      <th {$headerStyle}>\n       {ts}Membership Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Membership Type{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$membership_name}\n      </td>\n     </tr>\n     {/if}\n     {if ! $cancelled}\n     {if !$lineItem}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Start Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$mem_start_date}\n       </td>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership End Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$mem_end_date}\n       </td>\n      </tr>\n      {/if}\n      {if $formValues.total_amount}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Membership Fee{/ts}\n        </th>\n       </tr>\n       {if $formValues.contributionType_name}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$formValues.contributionType_name}\n         </td>\n        </tr>\n       {/if}\n\n       {if $lineItem}\n       {foreach from=$lineItem item=value key=priceset}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Fee{/ts}</th>\n       <th>{ts}Membership Start Date{/ts}</th>\n       <th>{ts}Membership End Date{/ts}</th>\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n        {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.line_total|crmMoney}\n              </td>\n              <td>\n               {$line.start_date}\n              </td>\n        <td>\n               {$line.end_date}\n              </td>\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n       {/foreach}\n      {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.total_amount|crmMoney}\n        </td>\n       </tr>\n       {if $receive_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Received Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|truncate:10:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n       {if $formValues.paidBy}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$formValues.paidBy}\n         </td>\n        </tr>\n        {if $formValues.check_number}\n         <tr>\n          <td {$labelStyle}>\n           {ts}Check Number{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$formValues.check_number}\n          </td>\n         </tr>\n        {/if}\n       {/if}\n      {/if}\n     {/if}\n    </table>\n   </td>\n  </tr>\n\n  {if $isPrimary}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n\n      {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {$billingName}<br />\n         {$address}\n        </td>\n       </tr>\n      {/if}\n\n      {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Credit Card Information{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td {$valueStyle}>\n         {$credit_card_type}<br />\n         {$credit_card_number}\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {ts}Expires{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n        </td>\n       </tr>\n      {/if}\n\n     </table>\n    </td>\n   </tr>\n  {/if}\n\n  {if $customValues}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Options{/ts}\n       </th>\n      </tr>\n      {foreach from=$customValues item=value key=customName}\n       <tr>\n        <td {$labelStyle}>\n         {$customName}\n        </td>\n        <td {$valueStyle}>\n         {$value}\n        </td>\n       </tr>\n      {/foreach}\n     </table>\n    </td>\n   </tr>\n  {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,717,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {if $formValues.receipt_text_signup}\n     <p>{$formValues.receipt_text_signup|htmlize}</p>\n    {elseif $formValues.receipt_text_renewal}\n     <p>{$formValues.receipt_text_renewal|htmlize}</p>\n    {else}\n     <p>{ts}Thanks for your support.{/ts}</p>\n    {/if}\n    {if ! $cancelled}\n     <p>{ts}Please print this receipt for your records.{/ts}</p>\n    {/if}\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     {if !$lineItem}\n     <tr>\n      <th {$headerStyle}>\n       {ts}Membership Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Membership Type{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$membership_name}\n      </td>\n     </tr>\n     {/if}\n     {if ! $cancelled}\n     {if !$lineItem}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Start Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$mem_start_date}\n       </td>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership End Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$mem_end_date}\n       </td>\n      </tr>\n      {/if}\n      {if $formValues.total_amount}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Membership Fee{/ts}\n        </th>\n       </tr>\n       {if $formValues.contributionType_name}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$formValues.contributionType_name}\n         </td>\n        </tr>\n       {/if}\n\n       {if $lineItem}\n       {foreach from=$lineItem item=value key=priceset}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Fee{/ts}</th>\n       <th>{ts}Membership Start Date{/ts}</th>\n       <th>{ts}Membership End Date{/ts}</th>\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n        {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.line_total|crmMoney}\n              </td>\n              <td>\n               {$line.start_date}\n              </td>\n        <td>\n               {$line.end_date}\n              </td>\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n       {/foreach}\n      {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.total_amount|crmMoney}\n        </td>\n       </tr>\n       {if $receive_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Received Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|truncate:10:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n       {if $formValues.paidBy}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$formValues.paidBy}\n         </td>\n        </tr>\n        {if $formValues.check_number}\n         <tr>\n          <td {$labelStyle}>\n           {ts}Check Number{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$formValues.check_number}\n          </td>\n         </tr>\n        {/if}\n       {/if}\n      {/if}\n     {/if}\n    </table>\n   </td>\n  </tr>\n\n  {if $isPrimary}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n\n      {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {$billingName}<br />\n         {$address}\n        </td>\n       </tr>\n      {/if}\n\n      {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Credit Card Information{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td {$valueStyle}>\n         {$credit_card_type}<br />\n         {$credit_card_number}\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {ts}Expires{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n        </td>\n       </tr>\n      {/if}\n\n     </table>\n    </td>\n   </tr>\n  {/if}\n\n  {if $customValues}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Options{/ts}\n       </th>\n      </tr>\n      {foreach from=$customValues item=value key=customName}\n       <tr>\n        <td {$labelStyle}>\n         {$customName}\n        </td>\n        <td {$valueStyle}>\n         {$value}\n        </td>\n       </tr>\n      {/foreach}\n     </table>\n    </td>\n   </tr>\n  {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,717,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 <a href=\"%1\">visiting this web page</a>.{/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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $receipt_text}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  </table>\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n     {if $membership_assign && !$useForMember}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Type{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_name}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n\n     {if $amount}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n\n      {if !$useForMember and $membership_amount and $is_quick_config}\n\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$membership_name}%1 Membership{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$membership_amount|crmMoney}\n        </td>\n       </tr>\n       {if $amount}\n        {if ! $is_separate_payment }\n         <tr>\n          <td {$labelStyle}>\n           {ts}Contribution Amount{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$amount|crmMoney}\n          </td>\n         </tr>\n        {else}\n         <tr>\n          <td {$labelStyle}>\n           {ts}Additional Contribution{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$amount|crmMoney}\n          </td>\n         </tr>\n        {/if}\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount+$membership_amount|crmMoney}\n        </td>\n       </tr>\n\n      {elseif !$useForMember && $lineItem and $priceSetID and !$is_quick_config}\n\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Qty{/ts}</th>\n            <th>{ts}Each{/ts}</th>\n            <th>{ts}Total{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n              {$line.description|truncate:30:\"...\"}\n             </td>\n             <td>\n              {$line.qty}\n             </td>\n             <td>\n              {$line.unit_price|crmMoney}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney}\n        </td>\n       </tr>\n\n      {else}\n       {if $useForMember && $lineItem and !$is_quick_config}\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Fee{/ts}</th>\n      <th>{ts}Membership Start Date{/ts}</th>\n      <th>{ts}Membership End Date{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n             {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n             <td>\n              {$line.start_date}\n             </td>\n       <td>\n              {$line.end_date}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney} {if $amount_level} - {$amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n\n     {elseif $membership_amount}\n\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts 1=$membership_name}%1 Membership{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_amount|crmMoney}\n       </td>\n      </tr>\n\n\n     {/if}\n\n     {if $receive_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $is_monetary and $trxn_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if $membership_trx_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_trx_id}\n       </td>\n      </tr>\n     {/if}\n     {if $is_recur}\n      {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n       <tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$honor_prefix} {$honor_first_name} {$honor_last_name}\n       </td>\n      </tr>\n      {if $honor_email}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Honoree Email{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$honor_email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $pcpBlock}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $onBehalfProfile}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n      {if $is_pay_later}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Registered Email{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$email}\n        </td>\n       </tr>\n      {elseif $amount GT 0 OR $membership_amount GT 0}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $contributeMode eq \'direct\' AND !$is_pay_later AND ($amount GT 0 OR $membership_amount GT 0)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if $selectPremium}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $contact_email OR $contact_phone}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if $contact_email}\n          <p>{$contact_email}</p>\n         {/if}\n         {if $contact_phone}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if $is_deductible AND $price}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if $customPre}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customPost}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n</center>\n\n</body>\n</html>\n',1,718,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 <a href=\"%1\">visiting this web page</a>.{/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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $receipt_text}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  </table>\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n     {if $membership_assign && !$useForMember}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Type{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_name}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n\n     {if $amount}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n\n      {if !$useForMember and $membership_amount and $is_quick_config}\n\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$membership_name}%1 Membership{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$membership_amount|crmMoney}\n        </td>\n       </tr>\n       {if $amount}\n        {if ! $is_separate_payment }\n         <tr>\n          <td {$labelStyle}>\n           {ts}Contribution Amount{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$amount|crmMoney}\n          </td>\n         </tr>\n        {else}\n         <tr>\n          <td {$labelStyle}>\n           {ts}Additional Contribution{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$amount|crmMoney}\n          </td>\n         </tr>\n        {/if}\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount+$membership_amount|crmMoney}\n        </td>\n       </tr>\n\n      {elseif !$useForMember && $lineItem and $priceSetID and !$is_quick_config}\n\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Qty{/ts}</th>\n            <th>{ts}Each{/ts}</th>\n            <th>{ts}Total{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n              {$line.description|truncate:30:\"...\"}\n             </td>\n             <td>\n              {$line.qty}\n             </td>\n             <td>\n              {$line.unit_price|crmMoney}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney}\n        </td>\n       </tr>\n\n      {else}\n       {if $useForMember && $lineItem and !$is_quick_config}\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Fee{/ts}</th>\n      <th>{ts}Membership Start Date{/ts}</th>\n      <th>{ts}Membership End Date{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n             {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n             <td>\n              {$line.start_date}\n             </td>\n       <td>\n              {$line.end_date}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney} {if $amount_level} - {$amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n\n     {elseif $membership_amount}\n\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts 1=$membership_name}%1 Membership{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_amount|crmMoney}\n       </td>\n      </tr>\n\n\n     {/if}\n\n     {if $receive_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $is_monetary and $trxn_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if $membership_trx_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_trx_id}\n       </td>\n      </tr>\n     {/if}\n     {if $is_recur}\n      {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n       <tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$honor_prefix} {$honor_first_name} {$honor_last_name}\n       </td>\n      </tr>\n      {if $honor_email}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Honoree Email{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$honor_email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $pcpBlock}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $onBehalfProfile}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n      {if $is_pay_later}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Registered Email{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$email}\n        </td>\n       </tr>\n      {elseif $amount GT 0 OR $membership_amount GT 0}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $contributeMode eq \'direct\' AND !$is_pay_later AND ($amount GT 0 OR $membership_amount GT 0)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if $selectPremium}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $contact_email OR $contact_phone}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if $contact_email}\n          <p>{$contact_email}</p>\n         {/if}\n         {if $contact_phone}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if $is_deductible AND $price}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if $customPre}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customPost}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n</center>\n\n</body>\n</html>\n',1,718,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    <p>{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}</p>\n\n   </td>\n  </tr>\n </table>\n <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Status{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_status}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,719,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    <p>{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}</p>\n\n   </td>\n  </tr>\n </table>\n <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Status{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_status}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,719,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}','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n<tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n      </tr>\n\n  </table>\n</center>\n\n</body>\n</html>\n',1,720,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}','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n<tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n      </tr>\n\n  </table>\n</center>\n\n</body>\n</html>\n',1,720,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','<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left\">\n  <tr>\n   <td>\n    <p>{ts}Test-drive Email / Receipt{/ts}</p>\n    <p>{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}</p>\n   </td>\n  </tr>\n </table>\n</center>\n',1,721,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','<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left\">\n  <tr>\n   <td>\n    <p>{ts}Test-drive Email / Receipt{/ts}</p>\n    <p>{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}</p>\n   </td>\n  </tr>\n </table>\n</center>\n',1,721,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}dear %1{/ts},</p>\n    <p>{ts}thank you for your generous pledge. please print this acknowledgment for your records.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$total_pledge_amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Schedule{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}</p>\n\n       {if $frequency_day}\n        <p>{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}</p>\n       {/if}\n      </td>\n     </tr>\n\n     {if $payments}\n      {assign var=\"count\" value=\"1\"}\n      {foreach from=$payments item=payment}\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$count}Payment %1{/ts}\n        </td>\n        <td {$valueStyle}>\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        </td>\n       </tr>\n       {assign var=\"count\" value=`$count+1`}\n      {/foreach}\n     {/if}\n\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{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}</p>\n      </td>\n     </tr>\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        <p>{$honor_prefix} {$honor_first_name} {$honor_last_name}</p>\n        {if $honor_email}\n         <p>{ts}Honoree Email{/ts}: {$honor_email}</p>\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,722,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}dear %1{/ts},</p>\n    <p>{ts}thank you for your generous pledge. please print this acknowledgment for your records.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$total_pledge_amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Schedule{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}</p>\n\n       {if $frequency_day}\n        <p>{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}</p>\n       {/if}\n      </td>\n     </tr>\n\n     {if $payments}\n      {assign var=\"count\" value=\"1\"}\n      {foreach from=$payments item=payment}\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$count}Payment %1{/ts}\n        </td>\n        <td {$valueStyle}>\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        </td>\n       </tr>\n       {assign var=\"count\" value=`$count+1`}\n      {/foreach}\n     {/if}\n\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{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}</p>\n      </td>\n     </tr>\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        <p>{$honor_prefix} {$honor_first_name} {$honor_last_name}</p>\n        {if $honor_email}\n         <p>{ts}Honoree Email{/ts}: {$honor_email}</p>\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,722,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Due{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Amount Due{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_due|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\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     <p><a href=\"{$contributionUrl}\">{ts}Go to a web page where you can make your payment online{/ts}</a></p>\n    {else}\n     <p>{ts}Please mail your payment to{/ts}: {$domain.address}</p>\n    {/if}\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Paid{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_paid|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{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}</p>\n    <p>{ts}Thank your for your generous support.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,723,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Due{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Amount Due{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_due|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\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     <p><a href=\"{$contributionUrl}\">{ts}Go to a web page where you can make your payment online{/ts}</a></p>\n    {else}\n     <p>{ts}Please mail your payment to{/ts}: {$domain.address}</p>\n    {/if}\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Paid{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_paid|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{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}</p>\n    <p>{ts}Thank your for your generous support.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,723,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Submitted For{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$displayName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Date{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$currentDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Contact Summary{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$contactLink}\n      </td>\n     </tr>\n\n     <tr>\n      <th {$headerStyle}>\n       {$grouptitle}\n      </th>\n     </tr>\n\n     {foreach from=$values item=value key=valueName}\n      <tr>\n       <td {$labelStyle}>\n        {$valueName}\n       </td>\n       <td {$valueStyle}>\n        {$value}\n       </td>\n      </tr>\n     {/foreach}\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,724,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Submitted For{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$displayName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Date{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$currentDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Contact Summary{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$contactLink}\n      </td>\n     </tr>\n\n     <tr>\n      <th {$headerStyle}>\n       {$grouptitle}\n      </th>\n     </tr>\n\n     {foreach from=$values item=value key=valueName}\n      <tr>\n       <td {$labelStyle}>\n        {$valueName}\n       </td>\n       <td {$valueStyle}>\n        {$value}\n       </td>\n      </tr>\n     {/foreach}\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,724,0,1,NULL),(53,'Petition - signature added','Thank you for signing {$petition.title}','Thank you for signing {$petition.title}.\n','<p>Thank you for signing {$petition.title}.</p>\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true email=true}\n',1,725,1,0,NULL),(54,'Petition - signature added','Thank you for signing {$petition.title}','Thank you for signing {$petition.title}.\n','<p>Thank you for signing {$petition.title}.</p>\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true email=true}\n',1,725,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','<p>Thank you for signing {$petition.title}.</p>\n\n<p>In order to <b>complete your signature</b>, we must confirm your e-mail.\n<br />\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n<br /><br />\nEmail confirmation page: <a href=\"{$petition.confirmUrl} \">{$petition.confirmUrl}</a></p>\n\n<p>If you did not sign this petition, please ignore this message.</p>\n',1,726,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','<p>Thank you for signing {$petition.title}.</p>\n\n<p>In order to <b>complete your signature</b>, we must confirm your e-mail.\n<br />\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n<br /><br />\nEmail confirmation page: <a href=\"{$petition.confirmUrl} \">{$petition.confirmUrl}</a></p>\n\n<p>If you did not sign this petition, please ignore this message.</p>\n',1,726,0,1,NULL),(57,'Sample CiviMail Newsletter Template','Sample CiviMail Newsletter','','<table width=612 cellpadding=0 cellspacing=0 bgcolor=\"#ffffff\">\n  <tr>\n    <td colspan=\"2\" bgcolor=\"#ffffff\" valign=\"middle\" >\n      <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" >\n        <tr>\n          <td>\n          <a href=\"http://www.civicrm.org\"><img src=\"http://civicrm.org/sites/civicrm.org/files/top-logo_2.png\" border=0 alt=\"Replace this logo with the URL to your own\"></a>\n          </td>\n          <td>&nbsp; &nbsp;</td>\n          <td>\n          <a href=\"http://www.civicrm.org\" style=\"text-decoration: none;\"><font size=5 face=\"Arial, Verdana, sans-serif\" color=\"#8bc539\">Your Newsletter Title</font></a>\n          </td>\n        </tr>\n      </table>\n    </td>\n  </tr>\n  <tr>\n    <td valign=\"top\" width=\"70%\">\n      <!-- left column -->\n      <table cellpadding=\"10\" cellspacing=\"0\" border=\"0\">\n      <tr>\n        <td style=\"font-family: Arial, Verdana, sans-serif; font-size: 12px;\" >\n        <font face=\"Arial, Verdana, sans-serif\" size=\"2\" >\n        Greetings {contact.display_name},\n        <br /><br />\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        <br /><br />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        <br /><br />The logo you use must be uploaded to your server.  Copy and paste the URL path to the logo into the &lt;img src= tag in the HTML at the top.  Click \"Source\" or the Image button if you are using the text editor.\n        <br /><br />\n        Edit the color of the links and headers using the color button or by editing the HTML.\n        <br /><br />\n        Your newsletter message and donation appeal can go here.  Click the link button to <a href=\"#\">create links</a> - remember to use a fully qualified URL starting with http:// in all your links!\n        <br /><br />\n        To use CiviMail:\n        <ul>\n          <li><a href=\"http://book.civicrm.org/user/advanced-configuration/email-system-configuration/\">Configure your Email System</a>.</li>\n          <li>Make sure your web hosting provider allows outgoing bulk mail, and see if they have a restriction on quantity.  If they don\'t allow bulk mail, consider <a href=\"http://wiki.civicrm.org/confluence/display/CRM/Hosting+provider+information\">finding a new host</a>.</li>\n        </ul>\n        Sincerely,\n        <br /><br />\n        Your Team\n        <br /><br />\n        </font>\n        </td>\n      </tr>\n      </table>\n    </td>\n\n    <td valign=\"top\" width=\"30%\" bgcolor=\"#ffffff\" style=\"border: 1px solid #056085;\">\n      <!-- right column -->\n      <table cellpadding=10 cellspacing=0 border=0>\n      <tr>\n        <td bgcolor=\"#056085\"><font face=\"Arial, Verdana, sans-serif\" size=\"4\" color=\"#ffffff\">News and Events</font></td>\n      </tr>\n      <tr>\n        <td style=\"color: #000; font-family: Arial, Verdana, sans-serif; font-size: 12px;\" >\n        <font face=\"Arial, Verdana, sans-serif\" size=\"2\" >\n        <font color=\"#056085\"><strong>Featured Events</strong> </font><br />\n        Fundraising Dinner<br />\n        Training Meeting<br />\n        Board of Directors Annual Meeting<br />\n\n        <br /><br />\n        <font color=\"#056085\"><strong>Community Events</strong></font><br />\n        Bake Sale<br />\n        Charity Auction<br />\n        Art Exhibit<br />\n\n        <br /><br />\n        <font color=\"#056085\"><strong>Important Dates</strong></font><br />\n        Tuesday August 27<br />\n        Wednesday September 8<br />\n        Thursday September 29<br />\n        Saturday October 1<br />\n        Sunday October 20<br />\n        </font>\n        </td>\n      </tr>\n      </table>\n    </td>\n  </tr>\n\n  <tr>\n    <td colspan=\"2\">\n      <table cellpadding=\"10\" cellspacing=\"0\" border=\"0\">\n      <tr>\n        <td>\n        <font face=\"Arial, Verdana, sans-serif\" size=\"2\" >\n        <font color=\"#7dc857\"><strong>Helpful Tips</strong></font>\n        <br /><br />\n        <font color=\"#3b5187\">Tokens</font><br />\n        Click \"Insert Tokens\" to dynamically insert names, addresses, and other contact data of your recipients.\n        <br /><br />\n        <font color=\"#3b5187\">Plain Text Version</font><br />\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        <br /><br />\n        <font color=\"#3b5187\">Play by the Rules</font><br />\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. <em>{action.optOutUrl}</em> creates a link for recipients to click if they want to opt out of receiving  emails from your organization. <em>{action.unsubscribeUrl}</em> 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        <br /><br />\n        <font color=\"#3b5187\">Composing Offline</font><br />\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        <br /><br />\n        <font color=\"#3b5187\">Images</font><br />\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        </td>\n      </tr>\n      </table>\n    </td>\n  </tr>\n  <tr>\n    <td colspan=\"2\" style=\"color: #000; font-family: Arial, Verdana, sans-serif; font-size: 10px;\">\n      <font face=\"Arial, Verdana, sans-serif\" size=\"2\" >\n      <hr />\n      <a href=\"{action.unsubscribeUrl}\" title=\"click to unsubscribe\">Click here</a> to unsubscribe from this mailing list.<br /><br />\n      Our mailing address is:<br />\n      {domain.address}\n    </td>\n  </tr>\n  </table>',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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Activity Summary{/ts} - {$activityTypeName}\n      </th>\n     </tr>\n     {if $isCaseActivity}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Your Case Role(s){/ts}\n       </td>\n       <td {$valueStyle}>\n        {$contact.role}\n       </td>\n      </tr>\n      {if $manageCaseURL}\n       <tr>\n       <td colspan=\"2\" {$valueStyle}>\n     <a href=\"{$manageCaseURL}\" title=\"{ts}Manage Case{/ts}\">{ts}Manage Case{/ts}</a>\n       </td>\n       </tr>\n      {/if}\n     {/if}\n     {if $editActURL}\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n   <a href=\"{$editActURL}\" title=\"{ts}Edit this activity{/ts}\">{ts}Edit this activity{/ts}</a>\n       </td>\n     </tr>\n     {/if}\n     {if $viewActURL}\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n   <a href=\"{$viewActURL}\" title=\"{ts}View this activity{/ts}\">{ts}View this activity{/ts}</a>\n       </td>\n     </tr>\n     {/if}\n     {foreach from=$activity.fields item=field}\n      <tr>\n       <td {$labelStyle}>\n        {$field.label}{if $field.category}({$field.category}){/if}\n       </td>\n       <td {$valueStyle}>\n        {if $field.type eq \'Date\'}\n         {$field.value|crmDate:$config->dateformatDatetime}\n        {else}\n         {$field.value}\n        {/if}\n       </td>\n      </tr>\n     {/foreach}\n\n     {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n      <tr>\n       <th {$headerStyle}>\n        {$customGroupName}\n       </th>\n      </tr>\n      {foreach from=$customGroup item=field}\n       <tr>\n        <td {$labelStyle}>\n         {$field.label}\n        </td>\n        <td {$valueStyle}>\n         {if $field.type eq \'Date\'}\n          {$field.value|crmDate:$config->dateformatDatetime}\n         {else}\n          {$field.value}\n         {/if}\n        </td>\n       </tr>\n      {/foreach}\n     {/foreach}\n    </table>\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,703,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Activity Summary{/ts} - {$activityTypeName}\n      </th>\n     </tr>\n     {if $isCaseActivity}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Your Case Role(s){/ts}\n       </td>\n       <td {$valueStyle}>\n        {$contact.role}\n       </td>\n      </tr>\n      {if $manageCaseURL}\n       <tr>\n       <td colspan=\"2\" {$valueStyle}>\n     <a href=\"{$manageCaseURL}\" title=\"{ts}Manage Case{/ts}\">{ts}Manage Case{/ts}</a>\n       </td>\n       </tr>\n      {/if}\n     {/if}\n     {if $editActURL}\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n   <a href=\"{$editActURL}\" title=\"{ts}Edit this activity{/ts}\">{ts}Edit this activity{/ts}</a>\n       </td>\n     </tr>\n     {/if}\n     {if $viewActURL}\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n   <a href=\"{$viewActURL}\" title=\"{ts}View this activity{/ts}\">{ts}View this activity{/ts}</a>\n       </td>\n     </tr>\n     {/if}\n     {foreach from=$activity.fields item=field}\n      <tr>\n       <td {$labelStyle}>\n        {$field.label}{if $field.category}({$field.category}){/if}\n       </td>\n       <td {$valueStyle}>\n        {if $field.type eq \'Date\'}\n         {$field.value|crmDate:$config->dateformatDatetime}\n        {else}\n         {$field.value}\n        {/if}\n       </td>\n      </tr>\n     {/foreach}\n\n     {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n      <tr>\n       <th {$headerStyle}>\n        {$customGroupName}\n       </th>\n      </tr>\n      {foreach from=$customGroup item=field}\n       <tr>\n        <td {$labelStyle}>\n         {$field.label}\n        </td>\n        <td {$valueStyle}>\n         {if $field.type eq \'Date\'}\n          {$field.value|crmDate:$config->dateformatDatetime}\n         {else}\n          {$field.value}\n         {/if}\n        </td>\n       </tr>\n      {/foreach}\n     {/foreach}\n    </table>\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,703,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 \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}</p>\n    <p>{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Name{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Email{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfEmail}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Contact Id{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfID}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <p>{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}</p>\n   </td>\n  </tr>\n  {if $receiptMessage}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts}Copy of Contribution Receipt{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {* FIXME: the below is most probably not HTML-ised *}\n        {$receiptMessage}\n       </td>\n      </tr>\n     </table>\n    </td>\n   </tr>\n  {/if}\n </table>\n</center>\n\n</body>\n</html>\n',1,704,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 \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}</p>\n    <p>{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Name{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Email{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfEmail}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Organization Contact Id{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$onBehalfID}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <p>{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}</p>\n   </td>\n  </tr>\n  {if $receiptMessage}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts}Copy of Contribution Receipt{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {* FIXME: the below is most probably not HTML-ised *}\n        {$receiptMessage}\n       </td>\n      </tr>\n     </table>\n    </td>\n   </tr>\n  {/if}\n </table>\n</center>\n\n</body>\n</html>\n',1,704,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $formValues.receipt_text}\n     <p>{$formValues.receipt_text|htmlize}</p>\n    {else}\n     <p>{ts}Thanks for your support.{/ts}</p>\n    {/if}\n\n    <p>{ts}Please print this receipt for your records.{/ts}</p>\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Contribution Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Financial Type{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$formValues.contributionType_name}\n      </td>\n     </tr>\n\n     {if $lineItem and !$is_quick_config}\n      {foreach from=$lineItem item=value key=priceset}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n          <tr>\n           <th>{ts}Item{/ts}</th>\n           <th>{ts}Qty{/ts}</th>\n           <th>{ts}Each{/ts}</th>\n           <th>{ts}Total{/ts}</th>\n          </tr>\n          {foreach from=$value item=line}\n           <tr>\n            <td>\n            {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n            </td>\n            <td>\n             {$line.qty}\n            </td>\n            <td>\n             {$line.unit_price|crmMoney:$currency}\n            </td>\n            <td>\n             {$line.line_total|crmMoney:$currency}\n            </td>\n           </tr>\n          {/foreach}\n         </table>\n        </td>\n       </tr>\n      {/foreach}\n     {/if}\n\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$formValues.total_amount|crmMoney:$currency}\n      </td>\n     </tr>\n\n     {if $receive_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Received Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|truncate:10:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n      {if $receipt_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Receipt Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receipt_date|truncate:10:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $formValues.paidBy and !$formValues.hidden_CreditCard}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Paid By{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$formValues.paidBy}\n       </td>\n      </tr>\n      {if $formValues.check_number}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Check Number{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.check_number}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $formValues.trxn_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction ID{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$formValues.trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if $ccContribution}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Billing Name and Address{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$billingName}<br />\n        {$address|nl2br}\n       </td>\n      </tr>\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if $formValues.honor_first_name}\n      <tr>\n       <th {$headerStyle}>\n        {$formValues.honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}<br />\n        {if $formValues.honor_email}\n         {ts}Honoree Email{/ts}: {$formValues.honor_email}\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $formValues.product_name}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$formValues.product_name}\n       </td>\n      </tr>\n      {if $formValues.product_option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_option}\n        </td>\n       </tr>\n      {/if}\n      {if $formValues.product_sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_sku}\n        </td>\n       </tr>\n      {/if}\n      {if $fulfilled_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Sent{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$fulfilled_date|truncate:10:\'\'|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,705,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $formValues.receipt_text}\n     <p>{$formValues.receipt_text|htmlize}</p>\n    {else}\n     <p>{ts}Thanks for your support.{/ts}</p>\n    {/if}\n\n    <p>{ts}Please print this receipt for your records.{/ts}</p>\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Contribution Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Financial Type{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$formValues.contributionType_name}\n      </td>\n     </tr>\n\n     {if $lineItem and !$is_quick_config}\n      {foreach from=$lineItem item=value key=priceset}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n          <tr>\n           <th>{ts}Item{/ts}</th>\n           <th>{ts}Qty{/ts}</th>\n           <th>{ts}Each{/ts}</th>\n           <th>{ts}Total{/ts}</th>\n          </tr>\n          {foreach from=$value item=line}\n           <tr>\n            <td>\n            {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n            </td>\n            <td>\n             {$line.qty}\n            </td>\n            <td>\n             {$line.unit_price|crmMoney:$currency}\n            </td>\n            <td>\n             {$line.line_total|crmMoney:$currency}\n            </td>\n           </tr>\n          {/foreach}\n         </table>\n        </td>\n       </tr>\n      {/foreach}\n     {/if}\n\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$formValues.total_amount|crmMoney:$currency}\n      </td>\n     </tr>\n\n     {if $receive_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Received Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|truncate:10:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n      {if $receipt_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Receipt Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receipt_date|truncate:10:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $formValues.paidBy and !$formValues.hidden_CreditCard}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Paid By{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$formValues.paidBy}\n       </td>\n      </tr>\n      {if $formValues.check_number}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Check Number{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.check_number}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $formValues.trxn_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction ID{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$formValues.trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if $ccContribution}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Billing Name and Address{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$billingName}<br />\n        {$address|nl2br}\n       </td>\n      </tr>\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if $formValues.honor_first_name}\n      <tr>\n       <th {$headerStyle}>\n        {$formValues.honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}<br />\n        {if $formValues.honor_email}\n         {ts}Honoree Email{/ts}: {$formValues.honor_email}\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $formValues.product_name}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$formValues.product_name}\n       </td>\n      </tr>\n      {if $formValues.product_option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_option}\n        </td>\n       </tr>\n      {/if}\n      {if $formValues.product_sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.product_sku}\n        </td>\n       </tr>\n      {/if}\n      {if $fulfilled_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Sent{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$fulfilled_date|truncate:10:\'\'|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,705,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{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $receipt_text}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  </table>\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n     {if $amount}\n\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Contribution Information{/ts}\n       </th>\n      </tr>\n\n      {if $lineItem and $priceSetID and !$is_quick_config}\n\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Qty{/ts}</th>\n            <th>{ts}Each{/ts}</th>\n            <th>{ts}Total{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n             {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n             </td>\n             <td>\n              {$line.qty}\n             </td>\n             <td>\n              {$line.unit_price|crmMoney:$currency}\n             </td>\n             <td>\n              {$line.line_total|crmMoney:$currency}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney:$currency}\n        </td>\n       </tr>\n\n      {else}\n\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney:$currency} {if $amount_level} - {$amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n     {/if}\n\n\n     {if $receive_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $is_monetary and $trxn_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if $is_recur}\n      {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n       <tr>\n        <td  colspan=\"2\" {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl}This is a recurring contribution. You can cancel future contributions by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n        {if $updateSubscriptionBillingUrl}\n         <tr>\n         </tr>\n         <td colspan=\"2\" {$labelStyle}>\n          {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n         </td>\n        {/if}\n       <tr>\n       </tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$honor_prefix} {$honor_first_name} {$honor_last_name}\n       </td>\n      </tr>\n      {if $honor_email}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Honoree Email{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$honor_email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $pcpBlock}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $onBehalfProfile}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if $isShare}\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\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        </td>\n      </tr>\n     {/if}\n\n     {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n      {if $is_pay_later}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Registered Email{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$email}\n        </td>\n       </tr>\n      {elseif $amount GT 0}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if $selectPremium}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $contact_email OR $contact_phone}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if $contact_email}\n          <p>{$contact_email}</p>\n         {/if}\n         {if $contact_phone}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if $is_deductible AND $price}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if $customPre}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customPost}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n</center>\n\n</body>\n</html>\n',1,706,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{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $receipt_text}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  </table>\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n     {if $amount}\n\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Contribution Information{/ts}\n       </th>\n      </tr>\n\n      {if $lineItem and $priceSetID and !$is_quick_config}\n\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Qty{/ts}</th>\n            <th>{ts}Each{/ts}</th>\n            <th>{ts}Total{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n             {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n             </td>\n             <td>\n              {$line.qty}\n             </td>\n             <td>\n              {$line.unit_price|crmMoney:$currency}\n             </td>\n             <td>\n              {$line.line_total|crmMoney:$currency}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney:$currency}\n        </td>\n       </tr>\n\n      {else}\n\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney:$currency} {if $amount_level} - {$amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n     {/if}\n\n\n     {if $receive_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $is_monetary and $trxn_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if $is_recur}\n      {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n       <tr>\n        <td  colspan=\"2\" {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl}This is a recurring contribution. You can cancel future contributions by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n        {if $updateSubscriptionBillingUrl}\n         <tr>\n         </tr>\n         <td colspan=\"2\" {$labelStyle}>\n          {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n         </td>\n        {/if}\n       <tr>\n       </tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$honor_prefix} {$honor_first_name} {$honor_last_name}\n       </td>\n      </tr>\n      {if $honor_email}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Honoree Email{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$honor_email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $pcpBlock}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $onBehalfProfile}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if $isShare}\n      <tr>\n        <td colspan=\"2\" {$valueStyle}>\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        </td>\n      </tr>\n     {/if}\n\n     {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n      {if $is_pay_later}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Registered Email{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$email}\n        </td>\n       </tr>\n      {elseif $amount GT 0}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if $selectPremium}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $contact_email OR $contact_phone}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if $contact_email}\n          <p>{$contact_email}</p>\n         {/if}\n         {if $contact_phone}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if $is_deductible AND $price}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if $customPre}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customPost}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n</center>\n\n</body>\n</html>\n',1,706,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 <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/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 <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$displayName}Dear %1{/ts},</p>\n   </td>\n  </tr>\n\n  <tr>\n   <td>&nbsp;</td>\n  </tr>\n\n    {if $recur_txnType eq \'START\'}\n     {if $auto_renew_membership}\n       <tr>\n        <td>\n         <p>{ts}Thanks for your auto renew membership sign-up.{/ts}</p>\n         <p>{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}</p>\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Thanks for your recurring contribution sign-up.{/ts}</p>\n        <p>{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}</p>\n        <p>{ts}Start Date{/ts}: {$recur_start_date|crmDate}</p>\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n   {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n     {/if}\n\n    {elseif $recur_txnType eq \'END\'}\n\n     {if $auto_renew_membership}\n      <tr>\n       <td>\n        <p>{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}</p>\n       </td>\n      </tr>\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Your recurring contribution term has ended.{/ts}</p>\n        <p>{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}</p>\n       </td>\n      </tr>\n      <tr>\n       <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Start Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_start_date|crmDate}\n       </td>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}End Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_end_date|crmDate}\n       </td>\n      </tr>\n     </table>\n       </td>\n      </tr>\n\n     {/if}\n    {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,707,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 <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/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 <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$displayName}Dear %1{/ts},</p>\n   </td>\n  </tr>\n\n  <tr>\n   <td>&nbsp;</td>\n  </tr>\n\n    {if $recur_txnType eq \'START\'}\n     {if $auto_renew_membership}\n       <tr>\n        <td>\n         <p>{ts}Thanks for your auto renew membership sign-up.{/ts}</p>\n         <p>{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}</p>\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Thanks for your recurring contribution sign-up.{/ts}</p>\n        <p>{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}</p>\n        <p>{ts}Start Date{/ts}: {$recur_start_date|crmDate}</p>\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n   {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n     {/if}\n\n    {elseif $recur_txnType eq \'END\'}\n\n     {if $auto_renew_membership}\n      <tr>\n       <td>\n        <p>{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}</p>\n       </td>\n      </tr>\n     {else}\n      <tr>\n       <td>\n        <p>{ts}Your recurring contribution term has ended.{/ts}</p>\n        <p>{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}</p>\n       </td>\n      </tr>\n      <tr>\n       <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Start Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_start_date|crmDate}\n       </td>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}End Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$recur_end_date|crmDate}\n       </td>\n      </tr>\n     </table>\n       </td>\n      </tr>\n\n     {/if}\n    {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,707,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,708,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,708,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}','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n<tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n            {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n       </tr>\n  </table>\n</center>\n\n</body>\n</html>',1,709,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}','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n<tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n            {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n       </tr>\n  </table>\n</center>\n\n</body>\n</html>',1,709,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}','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/ts}</p>\n    <p>{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}</p>\n\n    <p>{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,710,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}','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2(s) %3{/ts}</p>\n    <p>{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}</p>\n\n    <p>{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,710,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/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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL     }{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n\n<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Personal Campaign Page Notification{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Action{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {if $mode EQ \'Update\'}\n        {ts}Updated personal campaign page{/ts}\n       {else}\n        {ts}New personal campaign page{/ts}\n       {/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Personal Campaign Page Title{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpTitle}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Current Status{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpStatus}\n      </td>\n     </tr>\n\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$pcpURL}\">{ts}View Page{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Supporter{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$supporterUrl}\">{$supporterName}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Linked to Contribution Page{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$contribPageUrl}\">{$contribPageTitle}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$managePCPUrl}\">{ts}Manage Personal Campaign Pages{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n\n    </table>\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,711,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/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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL     }{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n\n<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Personal Campaign Page Notification{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Action{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {if $mode EQ \'Update\'}\n        {ts}Updated personal campaign page{/ts}\n       {else}\n        {ts}New personal campaign page{/ts}\n       {/if}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Personal Campaign Page Title{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpTitle}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Current Status{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$pcpStatus}\n      </td>\n     </tr>\n\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$pcpURL}\">{ts}View Page{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Supporter{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$supporterUrl}\">{$supporterName}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Linked to Contribution Page{/ts}\n      </td>\n      <td {$valueStyle}>\n       <a href=\"{$contribPageUrl}\">{$contribPageTitle}</a>\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       <a href=\"{$managePCPUrl}\">{ts}Manage Personal Campaign Pages{/ts}</a>\n      </td>\n      <td></td>\n     </tr>\n\n    </table>\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,711,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\n\n<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    <h1>{ts}Your Personal Campaign Page{/ts}</h1>\n\n    {if $pcpStatus eq \'Approved\'}\n\n     <p>{ts}Your personal campaign page has been approved and is now live.{/ts}</p>\n     <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n     <ol>\n      <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n      <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n     </ol>\n     <p>{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}</p>\n\n     {if $isTellFriendEnabled}\n      <p><a href=\"{$pcpTellFriendURL}\">{ts}After logging in, you can use this form to promote your fundraising page{/ts}</a></p>\n     {/if}\n\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {elseif $pcpStatus eq \'Not Approved\'}\n\n     <p>{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}</p>\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {/if}\n\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,712,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\n\n<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    <h1>{ts}Your Personal Campaign Page{/ts}</h1>\n\n    {if $pcpStatus eq \'Approved\'}\n\n     <p>{ts}Your personal campaign page has been approved and is now live.{/ts}</p>\n     <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n     <ol>\n      <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n      <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n     </ol>\n     <p>{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}</p>\n\n     {if $isTellFriendEnabled}\n      <p><a href=\"{$pcpTellFriendURL}\">{ts}After logging in, you can use this form to promote your fundraising page{/ts}</a></p>\n     {/if}\n\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {elseif $pcpStatus eq \'Not Approved\'}\n\n     <p>{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}</p>\n     {if $pcpNotifyEmailAddress}\n      <p>{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}</p>\n     {/if}\n\n    {/if}\n\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,712,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts}Dear supporter{/ts},</p>\n    <p>{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}</p>\n   </td>\n  </tr>\n\n  {if $pcpStatus eq \'Approved\'}\n\n    <tr>\n     <td>\n      <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n       <tr>\n        <th {$headerStyle}>\n         {ts}Promoting Your Page{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {if $isTellFriendEnabled}\n          <p>{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:</p>\n          <ol>\n           <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n           <li><a href=\"{$pcpTellFriendURL}\">{ts}Click this link and follow the prompts{/ts}</a></li>\n          </ol>\n         {else}\n          <p>{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}</p>\n         {/if}\n        </td>\n       </tr>\n       <tr>\n        <th {$headerStyle}>\n         {ts}Managing Your Page{/ts}\n        </th>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n         <ol>\n          <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n          <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n         </ol>\n         <p>{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}</p>\n        </td>\n       </tr>\n       </tr>\n      </table>\n     </td>\n    </tr>\n\n   {elseif $pcpStatus EQ \'Waiting Review\'}\n\n    <tr>\n     <td>\n      <p>{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}</p>\n      <p>{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}</p>\n      <p>{ts}You can still preview your page prior to approval{/ts}:</p>\n      <ol>\n       <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n       <li><a href=\"{$pcpInfoURL}\">{ts}Click this link{/ts}</a></li>\n      </ol>\n     </td>\n    </tr>\n\n   {/if}\n\n   {if $pcpNotifyEmailAddress}\n    <tr>\n     <td>\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     </td>\n    </tr>\n   {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,713,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts}Dear supporter{/ts},</p>\n    <p>{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}</p>\n   </td>\n  </tr>\n\n  {if $pcpStatus eq \'Approved\'}\n\n    <tr>\n     <td>\n      <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n       <tr>\n        <th {$headerStyle}>\n         {ts}Promoting Your Page{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {if $isTellFriendEnabled}\n          <p>{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:</p>\n          <ol>\n           <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n           <li><a href=\"{$pcpTellFriendURL}\">{ts}Click this link and follow the prompts{/ts}</a></li>\n          </ol>\n         {else}\n          <p>{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}</p>\n         {/if}\n        </td>\n       </tr>\n       <tr>\n        <th {$headerStyle}>\n         {ts}Managing Your Page{/ts}\n        </th>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}Whenever you want to preview, update or promote your page{/ts}:</p>\n         <ol>\n          <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n          <li><a href=\"{$pcpInfoURL}\">{ts}Go to your page{/ts}</a></li>\n         </ol>\n         <p>{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}</p>\n        </td>\n       </tr>\n       </tr>\n      </table>\n     </td>\n    </tr>\n\n   {elseif $pcpStatus EQ \'Waiting Review\'}\n\n    <tr>\n     <td>\n      <p>{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}</p>\n      <p>{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}</p>\n      <p>{ts}You can still preview your page prior to approval{/ts}:</p>\n      <ol>\n       <li><a href=\"{$loginUrl}\">{ts}Login to your account{/ts}</a></li>\n       <li><a href=\"{$pcpInfoURL}\">{ts}Click this link{/ts}</a></li>\n      </ol>\n     </td>\n    </tr>\n\n   {/if}\n\n   {if $pcpNotifyEmailAddress}\n    <tr>\n     <td>\n      <p>{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}</p>\n     </td>\n    </tr>\n   {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,713,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} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n     <p>{$event.confirm_email_text|htmlize}</p>\n    {/if}\n\n    {if $isOnWaitlist}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if $isPrimary}\n       <p>{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif $isRequireApproval}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if $isPrimary}\n      <p>{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}</p>\n     {/if}\n    {elseif $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n\n     {if $event.participant_role neq \'Attendee\' and $defaultRole}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $location.address.1.name}\n         {$location.address.1.name}<br />\n        {/if}\n        {if $location.address.1.street_address}\n         {$location.address.1.street_address}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_1}\n         {$location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_2}\n         {$location.address.1.supplemental_address_2}<br />\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}<br />\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $location.phone.1.phone || $location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n     {if $email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$email}\n       </td>\n      </tr>\n     {/if}\n\n\n     {if $event.is_monetary}\n\n      <tr>\n       <th {$headerStyle}>\n        {$event.fee_label}\n       </th>\n      </tr>\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           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             <th>{ts}Total{/ts}</th>\n       {if $pricesetFieldsCount }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n        {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.qty}\n              </td>\n              <td>\n               {$line.unit_price|crmMoney}\n              </td>\n              <td>\n               {$line.line_total|crmMoney}\n              </td>\n        {if  $pricesetFieldsCount }\n        <td>\n    {$line.participant_count}\n              </td>\n        {/if}\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n      {/if}\n\n      {if $amount && !$lineItem}\n       {foreach from=$amount item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n      {if $isPrimary}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n       {if $pricesetFieldsCount }\n     <tr>\n       <td {$labelStyle}>\n   {ts}Total Participants{/ts}</td>\n       <td {$valueStyle}>\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       </td>\n     </tr>\n     {/if}\n       {if $is_pay_later}\n        <tr>\n         <td colspan=\"2\" {$labelStyle}>\n          {$pay_later_receipt}\n         </td>\n        </tr>\n       {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $receive_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributionTypeName}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$contributionTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if $trxn_id}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if $paidBy}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if $checkNumber}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n      {/if}\n\n     {/if} {* End of conditional section for Paid events *}\n\n     {if $customPre}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=value key=customName}\n       {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customPost}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=value key=customName}\n       {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customProfile}\n      {foreach from=$customProfile item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n        </th>\n       </tr>\n       {foreach from=$value item=val key=field}\n        {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n         <tr>\n          <td colspan=\"2\" {$labelStyle}>\n           {if $field eq \'additionalCustomPre\'}\n            {$additionalCustomPre_grouptitle}\n           {else}\n            {$additionalCustomPost_grouptitle}\n           {/if}\n          </td>\n         </tr>\n         {foreach from=$val item=v key=f}\n          <tr>\n           <td {$labelStyle}>\n            {$f}\n           </td>\n           <td {$valueStyle}>\n            {$v}\n           </td>\n          </tr>\n         {/foreach}\n        {/if}\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,714,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} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n     <p>{$event.confirm_email_text|htmlize}</p>\n    {/if}\n\n    {if $isOnWaitlist}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if $isPrimary}\n       <p>{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif $isRequireApproval}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if $isPrimary}\n      <p>{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}</p>\n     {/if}\n    {elseif $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n\n     {if $event.participant_role neq \'Attendee\' and $defaultRole}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $location.address.1.name}\n         {$location.address.1.name}<br />\n        {/if}\n        {if $location.address.1.street_address}\n         {$location.address.1.street_address}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_1}\n         {$location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_2}\n         {$location.address.1.supplemental_address_2}<br />\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}<br />\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $location.phone.1.phone || $location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n     {if $email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$email}\n       </td>\n      </tr>\n     {/if}\n\n\n     {if $event.is_monetary}\n\n      <tr>\n       <th {$headerStyle}>\n        {$event.fee_label}\n       </th>\n      </tr>\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           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             <th>{ts}Total{/ts}</th>\n       {if $pricesetFieldsCount }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n        {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.qty}\n              </td>\n              <td>\n               {$line.unit_price|crmMoney}\n              </td>\n              <td>\n               {$line.line_total|crmMoney}\n              </td>\n        {if  $pricesetFieldsCount }\n        <td>\n    {$line.participant_count}\n              </td>\n        {/if}\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n      {/if}\n\n      {if $amount && !$lineItem}\n       {foreach from=$amount item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n      {if $isPrimary}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n       {if $pricesetFieldsCount }\n     <tr>\n       <td {$labelStyle}>\n   {ts}Total Participants{/ts}</td>\n       <td {$valueStyle}>\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       </td>\n     </tr>\n     {/if}\n       {if $is_pay_later}\n        <tr>\n         <td colspan=\"2\" {$labelStyle}>\n          {$pay_later_receipt}\n         </td>\n        </tr>\n       {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $receive_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributionTypeName}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$contributionTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if $trxn_id}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if $paidBy}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if $checkNumber}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n      {/if}\n\n     {/if} {* End of conditional section for Paid events *}\n\n     {if $customPre}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=value key=customName}\n       {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customPost}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=value key=customName}\n       {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$value}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customProfile}\n      {foreach from=$customProfile item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n        </th>\n       </tr>\n       {foreach from=$value item=val key=field}\n        {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n         <tr>\n          <td colspan=\"2\" {$labelStyle}>\n           {if $field eq \'additionalCustomPre\'}\n            {$additionalCustomPre_grouptitle}\n           {else}\n            {$additionalCustomPost_grouptitle}\n           {/if}\n          </td>\n         </tr>\n         {foreach from=$val item=v key=f}\n          <tr>\n           <td {$labelStyle}>\n            {$f}\n           </td>\n           <td {$valueStyle}>\n            {$v}\n           </td>\n          </tr>\n         {/foreach}\n        {/if}\n       {/foreach}\n      {/foreach}\n     {/if}\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,714,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}.\n\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location}    {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n  <p>Dear {contact.display_name},</p>\n\n    {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n     <p>{$event.confirm_email_text|htmlize}</p>\n\n    {else}\n  <p>Thank you for your participation.  This letter is a confirmation that your registration has been received and your status has been updated to <strong>{if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}</strong>.</p>\n\n    {/if}\n\n    <p>\n    {if $isOnWaitlist}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if $isPrimary}\n       <p>{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif $isRequireApproval}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if $isPrimary}\n      <p>{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}</p>\n     {/if}\n    {elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n\n\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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          <em>{$group_by_day|date_format:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n\n     {if $event.participant_role neq \'Attendee\' and $defaultRole}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $location.address.1.name}\n         {$location.address.1.name}<br />\n        {/if}\n        {if $location.address.1.street_address}\n         {$location.address.1.street_address}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_1}\n         {$location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_2}\n         {$location.address.1.supplemental_address_2}<br />\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}<br />\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $location.phone.1.phone || $location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n    {if $event.is_share}\n        <tr>\n            <td colspan=\"2\" {$valueStyle}>\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            </td>\n        </tr>\n    {/if}\n    {if $payer.name}\n     <tr>\n       <th {$headerStyle}>\n         {ts}You were registered by:{/ts}\n       </th>\n     </tr>\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$payer.name}\n       </td>\n     </tr>\n    {/if}\n    {if $event.is_monetary}\n\n      <tr>\n       <th {$headerStyle}>\n        {$event.fee_label}\n       </th>\n      </tr>\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           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             <th>{ts}Total{/ts}</th>\n       {if  $pricesetFieldsCount }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n              {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.qty}\n              </td>\n              <td>\n               {$line.unit_price|crmMoney:$currency}\n              </td>\n              <td>\n               {$line.line_total|crmMoney:$currency}\n              </td>\n        {if $pricesetFieldsCount }<td>{$line.participant_count}</td> {/if}\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n      {/if}\n\n      {if $amounts && !$lineItem}\n       {foreach from=$amounts item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney:$currency} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n\n      {if $isPrimary}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n       {if $pricesetFieldsCount }\n     <tr>\n       <td {$labelStyle}>\n      {ts}Total Participants{/ts}</td>\n      <td {$valueStyle}>\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     </td> </tr>\n      {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $receive_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributionTypeName}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$contributionTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if $trxn_id}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if $paidBy}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if $checkNumber}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\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   <tr> <th {$headerStyle}>{$customPre_grouptitle.$i}</th></tr>\n   {foreach from=$customPr item=customValue key=customName}\n   {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n   {/if}\n   {/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n   <tr> <th {$headerStyle}>{$customPost_grouptitle.$j}</th></tr>\n   {foreach from=$customPos item=customValue key=customName}\n   {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customProfile}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n     <tr><th {$headerStyle}>{ts 1=$participantID+2}Participant %1{/ts} </th></tr>\n     {foreach from=$eachParticipant item=eachProfile key=pid}\n     <tr><th {$headerStyle}>{$customProfile.title.$pid}</th></tr>\n     {foreach from=$eachProfile item=val key=field}\n     <tr>{foreach from=$val item=v key=f}\n         <td {$labelStyle}>{$field}</td>\n         <td {$valueStyle}>{$v}</td>\n         {/foreach}\n     </tr>\n     {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n    {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,715,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}.\n\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location}    {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n  <p>Dear {contact.display_name},</p>\n\n    {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n     <p>{$event.confirm_email_text|htmlize}</p>\n\n    {else}\n  <p>Thank you for your participation.  This letter is a confirmation that your registration has been received and your status has been updated to <strong>{if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}</strong>.</p>\n\n    {/if}\n\n    <p>\n    {if $isOnWaitlist}\n     <p>{ts}You have been added to the WAIT LIST for this event.{/ts}</p>\n     {if $isPrimary}\n       <p>{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}</p>\n     {/if}\n    {elseif $isRequireApproval}\n     <p>{ts}Your registration has been submitted.{/ts}</p>\n     {if $isPrimary}\n      <p>{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}</p>\n     {/if}\n    {elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n\n\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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          <em>{$group_by_day|date_format:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n\n     {if $event.participant_role neq \'Attendee\' and $defaultRole}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Participant Role{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$event.participant_role}\n       </td>\n      </tr>\n     {/if}\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $location.address.1.name}\n         {$location.address.1.name}<br />\n        {/if}\n        {if $location.address.1.street_address}\n         {$location.address.1.street_address}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_1}\n         {$location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $location.address.1.supplemental_address_2}\n         {$location.address.1.supplemental_address_2}<br />\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}<br />\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $location.phone.1.phone || $location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}\n           {$phone.phone_type_display}\n          {else}\n           {ts}Phone{/ts}\n          {/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone} {if $phone.phone_ext}&nbsp;{ts}ext.{/ts} {$phone.phone_ext}{/if}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n    {if $event.is_share}\n        <tr>\n            <td colspan=\"2\" {$valueStyle}>\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            </td>\n        </tr>\n    {/if}\n    {if $payer.name}\n     <tr>\n       <th {$headerStyle}>\n         {ts}You were registered by:{/ts}\n       </th>\n     </tr>\n     <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$payer.name}\n       </td>\n     </tr>\n    {/if}\n    {if $event.is_monetary}\n\n      <tr>\n       <th {$headerStyle}>\n        {$event.fee_label}\n       </th>\n      </tr>\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           <tr>\n            <td colspan=\"2\" {$labelStyle}>\n             {ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n            </td>\n           </tr>\n          {/if}\n         {/if}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Qty{/ts}</th>\n             <th>{ts}Each{/ts}</th>\n             <th>{ts}Total{/ts}</th>\n       {if  $pricesetFieldsCount }<th>{ts}Total Participants{/ts}</th>{/if}\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n              {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.qty}\n              </td>\n              <td>\n               {$line.unit_price|crmMoney:$currency}\n              </td>\n              <td>\n               {$line.line_total|crmMoney:$currency}\n              </td>\n        {if $pricesetFieldsCount }<td>{$line.participant_count}</td> {/if}\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n        {/if}\n       {/foreach}\n      {/if}\n\n      {if $amounts && !$lineItem}\n       {foreach from=$amounts item=amnt key=level}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$amnt.amount|crmMoney:$currency} {$amnt.label}\n         </td>\n        </tr>\n       {/foreach}\n      {/if}\n\n      {if $isPrimary}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n        </td>\n       </tr>\n       {if $pricesetFieldsCount }\n     <tr>\n       <td {$labelStyle}>\n      {ts}Total Participants{/ts}</td>\n      <td {$valueStyle}>\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     </td> </tr>\n      {/if}\n\n       {if $register_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Registration Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$register_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $receive_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|crmDate}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributionTypeName}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$contributionTypeName}\n         </td>\n        </tr>\n       {/if}\n\n       {if $trxn_id}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Transaction #{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$trxn_id}\n         </td>\n        </tr>\n       {/if}\n\n       {if $paidBy}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n         {$paidBy}\n         </td>\n        </tr>\n       {/if}\n\n       {if $checkNumber}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Check Number{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$checkNumber}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Billing Name and Address{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$billingName}<br />\n          {$address|nl2br}\n         </td>\n        </tr>\n       {/if}\n\n       {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n        <tr>\n         <th {$headerStyle}>\n          {ts}Credit Card Information{/ts}\n         </th>\n        </tr>\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          {$credit_card_type}<br />\n          {$credit_card_number}<br />\n          {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n         </td>\n        </tr>\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   <tr> <th {$headerStyle}>{$customPre_grouptitle.$i}</th></tr>\n   {foreach from=$customPr item=customValue key=customName}\n   {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n   {/if}\n   {/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n   <tr> <th {$headerStyle}>{$customPost_grouptitle.$j}</th></tr>\n   {foreach from=$customPos item=customValue key=customName}\n   {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n     <tr>\n         <td {$labelStyle}>{$customName}</td>\n         <td {$valueStyle}>{$customValue}</td>\n     </tr>\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customProfile}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n     <tr><th {$headerStyle}>{ts 1=$participantID+2}Participant %1{/ts} </th></tr>\n     {foreach from=$eachParticipant item=eachProfile key=pid}\n     <tr><th {$headerStyle}>{$customProfile.title.$pid}</th></tr>\n     {foreach from=$eachProfile item=val key=field}\n     <tr>{foreach from=$val item=v key=f}\n         <td {$labelStyle}>{$field}</td>\n         <td {$valueStyle}>{$v}</td>\n         {/foreach}\n     </tr>\n     {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n    {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,715,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n  <head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n    <title></title>\n  </head>\n  <body>\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    <p>Dear {contact.display_name},</p>\n    {if $is_pay_later}\n      <p>\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      </p>\n    {else}\n      <p>\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      </p>\n    {/if}\n\n    {if $is_pay_later}\n      <p>{$pay_later_receipt}</p>\n    {/if}\n\n    <p>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\"}:</p>\n\n\n{if $billing_name}\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Billing Name and Address{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$billing_name}<br />\n      {$billing_street_address}<br />\n      {$billing_city}, {$billing_state} {$billing_postal_code}<br/>\n      <br/>\n      {$email}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if $credit_card_type}\n  <p>&nbsp;</p>\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Credit Card Information{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$credit_card_type}<br />\n      {$credit_card_number}<br />\n      {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if $source}\n    <p>&nbsp;</p>\n    {$source}\n{/if}\n    <p>&nbsp;</p>\n    <table width=\"600\">\n      <thead>\n    <tr>\n{if $line_items}\n      <th style=\"text-align: left;\">\n      Event\n      </th>\n      <th style=\"text-align: left;\">\n      Participants\n      </th>\n{/if}\n      <th style=\"text-align: left;\">\n      Price\n      </th>\n      <th style=\"text-align: left;\">\n      Total\n      </th>\n    </tr>\n    </thead>\n      <tbody>\n  {foreach from=$line_items item=line_item}\n  <tr>\n    <td style=\"width: 220px\">\n      {$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})<br />\n      {if $line_item.event->is_show_location}\n        {if $line_item.location.address.1.name}\n    {$line_item.location.address.1.name}<br />\n        {/if}\n        {if $line_item.location.address.1.street_address}\n    {$line_item.location.address.1.street_address}<br />\n        {/if}\n        {if $line_item.location.address.1.supplemental_address_1}\n    {$line_item.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $line_item.location.address.1.supplemental_address_2}\n    {$line_item.location.address.1.supplemental_address_2}<br />\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*}<br /><br />\n      {$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n    </td>\n    <td style=\"width: 180px\">\n    {$line_item.num_participants}\n      {if $line_item.num_participants > 0}\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n      {if $line_item.num_waiting_participants > 0}\n      Waitlisted:<br/>\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.waiting_participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n    </td>\n    <td style=\"width: 100px\">\n      {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n    <td style=\"width: 100px\">\n      &nbsp;{$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {/foreach}\n      </tbody>\n      <tfoot>\n  {if $discounts}\n  <tr>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      Subtotal:\n    </td>\n    <td>\n      &nbsp;{$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {foreach from=$discounts key=myId item=i}\n  <tr>\n    <td>\n      {$i.title}\n    </td>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      -{$i.amount}\n    </td>\n  </tr>\n  {/foreach}\n  {/if}\n  <tr>\n{if $line_items}\n    <td>\n    </td>\n    <td>\n    </td>\n{/if}\n    <td>\n      <strong>Total:</strong>\n    </td>\n    <td>\n      <strong>&nbsp;{$total|crmMoney:$currency|string_format:\"%10s\"}</strong>\n    </td>\n  </tr>\n      </tfoot>\n    </table>\n\n    If you have questions about the status of your registration or purchase please feel free to contact us.\n  </body>\n</html>\n',1,716,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n  <head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n    <title></title>\n  </head>\n  <body>\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    <p>Dear {contact.display_name},</p>\n    {if $is_pay_later}\n      <p>\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      </p>\n    {else}\n      <p>\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      </p>\n    {/if}\n\n    {if $is_pay_later}\n      <p>{$pay_later_receipt}</p>\n    {/if}\n\n    <p>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\"}:</p>\n\n\n{if $billing_name}\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Billing Name and Address{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$billing_name}<br />\n      {$billing_street_address}<br />\n      {$billing_city}, {$billing_state} {$billing_postal_code}<br/>\n      <br/>\n      {$email}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if $credit_card_type}\n  <p>&nbsp;</p>\n  <table class=\"billing-info\">\n      <tr>\n    <th style=\"text-align: left;\">\n      {ts}Credit Card Information{/ts}\n    </th>\n      </tr>\n      <tr>\n    <td>\n      {$credit_card_type}<br />\n      {$credit_card_number}<br />\n      {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n    </td>\n    </tr>\n    </table>\n{/if}\n{if $source}\n    <p>&nbsp;</p>\n    {$source}\n{/if}\n    <p>&nbsp;</p>\n    <table width=\"600\">\n      <thead>\n    <tr>\n{if $line_items}\n      <th style=\"text-align: left;\">\n      Event\n      </th>\n      <th style=\"text-align: left;\">\n      Participants\n      </th>\n{/if}\n      <th style=\"text-align: left;\">\n      Price\n      </th>\n      <th style=\"text-align: left;\">\n      Total\n      </th>\n    </tr>\n    </thead>\n      <tbody>\n  {foreach from=$line_items item=line_item}\n  <tr>\n    <td style=\"width: 220px\">\n      {$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})<br />\n      {if $line_item.event->is_show_location}\n        {if $line_item.location.address.1.name}\n    {$line_item.location.address.1.name}<br />\n        {/if}\n        {if $line_item.location.address.1.street_address}\n    {$line_item.location.address.1.street_address}<br />\n        {/if}\n        {if $line_item.location.address.1.supplemental_address_1}\n    {$line_item.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $line_item.location.address.1.supplemental_address_2}\n    {$line_item.location.address.1.supplemental_address_2}<br />\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*}<br /><br />\n      {$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n    </td>\n    <td style=\"width: 180px\">\n    {$line_item.num_participants}\n      {if $line_item.num_participants > 0}\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n      {if $line_item.num_waiting_participants > 0}\n      Waitlisted:<br/>\n      <div class=\"participants\" style=\"padding-left: 10px;\">\n        {foreach from=$line_item.waiting_participants item=participant}\n        {$participant.display_name}<br />\n        {/foreach}\n      </div>\n      {/if}\n    </td>\n    <td style=\"width: 100px\">\n      {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n    <td style=\"width: 100px\">\n      &nbsp;{$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {/foreach}\n      </tbody>\n      <tfoot>\n  {if $discounts}\n  <tr>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      Subtotal:\n    </td>\n    <td>\n      &nbsp;{$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n    </td>\n  </tr>\n  {foreach from=$discounts key=myId item=i}\n  <tr>\n    <td>\n      {$i.title}\n    </td>\n    <td>\n    </td>\n    <td>\n    </td>\n    <td>\n      -{$i.amount}\n    </td>\n  </tr>\n  {/foreach}\n  {/if}\n  <tr>\n{if $line_items}\n    <td>\n    </td>\n    <td>\n    </td>\n{/if}\n    <td>\n      <strong>Total:</strong>\n    </td>\n    <td>\n      <strong>&nbsp;{$total|crmMoney:$currency|string_format:\"%10s\"}</strong>\n    </td>\n  </tr>\n      </tfoot>\n    </table>\n\n    If you have questions about the status of your registration or purchase please feel free to contact us.\n  </body>\n</html>\n',1,716,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts}Your Event Registration has been cancelled.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $event.location.address.1.name}\n         {$event.location.address.1.name}<br />\n        {/if}\n        {if $event.location.address.1.street_address}\n         {$event.location.address.1.street_address}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_1}\n         {$event.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_2}\n         {$event.location.address.1.supplemental_address_2}<br />\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       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\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     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n\n     {if $contact.email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,717,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts}Your Event Registration has been cancelled.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $event.location.address.1.name}\n         {$event.location.address.1.name}<br />\n        {/if}\n        {if $event.location.address.1.street_address}\n         {$event.location.address.1.street_address}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_1}\n         {$event.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_2}\n         {$event.location.address.1.supplemental_address_2}<br />\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       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\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     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n\n     {if $contact.email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,717,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n   </td>\n  </tr>\n  {if !$isAdditional and $participant.id}\n   <tr>\n    <th {$headerStyle}>\n     {ts}Confirm Your Registration{/ts}\n    </th>\n   </tr>\n   <tr>\n    <td colspan=\"2\" {$valueStyle}>\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     <a href=\"{$confirmUrl}\">Go to a web page where you can confirm your registration online</a>\n    </td>\n   </tr>\n  {/if}\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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          <em>{$group_by_day|date_format:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $event.location.address.1.name}\n         {$event.location.address.1.name}<br />\n        {/if}\n        {if $event.location.address.1.street_address}\n         {$event.location.address.1.street_address}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_1}\n         {$event.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_2}\n         {$event.location.address.1.supplemental_address_2}<br />\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       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\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     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n\n     {if $contact.email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,718,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n   </td>\n  </tr>\n  {if !$isAdditional and $participant.id}\n   <tr>\n    <th {$headerStyle}>\n     {ts}Confirm Your Registration{/ts}\n    </th>\n   </tr>\n   <tr>\n    <td colspan=\"2\" {$valueStyle}>\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     <a href=\"{$confirmUrl}\">Go to a web page where you can confirm your registration online</a>\n    </td>\n   </tr>\n  {/if}\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n     {if $conference_sessions}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n  {ts}Your schedule:{/ts}\n       </td>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\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          <em>{$group_by_day|date_format:\"%m/%d/%Y\"}</em><br />\n   {/if}\n   {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}<br />\n   {if $session.location}&nbsp;&nbsp;&nbsp;&nbsp;{$session.location}<br />{/if}\n  {/foreach}\n       </td>\n      </tr>\n     {/if}\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $event.location.address.1.name}\n         {$event.location.address.1.name}<br />\n        {/if}\n        {if $event.location.address.1.street_address}\n         {$event.location.address.1.street_address}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_1}\n         {$event.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_2}\n         {$event.location.address.1.supplemental_address_2}<br />\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       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\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     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n\n     {if $contact.email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,718,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $event.location.address.1.name}\n         {$event.location.address.1.name}<br />\n        {/if}\n        {if $event.location.address.1.street_address}\n         {$event.location.address.1.street_address}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_1}\n         {$event.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_2}\n         {$event.location.address.1.supplemental_address_2}<br />\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       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\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     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n\n     {if $contact.email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,719,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}</p>\n    <p>{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}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Event Information and Location{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       {$event.event_title}<br />\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      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Participant Role{/ts}:\n      </td>\n      <td {$valueStyle}>\n       {$participant.role}\n      </td>\n     </tr>\n\n     {if $isShowLocation}\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {if $event.location.address.1.name}\n         {$event.location.address.1.name}<br />\n        {/if}\n        {if $event.location.address.1.street_address}\n         {$event.location.address.1.street_address}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_1}\n         {$event.location.address.1.supplemental_address_1}<br />\n        {/if}\n        {if $event.location.address.1.supplemental_address_2}\n         {$event.location.address.1.supplemental_address_2}<br />\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       </td>\n      </tr>\n     {/if}\n\n     {if $event.location.phone.1.phone || $event.location.email.1.email}\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {ts}Event Contacts:{/ts}\n       </td>\n      </tr>\n      {foreach from=$event.location.phone item=phone}\n       {if $phone.phone}\n        <tr>\n         <td {$labelStyle}>\n          {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n         </td>\n         <td {$valueStyle}>\n          {$phone.phone}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n      {foreach from=$event.location.email item=eventEmail}\n       {if $eventEmail.email}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Email{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$eventEmail.email}\n         </td>\n        </tr>\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     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <a href=\"{$icalFeed}\">{ts}Download iCalendar File{/ts}</a>\n      </td>\n     </tr>\n\n     {if $contact.email}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Registered Email{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$contact.email}\n       </td>\n      </tr>\n     {/if}\n\n     {if $register_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Registration Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$participant.register_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,719,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{$senderMessage}</p>\n    {if $generalLink}\n     <p><a href=\"{$generalLink}\">{ts}More information{/ts}</a></p>\n    {/if}\n    {if $contribute}\n     <p><a href=\"{$pageURL}\">{ts}Make a contribution{/ts}</a></p>\n    {/if}\n    {if $event}\n     <p><a href=\"{$pageURL}\">{ts}Find out more about this event{/ts}</a></p>\n    {/if}\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,720,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{$senderMessage}</p>\n    {if $generalLink}\n     <p><a href=\"{$generalLink}\">{ts}More information{/ts}</a></p>\n    {/if}\n    {if $contribute}\n     <p><a href=\"{$pageURL}\">{ts}Make a contribution{/ts}</a></p>\n    {/if}\n    {if $event}\n     <p><a href=\"{$pageURL}\">{ts}Find out more about this event{/ts}</a></p>\n    {/if}\n   </td>\n  </tr>\n </table>\n</center>\n\n</body>\n</html>\n',1,720,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {if $formValues.receipt_text_signup}\n     <p>{$formValues.receipt_text_signup|htmlize}</p>\n    {elseif $formValues.receipt_text_renewal}\n     <p>{$formValues.receipt_text_renewal|htmlize}</p>\n    {else}\n     <p>{ts}Thanks for your support.{/ts}</p>\n    {/if}\n    {if ! $cancelled}\n     <p>{ts}Please print this receipt for your records.{/ts}</p>\n    {/if}\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     {if !$lineItem}\n     <tr>\n      <th {$headerStyle}>\n       {ts}Membership Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Membership Type{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$membership_name}\n      </td>\n     </tr>\n     {/if}\n     {if ! $cancelled}\n     {if !$lineItem}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Start Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$mem_start_date}\n       </td>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership End Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$mem_end_date}\n       </td>\n      </tr>\n      {/if}\n      {if $formValues.total_amount}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Membership Fee{/ts}\n        </th>\n       </tr>\n       {if $formValues.contributionType_name}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$formValues.contributionType_name}\n         </td>\n        </tr>\n       {/if}\n\n       {if $lineItem}\n       {foreach from=$lineItem item=value key=priceset}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Fee{/ts}</th>\n       <th>{ts}Membership Start Date{/ts}</th>\n       <th>{ts}Membership End Date{/ts}</th>\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n        {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.line_total|crmMoney}\n              </td>\n              <td>\n               {$line.start_date}\n              </td>\n        <td>\n               {$line.end_date}\n              </td>\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n       {/foreach}\n      {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.total_amount|crmMoney}\n        </td>\n       </tr>\n       {if $receive_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Received Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|truncate:10:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n       {if $formValues.paidBy}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$formValues.paidBy}\n         </td>\n        </tr>\n        {if $formValues.check_number}\n         <tr>\n          <td {$labelStyle}>\n           {ts}Check Number{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$formValues.check_number}\n          </td>\n         </tr>\n        {/if}\n       {/if}\n      {/if}\n     {/if}\n    </table>\n   </td>\n  </tr>\n\n  {if $isPrimary}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n\n      {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {$billingName}<br />\n         {$address}\n        </td>\n       </tr>\n      {/if}\n\n      {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Credit Card Information{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td {$valueStyle}>\n         {$credit_card_type}<br />\n         {$credit_card_number}\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {ts}Expires{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n        </td>\n       </tr>\n      {/if}\n\n     </table>\n    </td>\n   </tr>\n  {/if}\n\n  {if $customValues}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Options{/ts}\n       </th>\n      </tr>\n      {foreach from=$customValues item=value key=customName}\n       <tr>\n        <td {$labelStyle}>\n         {$customName}\n        </td>\n        <td {$valueStyle}>\n         {$value}\n        </td>\n       </tr>\n      {/foreach}\n     </table>\n    </td>\n   </tr>\n  {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,721,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    {if $formValues.receipt_text_signup}\n     <p>{$formValues.receipt_text_signup|htmlize}</p>\n    {elseif $formValues.receipt_text_renewal}\n     <p>{$formValues.receipt_text_renewal|htmlize}</p>\n    {else}\n     <p>{ts}Thanks for your support.{/ts}</p>\n    {/if}\n    {if ! $cancelled}\n     <p>{ts}Please print this receipt for your records.{/ts}</p>\n    {/if}\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     {if !$lineItem}\n     <tr>\n      <th {$headerStyle}>\n       {ts}Membership Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Membership Type{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$membership_name}\n      </td>\n     </tr>\n     {/if}\n     {if ! $cancelled}\n     {if !$lineItem}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Start Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$mem_start_date}\n       </td>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership End Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$mem_end_date}\n       </td>\n      </tr>\n      {/if}\n      {if $formValues.total_amount}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Membership Fee{/ts}\n        </th>\n       </tr>\n       {if $formValues.contributionType_name}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Financial Type{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$formValues.contributionType_name}\n         </td>\n        </tr>\n       {/if}\n\n       {if $lineItem}\n       {foreach from=$lineItem item=value key=priceset}\n         <tr>\n          <td colspan=\"2\" {$valueStyle}>\n           <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n            <tr>\n             <th>{ts}Item{/ts}</th>\n             <th>{ts}Fee{/ts}</th>\n       <th>{ts}Membership Start Date{/ts}</th>\n       <th>{ts}Membership End Date{/ts}</th>\n            </tr>\n            {foreach from=$value item=line}\n             <tr>\n              <td>\n        {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n              </td>\n              <td>\n               {$line.line_total|crmMoney}\n              </td>\n              <td>\n               {$line.start_date}\n              </td>\n        <td>\n               {$line.end_date}\n              </td>\n             </tr>\n            {/foreach}\n           </table>\n          </td>\n         </tr>\n       {/foreach}\n      {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$formValues.total_amount|crmMoney}\n        </td>\n       </tr>\n       {if $receive_date}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Received Date{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$receive_date|truncate:10:\'\'|crmDate}\n         </td>\n        </tr>\n       {/if}\n       {if $formValues.paidBy}\n        <tr>\n         <td {$labelStyle}>\n          {ts}Paid By{/ts}\n         </td>\n         <td {$valueStyle}>\n          {$formValues.paidBy}\n         </td>\n        </tr>\n        {if $formValues.check_number}\n         <tr>\n          <td {$labelStyle}>\n           {ts}Check Number{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$formValues.check_number}\n          </td>\n         </tr>\n        {/if}\n       {/if}\n      {/if}\n     {/if}\n    </table>\n   </td>\n  </tr>\n\n  {if $isPrimary}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n\n      {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {$billingName}<br />\n         {$address}\n        </td>\n       </tr>\n      {/if}\n\n      {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Credit Card Information{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td {$valueStyle}>\n         {$credit_card_type}<br />\n         {$credit_card_number}\n        </td>\n       </tr>\n       <tr>\n        <td {$labelStyle}>\n         {ts}Expires{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n        </td>\n       </tr>\n      {/if}\n\n     </table>\n    </td>\n   </tr>\n  {/if}\n\n  {if $customValues}\n   <tr>\n    <td>\n     <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Options{/ts}\n       </th>\n      </tr>\n      {foreach from=$customValues item=value key=customName}\n       <tr>\n        <td {$labelStyle}>\n         {$customName}\n        </td>\n        <td {$valueStyle}>\n         {$value}\n        </td>\n       </tr>\n      {/foreach}\n     </table>\n    </td>\n   </tr>\n  {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,721,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 <a href=\"%1\">visiting this web page</a>.{/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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $receipt_text}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  </table>\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n     {if $membership_assign && !$useForMember}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Type{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_name}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n\n     {if $amount}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n\n      {if !$useForMember and $membership_amount and $is_quick_config}\n\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$membership_name}%1 Membership{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$membership_amount|crmMoney}\n        </td>\n       </tr>\n       {if $amount}\n        {if ! $is_separate_payment }\n         <tr>\n          <td {$labelStyle}>\n           {ts}Contribution Amount{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$amount|crmMoney}\n          </td>\n         </tr>\n        {else}\n         <tr>\n          <td {$labelStyle}>\n           {ts}Additional Contribution{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$amount|crmMoney}\n          </td>\n         </tr>\n        {/if}\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount+$membership_amount|crmMoney}\n        </td>\n       </tr>\n\n      {elseif !$useForMember && $lineItem and $priceSetID and !$is_quick_config}\n\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Qty{/ts}</th>\n            <th>{ts}Each{/ts}</th>\n            <th>{ts}Total{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n              {$line.description|truncate:30:\"...\"}\n             </td>\n             <td>\n              {$line.qty}\n             </td>\n             <td>\n              {$line.unit_price|crmMoney}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney}\n        </td>\n       </tr>\n\n      {else}\n       {if $useForMember && $lineItem and !$is_quick_config}\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Fee{/ts}</th>\n      <th>{ts}Membership Start Date{/ts}</th>\n      <th>{ts}Membership End Date{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n             {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n             <td>\n              {$line.start_date}\n             </td>\n       <td>\n              {$line.end_date}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney} {if $amount_level} - {$amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n\n     {elseif $membership_amount}\n\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts 1=$membership_name}%1 Membership{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_amount|crmMoney}\n       </td>\n      </tr>\n\n\n     {/if}\n\n     {if $receive_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $is_monetary and $trxn_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if $membership_trx_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_trx_id}\n       </td>\n      </tr>\n     {/if}\n     {if $is_recur}\n      {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n       <tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$honor_prefix} {$honor_first_name} {$honor_last_name}\n       </td>\n      </tr>\n      {if $honor_email}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Honoree Email{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$honor_email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $pcpBlock}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $onBehalfProfile}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n      {if $is_pay_later}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Registered Email{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$email}\n        </td>\n       </tr>\n      {elseif $amount GT 0 OR $membership_amount GT 0}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $contributeMode eq \'direct\' AND !$is_pay_later AND ($amount GT 0 OR $membership_amount GT 0)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if $selectPremium}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $contact_email OR $contact_phone}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if $contact_email}\n          <p>{$contact_email}</p>\n         {/if}\n         {if $contact_phone}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if $is_deductible AND $price}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if $customPre}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customPost}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n</center>\n\n</body>\n</html>\n',1,722,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 <a href=\"%1\">visiting this web page</a>.{/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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    {if $receipt_text}\n     <p>{$receipt_text|htmlize}</p>\n    {/if}\n\n    {if $is_pay_later}\n     <p>{$pay_later_receipt}</p> {* FIXME: this might be text rather than HTML *}\n    {else}\n     <p>{ts}Please print this confirmation for your records.{/ts}</p>\n    {/if}\n\n   </td>\n  </tr>\n  </table>\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n     {if $membership_assign && !$useForMember}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Type{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_name}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n\n     {if $amount}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n\n      {if !$useForMember and $membership_amount and $is_quick_config}\n\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$membership_name}%1 Membership{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$membership_amount|crmMoney}\n        </td>\n       </tr>\n       {if $amount}\n        {if ! $is_separate_payment }\n         <tr>\n          <td {$labelStyle}>\n           {ts}Contribution Amount{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$amount|crmMoney}\n          </td>\n         </tr>\n        {else}\n         <tr>\n          <td {$labelStyle}>\n           {ts}Additional Contribution{/ts}\n          </td>\n          <td {$valueStyle}>\n           {$amount|crmMoney}\n          </td>\n         </tr>\n        {/if}\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount+$membership_amount|crmMoney}\n        </td>\n       </tr>\n\n      {elseif !$useForMember && $lineItem and $priceSetID and !$is_quick_config}\n\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Qty{/ts}</th>\n            <th>{ts}Each{/ts}</th>\n            <th>{ts}Total{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n              {$line.description|truncate:30:\"...\"}\n             </td>\n             <td>\n              {$line.qty}\n             </td>\n             <td>\n              {$line.unit_price|crmMoney}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Total Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney}\n        </td>\n       </tr>\n\n      {else}\n       {if $useForMember && $lineItem and !$is_quick_config}\n       {foreach from=$lineItem item=value key=priceset}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <table> {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n           <tr>\n            <th>{ts}Item{/ts}</th>\n            <th>{ts}Fee{/ts}</th>\n      <th>{ts}Membership Start Date{/ts}</th>\n      <th>{ts}Membership End Date{/ts}</th>\n           </tr>\n           {foreach from=$value item=line}\n            <tr>\n             <td>\n             {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}<div>{$line.description|truncate:30:\"...\"}</div>{/if}\n             </td>\n             <td>\n              {$line.line_total|crmMoney}\n             </td>\n             <td>\n              {$line.start_date}\n             </td>\n       <td>\n              {$line.end_date}\n             </td>\n            </tr>\n           {/foreach}\n          </table>\n         </td>\n        </tr>\n       {/foreach}\n       {/if}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Amount{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$amount|crmMoney} {if $amount_level} - {$amount_level}{/if}\n        </td>\n       </tr>\n\n      {/if}\n\n\n     {elseif $membership_amount}\n\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Fee{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts 1=$membership_name}%1 Membership{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_amount|crmMoney}\n       </td>\n      </tr>\n\n\n     {/if}\n\n     {if $receive_date}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Date{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$receive_date|crmDate}\n       </td>\n      </tr>\n     {/if}\n\n     {if $is_monetary and $trxn_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$trxn_id}\n       </td>\n      </tr>\n     {/if}\n\n     {if $membership_trx_id}\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Transaction #{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_trx_id}\n       </td>\n      </tr>\n     {/if}\n     {if $is_recur}\n      {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n       <tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$labelStyle}>\n         {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by <a href=\"%1\">visiting this web page</a>.{/ts}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$honor_prefix} {$honor_first_name} {$honor_last_name}\n       </td>\n      </tr>\n      {if $honor_email}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Honoree Email{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$honor_email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $pcpBlock}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Personal Campaign Page{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Display In Honor Roll{/ts}\n       </td>\n       <td {$valueStyle}>\n        {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n       </td>\n      </tr>\n      {if $pcp_roll_nickname}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Nickname{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_roll_nickname}\n        </td>\n       </tr>\n      {/if}\n      {if $pcp_personal_note}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Personal Note{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$pcp_personal_note}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $onBehalfProfile}\n      <tr>\n       <th {$headerStyle}>\n        {$onBehalfProfile_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n        <tr>\n         <td {$labelStyle}>\n          {$onBehalfName}\n         </td>\n         <td {$valueStyle}>\n          {$onBehalfValue}\n         </td>\n        </tr>\n      {/foreach}\n     {/if}\n\n     {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n      {if $is_pay_later}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Registered Email{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$email}\n        </td>\n       </tr>\n      {elseif $amount GT 0 OR $membership_amount GT 0}\n       <tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n      {/if}\n     {/if}\n\n     {if $contributeMode eq \'direct\' AND !$is_pay_later AND ($amount GT 0 OR $membership_amount GT 0)}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n     {/if}\n\n     {if $selectPremium}\n      <tr>\n       <th {$headerStyle}>\n        {ts}Premium Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$labelStyle}>\n        {$product_name}\n       </td>\n      </tr>\n      {if $option}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Option{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$option}\n        </td>\n       </tr>\n      {/if}\n      {if $sku}\n       <tr>\n        <td {$labelStyle}>\n         {ts}SKU{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$sku}\n        </td>\n       </tr>\n      {/if}\n      {if $start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $contact_email OR $contact_phone}\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         <p>{ts}For information about this premium, contact:{/ts}</p>\n         {if $contact_email}\n          <p>{$contact_email}</p>\n         {/if}\n         {if $contact_phone}\n          <p>{$contact_phone}</p>\n         {/if}\n        </td>\n       </tr>\n      {/if}\n      {if $is_deductible AND $price}\n        <tr>\n         <td colspan=\"2\" {$valueStyle}>\n          <p>{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}</p>\n         </td>\n        </tr>\n      {/if}\n     {/if}\n\n     {if $customPre}\n      <tr>\n       <th {$headerStyle}>\n        {$customPre_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPre item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n     {if $customPost}\n      <tr>\n       <th {$headerStyle}>\n        {$customPost_grouptitle}\n       </th>\n      </tr>\n      {foreach from=$customPost item=customValue key=customName}\n       {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n        <tr>\n         <td {$labelStyle}>\n          {$customName}\n         </td>\n         <td {$valueStyle}>\n          {$customValue}\n         </td>\n        </tr>\n       {/if}\n      {/foreach}\n     {/if}\n\n  </table>\n</center>\n\n</body>\n</html>\n',1,722,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    <p>{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}</p>\n\n   </td>\n  </tr>\n </table>\n <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Status{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_status}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,723,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n\n    <p>{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}</p>\n\n   </td>\n  </tr>\n </table>\n <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n\n      <tr>\n       <th {$headerStyle}>\n        {ts}Membership Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td {$labelStyle}>\n        {ts}Membership Status{/ts}\n       </td>\n       <td {$valueStyle}>\n        {$membership_status}\n       </td>\n      </tr>\n      {if $mem_start_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership Start Date{/ts}\n        </td>\n        <td {$valueStyle}>\n         {$mem_start_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n      {if $mem_end_date}\n       <tr>\n        <td {$labelStyle}>\n         {ts}Membership End Date{/ts}\n        </td>\n        <td {$valueStyle}>\n          {$mem_end_date|crmDate}\n        </td>\n       </tr>\n      {/if}\n\n </table>\n</center>\n\n</body>\n</html>\n',1,723,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}','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n<tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n      </tr>\n\n  </table>\n</center>\n\n</body>\n</html>\n',1,724,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}','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n </table>\n\n  <table width=\"500\" style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;\">\n<tr>\n        <th {$headerStyle}>\n         {ts}Billing Name and Address{/ts}\n        </th>\n       </tr>\n       <tr>\n        <td colspan=\"2\" {$valueStyle}>\n         {$billingName}<br />\n         {$address|nl2br}<br />\n         {$email}\n        </td>\n       </tr>\n        <tr>\n       <th {$headerStyle}>\n        {ts}Credit Card Information{/ts}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        {$credit_card_type}<br />\n        {$credit_card_number}<br />\n        {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}<br />\n       </td>\n      </tr>\n      <tr>\n        <td {$labelStyle}>\n         {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n        </td>\n      </tr>\n\n  </table>\n</center>\n\n</body>\n</html>\n',1,724,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','<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left\">\n  <tr>\n   <td>\n    <p>{ts}Test-drive Email / Receipt{/ts}</p>\n    <p>{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}</p>\n   </td>\n  </tr>\n </table>\n</center>\n',1,725,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','<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left\">\n  <tr>\n   <td>\n    <p>{ts}Test-drive Email / Receipt{/ts}</p>\n    <p>{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}</p>\n   </td>\n  </tr>\n </table>\n</center>\n',1,725,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}dear %1{/ts},</p>\n    <p>{ts}thank you for your generous pledge. please print this acknowledgment for your records.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$total_pledge_amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Schedule{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}</p>\n\n       {if $frequency_day}\n        <p>{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}</p>\n       {/if}\n      </td>\n     </tr>\n\n     {if $payments}\n      {assign var=\"count\" value=\"1\"}\n      {foreach from=$payments item=payment}\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$count}Payment %1{/ts}\n        </td>\n        <td {$valueStyle}>\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        </td>\n       </tr>\n       {assign var=\"count\" value=`$count+1`}\n      {/foreach}\n     {/if}\n\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{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}</p>\n      </td>\n     </tr>\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        <p>{$honor_prefix} {$honor_first_name} {$honor_last_name}</p>\n        {if $honor_email}\n         <p>{ts}Honoree Email{/ts}: {$honor_email}</p>\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,726,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}dear %1{/ts},</p>\n    <p>{ts}thank you for your generous pledge. please print this acknowledgment for your records.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$total_pledge_amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Schedule{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}</p>\n\n       {if $frequency_day}\n        <p>{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}</p>\n       {/if}\n      </td>\n     </tr>\n\n     {if $payments}\n      {assign var=\"count\" value=\"1\"}\n      {foreach from=$payments item=payment}\n       <tr>\n        <td {$labelStyle}>\n         {ts 1=$count}Payment %1{/ts}\n        </td>\n        <td {$valueStyle}>\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        </td>\n       </tr>\n       {assign var=\"count\" value=`$count+1`}\n      {/foreach}\n     {/if}\n\n     <tr>\n      <td colspan=\"2\" {$valueStyle}>\n       <p>{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}</p>\n      </td>\n     </tr>\n     {if $honor_block_is_active}\n      <tr>\n       <th {$headerStyle}>\n        {$honor_type}\n       </th>\n      </tr>\n      <tr>\n       <td colspan=\"2\" {$valueStyle}>\n        <p>{$honor_prefix} {$honor_first_name} {$honor_last_name}</p>\n        {if $honor_email}\n         <p>{ts}Honoree Email{/ts}: {$honor_email}</p>\n        {/if}\n       </td>\n      </tr>\n     {/if}\n\n     {if $customGroup}\n      {foreach from=$customGroup item=value key=customName}\n       <tr>\n        <th {$headerStyle}>\n         {$customName}\n        </th>\n       </tr>\n       {foreach from=$value item=v key=n}\n        <tr>\n         <td {$labelStyle}>\n          {$n}\n         </td>\n         <td {$valueStyle}>\n          {$v}\n         </td>\n        </tr>\n       {/foreach}\n      {/foreach}\n     {/if}\n\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,726,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Due{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Amount Due{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_due|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\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     <p><a href=\"{$contributionUrl}\">{ts}Go to a web page where you can make your payment online{/ts}</a></p>\n    {else}\n     <p>{ts}Please mail your payment to{/ts}: {$domain.address}</p>\n    {/if}\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Paid{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_paid|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{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}</p>\n    <p>{ts}Thank your for your generous support.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,727,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <p>{ts 1=$contact.display_name}Dear %1{/ts},</p>\n    <p>{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}</p>\n   </td>\n  </tr>\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Payment Due{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Amount Due{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_due|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\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     <p><a href=\"{$contributionUrl}\">{ts}Go to a web page where you can make your payment online{/ts}</a></p>\n    {else}\n     <p>{ts}Please mail your payment to{/ts}: {$domain.address}</p>\n    {/if}\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <th {$headerStyle}>\n       {ts}Pledge Information{/ts}\n      </th>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Pledge Received{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$create_date|truncate:10:\'\'|crmDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Pledge Amount{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount|crmMoney:$currency}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Total Paid{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$amount_paid|crmMoney:$currency}\n      </td>\n     </tr>\n    </table>\n   </td>\n  </tr>\n\n  <tr>\n   <td>\n    <p>{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}</p>\n    <p>{ts}Thank your for your generous support.{/ts}</p>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,727,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Submitted For{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$displayName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Date{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$currentDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Contact Summary{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$contactLink}\n      </td>\n     </tr>\n\n     <tr>\n      <th {$headerStyle}>\n       {$grouptitle}\n      </th>\n     </tr>\n\n     {foreach from=$values item=value key=valueName}\n      <tr>\n       <td {$labelStyle}>\n        {$valueName}\n       </td>\n       <td {$valueStyle}>\n        {$value}\n       </td>\n      </tr>\n     {/foreach}\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,728,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','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title></title>\n</head>\n<body>\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<center>\n <table width=\"620\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" id=\"crm-event_receipt\" style=\"font-family: Arial, Verdana, sans-serif; text-align: left;\">\n\n  <!-- BEGIN HEADER -->\n  <!-- You can add table row(s) here with logo or other header elements -->\n  <!-- END HEADER -->\n\n  <!-- BEGIN CONTENT -->\n\n  <tr>\n   <td>\n    <table style=\"border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;\">\n     <tr>\n      <td {$labelStyle}>\n       {ts}Submitted For{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$displayName}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Date{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$currentDate}\n      </td>\n     </tr>\n     <tr>\n      <td {$labelStyle}>\n       {ts}Contact Summary{/ts}\n      </td>\n      <td {$valueStyle}>\n       {$contactLink}\n      </td>\n     </tr>\n\n     <tr>\n      <th {$headerStyle}>\n       {$grouptitle}\n      </th>\n     </tr>\n\n     {foreach from=$values item=value key=valueName}\n      <tr>\n       <td {$labelStyle}>\n        {$valueName}\n       </td>\n       <td {$valueStyle}>\n        {$value}\n       </td>\n      </tr>\n     {/foreach}\n    </table>\n   </td>\n  </tr>\n\n </table>\n</center>\n\n</body>\n</html>\n',1,728,0,1,NULL),(53,'Petition - signature added','Thank you for signing {$petition.title}','Thank you for signing {$petition.title}.\n','<p>Thank you for signing {$petition.title}.</p>\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true email=true}\n',1,729,1,0,NULL),(54,'Petition - signature added','Thank you for signing {$petition.title}','Thank you for signing {$petition.title}.\n','<p>Thank you for signing {$petition.title}.</p>\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true email=true}\n',1,729,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','<p>Thank you for signing {$petition.title}.</p>\n\n<p>In order to <b>complete your signature</b>, we must confirm your e-mail.\n<br />\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n<br /><br />\nEmail confirmation page: <a href=\"{$petition.confirmUrl} \">{$petition.confirmUrl}</a></p>\n\n<p>If you did not sign this petition, please ignore this message.</p>\n',1,730,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','<p>Thank you for signing {$petition.title}.</p>\n\n<p>In order to <b>complete your signature</b>, we must confirm your e-mail.\n<br />\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n<br /><br />\nEmail confirmation page: <a href=\"{$petition.confirmUrl} \">{$petition.confirmUrl}</a></p>\n\n<p>If you did not sign this petition, please ignore this message.</p>\n',1,730,0,1,NULL),(57,'Sample CiviMail Newsletter Template','Sample CiviMail Newsletter','','<table width=612 cellpadding=0 cellspacing=0 bgcolor=\"#ffffff\">\n  <tr>\n    <td colspan=\"2\" bgcolor=\"#ffffff\" valign=\"middle\" >\n      <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" >\n        <tr>\n          <td>\n          <a href=\"http://www.civicrm.org\"><img src=\"http://civicrm.org/sites/civicrm.org/files/top-logo_2.png\" border=0 alt=\"Replace this logo with the URL to your own\"></a>\n          </td>\n          <td>&nbsp; &nbsp;</td>\n          <td>\n          <a href=\"http://www.civicrm.org\" style=\"text-decoration: none;\"><font size=5 face=\"Arial, Verdana, sans-serif\" color=\"#8bc539\">Your Newsletter Title</font></a>\n          </td>\n        </tr>\n      </table>\n    </td>\n  </tr>\n  <tr>\n    <td valign=\"top\" width=\"70%\">\n      <!-- left column -->\n      <table cellpadding=\"10\" cellspacing=\"0\" border=\"0\">\n      <tr>\n        <td style=\"font-family: Arial, Verdana, sans-serif; font-size: 12px;\" >\n        <font face=\"Arial, Verdana, sans-serif\" size=\"2\" >\n        Greetings {contact.display_name},\n        <br /><br />\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        <br /><br />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        <br /><br />The logo you use must be uploaded to your server.  Copy and paste the URL path to the logo into the &lt;img src= tag in the HTML at the top.  Click \"Source\" or the Image button if you are using the text editor.\n        <br /><br />\n        Edit the color of the links and headers using the color button or by editing the HTML.\n        <br /><br />\n        Your newsletter message and donation appeal can go here.  Click the link button to <a href=\"#\">create links</a> - remember to use a fully qualified URL starting with http:// in all your links!\n        <br /><br />\n        To use CiviMail:\n        <ul>\n          <li><a href=\"http://book.civicrm.org/user/advanced-configuration/email-system-configuration/\">Configure your Email System</a>.</li>\n          <li>Make sure your web hosting provider allows outgoing bulk mail, and see if they have a restriction on quantity.  If they don\'t allow bulk mail, consider <a href=\"http://wiki.civicrm.org/confluence/display/CRM/Hosting+provider+information\">finding a new host</a>.</li>\n        </ul>\n        Sincerely,\n        <br /><br />\n        Your Team\n        <br /><br />\n        </font>\n        </td>\n      </tr>\n      </table>\n    </td>\n\n    <td valign=\"top\" width=\"30%\" bgcolor=\"#ffffff\" style=\"border: 1px solid #056085;\">\n      <!-- right column -->\n      <table cellpadding=10 cellspacing=0 border=0>\n      <tr>\n        <td bgcolor=\"#056085\"><font face=\"Arial, Verdana, sans-serif\" size=\"4\" color=\"#ffffff\">News and Events</font></td>\n      </tr>\n      <tr>\n        <td style=\"color: #000; font-family: Arial, Verdana, sans-serif; font-size: 12px;\" >\n        <font face=\"Arial, Verdana, sans-serif\" size=\"2\" >\n        <font color=\"#056085\"><strong>Featured Events</strong> </font><br />\n        Fundraising Dinner<br />\n        Training Meeting<br />\n        Board of Directors Annual Meeting<br />\n\n        <br /><br />\n        <font color=\"#056085\"><strong>Community Events</strong></font><br />\n        Bake Sale<br />\n        Charity Auction<br />\n        Art Exhibit<br />\n\n        <br /><br />\n        <font color=\"#056085\"><strong>Important Dates</strong></font><br />\n        Tuesday August 27<br />\n        Wednesday September 8<br />\n        Thursday September 29<br />\n        Saturday October 1<br />\n        Sunday October 20<br />\n        </font>\n        </td>\n      </tr>\n      </table>\n    </td>\n  </tr>\n\n  <tr>\n    <td colspan=\"2\">\n      <table cellpadding=\"10\" cellspacing=\"0\" border=\"0\">\n      <tr>\n        <td>\n        <font face=\"Arial, Verdana, sans-serif\" size=\"2\" >\n        <font color=\"#7dc857\"><strong>Helpful Tips</strong></font>\n        <br /><br />\n        <font color=\"#3b5187\">Tokens</font><br />\n        Click \"Insert Tokens\" to dynamically insert names, addresses, and other contact data of your recipients.\n        <br /><br />\n        <font color=\"#3b5187\">Plain Text Version</font><br />\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        <br /><br />\n        <font color=\"#3b5187\">Play by the Rules</font><br />\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. <em>{action.optOutUrl}</em> creates a link for recipients to click if they want to opt out of receiving  emails from your organization. <em>{action.unsubscribeUrl}</em> 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        <br /><br />\n        <font color=\"#3b5187\">Composing Offline</font><br />\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        <br /><br />\n        <font color=\"#3b5187\">Images</font><br />\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        </td>\n      </tr>\n      </table>\n    </td>\n  </tr>\n  <tr>\n    <td colspan=\"2\" style=\"color: #000; font-family: Arial, Verdana, sans-serif; font-size: 10px;\">\n      <font face=\"Arial, Verdana, sans-serif\" size=\"2\" >\n      <hr />\n      <a href=\"{action.unsubscribeUrl}\" title=\"click to unsubscribe\">Click here</a> to unsubscribe from this mailing list.<br /><br />\n      Our mailing address is:<br />\n      {domain.address}\n    </td>\n  </tr>\n  </table>',1,NULL,1,0,NULL);
 /*!40000 ALTER TABLE `civicrm_msg_template` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -959,7 +959,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',171,'Invite members for the Steve Prefontaine 10k dream run',1,'2013-12-07',NULL,'0'),(2,'civicrm_contact',142,'Chart out route map for next 10k run',1,'2013-07-23',NULL,'0'),(3,'civicrm_contact',123,'Organize the Terry Fox run',1,'2013-07-24',NULL,'0'),(4,'civicrm_contact',168,'Organize the Terry Fox run',1,'2013-03-26',NULL,'0'),(5,'civicrm_contact',34,'Contact the Commisioner of Charities',1,'2013-04-11',NULL,'0'),(6,'civicrm_contact',34,'Arrange collection of funds from members',1,'2013-01-10',NULL,'0'),(7,'civicrm_contact',194,'Organize the Terry Fox run',1,'2013-11-02',NULL,'0'),(8,'civicrm_contact',161,'Reminder screening of \"Black\" on next Friday',1,'2013-12-06',NULL,'0'),(9,'civicrm_contact',119,'Send newsletter for April 2005',1,'2013-11-22',NULL,'0'),(10,'civicrm_contact',44,'Get the registration done for NGO status',1,'2013-03-04',NULL,'0'),(11,'civicrm_contact',113,'Reminder screening of \"Black\" on next Friday',1,'2013-09-30',NULL,'0'),(12,'civicrm_contact',175,'Invite members for the Steve Prefontaine 10k dream run',1,'2013-04-07',NULL,'0'),(13,'civicrm_contact',71,'Contact the Commisioner of Charities',1,'2013-04-21',NULL,'0'),(14,'civicrm_contact',66,'Get the registration done for NGO status',1,'2013-07-15',NULL,'0'),(15,'civicrm_contact',61,'Contact the Commisioner of Charities',1,'2013-06-27',NULL,'0'),(16,'civicrm_contact',20,'Organize the Terry Fox run',1,'2013-06-15',NULL,'0'),(17,'civicrm_contact',21,'Send newsletter for April 2005',1,'2013-10-07',NULL,'0'),(18,'civicrm_contact',104,'Arrange for cricket match with Sunil Gavaskar',1,'2012-12-21',NULL,'0'),(19,'civicrm_contact',27,'Organize the Terry Fox run',1,'2013-06-21',NULL,'0'),(20,'civicrm_contact',174,'Invite members for the Steve Prefontaine 10k dream run',1,'2013-04-23',NULL,'0');
+INSERT INTO `civicrm_note` (`id`, `entity_table`, `entity_id`, `note`, `contact_id`, `modified_date`, `subject`, `privacy`) VALUES (1,'civicrm_contact',129,'Send newsletter for April 2005',1,'2013-12-25',NULL,'0'),(2,'civicrm_contact',35,'Arrange for cricket match with Sunil Gavaskar',1,'2013-07-10',NULL,'0'),(3,'civicrm_contact',32,'Reminder screening of \"Black\" on next Friday',1,'2013-08-27',NULL,'0'),(4,'civicrm_contact',118,'Organize the Terry Fox run',1,'2013-02-16',NULL,'0'),(5,'civicrm_contact',85,'Contact the Commisioner of Charities',1,'2013-12-19',NULL,'0'),(6,'civicrm_contact',176,'Invite members for the Steve Prefontaine 10k dream run',1,'2013-04-11',NULL,'0'),(7,'civicrm_contact',127,'Send newsletter for April 2005',1,'2013-10-14',NULL,'0'),(8,'civicrm_contact',137,'Invite members for the Steve Prefontaine 10k dream run',1,'2013-03-23',NULL,'0'),(9,'civicrm_contact',189,'Arrange collection of funds from members',1,'2013-12-14',NULL,'0'),(10,'civicrm_contact',64,'Reminder screening of \"Black\" on next Friday',1,'2013-07-03',NULL,'0'),(11,'civicrm_contact',115,'Invite members for the Steve Prefontaine 10k dream run',1,'2013-10-05',NULL,'0'),(12,'civicrm_contact',24,'Invite members for the Steve Prefontaine 10k dream run',1,'2013-09-24',NULL,'0'),(13,'civicrm_contact',27,'Contact the Commisioner of Charities',1,'2013-06-01',NULL,'0'),(14,'civicrm_contact',22,'Arrange collection of funds from members',1,'2013-12-07',NULL,'0'),(15,'civicrm_contact',34,'Contact the Commisioner of Charities',1,'2013-11-22',NULL,'0'),(16,'civicrm_contact',50,'Organize the Terry Fox run',1,'2013-05-13',NULL,'0'),(17,'civicrm_contact',140,'Connect for presentation',1,'2013-01-11',NULL,'0'),(18,'civicrm_contact',143,'Organize the Terry Fox run',1,'2013-02-06',NULL,'0'),(19,'civicrm_contact',111,'Send reminder for annual dinner',1,'2013-04-07',NULL,'0'),(20,'civicrm_contact',128,'Send newsletter for April 2005',1,'2013-11-15',NULL,'0');
 /*!40000 ALTER TABLE `civicrm_note` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -988,7 +988,7 @@ UNLOCK TABLES;
 
 LOCK TABLES `civicrm_option_value` WRITE;
 /*!40000 ALTER TABLE `civicrm_option_value` DISABLE KEYS */;
-INSERT INTO `civicrm_option_value` (`id`, `option_group_id`, `label`, `value`, `name`, `grouping`, `filter`, `is_default`, `weight`, `description`, `is_optgroup`, `is_reserved`, `is_active`, `component_id`, `domain_id`, `visibility_id`) VALUES (1,1,'Phone','1',NULL,NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(2,1,'Email','2',NULL,NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(3,1,'Postal Mail','3',NULL,NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(4,1,'SMS','4',NULL,NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(5,1,'Fax','5',NULL,NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(6,2,'Meeting','1','Meeting',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(7,2,'Phone Call','2','Phone Call',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(8,2,'Email','3','Email',NULL,1,NULL,3,'Email sent.',0,1,1,NULL,NULL,NULL),(9,2,'Outbound SMS','4','SMS',NULL,1,NULL,4,'Text message (SMS) sent.',0,1,1,NULL,NULL,NULL),(10,2,'Event Registration','5','Event Registration',NULL,1,NULL,5,'Online or offline event registration.',0,1,1,1,NULL,NULL),(11,2,'Contribution','6','Contribution',NULL,1,NULL,6,'Online or offline contribution.',0,1,1,2,NULL,NULL),(12,2,'Membership Signup','7','Membership Signup',NULL,1,NULL,7,'Online or offline membership signup.',0,1,1,3,NULL,NULL),(13,2,'Membership Renewal','8','Membership Renewal',NULL,1,NULL,8,'Online or offline membership renewal.',0,1,1,3,NULL,NULL),(14,2,'Tell a Friend','9','Tell a Friend',NULL,1,NULL,9,'Send information about a contribution campaign or event to a friend.',0,1,1,NULL,NULL,NULL),(15,2,'Pledge Acknowledgment','10','Pledge Acknowledgment',NULL,1,NULL,10,'Send Pledge Acknowledgment.',0,1,1,6,NULL,NULL),(16,2,'Pledge Reminder','11','Pledge Reminder',NULL,1,NULL,11,'Send Pledge Reminder.',0,1,1,6,NULL,NULL),(17,2,'Inbound Email','12','Inbound Email',NULL,1,NULL,12,'Inbound Email.',0,1,1,NULL,NULL,NULL),(18,2,'Open Case','13','Open Case',NULL,0,0,13,'',0,1,1,7,NULL,NULL),(19,2,'Follow up','14','Follow up',NULL,0,0,14,'',0,1,1,7,NULL,NULL),(20,2,'Change Case Type','15','Change Case Type',NULL,0,0,15,'',0,1,1,7,NULL,NULL),(21,2,'Change Case Status','16','Change Case Status',NULL,0,0,16,'',0,1,1,7,NULL,NULL),(22,2,'Membership Renewal Reminder','17','Membership Renewal Reminder',NULL,1,NULL,17,'offline membership renewal reminder.',0,1,1,3,NULL,NULL),(23,2,'Change Case Start Date','18','Change Case Start Date',NULL,0,0,18,'',0,1,1,7,NULL,NULL),(24,2,'Bulk Email','19','Bulk Email',NULL,1,NULL,19,'Bulk Email Sent.',0,1,1,NULL,NULL,NULL),(25,2,'Assign Case Role','20','Assign Case Role',NULL,0,0,20,'',0,1,1,7,NULL,NULL),(26,2,'Remove Case Role','21','Remove Case Role',NULL,0,0,21,'',0,1,1,7,NULL,NULL),(27,2,'Print PDF Letter','22','Print PDF Letter',NULL,0,NULL,22,'Print PDF Letter.',0,1,1,NULL,NULL,NULL),(28,2,'Merge Case','23','Merge Case',NULL,0,NULL,23,'',0,1,1,7,NULL,NULL),(29,2,'Reassigned Case','24','Reassigned Case',NULL,0,NULL,24,'',0,1,1,7,NULL,NULL),(30,2,'Link Cases','25','Link Cases',NULL,0,NULL,25,'',0,1,1,7,NULL,NULL),(31,2,'Change Case Tags','26','Change Case Tags',NULL,0,0,26,'',0,1,1,7,NULL,NULL),(32,2,'Add Client To Case','27','Add Client To Case',NULL,0,0,26,'',0,1,1,7,NULL,NULL),(33,2,'Survey','28','Survey',NULL,0,0,27,'',0,1,1,9,NULL,NULL),(34,2,'Canvass','29','Canvass',NULL,0,0,28,'',0,1,1,9,NULL,NULL),(35,2,'PhoneBank','30','PhoneBank',NULL,0,0,29,'',0,1,1,9,NULL,NULL),(36,2,'WalkList','31','WalkList',NULL,0,0,30,'',0,1,1,9,NULL,NULL),(37,2,'Petition Signature','32','Petition',NULL,0,0,31,'',0,1,1,9,NULL,NULL),(38,2,'Mass SMS','34','Mass SMS',NULL,1,NULL,34,'Mass SMS',0,1,1,NULL,NULL,NULL),(39,2,'Change Custom Data','33','Change Custom Data',NULL,0,0,33,'',0,1,1,7,NULL,NULL),(40,2,'Change Membership Status','35','Change Membership Status',NULL,1,NULL,35,'Change Membership Status.',0,1,1,3,NULL,NULL),(41,2,'Change Membership Type','36','Change Membership Type',NULL,1,NULL,36,'Change Membership Type.',0,1,1,3,NULL,NULL),(42,2,'Cancel Recurring Contribution','37','Cancel Recurring Contribution',NULL,1,0,37,'',0,1,1,NULL,NULL,NULL),(43,2,'Update Recurring Contribution Billing Details','38','Update Recurring Contribution Billing Details',NULL,1,0,38,'',0,1,1,NULL,NULL,NULL),(44,2,'Update Recurring Contribution','39','Update Recurring Contribution',NULL,1,0,39,'',0,1,1,NULL,NULL,NULL),(45,2,'Reminder Sent','40','Reminder Sent',NULL,1,0,40,'',0,1,1,NULL,NULL,NULL),(46,2,'Export Accounting Batch','41','Export Accounting Batch',NULL,1,0,41,'Export Accounting Batch',0,1,1,2,NULL,NULL),(47,2,'Create Batch','42','Create Batch',NULL,1,0,42,'Create Batch',0,1,1,2,NULL,NULL),(48,2,'Edit Batch','43','Edit Batch',NULL,1,0,43,'Edit Batch',0,1,1,2,NULL,NULL),(49,2,'SMS delivery','44','SMS delivery',NULL,1,NULL,44,'SMS delivery',0,1,1,NULL,NULL,NULL),(50,2,'Inbound SMS','45','Inbound SMS',NULL,1,NULL,45,'Inbound SMS',0,1,1,NULL,NULL,NULL),(51,3,'Female','1','Female',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(52,3,'Male','2','Male',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(53,3,'Transgender','3','Transgender',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(54,4,'Yahoo','1','Yahoo',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(55,4,'MSN','2','Msn',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(56,4,'AIM','3','Aim',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(57,4,'GTalk','4','Gtalk',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(58,4,'Jabber','5','Jabber',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(59,4,'Skype','6','Skype',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(60,5,'Sprint','1','Sprint',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(61,5,'Verizon','2','Verizon',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(62,5,'Cingular','3','Cingular',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(63,6,'Mrs.','1','Mrs.',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(64,6,'Ms.','2','Ms.',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(65,6,'Mr.','3','Mr.',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(66,6,'Dr.','4','Dr.',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(67,7,'Jr.','1','Jr.',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(68,7,'Sr.','2','Sr.',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(69,7,'II','3','II',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(70,7,'III','4','III',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(71,7,'IV','5','IV',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(72,7,'V','6','V',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(73,7,'VI','7','VI',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(74,7,'VII','8','VII',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(75,8,'Administrator','1','Admin',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(76,8,'Authenticated','2','Auth',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(77,9,'Visa','1','Visa',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(78,9,'MasterCard','2','MasterCard',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(79,9,'Amex','3','Amex',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(80,9,'Discover','4','Discover',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(81,10,'Credit Card','1','Credit Card',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(82,10,'Debit Card','2','Debit Card',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(83,10,'Cash','3','Cash',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL),(84,10,'Check','4','Check',NULL,0,1,4,NULL,0,1,1,NULL,NULL,NULL),(85,10,'EFT','5','EFT',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL),(86,11,'Completed','1','Completed',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(87,11,'Pending','2','Pending',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(88,11,'Cancelled','3','Cancelled',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(89,11,'Failed','4','Failed',NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(90,11,'In Progress','5','In Progress',NULL,0,NULL,5,NULL,0,1,1,NULL,NULL,NULL),(91,11,'Overdue','6','Overdue',NULL,0,NULL,6,NULL,0,1,1,NULL,NULL,NULL),(92,11,'Refunded','7','Refunded',NULL,0,NULL,7,NULL,0,1,1,NULL,NULL,NULL),(93,12,'Waiting Review','1','Waiting Review',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(94,12,'Approved','2','Approved',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(95,12,'Not Approved','3','Not Approved',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(96,13,'Attendee','1','Attendee',NULL,1,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(97,13,'Volunteer','2','Volunteer',NULL,1,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(98,13,'Host','3','Host',NULL,1,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(99,13,'Speaker','4','Speaker',NULL,1,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(100,14,'Conference','1','Conference',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(101,14,'Exhibition','2','Exhibition',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(102,14,'Fundraiser','3','Fundraiser',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(103,14,'Meeting','4','Meeting',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(104,14,'Performance','5','Performance',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(105,14,'Workshop','6','Workshop',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(106,15,'Activities','1','activity',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(107,15,'Relationships','2','rel',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(108,15,'Groups','3','group',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(109,15,'Notes','4','note',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(110,15,'Tags','5','tag',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(111,15,'Change Log','6','log',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(112,15,'Contributions','7','CiviContribute',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(113,15,'Memberships','8','CiviMember',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(114,15,'Events','9','CiviEvent',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(115,15,'Cases','10','CiviCase',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(116,15,'Grants','11','CiviGrant',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(117,15,'Pledges','13','CiviPledge',NULL,0,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(118,15,'Mailings','14','CiviMail',NULL,0,NULL,14,NULL,0,0,1,NULL,NULL,NULL),(119,16,'Show Smart Groups on Demand','1','showondemand',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(120,16,'Always Show Smart Groups','2','alwaysshow',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(121,16,'Hide Smart Groups','3','hide',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(122,17,'Custom Data','1','CustomData',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(123,17,'Address','2','Address',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(124,17,'Communication Preferences','3','CommunicationPreferences',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(125,17,'Notes','4','Notes',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(126,17,'Demographics','5','Demographics',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(127,17,'Tags and Groups','6','TagsAndGroups',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(128,17,'Email','7','Email',NULL,1,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(129,17,'Phone','8','Phone',NULL,1,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(130,17,'Instant Messenger','9','IM',NULL,1,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(131,17,'Open ID','10','OpenID',NULL,1,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(132,17,'Website','11','Website',NULL,1,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(133,17,'Prefix','12','Prefix',NULL,2,NULL,12,NULL,0,0,1,NULL,NULL,NULL),(134,17,'Formal Title','13','Formal Title',NULL,2,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(135,17,'First Name','14','First Name',NULL,2,NULL,14,NULL,0,0,1,NULL,NULL,NULL),(136,17,'Middle Name','15','Middle Name',NULL,2,NULL,15,NULL,0,0,1,NULL,NULL,NULL),(137,17,'Last Name','16','Last Name',NULL,2,NULL,16,NULL,0,0,1,NULL,NULL,NULL),(138,17,'Suffix','17','Suffix',NULL,2,NULL,17,NULL,0,0,1,NULL,NULL,NULL),(139,18,'Address Fields','1','location',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(140,18,'Custom Fields','2','custom',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(141,18,'Activities','3','activity',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(142,18,'Relationships','4','relationship',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(143,18,'Notes','5','notes',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(144,18,'Change Log','6','changeLog',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(145,18,'Contributions','7','CiviContribute',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(146,18,'Memberships','8','CiviMember',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(147,18,'Events','9','CiviEvent',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(148,18,'Cases','10','CiviCase',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(149,18,'Grants','12','CiviGrant',NULL,0,NULL,14,NULL,0,0,1,NULL,NULL,NULL),(150,18,'Demographics','13','demographics',NULL,0,NULL,15,NULL,0,0,1,NULL,NULL,NULL),(151,18,'Pledges','15','CiviPledge',NULL,0,NULL,17,NULL,0,0,1,NULL,NULL,NULL),(152,18,'Contact Type','16','contactType',NULL,0,NULL,18,NULL,0,0,1,NULL,NULL,NULL),(153,18,'Groups','17','groups',NULL,0,NULL,19,NULL,0,0,1,NULL,NULL,NULL),(154,18,'Tags','18','tags',NULL,0,NULL,20,NULL,0,0,1,NULL,NULL,NULL),(155,18,'Mailing','19','CiviMail',NULL,0,NULL,21,NULL,0,0,1,NULL,NULL,NULL),(156,19,'Groups','1','Groups',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(157,19,'Contributions','2','CiviContribute',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(158,19,'Memberships','3','CiviMember',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(159,19,'Events','4','CiviEvent',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(160,19,'My Contacts / Organizations','5','Permissioned Orgs',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(161,19,'Pledges','7','CiviPledge',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(162,19,'Personal Campaign Pages','8','PCP',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(163,19,'Assigned Activities','9','Assigned Activities',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(164,45,'Email Address','2','email',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(165,45,'Phone','3','phone',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(166,45,'Street Address','4','street_address',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(167,45,'City','5','city',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(168,45,'State/Province','6','state_province',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(169,45,'Country','7','country',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(170,46,'Email Address','2','email',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(171,46,'Phone','3','phone',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(172,46,'Street Address','4','street_address',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(173,46,'City','5','city',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(174,46,'State/Province','6','state_province',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(175,46,'Country','7','country',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(176,20,'Street Address','1','street_address',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(177,20,'Supplemental Address 1','2','supplemental_address_1',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(178,20,'Supplemental Address 2','3','supplemental_address_2',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(179,20,'City','4','city',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(180,20,'Zip / Postal Code','5','postal_code',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(181,20,'Postal Code Suffix','6','postal_code_suffix',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(182,20,'County','7','county',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(183,20,'State / Province','8','state_province',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(184,20,'Country','9','country',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(185,20,'Latitude','10','geo_code_1',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(186,20,'Longitude','11','geo_code_2',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(187,20,'Address Name','12','address_name',NULL,0,NULL,12,NULL,0,0,1,NULL,NULL,NULL),(188,20,'Street Address Parsing','13','street_address_parsing',NULL,0,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(189,21,'Access Control','1',NULL,NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(190,21,'Mailing List','2',NULL,NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(191,22,'Submitted','1','Submitted',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(192,22,'Approved','2','Approved',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(193,22,'Rejected','3','Rejected',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(194,22,'Paid','4','Paid',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(195,22,'Awaiting Information\'','5','Awaiting Information',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(196,22,'Withdrawn','6','Withdrawn',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(197,24,'In Honor of','1','In Honor of',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(198,24,'In Memory of','2','In Memory of',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(199,25,'CRM_Contact_Form_Search_Custom_Sample','1','CRM_Contact_Form_Search_Custom_Sample',NULL,0,NULL,1,'Household Name and State',0,0,1,NULL,NULL,NULL),(200,25,'CRM_Contact_Form_Search_Custom_ContributionAggregate','2','CRM_Contact_Form_Search_Custom_ContributionAggregate',NULL,0,NULL,2,'Contribution Aggregate',0,0,1,NULL,NULL,NULL),(201,25,'CRM_Contact_Form_Search_Custom_Basic','3','CRM_Contact_Form_Search_Custom_Basic',NULL,0,NULL,3,'Basic Search',0,0,1,NULL,NULL,NULL),(202,25,'CRM_Contact_Form_Search_Custom_Group','4','CRM_Contact_Form_Search_Custom_Group',NULL,0,NULL,4,'Include / Exclude Search',0,0,1,NULL,NULL,NULL),(203,25,'CRM_Contact_Form_Search_Custom_PostalMailing','5','CRM_Contact_Form_Search_Custom_PostalMailing',NULL,0,NULL,5,'Postal Mailing',0,0,1,NULL,NULL,NULL),(204,25,'CRM_Contact_Form_Search_Custom_Proximity','6','CRM_Contact_Form_Search_Custom_Proximity',NULL,0,NULL,6,'Proximity Search',0,0,1,NULL,NULL,NULL),(205,25,'CRM_Contact_Form_Search_Custom_EventAggregate','7','CRM_Contact_Form_Search_Custom_EventAggregate',NULL,0,NULL,7,'Event Aggregate',0,0,1,NULL,NULL,NULL),(206,25,'CRM_Contact_Form_Search_Custom_ActivitySearch','8','CRM_Contact_Form_Search_Custom_ActivitySearch',NULL,0,NULL,8,'Activity Search',0,0,1,NULL,NULL,NULL),(207,25,'CRM_Contact_Form_Search_Custom_PriceSet','9','CRM_Contact_Form_Search_Custom_PriceSet',NULL,0,NULL,9,'Price Set Details for Event Participants',0,0,1,NULL,NULL,NULL),(208,25,'CRM_Contact_Form_Search_Custom_ZipCodeRange','10','CRM_Contact_Form_Search_Custom_ZipCodeRange',NULL,0,NULL,10,'Zip Code Range',0,0,1,NULL,NULL,NULL),(209,25,'CRM_Contact_Form_Search_Custom_DateAdded','11','CRM_Contact_Form_Search_Custom_DateAdded',NULL,0,NULL,11,'Date Added to CiviCRM',0,0,1,NULL,NULL,NULL),(210,25,'CRM_Contact_Form_Search_Custom_MultipleValues','12','CRM_Contact_Form_Search_Custom_MultipleValues',NULL,0,NULL,12,'Custom Group Multiple Values Listing',0,0,1,NULL,NULL,NULL),(211,25,'CRM_Contact_Form_Search_Custom_ContribSYBNT','13','CRM_Contact_Form_Search_Custom_ContribSYBNT',NULL,0,NULL,13,'Contributions made in Year X and not Year Y',0,0,1,NULL,NULL,NULL),(212,25,'CRM_Contact_Form_Search_Custom_TagContributions','14','CRM_Contact_Form_Search_Custom_TagContributions',NULL,0,NULL,14,'Find Contribution Amounts by Tag',0,0,1,NULL,NULL,NULL),(213,25,'CRM_Contact_Form_Search_Custom_FullText','15','CRM_Contact_Form_Search_Custom_FullText',NULL,0,NULL,15,'Full-text Search',0,0,1,NULL,NULL,NULL),(214,41,'Constituent Report (Summary)','contact/summary','CRM_Report_Form_Contact_Summary',NULL,0,NULL,1,'Provides a list of address and telephone information for constituent records in your system.',0,0,1,NULL,NULL,NULL),(215,41,'Constituent Report (Detail)','contact/detail','CRM_Report_Form_Contact_Detail',NULL,0,NULL,2,'Provides contact-related information on contributions, memberships, events and activities.',0,0,1,NULL,NULL,NULL),(216,41,'Activity Report','activity','CRM_Report_Form_Activity',NULL,0,NULL,3,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)',0,0,1,NULL,NULL,NULL),(217,41,'Walk / Phone List Report','walklist','CRM_Report_Form_Walklist_Walklist',NULL,0,NULL,4,'Provides a detailed report for your walk/phonelist for targetted contacts',0,0,0,NULL,NULL,NULL),(218,41,'Current Employer Report','contact/currentEmployer','CRM_Report_Form_Contact_CurrentEmployer',NULL,0,NULL,5,'Provides detail list of employer employee relationships along with employment details Ex Join Date',0,0,1,NULL,NULL,NULL),(219,41,'Contribution Summary Report','contribute/summary','CRM_Report_Form_Contribute_Summary',NULL,0,NULL,6,'Groups and totals contributions by criteria including contact, time period, financial type, contributor location, etc.',0,0,1,2,NULL,NULL),(220,41,'Contribution Detail Report','contribute/detail','CRM_Report_Form_Contribute_Detail',NULL,0,NULL,7,'Lists specific contributions by criteria including contact, time period, financial type, contributor location, etc. Contribution summary report points to this report for contribution details.',0,0,1,2,NULL,NULL),(221,41,'Repeat Contributions Report','contribute/repeat','CRM_Report_Form_Contribute_Repeat',NULL,0,NULL,8,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.',0,0,1,2,NULL,NULL),(222,41,'Contributions by Organization Report','contribute/organizationSummary','CRM_Report_Form_Contribute_OrganizationSummary',NULL,0,NULL,9,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.',0,0,1,2,NULL,NULL),(223,41,'Contributions by Household Report','contribute/householdSummary','CRM_Report_Form_Contribute_HouseholdSummary',NULL,0,NULL,10,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.',0,0,1,2,NULL,NULL),(224,41,'Top Donors Report','contribute/topDonor','CRM_Report_Form_Contribute_TopDonor',NULL,0,NULL,11,'Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).',0,0,1,2,NULL,NULL),(225,41,'SYBUNT Report','contribute/sybunt','CRM_Report_Form_Contribute_Sybunt',NULL,0,NULL,12,'SYBUNT means some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.',0,0,1,2,NULL,NULL),(226,41,'LYBUNT Report','contribute/lybunt','CRM_Report_Form_Contribute_Lybunt',NULL,0,NULL,13,'LYBUNT means last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.',0,0,1,2,NULL,NULL),(227,41,'Soft Credit Report','contribute/softcredit','CRM_Report_Form_Contribute_SoftCredit',NULL,0,NULL,14,'Shows contributions made by contacts that have been soft-credited to other contacts.',0,0,1,2,NULL,NULL),(228,41,'Membership Report (Summary)','member/summary','CRM_Report_Form_Member_Summary',NULL,0,NULL,15,'Provides a summary of memberships by type and join date.',0,0,1,3,NULL,NULL),(229,41,'Membership Report (Detail)','member/detail','CRM_Report_Form_Member_Detail',NULL,0,NULL,16,'Provides a list of members along with their membership status and membership details (Join Date, Start Date, End Date). Can also display contributions (payments) associated with each membership.',0,0,1,3,NULL,NULL),(230,41,'Membership Report (Lapsed)','member/lapse','CRM_Report_Form_Member_Lapse',NULL,0,NULL,17,'Provides a list of memberships that lapsed or will lapse before the date you specify.',0,0,1,3,NULL,NULL),(231,41,'Event Participant Report (List)','event/participantListing','CRM_Report_Form_Event_ParticipantListing',NULL,0,NULL,18,'Provides lists of participants for an event.',0,0,1,1,NULL,NULL),(232,41,'Event Income Report (Summary)','event/summary','CRM_Report_Form_Event_Summary',NULL,0,NULL,19,'Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.',0,0,1,1,NULL,NULL),(233,41,'Event Income Report (Detail)','event/income','CRM_Report_Form_Event_Income',NULL,0,NULL,20,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.',0,0,1,1,NULL,NULL),(234,41,'Pledge Report','pledge/detail','CRM_Report_Form_Pledge_Detail',NULL,0,NULL,21,'Pledge Report',0,0,1,6,NULL,NULL),(235,41,'Pledged But not Paid Report','pledge/pbnp','CRM_Report_Form_Pledge_Pbnp',NULL,0,NULL,22,'Pledged but not Paid Report',0,0,1,6,NULL,NULL),(236,41,'Relationship Report','contact/relationship','CRM_Report_Form_Contact_Relationship',NULL,0,NULL,23,'Relationship Report',0,0,1,NULL,NULL,NULL),(237,41,'Case Summary Report','case/summary','CRM_Report_Form_Case_Summary',NULL,0,NULL,24,'Provides a summary of cases and their duration by date range, status, staff member and / or case role.',0,0,1,7,NULL,NULL),(238,41,'Case Time Spent Report','case/timespent','CRM_Report_Form_Case_TimeSpent',NULL,0,NULL,25,'Aggregates time spent on case and / or non-case activities by activity type and contact.',0,0,1,7,NULL,NULL),(239,41,'Contact Demographics Report','case/demographics','CRM_Report_Form_Case_Demographics',NULL,0,NULL,26,'Demographic breakdown for case clients (and or non-case contacts) in your database. Includes custom contact fields.',0,0,1,7,NULL,NULL),(240,41,'Database Log Report','contact/log','CRM_Report_Form_Contact_Log',NULL,0,NULL,27,'Log of contact and activity records created or updated in a given date range.',0,0,1,NULL,NULL,NULL),(241,41,'Activity Report (Summary)','activitySummary','CRM_Report_Form_ActivitySummary',NULL,0,NULL,28,'Shows activity statistics by type / date',0,0,1,NULL,NULL,NULL),(242,41,'Bookkeeping Transactions Report','contribute/bookkeeping','CRM_Report_Form_Contribute_Bookkeeping',NULL,0,0,29,'Shows Bookkeeping Transactions Report',0,0,1,2,NULL,NULL),(243,41,'Grant Report (Detail)','grant/detail','CRM_Report_Form_Grant_Detail',NULL,0,0,30,'Grant Report Detail',0,0,1,5,NULL,NULL),(244,41,'Participant list Count Report','event/participantlist','CRM_Report_Form_Event_ParticipantListCount',NULL,0,0,31,'Shows the Participant list with Participant Count.',0,0,1,1,NULL,NULL),(245,41,'Income Count Summary Report','event/incomesummary','CRM_Report_Form_Event_IncomeCountSummary',NULL,0,0,32,'Shows the Income Summary of events with Count.',0,0,1,1,NULL,NULL),(246,41,'Case Detail Report','case/detail','CRM_Report_Form_Case_Detail',NULL,0,0,33,'Case Details',0,0,1,7,NULL,NULL),(247,41,'Mail Bounce Report','Mailing/bounce','CRM_Report_Form_Mailing_Bounce',NULL,0,NULL,34,'Bounce Report for mailings',0,0,1,4,NULL,NULL),(248,41,'Mail Summary Report','Mailing/summary','CRM_Report_Form_Mailing_Summary',NULL,0,NULL,35,'Summary statistics for mailings',0,0,1,4,NULL,NULL),(249,41,'Mail Opened Report','Mailing/opened','CRM_Report_Form_Mailing_Opened',NULL,0,NULL,36,'Display contacts who opened emails from a mailing',0,0,1,4,NULL,NULL),(250,41,'Mail Clickthrough Report','Mailing/clicks','CRM_Report_Form_Mailing_Clicks',NULL,0,NULL,37,'Display clicks from each mailing',0,0,1,4,NULL,NULL),(251,41,'Contact Logging Report (Summary)','logging/contact/summary','CRM_Report_Form_Contact_LoggingSummary',NULL,0,NULL,38,'Contact modification report for the logging infrastructure (summary).',0,0,0,NULL,NULL,NULL),(252,41,'Contact Logging Report (Detail)','logging/contact/detail','CRM_Report_Form_Contact_LoggingDetail',NULL,0,NULL,39,'Contact modification report for the logging infrastructure (detail).',0,0,0,NULL,NULL,NULL),(253,41,'Contribute Logging Report (Summary)','logging/contribute/summary','CRM_Report_Form_Contribute_LoggingSummary',NULL,0,NULL,40,'Contribute modification report for the logging infrastructure (summary).',0,0,0,2,NULL,NULL),(254,41,'Contribute Logging Report (Detail)','logging/contribute/detail','CRM_Report_Form_Contribute_LoggingDetail',NULL,0,NULL,41,'Contribute modification report for the logging infrastructure (detail).',0,0,0,2,NULL,NULL),(255,41,'Grant Report (Statistics)','grant/statistics','CRM_Report_Form_Grant_Statistics',NULL,0,NULL,42,'Shows statistics for Grants.',0,0,1,5,NULL,NULL),(256,41,'Survey Report (Detail)','survey/detail','CRM_Report_Form_Campaign_SurveyDetails',NULL,0,NULL,43,'Detailed report for canvassing, phone-banking, walk lists or other surveys.',0,0,1,9,NULL,NULL),(257,41,'Personal Campaign Page Report','contribute/pcp','CRM_Report_Form_Contribute_PCP',NULL,0,NULL,44,'Summarizes amount raised and number of contributors for each Personal Campaign Page.',0,0,1,2,NULL,NULL),(258,41,'Pledge Summary Report','pledge/summary','CRM_Report_Form_Pledge_Summary',NULL,0,NULL,45,'Summary of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.',0,0,1,6,NULL,NULL),(259,41,'Contribution Aggregate by Relationship','contribute/history','CRM_Report_Form_Contribute_History',NULL,0,NULL,46,'List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.',0,0,1,2,NULL,NULL),(260,41,'Mail Detail Report','mailing/detail','CRM_Report_Form_Mailing_Detail',NULL,0,NULL,47,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.',0,0,1,4,NULL,NULL),(261,41,'Contribution and Membership Details','member/contributionDetail','CRM_Report_Form_Member_ContributionDetail',NULL,0,NULL,48,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.',0,0,1,3,NULL,NULL),(262,26,'Scheduled','1','Scheduled',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(263,26,'Completed','2','Completed',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(264,26,'Cancelled','3','Cancelled',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(265,26,'Left Message','4','Left Message',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(266,26,'Unreachable','5','Unreachable',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(267,26,'Not Required','6','Not Required',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(268,26,'Available','7','Available',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(269,26,'No-show','8','No_show',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(270,28,'Ongoing','1','Open','Opened',0,1,1,NULL,0,1,1,NULL,NULL,NULL),(271,28,'Resolved','2','Closed','Closed',0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(272,28,'Urgent','3','Urgent','Opened',0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(273,29,'Name Only','1','Name Only',NULL,0,0,1,'CRM_Event_Page_ParticipantListing_Name',0,1,1,NULL,NULL,NULL),(274,29,'Name and Email','2','Name and Email',NULL,0,0,2,'CRM_Event_Page_ParticipantListing_NameAndEmail',0,1,1,NULL,NULL,NULL),(275,29,'Name, Status and Register Date','3','Name, Status and Register Date',NULL,0,0,3,'CRM_Event_Page_ParticipantListing_NameStatusAndDate',0,1,1,NULL,NULL,NULL),(276,30,'jpg','1',NULL,NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL),(277,30,'jpeg','2',NULL,NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL),(278,30,'png','3',NULL,NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL),(279,30,'gif','4',NULL,NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL),(280,30,'txt','5',NULL,NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL),(281,30,'pdf','6',NULL,NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL),(282,30,'doc','7',NULL,NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL),(283,30,'xls','8',NULL,NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL),(284,30,'rtf','9',NULL,NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL),(285,30,'csv','10',NULL,NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL),(286,30,'ppt','11',NULL,NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL),(287,30,'docx','12',NULL,NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL),(288,30,'xlsx','13',NULL,NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL),(289,33,'TinyMCE','1',NULL,NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(290,33,'CKEditor','2',NULL,NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(291,33,'Joomla Default Editor','3',NULL,NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(292,33,'Drupal Default Editor','4',NULL,NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(293,32,'Search Builder','1','Search Builder',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(294,32,'Import Contact','2','Import Contact',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(295,32,'Import Activity','3','Import Activity',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(296,32,'Import Contribution','4','Import Contribution',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(297,32,'Import Membership','5','Import Membership',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL),(298,32,'Import Participant','6','Import Participant',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL),(299,32,'Export Contact','7','Export Contact',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL),(300,32,'Export Contribution','8','Export Contribution',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL),(301,32,'Export Membership','9','Export Membership',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL),(302,32,'Export Participant','10','Export Participant',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL),(303,32,'Export Pledge','11','Export Pledge',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL),(304,32,'Export Case','12','Export Case',NULL,0,0,12,NULL,0,1,1,NULL,NULL,NULL),(305,32,'Export Grant','13','Export Grant',NULL,0,0,13,NULL,0,1,1,NULL,NULL,NULL),(306,32,'Export Activity','14','Export Activity',NULL,0,0,14,NULL,0,1,1,NULL,NULL,NULL),(307,34,'day','day','day',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(308,34,'week','week','week',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(309,34,'month','month','month',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(310,34,'year','year','year',NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(311,35,'Phone','1','Phone',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(312,35,'Mobile','2','Mobile',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(313,35,'Fax','3','Fax',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(314,35,'Pager','4','Pager',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(315,35,'Voicemail','5','Voicemail',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(316,36,'Participant Role','1','ParticipantRole',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(317,36,'Participant Event Name','2','ParticipantEventName',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(318,36,'Participant Event Type','3','ParticipantEventType',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(319,37,'Public','1','public',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(320,37,'Admin','2','admin',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(321,38,'IMAP','1','IMAP',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(322,38,'Maildir','2','Maildir',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(323,38,'POP3','3','POP3',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(324,38,'Localdir','4','Localdir',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(325,39,'Urgent','1','Urgent',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(326,39,'Normal','2','Normal',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(327,39,'Low','3','Low',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(328,40,'Vancouver','city_',NULL,NULL,0,NULL,1,NULL,0,0,0,NULL,NULL,NULL),(329,40,'/(19|20)(\\d{2})-(\\d{1,2})-(\\d{1,2})/','date_',NULL,NULL,1,NULL,2,NULL,0,0,0,NULL,NULL,NULL),(330,42,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(331,42,'Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}','2','Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL),(332,42,'Dear {contact.individual_prefix} {contact.last_name}','3','Dear {contact.individual_prefix} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL),(333,42,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(334,42,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL),(335,43,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(336,43,'Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}','2','Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL),(337,43,'Dear {contact.individual_prefix} {contact.last_name}','3','Dear {contact.individual_prefix} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL),(338,43,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(339,43,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL),(340,44,'{contact.individual_prefix}{ } {contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.individual_suffix}','1','}{contact.individual_prefix}{ } {contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.individual_suffix}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(341,44,'{contact.household_name}','2','{contact.household_name}',NULL,2,1,2,NULL,0,0,1,NULL,NULL,NULL),(342,44,'{contact.organization_name}','3','{contact.organization_name}',NULL,3,1,3,NULL,0,0,1,NULL,NULL,NULL),(343,44,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(344,47,'Home','1','Home',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(345,47,'Work','2','Work',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(346,47,'Facebook','3','Facebook',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(347,47,'Twitter','4','Twitter',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(348,47,'MySpace','5','MySpace',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(349,47,'Main','6','Main',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(350,48,'Contacts','civicrm_contact','Contacts',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(351,48,'Activities','civicrm_activity','Activities',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(352,48,'Cases','civicrm_case','Cases',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(353,48,'Attachments','civicrm_file','Attachements',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(354,49,'USD ($)','USD','USD',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(355,50,'Name Only','1','CRM_Event_Badge_Simple',NULL,0,0,1,'Simple Event Name Badge',0,1,1,NULL,NULL,NULL),(356,50,'Name Tent','2','CRM_Event_Badge_NameTent',NULL,0,0,2,'Name Tent',0,1,1,NULL,NULL,NULL),(357,50,'With Logo','3','CRM_Event_Badge_Logo',NULL,0,0,3,'You can set your own background image',0,1,1,NULL,NULL,NULL),(358,50,'5395 with Logo','4','CRM_Event_Badge_Logo5395',NULL,0,0,4,'Avery 5395 compatible labels with logo (4 up by 2, 59.2mm x 85.7mm)',0,1,1,NULL,NULL,NULL),(359,51,'None','0','',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(360,51,'Author Only','1','',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(361,52,'Direct Mail','1','Direct Mail',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(362,52,'Referral Program','2','Referral Program',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(363,52,'Constituent Engagement','3','Constituent Engagement',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(364,53,'Planned','1','Planned',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(365,53,'In Progress','2','In Progress',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(366,53,'Completed','3','Completed',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(367,53,'Cancelled','4','Cancelled',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(368,56,'1','1','1',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(369,56,'2','2','2',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(370,56,'3','3','3',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(371,56,'4','4','4',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(372,56,'5','5','5',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(373,58,'Letter','{\"metric\":\"in\",\"width\":8.5,\"height\":11}','letter',NULL,NULL,1,1,NULL,0,0,1,NULL,NULL,NULL),(374,58,'Legal','{\"metric\":\"in\",\"width\":8.5,\"height\":14}','legal',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(375,58,'Ledger','{\"metric\":\"in\",\"width\":17,\"height\":11}','ledger',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(376,58,'Tabloid','{\"metric\":\"in\",\"width\":11,\"height\":17}','tabloid',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(377,58,'Executive','{\"metric\":\"in\",\"width\":7.25,\"height\":10.5}','executive',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(378,58,'Folio','{\"metric\":\"in\",\"width\":8.5,\"height\":13}','folio',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(379,58,'Envelope #9','{\"metric\":\"pt\",\"width\":638.93,\"height\":278.93}','envelope-9',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(380,58,'Envelope #10','{\"metric\":\"pt\",\"width\":684,\"height\":297}','envelope-10',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(381,58,'Envelope #11','{\"metric\":\"pt\",\"width\":747,\"height\":324}','envelope-11',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(382,58,'Envelope #12','{\"metric\":\"pt\",\"width\":792,\"height\":342}','envelope-12',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL),(383,58,'Envelope #14','{\"metric\":\"pt\",\"width\":828,\"height\":360}','envelope-14',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL),(384,58,'Envelope ISO B4','{\"metric\":\"pt\",\"width\":1000.63,\"height\":708.66}','envelope-b4',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL),(385,58,'Envelope ISO B5','{\"metric\":\"pt\",\"width\":708.66,\"height\":498.9}','envelope-b5',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL),(386,58,'Envelope ISO B6','{\"metric\":\"pt\",\"width\":498.9,\"height\":354.33}','envelope-b6',NULL,NULL,0,14,NULL,0,0,1,NULL,NULL,NULL),(387,58,'Envelope ISO C3','{\"metric\":\"pt\",\"width\":1298.27,\"height\":918.42}','envelope-c3',NULL,NULL,0,15,NULL,0,0,1,NULL,NULL,NULL),(388,58,'Envelope ISO C4','{\"metric\":\"pt\",\"width\":918.42,\"height\":649.13}','envelope-c4',NULL,NULL,0,16,NULL,0,0,1,NULL,NULL,NULL),(389,58,'Envelope ISO C5','{\"metric\":\"pt\",\"width\":649.13,\"height\":459.21}','envelope-c5',NULL,NULL,0,17,NULL,0,0,1,NULL,NULL,NULL),(390,58,'Envelope ISO C6','{\"metric\":\"pt\",\"width\":459.21,\"height\":323.15}','envelope-c6',NULL,NULL,0,18,NULL,0,0,1,NULL,NULL,NULL),(391,58,'Envelope ISO DL','{\"metric\":\"pt\",\"width\":623.622,\"height\":311.811}','envelope-dl',NULL,NULL,0,19,NULL,0,0,1,NULL,NULL,NULL),(392,58,'ISO A0','{\"metric\":\"pt\",\"width\":2383.94,\"height\":3370.39}','a0',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL),(393,58,'ISO A1','{\"metric\":\"pt\",\"width\":1683.78,\"height\":2383.94}','a1',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL),(394,58,'ISO A2','{\"metric\":\"pt\",\"width\":1190.55,\"height\":1683.78}','a2',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL),(395,58,'ISO A3','{\"metric\":\"pt\",\"width\":841.89,\"height\":1190.55}','a3',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL),(396,58,'ISO A4','{\"metric\":\"pt\",\"width\":595.28,\"height\":841.89}','a4',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL),(397,58,'ISO A5','{\"metric\":\"pt\",\"width\":419.53,\"height\":595.28}','a5',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL),(398,58,'ISO A6','{\"metric\":\"pt\",\"width\":297.64,\"height\":419.53}','a6',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL),(399,58,'ISO A7','{\"metric\":\"pt\",\"width\":209.76,\"height\":297.64}','a7',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL),(400,58,'ISO A8','{\"metric\":\"pt\",\"width\":147.4,\"height\":209.76}','a8',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL),(401,58,'ISO A9','{\"metric\":\"pt\",\"width\":104.88,\"height\":147.4}','a9',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL),(402,58,'ISO A10','{\"metric\":\"pt\",\"width\":73.7,\"height\":104.88}','a10',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL),(403,58,'ISO B0','{\"metric\":\"pt\",\"width\":2834.65,\"height\":4008.19}','b0',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL),(404,58,'ISO B1','{\"metric\":\"pt\",\"width\":2004.09,\"height\":2834.65}','b1',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL),(405,58,'ISO B2','{\"metric\":\"pt\",\"width\":1417.32,\"height\":2004.09}','b2',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL),(406,58,'ISO B3','{\"metric\":\"pt\",\"width\":1000.63,\"height\":1417.32}','b3',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL),(407,58,'ISO B4','{\"metric\":\"pt\",\"width\":708.66,\"height\":1000.63}','b4',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL),(408,58,'ISO B5','{\"metric\":\"pt\",\"width\":498.9,\"height\":708.66}','b5',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL),(409,58,'ISO B6','{\"metric\":\"pt\",\"width\":354.33,\"height\":498.9}','b6',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL),(410,58,'ISO B7','{\"metric\":\"pt\",\"width\":249.45,\"height\":354.33}','b7',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL),(411,58,'ISO B8','{\"metric\":\"pt\",\"width\":175.75,\"height\":249.45}','b8',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL),(412,58,'ISO B9','{\"metric\":\"pt\",\"width\":124.72,\"height\":175.75}','b9',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL),(413,58,'ISO B10','{\"metric\":\"pt\",\"width\":87.87,\"height\":124.72}','b10',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL),(414,58,'ISO C0','{\"metric\":\"pt\",\"width\":2599.37,\"height\":3676.54}','c0',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL),(415,58,'ISO C1','{\"metric\":\"pt\",\"width\":1836.85,\"height\":2599.37}','c1',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL),(416,58,'ISO C2','{\"metric\":\"pt\",\"width\":1298.27,\"height\":1836.85}','c2',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL),(417,58,'ISO C3','{\"metric\":\"pt\",\"width\":918.43,\"height\":1298.27}','c3',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL),(418,58,'ISO C4','{\"metric\":\"pt\",\"width\":649.13,\"height\":918.43}','c4',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL),(419,58,'ISO C5','{\"metric\":\"pt\",\"width\":459.21,\"height\":649.13}','c5',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL),(420,58,'ISO C6','{\"metric\":\"pt\",\"width\":323.15,\"height\":459.21}','c6',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL),(421,58,'ISO C7','{\"metric\":\"pt\",\"width\":229.61,\"height\":323.15}','c7',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL),(422,58,'ISO C8','{\"metric\":\"pt\",\"width\":161.57,\"height\":229.61}','c8',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL),(423,58,'ISO C9','{\"metric\":\"pt\",\"width\":113.39,\"height\":161.57}','c9',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL),(424,58,'ISO C10','{\"metric\":\"pt\",\"width\":79.37,\"height\":113.39}','c10',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL),(425,58,'ISO RA0','{\"metric\":\"pt\",\"width\":2437.8,\"height\":3458.27}','ra0',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL),(426,58,'ISO RA1','{\"metric\":\"pt\",\"width\":1729.13,\"height\":2437.8}','ra1',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL),(427,58,'ISO RA2','{\"metric\":\"pt\",\"width\":1218.9,\"height\":1729.13}','ra2',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL),(428,58,'ISO RA3','{\"metric\":\"pt\",\"width\":864.57,\"height\":1218.9}','ra3',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL),(429,58,'ISO RA4','{\"metric\":\"pt\",\"width\":609.45,\"height\":864.57}','ra4',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL),(430,58,'ISO SRA0','{\"metric\":\"pt\",\"width\":2551.18,\"height\":3628.35}','sra0',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL),(431,58,'ISO SRA1','{\"metric\":\"pt\",\"width\":1814.17,\"height\":2551.18}','sra1',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL),(432,58,'ISO SRA2','{\"metric\":\"pt\",\"width\":1275.59,\"height\":1814.17}','sra2',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL),(433,58,'ISO SRA3','{\"metric\":\"pt\",\"width\":907.09,\"height\":1275.59}','sra3',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL),(434,58,'ISO SRA4','{\"metric\":\"pt\",\"width\":637.8,\"height\":907.09}','sra4',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL),(435,61,'Activity Assignees','1','Activity Assignees',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(436,61,'Activity Source','2','Activity Source',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(437,61,'Activity Targets','3','Activity Targets',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(438,71,'Asset','1','Asset',NULL,0,0,1,'Things you own',0,1,1,2,NULL,NULL),(439,71,'Liability','2','Liability',NULL,0,0,2,'Things you own, like a grant still to be disbursed',0,1,1,2,NULL,NULL),(440,71,'Revenue','3','Revenue',NULL,0,1,3,'Income from contributions and sales of tickets and memberships',0,1,1,2,NULL,NULL),(441,71,'Cost of Sales','4','Cost of Sales',NULL,0,0,4,'Costs incurred to get revenue, e.g. premiums for donations, dinner for a fundraising dinner ticket',0,1,1,2,NULL,NULL),(442,71,'Expenses','5','Expenses',NULL,0,0,5,'Things that are paid for that are consumable, e.g. grants disbursed',0,1,1,2,NULL,NULL),(443,62,'Income Account is','1','Income Account is',NULL,0,1,1,'Income Account is',0,1,1,2,NULL,NULL),(444,62,'Credit/Contra Account is','2','Credit/Contra Account is',NULL,0,0,2,'Credit/Contra Account is',0,1,0,2,NULL,NULL),(445,62,'Accounts Receivable Account is','3','Accounts Receivable Account is',NULL,0,0,3,'Accounts Receivable Account is',0,1,1,2,NULL,NULL),(446,62,'Credit Liability Account is','4','Credit Liability Account is',NULL,0,0,4,'Credit Liability Account is',0,1,0,2,NULL,NULL),(447,62,'Expense Account is','5','Expense Account is',NULL,0,0,5,'Expense Account is',0,1,1,2,NULL,NULL),(448,62,'Asset Account is','6','Asset Account is',NULL,0,0,6,'Asset Account is',0,1,1,2,NULL,NULL),(449,62,'Cost of Sales Account is','7','Cost of Sales Account is',NULL,0,0,7,'Cost of Sales Account is',0,1,1,2,NULL,NULL),(450,62,'Premiums Inventory Account is','8','Premiums Inventory Account is',NULL,0,0,8,'Premiums Inventory Account is',0,1,1,2,NULL,NULL),(451,62,'Discounts Account is','9','Discounts Account is',NULL,0,0,9,'Discounts Account is',0,1,1,2,NULL,NULL),(452,63,'Participant Role','1','participant_role',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(453,64,'Morning Sessions','1','Morning Sessions',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(454,64,'Evening Sessions','2','Evening Sessions',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(455,65,'Contribution','1','Contribution',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(456,65,'Membership','2','Membership',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(457,67,'Open','1','Open',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(458,67,'Closed','2','Closed',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(459,67,'Data Entry','3','Data Entry',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(460,67,'Reopened','4','Reopened',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(461,67,'Exported','5','Exported',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(462,66,'Manual Batch','1','Manual Batch',NULL,0,0,1,'Manual Batch',0,1,1,2,NULL,NULL),(463,66,'Automatic Batch','2','Automatic Batch',NULL,0,0,2,'Automatic Batch',0,1,1,2,NULL,NULL),(464,72,'Paid','1','Paid',NULL,0,0,1,'Paid',0,1,1,2,NULL,NULL),(465,72,'Partially paid','2','Partially paid',NULL,0,0,2,'Partially paid',0,1,1,2,NULL,NULL),(466,72,'Unpaid','3','Unpaid',NULL,0,0,1,'Unpaid',0,1,1,2,NULL,NULL),(467,68,'http','1','http',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(468,68,'xml','2','xml',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(469,68,'smtp','3','smtp',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL),(470,70,'Renewal Reminder (non-auto-renew memberships only)','1','Renewal Reminder (non-auto-renew memberships only)',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(471,70,'Auto-renew Memberships Only','2','Auto-renew Memberships Only',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(472,70,'Reminder for Both','3','Reminder for Both',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(473,73,'Event Badge','1','Event Badge',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(474,74,'Avery 5395','{\"name\":\"Avery 5395\",\"paper-size\":\"a4\",\"metric\":\"mm\",\"lMargin\":15,\"tMargin\":26,\"NX\":2,\"NY\":4,\"SpaceX\":10,\"SpaceY\":5,\"width\":83,\"height\":57,\"font-size\":12,\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-style\":\"\",\"lPadding\":3,\"tPadding\":3}','Avery 5395',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(475,74,'A6 Badge Portrait 150x106','{\"paper-size\":\"a4\",\"orientation\":\"landscape\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":1,\"metric\":\"mm\",\"lMargin\":25,\"tMargin\":27,\"SpaceX\":0,\"SpaceY\":35,\"width\":106,\"height\":150,\"lPadding\":5,\"tPadding\":5}','A6 Badge Portrait 150x106',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(476,74,'Fattorini Name Badge 100x65','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":4,\"metric\":\"mm\",\"lMargin\":6,\"tMargin\":19,\"SpaceX\":0,\"SpaceY\":0,\"width\":100,\"height\":65,\"lPadding\":0,\"tPadding\":0}','Fattorini Name Badge 100x65',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(477,74,'Hanging Badge 3-3/4\" x 4-3\"/4','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":2,\"metric\":\"mm\",\"lMargin\":10,\"tMargin\":28,\"SpaceX\":0,\"SpaceY\":0,\"width\":96,\"height\":121,\"lPadding\":5,\"tPadding\":5}','Hanging Badge 3-3/4\" x 4-3\"/4',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(478,60,'Avery 3475','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":10,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":0,\"tMargin\":5,\"NX\":3,\"NY\":8,\"SpaceX\":0,\"SpaceY\":0,\"width\":70,\"height\":36,\"lPadding\":5.08,\"tPadding\":5.08}','3475','Avery',NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(479,60,'Avery 5160','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.21975,\"tMargin\":0.5,\"NX\":3,\"NY\":10,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":2.5935,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5160','Avery',NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(480,60,'Avery 5161','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.175,\"tMargin\":0.5,\"NX\":2,\"NY\":10,\"SpaceX\":0.15625,\"SpaceY\":0,\"width\":4,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5161','Avery',NULL,0,3,NULL,0,1,1,NULL,NULL,NULL),(481,60,'Avery 5162','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.1525,\"tMargin\":0.88,\"NX\":2,\"NY\":7,\"SpaceX\":0.195,\"SpaceY\":0,\"width\":4,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','5162','Avery',NULL,0,4,NULL,0,1,1,NULL,NULL,NULL),(482,60,'Avery 5163','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.5,\"NX\":2,\"NY\":5,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":4,\"height\":2,\"lPadding\":0.20,\"tPadding\":0.20}','5163','Avery',NULL,0,5,NULL,0,1,1,NULL,NULL,NULL),(483,60,'Avery 5164','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":12,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.156,\"tMargin\":0.5,\"NX\":2,\"NY\":3,\"SpaceX\":0.1875,\"SpaceY\":0,\"width\":4,\"height\":3.33,\"lPadding\":0.20,\"tPadding\":0.20}','5164','Avery',NULL,0,6,NULL,0,1,1,NULL,NULL,NULL),(484,60,'Avery 8600','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":7.1,\"tMargin\":19,\"NX\":3,\"NY\":10,\"SpaceX\":9.5,\"SpaceY\":3.1,\"width\":66.6,\"height\":25.4,\"lPadding\":5.08,\"tPadding\":5.08}','8600','Avery',NULL,0,7,NULL,0,1,1,NULL,NULL,NULL),(485,60,'Avery L7160','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.6,\"NX\":3,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7160','Avery',NULL,0,8,NULL,0,1,1,NULL,NULL,NULL),(486,60,'Avery L7161','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.35,\"NX\":3,\"NY\":6,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.83,\"lPadding\":0.20,\"tPadding\":0.20}','L7161','Avery',NULL,0,9,NULL,0,1,1,NULL,NULL,NULL),(487,60,'Avery L7162','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.51,\"NX\":2,\"NY\":8,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','L7162','Avery',NULL,0,10,NULL,0,1,1,NULL,NULL,NULL),(488,60,'Avery L7163','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.6,\"NX\":2,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7163','Avery',NULL,0,11,NULL,0,1,1,NULL,NULL,NULL),(489,75,'Formal','1','formal',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(490,75,'Familiar','2','familiar',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL),(491,31,'\"FIXME\" <info@EXAMPLE.ORG>','1','\"FIXME\" <info@EXAMPLE.ORG>',NULL,0,1,1,'Default domain email address and from name.',0,0,1,NULL,1,NULL),(492,23,'Emergency','1','Emergency',NULL,0,1,1,NULL,0,0,1,NULL,1,NULL),(493,23,'Family Support','2','Family Support',NULL,0,NULL,2,NULL,0,0,1,NULL,1,NULL),(494,23,'General Protection','3','General Protection',NULL,0,NULL,3,NULL,0,0,1,NULL,1,NULL),(495,23,'Impunity','4','Impunity',NULL,0,NULL,4,NULL,0,0,1,NULL,1,NULL),(496,55,'Approved','1','Approved',NULL,0,1,1,NULL,0,1,1,4,1,NULL),(497,55,'Rejected','2','Rejected',NULL,0,0,2,NULL,0,1,1,4,1,NULL),(498,55,'None','3','None',NULL,0,0,3,NULL,0,1,1,4,1,NULL),(499,57,'Survey','Survey','civicrm_survey',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(500,57,'Cases','Case','civicrm_case',NULL,0,NULL,2,'CRM_Case_PseudoConstant::caseType;',0,0,1,NULL,NULL,NULL),(501,76,'Abkhaz','ab','ab_GE',NULL,NULL,0,1,NULL,0,0,0,NULL,NULL,NULL),(502,76,'Afar','aa','aa_ET',NULL,NULL,0,2,NULL,0,0,0,NULL,NULL,NULL),(503,76,'Afrikaans','af','af_ZA',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(504,76,'Akan','ak','ak_GH',NULL,NULL,0,4,NULL,0,0,0,NULL,NULL,NULL),(505,76,'Albanian','sq','sq_AL',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(506,76,'Amharic','am','am_ET',NULL,NULL,0,6,NULL,0,0,0,NULL,NULL,NULL),(507,76,'Arabic','ar','ar_EG',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(508,76,'Aragonese','an','an_ES',NULL,NULL,0,8,NULL,0,0,0,NULL,NULL,NULL),(509,76,'Armenian','hy','hy_AM',NULL,NULL,0,9,NULL,0,0,0,NULL,NULL,NULL),(510,76,'Assamese','as','as_IN',NULL,NULL,0,10,NULL,0,0,0,NULL,NULL,NULL),(511,76,'Avaric','av','av_RU',NULL,NULL,0,11,NULL,0,0,0,NULL,NULL,NULL),(512,76,'Avestan','ae','ae_XX',NULL,NULL,0,12,NULL,0,0,0,NULL,NULL,NULL),(513,76,'Aymara','ay','ay_BO',NULL,NULL,0,13,NULL,0,0,0,NULL,NULL,NULL),(514,76,'Azerbaijani','az','az_AZ',NULL,NULL,0,14,NULL,0,0,0,NULL,NULL,NULL),(515,76,'Bambara','bm','bm_ML',NULL,NULL,0,15,NULL,0,0,0,NULL,NULL,NULL),(516,76,'Bashkir','ba','ba_RU',NULL,NULL,0,16,NULL,0,0,0,NULL,NULL,NULL),(517,76,'Basque','eu','eu_ES',NULL,NULL,0,17,NULL,0,0,0,NULL,NULL,NULL),(518,76,'Belarusian','be','be_BY',NULL,NULL,0,18,NULL,0,0,0,NULL,NULL,NULL),(519,76,'Bengali','bn','bn_BD',NULL,NULL,0,19,NULL,0,0,0,NULL,NULL,NULL),(520,76,'Bihari','bh','bh_IN',NULL,NULL,0,20,NULL,0,0,0,NULL,NULL,NULL),(521,76,'Bislama','bi','bi_VU',NULL,NULL,0,21,NULL,0,0,0,NULL,NULL,NULL),(522,76,'Bosnian','bs','bs_BA',NULL,NULL,0,22,NULL,0,0,0,NULL,NULL,NULL),(523,76,'Breton','br','br_FR',NULL,NULL,0,23,NULL,0,0,0,NULL,NULL,NULL),(524,76,'Bulgarian','bg','bg_BG',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL),(525,76,'Burmese','my','my_MM',NULL,NULL,0,25,NULL,0,0,0,NULL,NULL,NULL),(526,76,'Catalan; Valencian','ca','ca_ES',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL),(527,76,'Chamorro','ch','ch_GU',NULL,NULL,0,27,NULL,0,0,0,NULL,NULL,NULL),(528,76,'Chechen','ce','ce_RU',NULL,NULL,0,28,NULL,0,0,0,NULL,NULL,NULL),(529,76,'Chichewa; Chewa; Nyanja','ny','ny_MW',NULL,NULL,0,29,NULL,0,0,0,NULL,NULL,NULL),(530,76,'Chinese (China)','zh','zh_CN',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL),(531,76,'Chinese (Taiwan)','zh','zh_TW',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL),(532,76,'Chuvash','cv','cv_RU',NULL,NULL,0,32,NULL,0,0,0,NULL,NULL,NULL),(533,76,'Cornish','kw','kw_GB',NULL,NULL,0,33,NULL,0,0,0,NULL,NULL,NULL),(534,76,'Corsican','co','co_FR',NULL,NULL,0,34,NULL,0,0,0,NULL,NULL,NULL),(535,76,'Cree','cr','cr_CA',NULL,NULL,0,35,NULL,0,0,0,NULL,NULL,NULL),(536,76,'Croatian','hr','hr_HR',NULL,NULL,0,36,NULL,0,0,0,NULL,NULL,NULL),(537,76,'Czech','cs','cs_CZ',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL),(538,76,'Danish','da','da_DK',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL),(539,76,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,NULL,0,39,NULL,0,0,0,NULL,NULL,NULL),(540,76,'Dutch','nl','nl_NL',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL),(541,76,'Dzongkha','dz','dz_BT',NULL,NULL,0,41,NULL,0,0,0,NULL,NULL,NULL),(542,76,'English (Australia)','en','en_AU',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL),(543,76,'English (Canada)','en','en_CA',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL),(544,76,'English (United Kingdom)','en','en_GB',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL),(545,76,'English (United States)','en','en_US',NULL,NULL,1,45,NULL,0,0,1,NULL,NULL,NULL),(546,76,'Esperanto','eo','eo_XX',NULL,NULL,0,46,NULL,0,0,0,NULL,NULL,NULL),(547,76,'Estonian','et','et_EE',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL),(548,76,'Ewe','ee','ee_GH',NULL,NULL,0,48,NULL,0,0,0,NULL,NULL,NULL),(549,76,'Faroese','fo','fo_FO',NULL,NULL,0,49,NULL,0,0,0,NULL,NULL,NULL),(550,76,'Fijian','fj','fj_FJ',NULL,NULL,0,50,NULL,0,0,0,NULL,NULL,NULL),(551,76,'Finnish','fi','fi_FI',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL),(552,76,'French (Canada)','fr','fr_CA',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL),(553,76,'French (France)','fr','fr_FR',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL),(554,76,'Fula; Fulah; Pulaar; Pular','ff','ff_SN',NULL,NULL,0,54,NULL,0,0,0,NULL,NULL,NULL),(555,76,'Galician','gl','gl_ES',NULL,NULL,0,55,NULL,0,0,0,NULL,NULL,NULL),(556,76,'Georgian','ka','ka_GE',NULL,NULL,0,56,NULL,0,0,0,NULL,NULL,NULL),(557,76,'German','de','de_DE',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL),(558,76,'German (Swiss)','de','de_CH',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL),(559,76,'Greek, Modern','el','el_GR',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL),(560,76,'Guarani­','gn','gn_PY',NULL,NULL,0,60,NULL,0,0,0,NULL,NULL,NULL),(561,76,'Gujarati','gu','gu_IN',NULL,NULL,0,61,NULL,0,0,0,NULL,NULL,NULL),(562,76,'Haitian; Haitian Creole','ht','ht_HT',NULL,NULL,0,62,NULL,0,0,0,NULL,NULL,NULL),(563,76,'Hausa','ha','ha_NG',NULL,NULL,0,63,NULL,0,0,0,NULL,NULL,NULL),(564,76,'Hebrew (modern)','he','he_IL',NULL,NULL,0,64,NULL,0,0,1,NULL,NULL,NULL),(565,76,'Herero','hz','hz_NA',NULL,NULL,0,65,NULL,0,0,0,NULL,NULL,NULL),(566,76,'Hindi','hi','hi_IN',NULL,NULL,0,66,NULL,0,0,1,NULL,NULL,NULL),(567,76,'Hiri Motu','ho','ho_PG',NULL,NULL,0,67,NULL,0,0,0,NULL,NULL,NULL),(568,76,'Hungarian','hu','hu_HU',NULL,NULL,0,68,NULL,0,0,1,NULL,NULL,NULL),(569,76,'Interlingua','ia','ia_XX',NULL,NULL,0,69,NULL,0,0,0,NULL,NULL,NULL),(570,76,'Indonesian','id','id_ID',NULL,NULL,0,70,NULL,0,0,1,NULL,NULL,NULL),(571,76,'Interlingue','ie','ie_XX',NULL,NULL,0,71,NULL,0,0,0,NULL,NULL,NULL),(572,76,'Irish','ga','ga_IE',NULL,NULL,0,72,NULL,0,0,0,NULL,NULL,NULL),(573,76,'Igbo','ig','ig_NG',NULL,NULL,0,73,NULL,0,0,0,NULL,NULL,NULL),(574,76,'Inupiaq','ik','ik_US',NULL,NULL,0,74,NULL,0,0,0,NULL,NULL,NULL),(575,76,'Ido','io','io_XX',NULL,NULL,0,75,NULL,0,0,0,NULL,NULL,NULL),(576,76,'Icelandic','is','is_IS',NULL,NULL,0,76,NULL,0,0,0,NULL,NULL,NULL),(577,76,'Italian','it','it_IT',NULL,NULL,0,77,NULL,0,0,1,NULL,NULL,NULL),(578,76,'Inuktitut','iu','iu_CA',NULL,NULL,0,78,NULL,0,0,0,NULL,NULL,NULL),(579,76,'Japanese','ja','ja_JP',NULL,NULL,0,79,NULL,0,0,1,NULL,NULL,NULL),(580,76,'Javanese','jv','jv_ID',NULL,NULL,0,80,NULL,0,0,0,NULL,NULL,NULL),(581,76,'Kalaallisut, Greenlandic','kl','kl_GL',NULL,NULL,0,81,NULL,0,0,0,NULL,NULL,NULL),(582,76,'Kannada','kn','kn_IN',NULL,NULL,0,82,NULL,0,0,0,NULL,NULL,NULL),(583,76,'Kanuri','kr','kr_NE',NULL,NULL,0,83,NULL,0,0,0,NULL,NULL,NULL),(584,76,'Kashmiri','ks','ks_IN',NULL,NULL,0,84,NULL,0,0,0,NULL,NULL,NULL),(585,76,'Kazakh','kk','kk_KZ',NULL,NULL,0,85,NULL,0,0,0,NULL,NULL,NULL),(586,76,'Khmer','km','km_KH',NULL,NULL,0,86,NULL,0,0,1,NULL,NULL,NULL),(587,76,'Kikuyu, Gikuyu','ki','ki_KE',NULL,NULL,0,87,NULL,0,0,0,NULL,NULL,NULL),(588,76,'Kinyarwanda','rw','rw_RW',NULL,NULL,0,88,NULL,0,0,0,NULL,NULL,NULL),(589,76,'Kirghiz, Kyrgyz','ky','ky_KG',NULL,NULL,0,89,NULL,0,0,0,NULL,NULL,NULL),(590,76,'Komi','kv','kv_RU',NULL,NULL,0,90,NULL,0,0,0,NULL,NULL,NULL),(591,76,'Kongo','kg','kg_CD',NULL,NULL,0,91,NULL,0,0,0,NULL,NULL,NULL),(592,76,'Korean','ko','ko_KR',NULL,NULL,0,92,NULL,0,0,0,NULL,NULL,NULL),(593,76,'Kurdish','ku','ku_IQ',NULL,NULL,0,93,NULL,0,0,0,NULL,NULL,NULL),(594,76,'Kwanyama, Kuanyama','kj','kj_NA',NULL,NULL,0,94,NULL,0,0,0,NULL,NULL,NULL),(595,76,'Latin','la','la_VA',NULL,NULL,0,95,NULL,0,0,0,NULL,NULL,NULL),(596,76,'Luxembourgish, Letzeburgesch','lb','lb_LU',NULL,NULL,0,96,NULL,0,0,0,NULL,NULL,NULL),(597,76,'Luganda','lg','lg_UG',NULL,NULL,0,97,NULL,0,0,0,NULL,NULL,NULL),(598,76,'Limburgish, Limburgan, Limburger','li','li_NL',NULL,NULL,0,98,NULL,0,0,0,NULL,NULL,NULL),(599,76,'Lingala','ln','ln_CD',NULL,NULL,0,99,NULL,0,0,0,NULL,NULL,NULL),(600,76,'Lao','lo','lo_LA',NULL,NULL,0,100,NULL,0,0,0,NULL,NULL,NULL),(601,76,'Lithuanian','lt','lt_LT',NULL,NULL,0,101,NULL,0,0,1,NULL,NULL,NULL),(602,76,'Luba-Katanga','lu','lu_CD',NULL,NULL,0,102,NULL,0,0,0,NULL,NULL,NULL),(603,76,'Latvian','lv','lv_LV',NULL,NULL,0,103,NULL,0,0,0,NULL,NULL,NULL),(604,76,'Manx','gv','gv_IM',NULL,NULL,0,104,NULL,0,0,0,NULL,NULL,NULL),(605,76,'Macedonian','mk','mk_MK',NULL,NULL,0,105,NULL,0,0,0,NULL,NULL,NULL),(606,76,'Malagasy','mg','mg_MG',NULL,NULL,0,106,NULL,0,0,0,NULL,NULL,NULL),(607,76,'Malay','ms','ms_MY',NULL,NULL,0,107,NULL,0,0,0,NULL,NULL,NULL),(608,76,'Malayalam','ml','ml_IN',NULL,NULL,0,108,NULL,0,0,0,NULL,NULL,NULL),(609,76,'Maltese','mt','mt_MT',NULL,NULL,0,109,NULL,0,0,0,NULL,NULL,NULL),(610,76,'Māori','mi','mi_NZ',NULL,NULL,0,110,NULL,0,0,0,NULL,NULL,NULL),(611,76,'Marathi','mr','mr_IN',NULL,NULL,0,111,NULL,0,0,0,NULL,NULL,NULL),(612,76,'Marshallese','mh','mh_MH',NULL,NULL,0,112,NULL,0,0,0,NULL,NULL,NULL),(613,76,'Mongolian','mn','mn_MN',NULL,NULL,0,113,NULL,0,0,0,NULL,NULL,NULL),(614,76,'Nauru','na','na_NR',NULL,NULL,0,114,NULL,0,0,0,NULL,NULL,NULL),(615,76,'Navajo, Navaho','nv','nv_US',NULL,NULL,0,115,NULL,0,0,0,NULL,NULL,NULL),(616,76,'Norwegian BokmÃ¥l','nb','nb_NO',NULL,NULL,0,116,NULL,0,0,1,NULL,NULL,NULL),(617,76,'North Ndebele','nd','nd_ZW',NULL,NULL,0,117,NULL,0,0,0,NULL,NULL,NULL),(618,76,'Nepali','ne','ne_NP',NULL,NULL,0,118,NULL,0,0,0,NULL,NULL,NULL),(619,76,'Ndonga','ng','ng_NA',NULL,NULL,0,119,NULL,0,0,0,NULL,NULL,NULL),(620,76,'Norwegian Nynorsk','nn','nn_NO',NULL,NULL,0,120,NULL,0,0,0,NULL,NULL,NULL),(621,76,'Norwegian','no','no_NO',NULL,NULL,0,121,NULL,0,0,0,NULL,NULL,NULL),(622,76,'Nuosu','ii','ii_CN',NULL,NULL,0,122,NULL,0,0,0,NULL,NULL,NULL),(623,76,'South Ndebele','nr','nr_ZA',NULL,NULL,0,123,NULL,0,0,0,NULL,NULL,NULL),(624,76,'Occitan (after 1500)','oc','oc_FR',NULL,NULL,0,124,NULL,0,0,0,NULL,NULL,NULL),(625,76,'Ojibwa','oj','oj_CA',NULL,NULL,0,125,NULL,0,0,0,NULL,NULL,NULL),(626,76,'Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic','cu','cu_BG',NULL,NULL,0,126,NULL,0,0,0,NULL,NULL,NULL),(627,76,'Oromo','om','om_ET',NULL,NULL,0,127,NULL,0,0,0,NULL,NULL,NULL),(628,76,'Oriya','or','or_IN',NULL,NULL,0,128,NULL,0,0,0,NULL,NULL,NULL),(629,76,'Ossetian, Ossetic','os','os_GE',NULL,NULL,0,129,NULL,0,0,0,NULL,NULL,NULL),(630,76,'Panjabi, Punjabi','pa','pa_IN',NULL,NULL,0,130,NULL,0,0,0,NULL,NULL,NULL),(631,76,'Pali','pi','pi_KH',NULL,NULL,0,131,NULL,0,0,0,NULL,NULL,NULL),(632,76,'Persian (Iran)','fa','fa_IR',NULL,NULL,0,132,NULL,0,0,0,NULL,NULL,NULL),(633,76,'Polish','pl','pl_PL',NULL,NULL,0,133,NULL,0,0,1,NULL,NULL,NULL),(634,76,'Pashto, Pushto','ps','ps_AF',NULL,NULL,0,134,NULL,0,0,0,NULL,NULL,NULL),(635,76,'Portuguese (Brazil)','pt','pt_BR',NULL,NULL,0,135,NULL,0,0,1,NULL,NULL,NULL),(636,76,'Portuguese (Portugal)','pt','pt_PT',NULL,NULL,0,136,NULL,0,0,1,NULL,NULL,NULL),(637,76,'Quechua','qu','qu_PE',NULL,NULL,0,137,NULL,0,0,0,NULL,NULL,NULL),(638,76,'Romansh','rm','rm_CH',NULL,NULL,0,138,NULL,0,0,0,NULL,NULL,NULL),(639,76,'Kirundi','rn','rn_BI',NULL,NULL,0,139,NULL,0,0,0,NULL,NULL,NULL),(640,76,'Romanian, Moldavian, Moldovan','ro','ro_RO',NULL,NULL,0,140,NULL,0,0,1,NULL,NULL,NULL),(641,76,'Russian','ru','ru_RU',NULL,NULL,0,141,NULL,0,0,1,NULL,NULL,NULL),(642,76,'Sanskrit','sa','sa_IN',NULL,NULL,0,142,NULL,0,0,0,NULL,NULL,NULL),(643,76,'Sardinian','sc','sc_IT',NULL,NULL,0,143,NULL,0,0,0,NULL,NULL,NULL),(644,76,'Sindhi','sd','sd_IN',NULL,NULL,0,144,NULL,0,0,0,NULL,NULL,NULL),(645,76,'Northern Sami','se','se_NO',NULL,NULL,0,145,NULL,0,0,0,NULL,NULL,NULL),(646,76,'Samoan','sm','sm_WS',NULL,NULL,0,146,NULL,0,0,0,NULL,NULL,NULL),(647,76,'Sango','sg','sg_CF',NULL,NULL,0,147,NULL,0,0,0,NULL,NULL,NULL),(648,76,'Serbian','sr','sr_RS',NULL,NULL,0,148,NULL,0,0,0,NULL,NULL,NULL),(649,76,'Scottish Gaelic; Gaelic','gd','gd_GB',NULL,NULL,0,149,NULL,0,0,0,NULL,NULL,NULL),(650,76,'Shona','sn','sn_ZW',NULL,NULL,0,150,NULL,0,0,0,NULL,NULL,NULL),(651,76,'Sinhala, Sinhalese','si','si_LK',NULL,NULL,0,151,NULL,0,0,0,NULL,NULL,NULL),(652,76,'Slovak','sk','sk_SK',NULL,NULL,0,152,NULL,0,0,1,NULL,NULL,NULL),(653,76,'Slovene','sl','sl_SI',NULL,NULL,0,153,NULL,0,0,1,NULL,NULL,NULL),(654,76,'Somali','so','so_SO',NULL,NULL,0,154,NULL,0,0,0,NULL,NULL,NULL),(655,76,'Southern Sotho','st','st_ZA',NULL,NULL,0,155,NULL,0,0,0,NULL,NULL,NULL),(656,76,'Spanish; Castilian (Spain)','es','es_ES',NULL,NULL,0,156,NULL,0,0,1,NULL,NULL,NULL),(657,76,'Spanish; Castilian (Mexico)','es','es_MX',NULL,NULL,0,157,NULL,0,0,1,NULL,NULL,NULL),(658,76,'Spanish; Castilian (Puerto Rico)','es','es_PR',NULL,NULL,0,158,NULL,0,0,1,NULL,NULL,NULL),(659,76,'Sundanese','su','su_ID',NULL,NULL,0,159,NULL,0,0,0,NULL,NULL,NULL),(660,76,'Swahili','sw','sw_TZ',NULL,NULL,0,160,NULL,0,0,0,NULL,NULL,NULL),(661,76,'Swati','ss','ss_ZA',NULL,NULL,0,161,NULL,0,0,0,NULL,NULL,NULL),(662,76,'Swedish','sv','sv_SE',NULL,NULL,0,162,NULL,0,0,1,NULL,NULL,NULL),(663,76,'Tamil','ta','ta_IN',NULL,NULL,0,163,NULL,0,0,0,NULL,NULL,NULL),(664,76,'Telugu','te','te_IN',NULL,NULL,0,164,NULL,0,0,1,NULL,NULL,NULL),(665,76,'Tajik','tg','tg_TJ',NULL,NULL,0,165,NULL,0,0,0,NULL,NULL,NULL),(666,76,'Thai','th','th_TH',NULL,NULL,0,166,NULL,0,0,1,NULL,NULL,NULL),(667,76,'Tigrinya','ti','ti_ET',NULL,NULL,0,167,NULL,0,0,0,NULL,NULL,NULL),(668,76,'Tibetan Standard, Tibetan, Central','bo','bo_CN',NULL,NULL,0,168,NULL,0,0,0,NULL,NULL,NULL),(669,76,'Turkmen','tk','tk_TM',NULL,NULL,0,169,NULL,0,0,0,NULL,NULL,NULL),(670,76,'Tagalog','tl','tl_PH',NULL,NULL,0,170,NULL,0,0,0,NULL,NULL,NULL),(671,76,'Tswana','tn','tn_ZA',NULL,NULL,0,171,NULL,0,0,0,NULL,NULL,NULL),(672,76,'Tonga (Tonga Islands)','to','to_TO',NULL,NULL,0,172,NULL,0,0,0,NULL,NULL,NULL),(673,76,'Turkish','tr','tr_TR',NULL,NULL,0,173,NULL,0,0,1,NULL,NULL,NULL),(674,76,'Tsonga','ts','ts_ZA',NULL,NULL,0,174,NULL,0,0,0,NULL,NULL,NULL),(675,76,'Tatar','tt','tt_RU',NULL,NULL,0,175,NULL,0,0,0,NULL,NULL,NULL),(676,76,'Twi','tw','tw_GH',NULL,NULL,0,176,NULL,0,0,0,NULL,NULL,NULL),(677,76,'Tahitian','ty','ty_PF',NULL,NULL,0,177,NULL,0,0,0,NULL,NULL,NULL),(678,76,'Uighur, Uyghur','ug','ug_CN',NULL,NULL,0,178,NULL,0,0,0,NULL,NULL,NULL),(679,76,'Ukrainian','uk','uk_UA',NULL,NULL,0,179,NULL,0,0,0,NULL,NULL,NULL),(680,76,'Urdu','ur','ur_PK',NULL,NULL,0,180,NULL,0,0,0,NULL,NULL,NULL),(681,76,'Uzbek','uz','uz_UZ',NULL,NULL,0,181,NULL,0,0,0,NULL,NULL,NULL),(682,76,'Venda','ve','ve_ZA',NULL,NULL,0,182,NULL,0,0,0,NULL,NULL,NULL),(683,76,'Vietnamese','vi','vi_VN',NULL,NULL,0,183,NULL,0,0,1,NULL,NULL,NULL),(684,76,'Volapük','vo','vo_XX',NULL,NULL,0,184,NULL,0,0,0,NULL,NULL,NULL),(685,76,'Walloon','wa','wa_BE',NULL,NULL,0,185,NULL,0,0,0,NULL,NULL,NULL),(686,76,'Welsh','cy','cy_GB',NULL,NULL,0,186,NULL,0,0,0,NULL,NULL,NULL),(687,76,'Wolof','wo','wo_SN',NULL,NULL,0,187,NULL,0,0,0,NULL,NULL,NULL),(688,76,'Western Frisian','fy','fy_NL',NULL,NULL,0,188,NULL,0,0,0,NULL,NULL,NULL),(689,76,'Xhosa','xh','xh_ZA',NULL,NULL,0,189,NULL,0,0,0,NULL,NULL,NULL),(690,76,'Yiddish','yi','yi_US',NULL,NULL,0,190,NULL,0,0,0,NULL,NULL,NULL),(691,76,'Yoruba','yo','yo_NG',NULL,NULL,0,191,NULL,0,0,0,NULL,NULL,NULL),(692,76,'Zhuang, Chuang','za','za_CN',NULL,NULL,0,192,NULL,0,0,0,NULL,NULL,NULL),(693,76,'Zulu','zu','zu_ZA',NULL,NULL,0,193,NULL,0,0,0,NULL,NULL,NULL),(694,77,'In Person','1','in_person',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(695,77,'Phone','2','phone',NULL,0,1,2,NULL,0,1,1,NULL,NULL,NULL),(696,77,'Email','3','email',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(697,77,'Fax','4','fax',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(698,77,'Letter Mail','5','letter_mail',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL),(699,78,'Cases - Send Copy of an Activity','1','case_activity',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(700,79,'Contributions - Duplicate Organization Alert','1','contribution_dupalert',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(701,79,'Contributions - Receipt (off-line)','2','contribution_offline_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(702,79,'Contributions - Receipt (on-line)','3','contribution_online_receipt',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(703,79,'Contributions - Recurring Start and End Notification','4','contribution_recurring_notify',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(704,79,'Contributions - Recurring Cancellation Notification','5','contribution_recurring_cancelled',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(705,79,'Contributions - Recurring Billing Updates','6','contribution_recurring_billing',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(706,79,'Contributions - Recurring Updates','7','contribution_recurring_edit',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(707,79,'Personal Campaign Pages - Admin Notification','8','pcp_notify',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(708,79,'Personal Campaign Pages - Supporter Status Change Notification','9','pcp_status_change',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(709,79,'Personal Campaign Pages - Supporter Welcome','10','pcp_supporter_notify',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL),(710,80,'Events - Registration Confirmation and Receipt (off-line)','1','event_offline_receipt',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(711,80,'Events - Registration Confirmation and Receipt (on-line)','2','event_online_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(712,80,'Events - Receipt only','3','event_registration_receipt',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(713,80,'Events - Registration Cancellation Notice','4','participant_cancelled',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(714,80,'Events - Registration Confirmation Invite','5','participant_confirm',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(715,80,'Events - Pending Registration Expiration Notice','6','participant_expired',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(716,81,'Tell-a-Friend Email','1','friend',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(717,82,'Memberships - Signup and Renewal Receipts (off-line)','1','membership_offline_receipt',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(718,82,'Memberships - Receipt (on-line)','2','membership_online_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(719,82,'Memberships - Auto-renew Cancellation Notification','3','membership_autorenew_cancelled',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(720,82,'Memberships - Auto-renew Billing Updates','4','membership_autorenew_billing',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(721,83,'Test-drive - Receipt Header','1','test_preview',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(722,84,'Pledges - Acknowledgement','1','pledge_acknowledge',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(723,84,'Pledges - Payment Reminder','2','pledge_reminder',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(724,85,'Profiles - Admin Notification','1','uf_notify',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(725,86,'Petition - signature added','1','petition_sign',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(726,86,'Petition - need verification','2','petition_confirmation_needed',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(727,87,'In Honor of','1','in_honor_of',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(728,87,'In Memory of','2','in_memory_of',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(729,87,'Solicited','3','solicited',NULL,NULL,1,3,NULL,0,1,1,NULL,NULL,NULL),(730,87,'Household','4','household',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(731,87,'Workplace Giving','5','workplace',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(732,87,'Foundation Affiliate','6','foundation_affiliate',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(733,87,'3rd-party Service','7','3rd-party_service',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(734,87,'Donor-advised Fund','8','donor-advised_fund',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(735,87,'Matched Gift','9','matched_gift',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(736,87,'PCP','10','pcp',NULL,NULL,0,10,NULL,0,1,1,NULL,NULL,NULL),(737,2,'Interview','46','Interview',NULL,0,NULL,46,'Conduct a phone or in person interview.',0,0,1,NULL,NULL,NULL);
+INSERT INTO `civicrm_option_value` (`id`, `option_group_id`, `label`, `value`, `name`, `grouping`, `filter`, `is_default`, `weight`, `description`, `is_optgroup`, `is_reserved`, `is_active`, `component_id`, `domain_id`, `visibility_id`) VALUES (1,1,'Phone','1',NULL,NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(2,1,'Email','2',NULL,NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(3,1,'Postal Mail','3',NULL,NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(4,1,'SMS','4',NULL,NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(5,1,'Fax','5',NULL,NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(6,2,'Meeting','1','Meeting',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(7,2,'Phone Call','2','Phone Call',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(8,2,'Email','3','Email',NULL,1,NULL,3,'Email sent.',0,1,1,NULL,NULL,NULL),(9,2,'Outbound SMS','4','SMS',NULL,1,NULL,4,'Text message (SMS) sent.',0,1,1,NULL,NULL,NULL),(10,2,'Event Registration','5','Event Registration',NULL,1,NULL,5,'Online or offline event registration.',0,1,1,1,NULL,NULL),(11,2,'Contribution','6','Contribution',NULL,1,NULL,6,'Online or offline contribution.',0,1,1,2,NULL,NULL),(12,2,'Membership Signup','7','Membership Signup',NULL,1,NULL,7,'Online or offline membership signup.',0,1,1,3,NULL,NULL),(13,2,'Membership Renewal','8','Membership Renewal',NULL,1,NULL,8,'Online or offline membership renewal.',0,1,1,3,NULL,NULL),(14,2,'Tell a Friend','9','Tell a Friend',NULL,1,NULL,9,'Send information about a contribution campaign or event to a friend.',0,1,1,NULL,NULL,NULL),(15,2,'Pledge Acknowledgment','10','Pledge Acknowledgment',NULL,1,NULL,10,'Send Pledge Acknowledgment.',0,1,1,6,NULL,NULL),(16,2,'Pledge Reminder','11','Pledge Reminder',NULL,1,NULL,11,'Send Pledge Reminder.',0,1,1,6,NULL,NULL),(17,2,'Inbound Email','12','Inbound Email',NULL,1,NULL,12,'Inbound Email.',0,1,1,NULL,NULL,NULL),(18,2,'Open Case','13','Open Case',NULL,0,0,13,'',0,1,1,7,NULL,NULL),(19,2,'Follow up','14','Follow up',NULL,0,0,14,'',0,1,1,7,NULL,NULL),(20,2,'Change Case Type','15','Change Case Type',NULL,0,0,15,'',0,1,1,7,NULL,NULL),(21,2,'Change Case Status','16','Change Case Status',NULL,0,0,16,'',0,1,1,7,NULL,NULL),(22,2,'Membership Renewal Reminder','17','Membership Renewal Reminder',NULL,1,NULL,17,'offline membership renewal reminder.',0,1,1,3,NULL,NULL),(23,2,'Change Case Start Date','18','Change Case Start Date',NULL,0,0,18,'',0,1,1,7,NULL,NULL),(24,2,'Bulk Email','19','Bulk Email',NULL,1,NULL,19,'Bulk Email Sent.',0,1,1,NULL,NULL,NULL),(25,2,'Assign Case Role','20','Assign Case Role',NULL,0,0,20,'',0,1,1,7,NULL,NULL),(26,2,'Remove Case Role','21','Remove Case Role',NULL,0,0,21,'',0,1,1,7,NULL,NULL),(27,2,'Print PDF Letter','22','Print PDF Letter',NULL,0,NULL,22,'Print PDF Letter.',0,1,1,NULL,NULL,NULL),(28,2,'Merge Case','23','Merge Case',NULL,0,NULL,23,'',0,1,1,7,NULL,NULL),(29,2,'Reassigned Case','24','Reassigned Case',NULL,0,NULL,24,'',0,1,1,7,NULL,NULL),(30,2,'Link Cases','25','Link Cases',NULL,0,NULL,25,'',0,1,1,7,NULL,NULL),(31,2,'Change Case Tags','26','Change Case Tags',NULL,0,0,26,'',0,1,1,7,NULL,NULL),(32,2,'Add Client To Case','27','Add Client To Case',NULL,0,0,26,'',0,1,1,7,NULL,NULL),(33,2,'Survey','28','Survey',NULL,0,0,27,'',0,1,1,9,NULL,NULL),(34,2,'Canvass','29','Canvass',NULL,0,0,28,'',0,1,1,9,NULL,NULL),(35,2,'PhoneBank','30','PhoneBank',NULL,0,0,29,'',0,1,1,9,NULL,NULL),(36,2,'WalkList','31','WalkList',NULL,0,0,30,'',0,1,1,9,NULL,NULL),(37,2,'Petition Signature','32','Petition',NULL,0,0,31,'',0,1,1,9,NULL,NULL),(38,2,'Mass SMS','34','Mass SMS',NULL,1,NULL,34,'Mass SMS',0,1,1,NULL,NULL,NULL),(39,2,'Change Custom Data','33','Change Custom Data',NULL,0,0,33,'',0,1,1,7,NULL,NULL),(40,2,'Change Membership Status','35','Change Membership Status',NULL,1,NULL,35,'Change Membership Status.',0,1,1,3,NULL,NULL),(41,2,'Change Membership Type','36','Change Membership Type',NULL,1,NULL,36,'Change Membership Type.',0,1,1,3,NULL,NULL),(42,2,'Cancel Recurring Contribution','37','Cancel Recurring Contribution',NULL,1,0,37,'',0,1,1,NULL,NULL,NULL),(43,2,'Update Recurring Contribution Billing Details','38','Update Recurring Contribution Billing Details',NULL,1,0,38,'',0,1,1,NULL,NULL,NULL),(44,2,'Update Recurring Contribution','39','Update Recurring Contribution',NULL,1,0,39,'',0,1,1,NULL,NULL,NULL),(45,2,'Reminder Sent','40','Reminder Sent',NULL,1,0,40,'',0,1,1,NULL,NULL,NULL),(46,2,'Export Accounting Batch','41','Export Accounting Batch',NULL,1,0,41,'Export Accounting Batch',0,1,1,2,NULL,NULL),(47,2,'Create Batch','42','Create Batch',NULL,1,0,42,'Create Batch',0,1,1,2,NULL,NULL),(48,2,'Edit Batch','43','Edit Batch',NULL,1,0,43,'Edit Batch',0,1,1,2,NULL,NULL),(49,2,'SMS delivery','44','SMS delivery',NULL,1,NULL,44,'SMS delivery',0,1,1,NULL,NULL,NULL),(50,2,'Inbound SMS','45','Inbound SMS',NULL,1,NULL,45,'Inbound SMS',0,1,1,NULL,NULL,NULL),(51,2,'Payment','46','Payment',NULL,1,NULL,46,'Additional payment recorded for event or membership fee.',0,1,1,2,NULL,NULL),(52,2,'Refund','47','Refund',NULL,1,NULL,47,'Refund recorded for event or membership fee.',0,1,1,2,NULL,NULL),(53,3,'Female','1','Female',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(54,3,'Male','2','Male',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(55,3,'Transgender','3','Transgender',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(56,4,'Yahoo','1','Yahoo',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(57,4,'MSN','2','Msn',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(58,4,'AIM','3','Aim',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(59,4,'GTalk','4','Gtalk',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(60,4,'Jabber','5','Jabber',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(61,4,'Skype','6','Skype',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(62,5,'Sprint','1','Sprint',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(63,5,'Verizon','2','Verizon',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(64,5,'Cingular','3','Cingular',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(65,6,'Mrs.','1','Mrs.',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(66,6,'Ms.','2','Ms.',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(67,6,'Mr.','3','Mr.',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(68,6,'Dr.','4','Dr.',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(69,7,'Jr.','1','Jr.',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(70,7,'Sr.','2','Sr.',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(71,7,'II','3','II',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(72,7,'III','4','III',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(73,7,'IV','5','IV',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(74,7,'V','6','V',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(75,7,'VI','7','VI',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(76,7,'VII','8','VII',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(77,8,'Administrator','1','Admin',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(78,8,'Authenticated','2','Auth',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(79,9,'Visa','1','Visa',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(80,9,'MasterCard','2','MasterCard',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(81,9,'Amex','3','Amex',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(82,9,'Discover','4','Discover',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(83,10,'Credit Card','1','Credit Card',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(84,10,'Debit Card','2','Debit Card',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(85,10,'Cash','3','Cash',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL),(86,10,'Check','4','Check',NULL,0,1,4,NULL,0,1,1,NULL,NULL,NULL),(87,10,'EFT','5','EFT',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL),(88,11,'Completed','1','Completed',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(89,11,'Pending','2','Pending',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(90,11,'Cancelled','3','Cancelled',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(91,11,'Failed','4','Failed',NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(92,11,'In Progress','5','In Progress',NULL,0,NULL,5,NULL,0,1,1,NULL,NULL,NULL),(93,11,'Overdue','6','Overdue',NULL,0,NULL,6,NULL,0,1,1,NULL,NULL,NULL),(94,11,'Refunded','7','Refunded',NULL,0,NULL,7,NULL,0,1,1,NULL,NULL,NULL),(95,11,'Partially paid','8','Partially paid',NULL,0,NULL,8,NULL,0,1,1,NULL,NULL,NULL),(96,11,'Pending refund','9','Pending refund',NULL,0,NULL,9,NULL,0,1,1,NULL,NULL,NULL),(97,12,'Waiting Review','1','Waiting Review',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(98,12,'Approved','2','Approved',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(99,12,'Not Approved','3','Not Approved',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(100,13,'Attendee','1','Attendee',NULL,1,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(101,13,'Volunteer','2','Volunteer',NULL,1,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(102,13,'Host','3','Host',NULL,1,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(103,13,'Speaker','4','Speaker',NULL,1,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(104,14,'Conference','1','Conference',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(105,14,'Exhibition','2','Exhibition',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(106,14,'Fundraiser','3','Fundraiser',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(107,14,'Meeting','4','Meeting',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(108,14,'Performance','5','Performance',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(109,14,'Workshop','6','Workshop',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(110,15,'Activities','1','activity',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(111,15,'Relationships','2','rel',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(112,15,'Groups','3','group',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(113,15,'Notes','4','note',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(114,15,'Tags','5','tag',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(115,15,'Change Log','6','log',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(116,15,'Contributions','7','CiviContribute',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(117,15,'Memberships','8','CiviMember',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(118,15,'Events','9','CiviEvent',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(119,15,'Cases','10','CiviCase',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(120,15,'Grants','11','CiviGrant',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(121,15,'Pledges','13','CiviPledge',NULL,0,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(122,15,'Mailings','14','CiviMail',NULL,0,NULL,14,NULL,0,0,1,NULL,NULL,NULL),(123,16,'Show Smart Groups on Demand','1','showondemand',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(124,16,'Always Show Smart Groups','2','alwaysshow',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(125,16,'Hide Smart Groups','3','hide',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(126,17,'Custom Data','1','CustomData',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(127,17,'Address','2','Address',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(128,17,'Communication Preferences','3','CommunicationPreferences',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(129,17,'Notes','4','Notes',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(130,17,'Demographics','5','Demographics',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(131,17,'Tags and Groups','6','TagsAndGroups',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(132,17,'Email','7','Email',NULL,1,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(133,17,'Phone','8','Phone',NULL,1,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(134,17,'Instant Messenger','9','IM',NULL,1,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(135,17,'Open ID','10','OpenID',NULL,1,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(136,17,'Website','11','Website',NULL,1,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(137,17,'Prefix','12','Prefix',NULL,2,NULL,12,NULL,0,0,1,NULL,NULL,NULL),(138,17,'Formal Title','13','Formal Title',NULL,2,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(139,17,'First Name','14','First Name',NULL,2,NULL,14,NULL,0,0,1,NULL,NULL,NULL),(140,17,'Middle Name','15','Middle Name',NULL,2,NULL,15,NULL,0,0,1,NULL,NULL,NULL),(141,17,'Last Name','16','Last Name',NULL,2,NULL,16,NULL,0,0,1,NULL,NULL,NULL),(142,17,'Suffix','17','Suffix',NULL,2,NULL,17,NULL,0,0,1,NULL,NULL,NULL),(143,18,'Address Fields','1','location',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(144,18,'Custom Fields','2','custom',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(145,18,'Activities','3','activity',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(146,18,'Relationships','4','relationship',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(147,18,'Notes','5','notes',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(148,18,'Change Log','6','changeLog',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(149,18,'Contributions','7','CiviContribute',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(150,18,'Memberships','8','CiviMember',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(151,18,'Events','9','CiviEvent',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(152,18,'Cases','10','CiviCase',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(153,18,'Grants','12','CiviGrant',NULL,0,NULL,14,NULL,0,0,1,NULL,NULL,NULL),(154,18,'Demographics','13','demographics',NULL,0,NULL,15,NULL,0,0,1,NULL,NULL,NULL),(155,18,'Pledges','15','CiviPledge',NULL,0,NULL,17,NULL,0,0,1,NULL,NULL,NULL),(156,18,'Contact Type','16','contactType',NULL,0,NULL,18,NULL,0,0,1,NULL,NULL,NULL),(157,18,'Groups','17','groups',NULL,0,NULL,19,NULL,0,0,1,NULL,NULL,NULL),(158,18,'Tags','18','tags',NULL,0,NULL,20,NULL,0,0,1,NULL,NULL,NULL),(159,18,'Mailing','19','CiviMail',NULL,0,NULL,21,NULL,0,0,1,NULL,NULL,NULL),(160,19,'Groups','1','Groups',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(161,19,'Contributions','2','CiviContribute',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(162,19,'Memberships','3','CiviMember',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(163,19,'Events','4','CiviEvent',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(164,19,'My Contacts / Organizations','5','Permissioned Orgs',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(165,19,'Pledges','7','CiviPledge',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(166,19,'Personal Campaign Pages','8','PCP',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(167,19,'Assigned Activities','9','Assigned Activities',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(168,45,'Email Address','2','email',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(169,45,'Phone','3','phone',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(170,45,'Street Address','4','street_address',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(171,45,'City','5','city',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(172,45,'State/Province','6','state_province',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(173,45,'Country','7','country',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(174,46,'Email Address','2','email',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(175,46,'Phone','3','phone',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(176,46,'Street Address','4','street_address',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(177,46,'City','5','city',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(178,46,'State/Province','6','state_province',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(179,46,'Country','7','country',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(180,20,'Street Address','1','street_address',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(181,20,'Supplemental Address 1','2','supplemental_address_1',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(182,20,'Supplemental Address 2','3','supplemental_address_2',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(183,20,'City','4','city',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(184,20,'Zip / Postal Code','5','postal_code',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(185,20,'Postal Code Suffix','6','postal_code_suffix',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(186,20,'County','7','county',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(187,20,'State / Province','8','state_province',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(188,20,'Country','9','country',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(189,20,'Latitude','10','geo_code_1',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(190,20,'Longitude','11','geo_code_2',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(191,20,'Address Name','12','address_name',NULL,0,NULL,12,NULL,0,0,1,NULL,NULL,NULL),(192,20,'Street Address Parsing','13','street_address_parsing',NULL,0,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(193,21,'Access Control','1',NULL,NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(194,21,'Mailing List','2',NULL,NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(195,22,'Submitted','1','Submitted',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(196,22,'Approved','2','Approved',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(197,22,'Rejected','3','Rejected',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(198,22,'Paid','4','Paid',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(199,22,'Awaiting Information\'','5','Awaiting Information',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(200,22,'Withdrawn','6','Withdrawn',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(201,24,'In Honor of','1','In Honor of',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(202,24,'In Memory of','2','In Memory of',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(203,25,'CRM_Contact_Form_Search_Custom_Sample','1','CRM_Contact_Form_Search_Custom_Sample',NULL,0,NULL,1,'Household Name and State',0,0,1,NULL,NULL,NULL),(204,25,'CRM_Contact_Form_Search_Custom_ContributionAggregate','2','CRM_Contact_Form_Search_Custom_ContributionAggregate',NULL,0,NULL,2,'Contribution Aggregate',0,0,1,NULL,NULL,NULL),(205,25,'CRM_Contact_Form_Search_Custom_Basic','3','CRM_Contact_Form_Search_Custom_Basic',NULL,0,NULL,3,'Basic Search',0,0,1,NULL,NULL,NULL),(206,25,'CRM_Contact_Form_Search_Custom_Group','4','CRM_Contact_Form_Search_Custom_Group',NULL,0,NULL,4,'Include / Exclude Search',0,0,1,NULL,NULL,NULL),(207,25,'CRM_Contact_Form_Search_Custom_PostalMailing','5','CRM_Contact_Form_Search_Custom_PostalMailing',NULL,0,NULL,5,'Postal Mailing',0,0,1,NULL,NULL,NULL),(208,25,'CRM_Contact_Form_Search_Custom_Proximity','6','CRM_Contact_Form_Search_Custom_Proximity',NULL,0,NULL,6,'Proximity Search',0,0,1,NULL,NULL,NULL),(209,25,'CRM_Contact_Form_Search_Custom_EventAggregate','7','CRM_Contact_Form_Search_Custom_EventAggregate',NULL,0,NULL,7,'Event Aggregate',0,0,1,NULL,NULL,NULL),(210,25,'CRM_Contact_Form_Search_Custom_ActivitySearch','8','CRM_Contact_Form_Search_Custom_ActivitySearch',NULL,0,NULL,8,'Activity Search',0,0,1,NULL,NULL,NULL),(211,25,'CRM_Contact_Form_Search_Custom_PriceSet','9','CRM_Contact_Form_Search_Custom_PriceSet',NULL,0,NULL,9,'Price Set Details for Event Participants',0,0,1,NULL,NULL,NULL),(212,25,'CRM_Contact_Form_Search_Custom_ZipCodeRange','10','CRM_Contact_Form_Search_Custom_ZipCodeRange',NULL,0,NULL,10,'Zip Code Range',0,0,1,NULL,NULL,NULL),(213,25,'CRM_Contact_Form_Search_Custom_DateAdded','11','CRM_Contact_Form_Search_Custom_DateAdded',NULL,0,NULL,11,'Date Added to CiviCRM',0,0,1,NULL,NULL,NULL),(214,25,'CRM_Contact_Form_Search_Custom_MultipleValues','12','CRM_Contact_Form_Search_Custom_MultipleValues',NULL,0,NULL,12,'Custom Group Multiple Values Listing',0,0,1,NULL,NULL,NULL),(215,25,'CRM_Contact_Form_Search_Custom_ContribSYBNT','13','CRM_Contact_Form_Search_Custom_ContribSYBNT',NULL,0,NULL,13,'Contributions made in Year X and not Year Y',0,0,1,NULL,NULL,NULL),(216,25,'CRM_Contact_Form_Search_Custom_TagContributions','14','CRM_Contact_Form_Search_Custom_TagContributions',NULL,0,NULL,14,'Find Contribution Amounts by Tag',0,0,1,NULL,NULL,NULL),(217,25,'CRM_Contact_Form_Search_Custom_FullText','15','CRM_Contact_Form_Search_Custom_FullText',NULL,0,NULL,15,'Full-text Search',0,0,1,NULL,NULL,NULL),(218,41,'Constituent Report (Summary)','contact/summary','CRM_Report_Form_Contact_Summary',NULL,0,NULL,1,'Provides a list of address and telephone information for constituent records in your system.',0,0,1,NULL,NULL,NULL),(219,41,'Constituent Report (Detail)','contact/detail','CRM_Report_Form_Contact_Detail',NULL,0,NULL,2,'Provides contact-related information on contributions, memberships, events and activities.',0,0,1,NULL,NULL,NULL),(220,41,'Activity Report','activity','CRM_Report_Form_Activity',NULL,0,NULL,3,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)',0,0,1,NULL,NULL,NULL),(221,41,'Walk / Phone List Report','walklist','CRM_Report_Form_Walklist_Walklist',NULL,0,NULL,4,'Provides a detailed report for your walk/phonelist for targetted contacts',0,0,0,NULL,NULL,NULL),(222,41,'Current Employer Report','contact/currentEmployer','CRM_Report_Form_Contact_CurrentEmployer',NULL,0,NULL,5,'Provides detail list of employer employee relationships along with employment details Ex Join Date',0,0,1,NULL,NULL,NULL),(223,41,'Contribution Summary Report','contribute/summary','CRM_Report_Form_Contribute_Summary',NULL,0,NULL,6,'Groups and totals contributions by criteria including contact, time period, financial type, contributor location, etc.',0,0,1,2,NULL,NULL),(224,41,'Contribution Detail Report','contribute/detail','CRM_Report_Form_Contribute_Detail',NULL,0,NULL,7,'Lists specific contributions by criteria including contact, time period, financial type, contributor location, etc. Contribution summary report points to this report for contribution details.',0,0,1,2,NULL,NULL),(225,41,'Repeat Contributions Report','contribute/repeat','CRM_Report_Form_Contribute_Repeat',NULL,0,NULL,8,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.',0,0,1,2,NULL,NULL),(226,41,'Contributions by Organization Report','contribute/organizationSummary','CRM_Report_Form_Contribute_OrganizationSummary',NULL,0,NULL,9,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.',0,0,1,2,NULL,NULL),(227,41,'Contributions by Household Report','contribute/householdSummary','CRM_Report_Form_Contribute_HouseholdSummary',NULL,0,NULL,10,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.',0,0,1,2,NULL,NULL),(228,41,'Top Donors Report','contribute/topDonor','CRM_Report_Form_Contribute_TopDonor',NULL,0,NULL,11,'Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).',0,0,1,2,NULL,NULL),(229,41,'SYBUNT Report','contribute/sybunt','CRM_Report_Form_Contribute_Sybunt',NULL,0,NULL,12,'SYBUNT means some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.',0,0,1,2,NULL,NULL),(230,41,'LYBUNT Report','contribute/lybunt','CRM_Report_Form_Contribute_Lybunt',NULL,0,NULL,13,'LYBUNT means last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.',0,0,1,2,NULL,NULL),(231,41,'Soft Credit Report','contribute/softcredit','CRM_Report_Form_Contribute_SoftCredit',NULL,0,NULL,14,'Shows contributions made by contacts that have been soft-credited to other contacts.',0,0,1,2,NULL,NULL),(232,41,'Membership Report (Summary)','member/summary','CRM_Report_Form_Member_Summary',NULL,0,NULL,15,'Provides a summary of memberships by type and join date.',0,0,1,3,NULL,NULL),(233,41,'Membership Report (Detail)','member/detail','CRM_Report_Form_Member_Detail',NULL,0,NULL,16,'Provides a list of members along with their membership status and membership details (Join Date, Start Date, End Date). Can also display contributions (payments) associated with each membership.',0,0,1,3,NULL,NULL),(234,41,'Membership Report (Lapsed)','member/lapse','CRM_Report_Form_Member_Lapse',NULL,0,NULL,17,'Provides a list of memberships that lapsed or will lapse before the date you specify.',0,0,1,3,NULL,NULL),(235,41,'Event Participant Report (List)','event/participantListing','CRM_Report_Form_Event_ParticipantListing',NULL,0,NULL,18,'Provides lists of participants for an event.',0,0,1,1,NULL,NULL),(236,41,'Event Income Report (Summary)','event/summary','CRM_Report_Form_Event_Summary',NULL,0,NULL,19,'Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.',0,0,1,1,NULL,NULL),(237,41,'Event Income Report (Detail)','event/income','CRM_Report_Form_Event_Income',NULL,0,NULL,20,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.',0,0,1,1,NULL,NULL),(238,41,'Pledge Report','pledge/detail','CRM_Report_Form_Pledge_Detail',NULL,0,NULL,21,'Pledge Report',0,0,1,6,NULL,NULL),(239,41,'Pledged But not Paid Report','pledge/pbnp','CRM_Report_Form_Pledge_Pbnp',NULL,0,NULL,22,'Pledged but not Paid Report',0,0,1,6,NULL,NULL),(240,41,'Relationship Report','contact/relationship','CRM_Report_Form_Contact_Relationship',NULL,0,NULL,23,'Relationship Report',0,0,1,NULL,NULL,NULL),(241,41,'Case Summary Report','case/summary','CRM_Report_Form_Case_Summary',NULL,0,NULL,24,'Provides a summary of cases and their duration by date range, status, staff member and / or case role.',0,0,1,7,NULL,NULL),(242,41,'Case Time Spent Report','case/timespent','CRM_Report_Form_Case_TimeSpent',NULL,0,NULL,25,'Aggregates time spent on case and / or non-case activities by activity type and contact.',0,0,1,7,NULL,NULL),(243,41,'Contact Demographics Report','case/demographics','CRM_Report_Form_Case_Demographics',NULL,0,NULL,26,'Demographic breakdown for case clients (and or non-case contacts) in your database. Includes custom contact fields.',0,0,1,7,NULL,NULL),(244,41,'Database Log Report','contact/log','CRM_Report_Form_Contact_Log',NULL,0,NULL,27,'Log of contact and activity records created or updated in a given date range.',0,0,1,NULL,NULL,NULL),(245,41,'Activity Report (Summary)','activitySummary','CRM_Report_Form_ActivitySummary',NULL,0,NULL,28,'Shows activity statistics by type / date',0,0,1,NULL,NULL,NULL),(246,41,'Bookkeeping Transactions Report','contribute/bookkeeping','CRM_Report_Form_Contribute_Bookkeeping',NULL,0,0,29,'Shows Bookkeeping Transactions Report',0,0,1,2,NULL,NULL),(247,41,'Grant Report (Detail)','grant/detail','CRM_Report_Form_Grant_Detail',NULL,0,0,30,'Grant Report Detail',0,0,1,5,NULL,NULL),(248,41,'Participant list Count Report','event/participantlist','CRM_Report_Form_Event_ParticipantListCount',NULL,0,0,31,'Shows the Participant list with Participant Count.',0,0,1,1,NULL,NULL),(249,41,'Income Count Summary Report','event/incomesummary','CRM_Report_Form_Event_IncomeCountSummary',NULL,0,0,32,'Shows the Income Summary of events with Count.',0,0,1,1,NULL,NULL),(250,41,'Case Detail Report','case/detail','CRM_Report_Form_Case_Detail',NULL,0,0,33,'Case Details',0,0,1,7,NULL,NULL),(251,41,'Mail Bounce Report','Mailing/bounce','CRM_Report_Form_Mailing_Bounce',NULL,0,NULL,34,'Bounce Report for mailings',0,0,1,4,NULL,NULL),(252,41,'Mail Summary Report','Mailing/summary','CRM_Report_Form_Mailing_Summary',NULL,0,NULL,35,'Summary statistics for mailings',0,0,1,4,NULL,NULL),(253,41,'Mail Opened Report','Mailing/opened','CRM_Report_Form_Mailing_Opened',NULL,0,NULL,36,'Display contacts who opened emails from a mailing',0,0,1,4,NULL,NULL),(254,41,'Mail Clickthrough Report','Mailing/clicks','CRM_Report_Form_Mailing_Clicks',NULL,0,NULL,37,'Display clicks from each mailing',0,0,1,4,NULL,NULL),(255,41,'Contact Logging Report (Summary)','logging/contact/summary','CRM_Report_Form_Contact_LoggingSummary',NULL,0,NULL,38,'Contact modification report for the logging infrastructure (summary).',0,0,0,NULL,NULL,NULL),(256,41,'Contact Logging Report (Detail)','logging/contact/detail','CRM_Report_Form_Contact_LoggingDetail',NULL,0,NULL,39,'Contact modification report for the logging infrastructure (detail).',0,0,0,NULL,NULL,NULL),(257,41,'Contribute Logging Report (Summary)','logging/contribute/summary','CRM_Report_Form_Contribute_LoggingSummary',NULL,0,NULL,40,'Contribute modification report for the logging infrastructure (summary).',0,0,0,2,NULL,NULL),(258,41,'Contribute Logging Report (Detail)','logging/contribute/detail','CRM_Report_Form_Contribute_LoggingDetail',NULL,0,NULL,41,'Contribute modification report for the logging infrastructure (detail).',0,0,0,2,NULL,NULL),(259,41,'Grant Report (Statistics)','grant/statistics','CRM_Report_Form_Grant_Statistics',NULL,0,NULL,42,'Shows statistics for Grants.',0,0,1,5,NULL,NULL),(260,41,'Survey Report (Detail)','survey/detail','CRM_Report_Form_Campaign_SurveyDetails',NULL,0,NULL,43,'Detailed report for canvassing, phone-banking, walk lists or other surveys.',0,0,1,9,NULL,NULL),(261,41,'Personal Campaign Page Report','contribute/pcp','CRM_Report_Form_Contribute_PCP',NULL,0,NULL,44,'Summarizes amount raised and number of contributors for each Personal Campaign Page.',0,0,1,2,NULL,NULL),(262,41,'Pledge Summary Report','pledge/summary','CRM_Report_Form_Pledge_Summary',NULL,0,NULL,45,'Summary of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.',0,0,1,6,NULL,NULL),(263,41,'Contribution Aggregate by Relationship','contribute/history','CRM_Report_Form_Contribute_History',NULL,0,NULL,46,'List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.',0,0,1,2,NULL,NULL),(264,41,'Mail Detail Report','mailing/detail','CRM_Report_Form_Mailing_Detail',NULL,0,NULL,47,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.',0,0,1,4,NULL,NULL),(265,41,'Contribution and Membership Details','member/contributionDetail','CRM_Report_Form_Member_ContributionDetail',NULL,0,NULL,48,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.',0,0,1,3,NULL,NULL),(266,26,'Scheduled','1','Scheduled',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(267,26,'Completed','2','Completed',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(268,26,'Cancelled','3','Cancelled',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(269,26,'Left Message','4','Left Message',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(270,26,'Unreachable','5','Unreachable',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(271,26,'Not Required','6','Not Required',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(272,26,'Available','7','Available',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(273,26,'No-show','8','No_show',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(274,28,'Ongoing','1','Open','Opened',0,1,1,NULL,0,1,1,NULL,NULL,NULL),(275,28,'Resolved','2','Closed','Closed',0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(276,28,'Urgent','3','Urgent','Opened',0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(277,29,'Name Only','1','Name Only',NULL,0,0,1,'CRM_Event_Page_ParticipantListing_Name',0,1,1,NULL,NULL,NULL),(278,29,'Name and Email','2','Name and Email',NULL,0,0,2,'CRM_Event_Page_ParticipantListing_NameAndEmail',0,1,1,NULL,NULL,NULL),(279,29,'Name, Status and Register Date','3','Name, Status and Register Date',NULL,0,0,3,'CRM_Event_Page_ParticipantListing_NameStatusAndDate',0,1,1,NULL,NULL,NULL),(280,30,'jpg','1',NULL,NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL),(281,30,'jpeg','2',NULL,NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL),(282,30,'png','3',NULL,NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL),(283,30,'gif','4',NULL,NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL),(284,30,'txt','5',NULL,NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL),(285,30,'pdf','6',NULL,NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL),(286,30,'doc','7',NULL,NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL),(287,30,'xls','8',NULL,NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL),(288,30,'rtf','9',NULL,NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL),(289,30,'csv','10',NULL,NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL),(290,30,'ppt','11',NULL,NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL),(291,30,'docx','12',NULL,NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL),(292,30,'xlsx','13',NULL,NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL),(293,33,'TinyMCE','1',NULL,NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(294,33,'CKEditor','2',NULL,NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(295,33,'Joomla Default Editor','3',NULL,NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(296,33,'Drupal Default Editor','4',NULL,NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(297,32,'Search Builder','1','Search Builder',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(298,32,'Import Contact','2','Import Contact',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(299,32,'Import Activity','3','Import Activity',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(300,32,'Import Contribution','4','Import Contribution',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(301,32,'Import Membership','5','Import Membership',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL),(302,32,'Import Participant','6','Import Participant',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL),(303,32,'Export Contact','7','Export Contact',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL),(304,32,'Export Contribution','8','Export Contribution',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL),(305,32,'Export Membership','9','Export Membership',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL),(306,32,'Export Participant','10','Export Participant',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL),(307,32,'Export Pledge','11','Export Pledge',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL),(308,32,'Export Case','12','Export Case',NULL,0,0,12,NULL,0,1,1,NULL,NULL,NULL),(309,32,'Export Grant','13','Export Grant',NULL,0,0,13,NULL,0,1,1,NULL,NULL,NULL),(310,32,'Export Activity','14','Export Activity',NULL,0,0,14,NULL,0,1,1,NULL,NULL,NULL),(311,34,'day','day','day',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(312,34,'week','week','week',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(313,34,'month','month','month',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(314,34,'year','year','year',NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(315,35,'Phone','1','Phone',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(316,35,'Mobile','2','Mobile',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(317,35,'Fax','3','Fax',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(318,35,'Pager','4','Pager',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(319,35,'Voicemail','5','Voicemail',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(320,36,'Participant Role','1','ParticipantRole',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(321,36,'Participant Event Name','2','ParticipantEventName',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(322,36,'Participant Event Type','3','ParticipantEventType',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(323,37,'Public','1','public',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(324,37,'Admin','2','admin',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(325,38,'IMAP','1','IMAP',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(326,38,'Maildir','2','Maildir',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(327,38,'POP3','3','POP3',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(328,38,'Localdir','4','Localdir',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(329,39,'Urgent','1','Urgent',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(330,39,'Normal','2','Normal',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(331,39,'Low','3','Low',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(332,40,'Vancouver','city_',NULL,NULL,0,NULL,1,NULL,0,0,0,NULL,NULL,NULL),(333,40,'/(19|20)(\\d{2})-(\\d{1,2})-(\\d{1,2})/','date_',NULL,NULL,1,NULL,2,NULL,0,0,0,NULL,NULL,NULL),(334,42,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(335,42,'Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}','2','Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL),(336,42,'Dear {contact.individual_prefix} {contact.last_name}','3','Dear {contact.individual_prefix} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL),(337,42,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(338,42,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL),(339,43,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(340,43,'Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}','2','Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL),(341,43,'Dear {contact.individual_prefix} {contact.last_name}','3','Dear {contact.individual_prefix} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL),(342,43,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(343,43,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL),(344,44,'{contact.individual_prefix}{ } {contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.individual_suffix}','1','}{contact.individual_prefix}{ } {contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.individual_suffix}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(345,44,'{contact.household_name}','2','{contact.household_name}',NULL,2,1,2,NULL,0,0,1,NULL,NULL,NULL),(346,44,'{contact.organization_name}','3','{contact.organization_name}',NULL,3,1,3,NULL,0,0,1,NULL,NULL,NULL),(347,44,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(348,47,'Home','1','Home',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(349,47,'Work','2','Work',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(350,47,'Facebook','3','Facebook',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(351,47,'Twitter','4','Twitter',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(352,47,'MySpace','5','MySpace',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(353,47,'Main','6','Main',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(354,48,'Contacts','civicrm_contact','Contacts',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(355,48,'Activities','civicrm_activity','Activities',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(356,48,'Cases','civicrm_case','Cases',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(357,48,'Attachments','civicrm_file','Attachements',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(358,49,'USD ($)','USD','USD',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(359,50,'Name Only','1','CRM_Event_Badge_Simple',NULL,0,0,1,'Simple Event Name Badge',0,1,1,NULL,NULL,NULL),(360,50,'Name Tent','2','CRM_Event_Badge_NameTent',NULL,0,0,2,'Name Tent',0,1,1,NULL,NULL,NULL),(361,50,'With Logo','3','CRM_Event_Badge_Logo',NULL,0,0,3,'You can set your own background image',0,1,1,NULL,NULL,NULL),(362,50,'5395 with Logo','4','CRM_Event_Badge_Logo5395',NULL,0,0,4,'Avery 5395 compatible labels with logo (4 up by 2, 59.2mm x 85.7mm)',0,1,1,NULL,NULL,NULL),(363,51,'None','0','',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(364,51,'Author Only','1','',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(365,52,'Direct Mail','1','Direct Mail',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(366,52,'Referral Program','2','Referral Program',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(367,52,'Constituent Engagement','3','Constituent Engagement',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(368,53,'Planned','1','Planned',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(369,53,'In Progress','2','In Progress',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(370,53,'Completed','3','Completed',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(371,53,'Cancelled','4','Cancelled',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(372,56,'1','1','1',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(373,56,'2','2','2',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(374,56,'3','3','3',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(375,56,'4','4','4',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(376,56,'5','5','5',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(377,58,'Letter','{\"metric\":\"in\",\"width\":8.5,\"height\":11}','letter',NULL,NULL,1,1,NULL,0,0,1,NULL,NULL,NULL),(378,58,'Legal','{\"metric\":\"in\",\"width\":8.5,\"height\":14}','legal',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(379,58,'Ledger','{\"metric\":\"in\",\"width\":17,\"height\":11}','ledger',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(380,58,'Tabloid','{\"metric\":\"in\",\"width\":11,\"height\":17}','tabloid',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(381,58,'Executive','{\"metric\":\"in\",\"width\":7.25,\"height\":10.5}','executive',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(382,58,'Folio','{\"metric\":\"in\",\"width\":8.5,\"height\":13}','folio',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(383,58,'Envelope #9','{\"metric\":\"pt\",\"width\":638.93,\"height\":278.93}','envelope-9',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(384,58,'Envelope #10','{\"metric\":\"pt\",\"width\":684,\"height\":297}','envelope-10',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(385,58,'Envelope #11','{\"metric\":\"pt\",\"width\":747,\"height\":324}','envelope-11',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(386,58,'Envelope #12','{\"metric\":\"pt\",\"width\":792,\"height\":342}','envelope-12',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL),(387,58,'Envelope #14','{\"metric\":\"pt\",\"width\":828,\"height\":360}','envelope-14',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL),(388,58,'Envelope ISO B4','{\"metric\":\"pt\",\"width\":1000.63,\"height\":708.66}','envelope-b4',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL),(389,58,'Envelope ISO B5','{\"metric\":\"pt\",\"width\":708.66,\"height\":498.9}','envelope-b5',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL),(390,58,'Envelope ISO B6','{\"metric\":\"pt\",\"width\":498.9,\"height\":354.33}','envelope-b6',NULL,NULL,0,14,NULL,0,0,1,NULL,NULL,NULL),(391,58,'Envelope ISO C3','{\"metric\":\"pt\",\"width\":1298.27,\"height\":918.42}','envelope-c3',NULL,NULL,0,15,NULL,0,0,1,NULL,NULL,NULL),(392,58,'Envelope ISO C4','{\"metric\":\"pt\",\"width\":918.42,\"height\":649.13}','envelope-c4',NULL,NULL,0,16,NULL,0,0,1,NULL,NULL,NULL),(393,58,'Envelope ISO C5','{\"metric\":\"pt\",\"width\":649.13,\"height\":459.21}','envelope-c5',NULL,NULL,0,17,NULL,0,0,1,NULL,NULL,NULL),(394,58,'Envelope ISO C6','{\"metric\":\"pt\",\"width\":459.21,\"height\":323.15}','envelope-c6',NULL,NULL,0,18,NULL,0,0,1,NULL,NULL,NULL),(395,58,'Envelope ISO DL','{\"metric\":\"pt\",\"width\":623.622,\"height\":311.811}','envelope-dl',NULL,NULL,0,19,NULL,0,0,1,NULL,NULL,NULL),(396,58,'ISO A0','{\"metric\":\"pt\",\"width\":2383.94,\"height\":3370.39}','a0',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL),(397,58,'ISO A1','{\"metric\":\"pt\",\"width\":1683.78,\"height\":2383.94}','a1',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL),(398,58,'ISO A2','{\"metric\":\"pt\",\"width\":1190.55,\"height\":1683.78}','a2',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL),(399,58,'ISO A3','{\"metric\":\"pt\",\"width\":841.89,\"height\":1190.55}','a3',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL),(400,58,'ISO A4','{\"metric\":\"pt\",\"width\":595.28,\"height\":841.89}','a4',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL),(401,58,'ISO A5','{\"metric\":\"pt\",\"width\":419.53,\"height\":595.28}','a5',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL),(402,58,'ISO A6','{\"metric\":\"pt\",\"width\":297.64,\"height\":419.53}','a6',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL),(403,58,'ISO A7','{\"metric\":\"pt\",\"width\":209.76,\"height\":297.64}','a7',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL),(404,58,'ISO A8','{\"metric\":\"pt\",\"width\":147.4,\"height\":209.76}','a8',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL),(405,58,'ISO A9','{\"metric\":\"pt\",\"width\":104.88,\"height\":147.4}','a9',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL),(406,58,'ISO A10','{\"metric\":\"pt\",\"width\":73.7,\"height\":104.88}','a10',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL),(407,58,'ISO B0','{\"metric\":\"pt\",\"width\":2834.65,\"height\":4008.19}','b0',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL),(408,58,'ISO B1','{\"metric\":\"pt\",\"width\":2004.09,\"height\":2834.65}','b1',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL),(409,58,'ISO B2','{\"metric\":\"pt\",\"width\":1417.32,\"height\":2004.09}','b2',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL),(410,58,'ISO B3','{\"metric\":\"pt\",\"width\":1000.63,\"height\":1417.32}','b3',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL),(411,58,'ISO B4','{\"metric\":\"pt\",\"width\":708.66,\"height\":1000.63}','b4',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL),(412,58,'ISO B5','{\"metric\":\"pt\",\"width\":498.9,\"height\":708.66}','b5',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL),(413,58,'ISO B6','{\"metric\":\"pt\",\"width\":354.33,\"height\":498.9}','b6',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL),(414,58,'ISO B7','{\"metric\":\"pt\",\"width\":249.45,\"height\":354.33}','b7',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL),(415,58,'ISO B8','{\"metric\":\"pt\",\"width\":175.75,\"height\":249.45}','b8',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL),(416,58,'ISO B9','{\"metric\":\"pt\",\"width\":124.72,\"height\":175.75}','b9',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL),(417,58,'ISO B10','{\"metric\":\"pt\",\"width\":87.87,\"height\":124.72}','b10',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL),(418,58,'ISO C0','{\"metric\":\"pt\",\"width\":2599.37,\"height\":3676.54}','c0',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL),(419,58,'ISO C1','{\"metric\":\"pt\",\"width\":1836.85,\"height\":2599.37}','c1',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL),(420,58,'ISO C2','{\"metric\":\"pt\",\"width\":1298.27,\"height\":1836.85}','c2',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL),(421,58,'ISO C3','{\"metric\":\"pt\",\"width\":918.43,\"height\":1298.27}','c3',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL),(422,58,'ISO C4','{\"metric\":\"pt\",\"width\":649.13,\"height\":918.43}','c4',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL),(423,58,'ISO C5','{\"metric\":\"pt\",\"width\":459.21,\"height\":649.13}','c5',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL),(424,58,'ISO C6','{\"metric\":\"pt\",\"width\":323.15,\"height\":459.21}','c6',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL),(425,58,'ISO C7','{\"metric\":\"pt\",\"width\":229.61,\"height\":323.15}','c7',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL),(426,58,'ISO C8','{\"metric\":\"pt\",\"width\":161.57,\"height\":229.61}','c8',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL),(427,58,'ISO C9','{\"metric\":\"pt\",\"width\":113.39,\"height\":161.57}','c9',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL),(428,58,'ISO C10','{\"metric\":\"pt\",\"width\":79.37,\"height\":113.39}','c10',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL),(429,58,'ISO RA0','{\"metric\":\"pt\",\"width\":2437.8,\"height\":3458.27}','ra0',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL),(430,58,'ISO RA1','{\"metric\":\"pt\",\"width\":1729.13,\"height\":2437.8}','ra1',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL),(431,58,'ISO RA2','{\"metric\":\"pt\",\"width\":1218.9,\"height\":1729.13}','ra2',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL),(432,58,'ISO RA3','{\"metric\":\"pt\",\"width\":864.57,\"height\":1218.9}','ra3',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL),(433,58,'ISO RA4','{\"metric\":\"pt\",\"width\":609.45,\"height\":864.57}','ra4',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL),(434,58,'ISO SRA0','{\"metric\":\"pt\",\"width\":2551.18,\"height\":3628.35}','sra0',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL),(435,58,'ISO SRA1','{\"metric\":\"pt\",\"width\":1814.17,\"height\":2551.18}','sra1',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL),(436,58,'ISO SRA2','{\"metric\":\"pt\",\"width\":1275.59,\"height\":1814.17}','sra2',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL),(437,58,'ISO SRA3','{\"metric\":\"pt\",\"width\":907.09,\"height\":1275.59}','sra3',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL),(438,58,'ISO SRA4','{\"metric\":\"pt\",\"width\":637.8,\"height\":907.09}','sra4',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL),(439,61,'Activity Assignees','1','Activity Assignees',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(440,61,'Activity Source','2','Activity Source',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(441,61,'Activity Targets','3','Activity Targets',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(442,71,'Asset','1','Asset',NULL,0,0,1,'Things you own',0,1,1,2,NULL,NULL),(443,71,'Liability','2','Liability',NULL,0,0,2,'Things you own, like a grant still to be disbursed',0,1,1,2,NULL,NULL),(444,71,'Revenue','3','Revenue',NULL,0,1,3,'Income from contributions and sales of tickets and memberships',0,1,1,2,NULL,NULL),(445,71,'Cost of Sales','4','Cost of Sales',NULL,0,0,4,'Costs incurred to get revenue, e.g. premiums for donations, dinner for a fundraising dinner ticket',0,1,1,2,NULL,NULL),(446,71,'Expenses','5','Expenses',NULL,0,0,5,'Things that are paid for that are consumable, e.g. grants disbursed',0,1,1,2,NULL,NULL),(447,62,'Income Account is','1','Income Account is',NULL,0,1,1,'Income Account is',0,1,1,2,NULL,NULL),(448,62,'Credit/Contra Account is','2','Credit/Contra Account is',NULL,0,0,2,'Credit/Contra Account is',0,1,0,2,NULL,NULL),(449,62,'Accounts Receivable Account is','3','Accounts Receivable Account is',NULL,0,0,3,'Accounts Receivable Account is',0,1,1,2,NULL,NULL),(450,62,'Credit Liability Account is','4','Credit Liability Account is',NULL,0,0,4,'Credit Liability Account is',0,1,0,2,NULL,NULL),(451,62,'Expense Account is','5','Expense Account is',NULL,0,0,5,'Expense Account is',0,1,1,2,NULL,NULL),(452,62,'Asset Account is','6','Asset Account is',NULL,0,0,6,'Asset Account is',0,1,1,2,NULL,NULL),(453,62,'Cost of Sales Account is','7','Cost of Sales Account is',NULL,0,0,7,'Cost of Sales Account is',0,1,1,2,NULL,NULL),(454,62,'Premiums Inventory Account is','8','Premiums Inventory Account is',NULL,0,0,8,'Premiums Inventory Account is',0,1,1,2,NULL,NULL),(455,62,'Discounts Account is','9','Discounts Account is',NULL,0,0,9,'Discounts Account is',0,1,1,2,NULL,NULL),(456,63,'Participant Role','1','participant_role',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(457,64,'Morning Sessions','1','Morning Sessions',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(458,64,'Evening Sessions','2','Evening Sessions',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(459,65,'Contribution','1','Contribution',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(460,65,'Membership','2','Membership',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(461,67,'Open','1','Open',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(462,67,'Closed','2','Closed',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(463,67,'Data Entry','3','Data Entry',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(464,67,'Reopened','4','Reopened',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(465,67,'Exported','5','Exported',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(466,66,'Manual Batch','1','Manual Batch',NULL,0,0,1,'Manual Batch',0,1,1,2,NULL,NULL),(467,66,'Automatic Batch','2','Automatic Batch',NULL,0,0,2,'Automatic Batch',0,1,1,2,NULL,NULL),(468,72,'Paid','1','Paid',NULL,0,0,1,'Paid',0,1,1,2,NULL,NULL),(469,72,'Partially paid','2','Partially paid',NULL,0,0,2,'Partially paid',0,1,1,2,NULL,NULL),(470,72,'Unpaid','3','Unpaid',NULL,0,0,1,'Unpaid',0,1,1,2,NULL,NULL),(471,68,'http','1','http',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(472,68,'xml','2','xml',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(473,68,'smtp','3','smtp',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL),(474,70,'Renewal Reminder (non-auto-renew memberships only)','1','Renewal Reminder (non-auto-renew memberships only)',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(475,70,'Auto-renew Memberships Only','2','Auto-renew Memberships Only',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(476,70,'Reminder for Both','3','Reminder for Both',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(477,73,'Event Badge','1','Event Badge',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(478,74,'Avery 5395','{\"name\":\"Avery 5395\",\"paper-size\":\"a4\",\"metric\":\"mm\",\"lMargin\":15,\"tMargin\":26,\"NX\":2,\"NY\":4,\"SpaceX\":10,\"SpaceY\":5,\"width\":83,\"height\":57,\"font-size\":12,\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-style\":\"\",\"lPadding\":3,\"tPadding\":3}','Avery 5395',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(479,74,'A6 Badge Portrait 150x106','{\"paper-size\":\"a4\",\"orientation\":\"landscape\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":1,\"metric\":\"mm\",\"lMargin\":25,\"tMargin\":27,\"SpaceX\":0,\"SpaceY\":35,\"width\":106,\"height\":150,\"lPadding\":5,\"tPadding\":5}','A6 Badge Portrait 150x106',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(480,74,'Fattorini Name Badge 100x65','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":4,\"metric\":\"mm\",\"lMargin\":6,\"tMargin\":19,\"SpaceX\":0,\"SpaceY\":0,\"width\":100,\"height\":65,\"lPadding\":0,\"tPadding\":0}','Fattorini Name Badge 100x65',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(481,74,'Hanging Badge 3-3/4\" x 4-3\"/4','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":2,\"metric\":\"mm\",\"lMargin\":10,\"tMargin\":28,\"SpaceX\":0,\"SpaceY\":0,\"width\":96,\"height\":121,\"lPadding\":5,\"tPadding\":5}','Hanging Badge 3-3/4\" x 4-3\"/4',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(482,60,'Avery 3475','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":10,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":0,\"tMargin\":5,\"NX\":3,\"NY\":8,\"SpaceX\":0,\"SpaceY\":0,\"width\":70,\"height\":36,\"lPadding\":5.08,\"tPadding\":5.08}','3475','Avery',NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(483,60,'Avery 5160','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.21975,\"tMargin\":0.5,\"NX\":3,\"NY\":10,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":2.5935,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5160','Avery',NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(484,60,'Avery 5161','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.175,\"tMargin\":0.5,\"NX\":2,\"NY\":10,\"SpaceX\":0.15625,\"SpaceY\":0,\"width\":4,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5161','Avery',NULL,0,3,NULL,0,1,1,NULL,NULL,NULL),(485,60,'Avery 5162','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.1525,\"tMargin\":0.88,\"NX\":2,\"NY\":7,\"SpaceX\":0.195,\"SpaceY\":0,\"width\":4,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','5162','Avery',NULL,0,4,NULL,0,1,1,NULL,NULL,NULL),(486,60,'Avery 5163','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.5,\"NX\":2,\"NY\":5,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":4,\"height\":2,\"lPadding\":0.20,\"tPadding\":0.20}','5163','Avery',NULL,0,5,NULL,0,1,1,NULL,NULL,NULL),(487,60,'Avery 5164','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":12,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.156,\"tMargin\":0.5,\"NX\":2,\"NY\":3,\"SpaceX\":0.1875,\"SpaceY\":0,\"width\":4,\"height\":3.33,\"lPadding\":0.20,\"tPadding\":0.20}','5164','Avery',NULL,0,6,NULL,0,1,1,NULL,NULL,NULL),(488,60,'Avery 8600','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":7.1,\"tMargin\":19,\"NX\":3,\"NY\":10,\"SpaceX\":9.5,\"SpaceY\":3.1,\"width\":66.6,\"height\":25.4,\"lPadding\":5.08,\"tPadding\":5.08}','8600','Avery',NULL,0,7,NULL,0,1,1,NULL,NULL,NULL),(489,60,'Avery L7160','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.6,\"NX\":3,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7160','Avery',NULL,0,8,NULL,0,1,1,NULL,NULL,NULL),(490,60,'Avery L7161','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.35,\"NX\":3,\"NY\":6,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.83,\"lPadding\":0.20,\"tPadding\":0.20}','L7161','Avery',NULL,0,9,NULL,0,1,1,NULL,NULL,NULL),(491,60,'Avery L7162','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.51,\"NX\":2,\"NY\":8,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','L7162','Avery',NULL,0,10,NULL,0,1,1,NULL,NULL,NULL),(492,60,'Avery L7163','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.6,\"NX\":2,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7163','Avery',NULL,0,11,NULL,0,1,1,NULL,NULL,NULL),(493,75,'Formal','1','formal',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(494,75,'Familiar','2','familiar',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL),(495,31,'\"FIXME\" <info@EXAMPLE.ORG>','1','\"FIXME\" <info@EXAMPLE.ORG>',NULL,0,1,1,'Default domain email address and from name.',0,0,1,NULL,1,NULL),(496,23,'Emergency','1','Emergency',NULL,0,1,1,NULL,0,0,1,NULL,1,NULL),(497,23,'Family Support','2','Family Support',NULL,0,NULL,2,NULL,0,0,1,NULL,1,NULL),(498,23,'General Protection','3','General Protection',NULL,0,NULL,3,NULL,0,0,1,NULL,1,NULL),(499,23,'Impunity','4','Impunity',NULL,0,NULL,4,NULL,0,0,1,NULL,1,NULL),(500,55,'Approved','1','Approved',NULL,0,1,1,NULL,0,1,1,4,1,NULL),(501,55,'Rejected','2','Rejected',NULL,0,0,2,NULL,0,1,1,4,1,NULL),(502,55,'None','3','None',NULL,0,0,3,NULL,0,1,1,4,1,NULL),(503,57,'Survey','Survey','civicrm_survey',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(504,57,'Cases','Case','civicrm_case',NULL,0,NULL,2,'CRM_Case_PseudoConstant::caseType;',0,0,1,NULL,NULL,NULL),(505,76,'Abkhaz','ab','ab_GE',NULL,NULL,0,1,NULL,0,0,0,NULL,NULL,NULL),(506,76,'Afar','aa','aa_ET',NULL,NULL,0,2,NULL,0,0,0,NULL,NULL,NULL),(507,76,'Afrikaans','af','af_ZA',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(508,76,'Akan','ak','ak_GH',NULL,NULL,0,4,NULL,0,0,0,NULL,NULL,NULL),(509,76,'Albanian','sq','sq_AL',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(510,76,'Amharic','am','am_ET',NULL,NULL,0,6,NULL,0,0,0,NULL,NULL,NULL),(511,76,'Arabic','ar','ar_EG',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(512,76,'Aragonese','an','an_ES',NULL,NULL,0,8,NULL,0,0,0,NULL,NULL,NULL),(513,76,'Armenian','hy','hy_AM',NULL,NULL,0,9,NULL,0,0,0,NULL,NULL,NULL),(514,76,'Assamese','as','as_IN',NULL,NULL,0,10,NULL,0,0,0,NULL,NULL,NULL),(515,76,'Avaric','av','av_RU',NULL,NULL,0,11,NULL,0,0,0,NULL,NULL,NULL),(516,76,'Avestan','ae','ae_XX',NULL,NULL,0,12,NULL,0,0,0,NULL,NULL,NULL),(517,76,'Aymara','ay','ay_BO',NULL,NULL,0,13,NULL,0,0,0,NULL,NULL,NULL),(518,76,'Azerbaijani','az','az_AZ',NULL,NULL,0,14,NULL,0,0,0,NULL,NULL,NULL),(519,76,'Bambara','bm','bm_ML',NULL,NULL,0,15,NULL,0,0,0,NULL,NULL,NULL),(520,76,'Bashkir','ba','ba_RU',NULL,NULL,0,16,NULL,0,0,0,NULL,NULL,NULL),(521,76,'Basque','eu','eu_ES',NULL,NULL,0,17,NULL,0,0,0,NULL,NULL,NULL),(522,76,'Belarusian','be','be_BY',NULL,NULL,0,18,NULL,0,0,0,NULL,NULL,NULL),(523,76,'Bengali','bn','bn_BD',NULL,NULL,0,19,NULL,0,0,0,NULL,NULL,NULL),(524,76,'Bihari','bh','bh_IN',NULL,NULL,0,20,NULL,0,0,0,NULL,NULL,NULL),(525,76,'Bislama','bi','bi_VU',NULL,NULL,0,21,NULL,0,0,0,NULL,NULL,NULL),(526,76,'Bosnian','bs','bs_BA',NULL,NULL,0,22,NULL,0,0,0,NULL,NULL,NULL),(527,76,'Breton','br','br_FR',NULL,NULL,0,23,NULL,0,0,0,NULL,NULL,NULL),(528,76,'Bulgarian','bg','bg_BG',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL),(529,76,'Burmese','my','my_MM',NULL,NULL,0,25,NULL,0,0,0,NULL,NULL,NULL),(530,76,'Catalan; Valencian','ca','ca_ES',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL),(531,76,'Chamorro','ch','ch_GU',NULL,NULL,0,27,NULL,0,0,0,NULL,NULL,NULL),(532,76,'Chechen','ce','ce_RU',NULL,NULL,0,28,NULL,0,0,0,NULL,NULL,NULL),(533,76,'Chichewa; Chewa; Nyanja','ny','ny_MW',NULL,NULL,0,29,NULL,0,0,0,NULL,NULL,NULL),(534,76,'Chinese (China)','zh','zh_CN',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL),(535,76,'Chinese (Taiwan)','zh','zh_TW',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL),(536,76,'Chuvash','cv','cv_RU',NULL,NULL,0,32,NULL,0,0,0,NULL,NULL,NULL),(537,76,'Cornish','kw','kw_GB',NULL,NULL,0,33,NULL,0,0,0,NULL,NULL,NULL),(538,76,'Corsican','co','co_FR',NULL,NULL,0,34,NULL,0,0,0,NULL,NULL,NULL),(539,76,'Cree','cr','cr_CA',NULL,NULL,0,35,NULL,0,0,0,NULL,NULL,NULL),(540,76,'Croatian','hr','hr_HR',NULL,NULL,0,36,NULL,0,0,0,NULL,NULL,NULL),(541,76,'Czech','cs','cs_CZ',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL),(542,76,'Danish','da','da_DK',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL),(543,76,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,NULL,0,39,NULL,0,0,0,NULL,NULL,NULL),(544,76,'Dutch','nl','nl_NL',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL),(545,76,'Dzongkha','dz','dz_BT',NULL,NULL,0,41,NULL,0,0,0,NULL,NULL,NULL),(546,76,'English (Australia)','en','en_AU',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL),(547,76,'English (Canada)','en','en_CA',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL),(548,76,'English (United Kingdom)','en','en_GB',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL),(549,76,'English (United States)','en','en_US',NULL,NULL,1,45,NULL,0,0,1,NULL,NULL,NULL),(550,76,'Esperanto','eo','eo_XX',NULL,NULL,0,46,NULL,0,0,0,NULL,NULL,NULL),(551,76,'Estonian','et','et_EE',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL),(552,76,'Ewe','ee','ee_GH',NULL,NULL,0,48,NULL,0,0,0,NULL,NULL,NULL),(553,76,'Faroese','fo','fo_FO',NULL,NULL,0,49,NULL,0,0,0,NULL,NULL,NULL),(554,76,'Fijian','fj','fj_FJ',NULL,NULL,0,50,NULL,0,0,0,NULL,NULL,NULL),(555,76,'Finnish','fi','fi_FI',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL),(556,76,'French (Canada)','fr','fr_CA',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL),(557,76,'French (France)','fr','fr_FR',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL),(558,76,'Fula; Fulah; Pulaar; Pular','ff','ff_SN',NULL,NULL,0,54,NULL,0,0,0,NULL,NULL,NULL),(559,76,'Galician','gl','gl_ES',NULL,NULL,0,55,NULL,0,0,0,NULL,NULL,NULL),(560,76,'Georgian','ka','ka_GE',NULL,NULL,0,56,NULL,0,0,0,NULL,NULL,NULL),(561,76,'German','de','de_DE',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL),(562,76,'German (Swiss)','de','de_CH',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL),(563,76,'Greek, Modern','el','el_GR',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL),(564,76,'Guarani­','gn','gn_PY',NULL,NULL,0,60,NULL,0,0,0,NULL,NULL,NULL),(565,76,'Gujarati','gu','gu_IN',NULL,NULL,0,61,NULL,0,0,0,NULL,NULL,NULL),(566,76,'Haitian; Haitian Creole','ht','ht_HT',NULL,NULL,0,62,NULL,0,0,0,NULL,NULL,NULL),(567,76,'Hausa','ha','ha_NG',NULL,NULL,0,63,NULL,0,0,0,NULL,NULL,NULL),(568,76,'Hebrew (modern)','he','he_IL',NULL,NULL,0,64,NULL,0,0,1,NULL,NULL,NULL),(569,76,'Herero','hz','hz_NA',NULL,NULL,0,65,NULL,0,0,0,NULL,NULL,NULL),(570,76,'Hindi','hi','hi_IN',NULL,NULL,0,66,NULL,0,0,1,NULL,NULL,NULL),(571,76,'Hiri Motu','ho','ho_PG',NULL,NULL,0,67,NULL,0,0,0,NULL,NULL,NULL),(572,76,'Hungarian','hu','hu_HU',NULL,NULL,0,68,NULL,0,0,1,NULL,NULL,NULL),(573,76,'Interlingua','ia','ia_XX',NULL,NULL,0,69,NULL,0,0,0,NULL,NULL,NULL),(574,76,'Indonesian','id','id_ID',NULL,NULL,0,70,NULL,0,0,1,NULL,NULL,NULL),(575,76,'Interlingue','ie','ie_XX',NULL,NULL,0,71,NULL,0,0,0,NULL,NULL,NULL),(576,76,'Irish','ga','ga_IE',NULL,NULL,0,72,NULL,0,0,0,NULL,NULL,NULL),(577,76,'Igbo','ig','ig_NG',NULL,NULL,0,73,NULL,0,0,0,NULL,NULL,NULL),(578,76,'Inupiaq','ik','ik_US',NULL,NULL,0,74,NULL,0,0,0,NULL,NULL,NULL),(579,76,'Ido','io','io_XX',NULL,NULL,0,75,NULL,0,0,0,NULL,NULL,NULL),(580,76,'Icelandic','is','is_IS',NULL,NULL,0,76,NULL,0,0,0,NULL,NULL,NULL),(581,76,'Italian','it','it_IT',NULL,NULL,0,77,NULL,0,0,1,NULL,NULL,NULL),(582,76,'Inuktitut','iu','iu_CA',NULL,NULL,0,78,NULL,0,0,0,NULL,NULL,NULL),(583,76,'Japanese','ja','ja_JP',NULL,NULL,0,79,NULL,0,0,1,NULL,NULL,NULL),(584,76,'Javanese','jv','jv_ID',NULL,NULL,0,80,NULL,0,0,0,NULL,NULL,NULL),(585,76,'Kalaallisut, Greenlandic','kl','kl_GL',NULL,NULL,0,81,NULL,0,0,0,NULL,NULL,NULL),(586,76,'Kannada','kn','kn_IN',NULL,NULL,0,82,NULL,0,0,0,NULL,NULL,NULL),(587,76,'Kanuri','kr','kr_NE',NULL,NULL,0,83,NULL,0,0,0,NULL,NULL,NULL),(588,76,'Kashmiri','ks','ks_IN',NULL,NULL,0,84,NULL,0,0,0,NULL,NULL,NULL),(589,76,'Kazakh','kk','kk_KZ',NULL,NULL,0,85,NULL,0,0,0,NULL,NULL,NULL),(590,76,'Khmer','km','km_KH',NULL,NULL,0,86,NULL,0,0,1,NULL,NULL,NULL),(591,76,'Kikuyu, Gikuyu','ki','ki_KE',NULL,NULL,0,87,NULL,0,0,0,NULL,NULL,NULL),(592,76,'Kinyarwanda','rw','rw_RW',NULL,NULL,0,88,NULL,0,0,0,NULL,NULL,NULL),(593,76,'Kirghiz, Kyrgyz','ky','ky_KG',NULL,NULL,0,89,NULL,0,0,0,NULL,NULL,NULL),(594,76,'Komi','kv','kv_RU',NULL,NULL,0,90,NULL,0,0,0,NULL,NULL,NULL),(595,76,'Kongo','kg','kg_CD',NULL,NULL,0,91,NULL,0,0,0,NULL,NULL,NULL),(596,76,'Korean','ko','ko_KR',NULL,NULL,0,92,NULL,0,0,0,NULL,NULL,NULL),(597,76,'Kurdish','ku','ku_IQ',NULL,NULL,0,93,NULL,0,0,0,NULL,NULL,NULL),(598,76,'Kwanyama, Kuanyama','kj','kj_NA',NULL,NULL,0,94,NULL,0,0,0,NULL,NULL,NULL),(599,76,'Latin','la','la_VA',NULL,NULL,0,95,NULL,0,0,0,NULL,NULL,NULL),(600,76,'Luxembourgish, Letzeburgesch','lb','lb_LU',NULL,NULL,0,96,NULL,0,0,0,NULL,NULL,NULL),(601,76,'Luganda','lg','lg_UG',NULL,NULL,0,97,NULL,0,0,0,NULL,NULL,NULL),(602,76,'Limburgish, Limburgan, Limburger','li','li_NL',NULL,NULL,0,98,NULL,0,0,0,NULL,NULL,NULL),(603,76,'Lingala','ln','ln_CD',NULL,NULL,0,99,NULL,0,0,0,NULL,NULL,NULL),(604,76,'Lao','lo','lo_LA',NULL,NULL,0,100,NULL,0,0,0,NULL,NULL,NULL),(605,76,'Lithuanian','lt','lt_LT',NULL,NULL,0,101,NULL,0,0,1,NULL,NULL,NULL),(606,76,'Luba-Katanga','lu','lu_CD',NULL,NULL,0,102,NULL,0,0,0,NULL,NULL,NULL),(607,76,'Latvian','lv','lv_LV',NULL,NULL,0,103,NULL,0,0,0,NULL,NULL,NULL),(608,76,'Manx','gv','gv_IM',NULL,NULL,0,104,NULL,0,0,0,NULL,NULL,NULL),(609,76,'Macedonian','mk','mk_MK',NULL,NULL,0,105,NULL,0,0,0,NULL,NULL,NULL),(610,76,'Malagasy','mg','mg_MG',NULL,NULL,0,106,NULL,0,0,0,NULL,NULL,NULL),(611,76,'Malay','ms','ms_MY',NULL,NULL,0,107,NULL,0,0,0,NULL,NULL,NULL),(612,76,'Malayalam','ml','ml_IN',NULL,NULL,0,108,NULL,0,0,0,NULL,NULL,NULL),(613,76,'Maltese','mt','mt_MT',NULL,NULL,0,109,NULL,0,0,0,NULL,NULL,NULL),(614,76,'Māori','mi','mi_NZ',NULL,NULL,0,110,NULL,0,0,0,NULL,NULL,NULL),(615,76,'Marathi','mr','mr_IN',NULL,NULL,0,111,NULL,0,0,0,NULL,NULL,NULL),(616,76,'Marshallese','mh','mh_MH',NULL,NULL,0,112,NULL,0,0,0,NULL,NULL,NULL),(617,76,'Mongolian','mn','mn_MN',NULL,NULL,0,113,NULL,0,0,0,NULL,NULL,NULL),(618,76,'Nauru','na','na_NR',NULL,NULL,0,114,NULL,0,0,0,NULL,NULL,NULL),(619,76,'Navajo, Navaho','nv','nv_US',NULL,NULL,0,115,NULL,0,0,0,NULL,NULL,NULL),(620,76,'Norwegian BokmÃ¥l','nb','nb_NO',NULL,NULL,0,116,NULL,0,0,1,NULL,NULL,NULL),(621,76,'North Ndebele','nd','nd_ZW',NULL,NULL,0,117,NULL,0,0,0,NULL,NULL,NULL),(622,76,'Nepali','ne','ne_NP',NULL,NULL,0,118,NULL,0,0,0,NULL,NULL,NULL),(623,76,'Ndonga','ng','ng_NA',NULL,NULL,0,119,NULL,0,0,0,NULL,NULL,NULL),(624,76,'Norwegian Nynorsk','nn','nn_NO',NULL,NULL,0,120,NULL,0,0,0,NULL,NULL,NULL),(625,76,'Norwegian','no','no_NO',NULL,NULL,0,121,NULL,0,0,0,NULL,NULL,NULL),(626,76,'Nuosu','ii','ii_CN',NULL,NULL,0,122,NULL,0,0,0,NULL,NULL,NULL),(627,76,'South Ndebele','nr','nr_ZA',NULL,NULL,0,123,NULL,0,0,0,NULL,NULL,NULL),(628,76,'Occitan (after 1500)','oc','oc_FR',NULL,NULL,0,124,NULL,0,0,0,NULL,NULL,NULL),(629,76,'Ojibwa','oj','oj_CA',NULL,NULL,0,125,NULL,0,0,0,NULL,NULL,NULL),(630,76,'Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic','cu','cu_BG',NULL,NULL,0,126,NULL,0,0,0,NULL,NULL,NULL),(631,76,'Oromo','om','om_ET',NULL,NULL,0,127,NULL,0,0,0,NULL,NULL,NULL),(632,76,'Oriya','or','or_IN',NULL,NULL,0,128,NULL,0,0,0,NULL,NULL,NULL),(633,76,'Ossetian, Ossetic','os','os_GE',NULL,NULL,0,129,NULL,0,0,0,NULL,NULL,NULL),(634,76,'Panjabi, Punjabi','pa','pa_IN',NULL,NULL,0,130,NULL,0,0,0,NULL,NULL,NULL),(635,76,'Pali','pi','pi_KH',NULL,NULL,0,131,NULL,0,0,0,NULL,NULL,NULL),(636,76,'Persian (Iran)','fa','fa_IR',NULL,NULL,0,132,NULL,0,0,0,NULL,NULL,NULL),(637,76,'Polish','pl','pl_PL',NULL,NULL,0,133,NULL,0,0,1,NULL,NULL,NULL),(638,76,'Pashto, Pushto','ps','ps_AF',NULL,NULL,0,134,NULL,0,0,0,NULL,NULL,NULL),(639,76,'Portuguese (Brazil)','pt','pt_BR',NULL,NULL,0,135,NULL,0,0,1,NULL,NULL,NULL),(640,76,'Portuguese (Portugal)','pt','pt_PT',NULL,NULL,0,136,NULL,0,0,1,NULL,NULL,NULL),(641,76,'Quechua','qu','qu_PE',NULL,NULL,0,137,NULL,0,0,0,NULL,NULL,NULL),(642,76,'Romansh','rm','rm_CH',NULL,NULL,0,138,NULL,0,0,0,NULL,NULL,NULL),(643,76,'Kirundi','rn','rn_BI',NULL,NULL,0,139,NULL,0,0,0,NULL,NULL,NULL),(644,76,'Romanian, Moldavian, Moldovan','ro','ro_RO',NULL,NULL,0,140,NULL,0,0,1,NULL,NULL,NULL),(645,76,'Russian','ru','ru_RU',NULL,NULL,0,141,NULL,0,0,1,NULL,NULL,NULL),(646,76,'Sanskrit','sa','sa_IN',NULL,NULL,0,142,NULL,0,0,0,NULL,NULL,NULL),(647,76,'Sardinian','sc','sc_IT',NULL,NULL,0,143,NULL,0,0,0,NULL,NULL,NULL),(648,76,'Sindhi','sd','sd_IN',NULL,NULL,0,144,NULL,0,0,0,NULL,NULL,NULL),(649,76,'Northern Sami','se','se_NO',NULL,NULL,0,145,NULL,0,0,0,NULL,NULL,NULL),(650,76,'Samoan','sm','sm_WS',NULL,NULL,0,146,NULL,0,0,0,NULL,NULL,NULL),(651,76,'Sango','sg','sg_CF',NULL,NULL,0,147,NULL,0,0,0,NULL,NULL,NULL),(652,76,'Serbian','sr','sr_RS',NULL,NULL,0,148,NULL,0,0,0,NULL,NULL,NULL),(653,76,'Scottish Gaelic; Gaelic','gd','gd_GB',NULL,NULL,0,149,NULL,0,0,0,NULL,NULL,NULL),(654,76,'Shona','sn','sn_ZW',NULL,NULL,0,150,NULL,0,0,0,NULL,NULL,NULL),(655,76,'Sinhala, Sinhalese','si','si_LK',NULL,NULL,0,151,NULL,0,0,0,NULL,NULL,NULL),(656,76,'Slovak','sk','sk_SK',NULL,NULL,0,152,NULL,0,0,1,NULL,NULL,NULL),(657,76,'Slovene','sl','sl_SI',NULL,NULL,0,153,NULL,0,0,1,NULL,NULL,NULL),(658,76,'Somali','so','so_SO',NULL,NULL,0,154,NULL,0,0,0,NULL,NULL,NULL),(659,76,'Southern Sotho','st','st_ZA',NULL,NULL,0,155,NULL,0,0,0,NULL,NULL,NULL),(660,76,'Spanish; Castilian (Spain)','es','es_ES',NULL,NULL,0,156,NULL,0,0,1,NULL,NULL,NULL),(661,76,'Spanish; Castilian (Mexico)','es','es_MX',NULL,NULL,0,157,NULL,0,0,1,NULL,NULL,NULL),(662,76,'Spanish; Castilian (Puerto Rico)','es','es_PR',NULL,NULL,0,158,NULL,0,0,1,NULL,NULL,NULL),(663,76,'Sundanese','su','su_ID',NULL,NULL,0,159,NULL,0,0,0,NULL,NULL,NULL),(664,76,'Swahili','sw','sw_TZ',NULL,NULL,0,160,NULL,0,0,0,NULL,NULL,NULL),(665,76,'Swati','ss','ss_ZA',NULL,NULL,0,161,NULL,0,0,0,NULL,NULL,NULL),(666,76,'Swedish','sv','sv_SE',NULL,NULL,0,162,NULL,0,0,1,NULL,NULL,NULL),(667,76,'Tamil','ta','ta_IN',NULL,NULL,0,163,NULL,0,0,0,NULL,NULL,NULL),(668,76,'Telugu','te','te_IN',NULL,NULL,0,164,NULL,0,0,1,NULL,NULL,NULL),(669,76,'Tajik','tg','tg_TJ',NULL,NULL,0,165,NULL,0,0,0,NULL,NULL,NULL),(670,76,'Thai','th','th_TH',NULL,NULL,0,166,NULL,0,0,1,NULL,NULL,NULL),(671,76,'Tigrinya','ti','ti_ET',NULL,NULL,0,167,NULL,0,0,0,NULL,NULL,NULL),(672,76,'Tibetan Standard, Tibetan, Central','bo','bo_CN',NULL,NULL,0,168,NULL,0,0,0,NULL,NULL,NULL),(673,76,'Turkmen','tk','tk_TM',NULL,NULL,0,169,NULL,0,0,0,NULL,NULL,NULL),(674,76,'Tagalog','tl','tl_PH',NULL,NULL,0,170,NULL,0,0,0,NULL,NULL,NULL),(675,76,'Tswana','tn','tn_ZA',NULL,NULL,0,171,NULL,0,0,0,NULL,NULL,NULL),(676,76,'Tonga (Tonga Islands)','to','to_TO',NULL,NULL,0,172,NULL,0,0,0,NULL,NULL,NULL),(677,76,'Turkish','tr','tr_TR',NULL,NULL,0,173,NULL,0,0,1,NULL,NULL,NULL),(678,76,'Tsonga','ts','ts_ZA',NULL,NULL,0,174,NULL,0,0,0,NULL,NULL,NULL),(679,76,'Tatar','tt','tt_RU',NULL,NULL,0,175,NULL,0,0,0,NULL,NULL,NULL),(680,76,'Twi','tw','tw_GH',NULL,NULL,0,176,NULL,0,0,0,NULL,NULL,NULL),(681,76,'Tahitian','ty','ty_PF',NULL,NULL,0,177,NULL,0,0,0,NULL,NULL,NULL),(682,76,'Uighur, Uyghur','ug','ug_CN',NULL,NULL,0,178,NULL,0,0,0,NULL,NULL,NULL),(683,76,'Ukrainian','uk','uk_UA',NULL,NULL,0,179,NULL,0,0,0,NULL,NULL,NULL),(684,76,'Urdu','ur','ur_PK',NULL,NULL,0,180,NULL,0,0,0,NULL,NULL,NULL),(685,76,'Uzbek','uz','uz_UZ',NULL,NULL,0,181,NULL,0,0,0,NULL,NULL,NULL),(686,76,'Venda','ve','ve_ZA',NULL,NULL,0,182,NULL,0,0,0,NULL,NULL,NULL),(687,76,'Vietnamese','vi','vi_VN',NULL,NULL,0,183,NULL,0,0,1,NULL,NULL,NULL),(688,76,'Volapük','vo','vo_XX',NULL,NULL,0,184,NULL,0,0,0,NULL,NULL,NULL),(689,76,'Walloon','wa','wa_BE',NULL,NULL,0,185,NULL,0,0,0,NULL,NULL,NULL),(690,76,'Welsh','cy','cy_GB',NULL,NULL,0,186,NULL,0,0,0,NULL,NULL,NULL),(691,76,'Wolof','wo','wo_SN',NULL,NULL,0,187,NULL,0,0,0,NULL,NULL,NULL),(692,76,'Western Frisian','fy','fy_NL',NULL,NULL,0,188,NULL,0,0,0,NULL,NULL,NULL),(693,76,'Xhosa','xh','xh_ZA',NULL,NULL,0,189,NULL,0,0,0,NULL,NULL,NULL),(694,76,'Yiddish','yi','yi_US',NULL,NULL,0,190,NULL,0,0,0,NULL,NULL,NULL),(695,76,'Yoruba','yo','yo_NG',NULL,NULL,0,191,NULL,0,0,0,NULL,NULL,NULL),(696,76,'Zhuang, Chuang','za','za_CN',NULL,NULL,0,192,NULL,0,0,0,NULL,NULL,NULL),(697,76,'Zulu','zu','zu_ZA',NULL,NULL,0,193,NULL,0,0,0,NULL,NULL,NULL),(698,77,'In Person','1','in_person',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(699,77,'Phone','2','phone',NULL,0,1,2,NULL,0,1,1,NULL,NULL,NULL),(700,77,'Email','3','email',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(701,77,'Fax','4','fax',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(702,77,'Letter Mail','5','letter_mail',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL),(703,78,'Cases - Send Copy of an Activity','1','case_activity',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(704,79,'Contributions - Duplicate Organization Alert','1','contribution_dupalert',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(705,79,'Contributions - Receipt (off-line)','2','contribution_offline_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(706,79,'Contributions - Receipt (on-line)','3','contribution_online_receipt',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(707,79,'Contributions - Recurring Start and End Notification','4','contribution_recurring_notify',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(708,79,'Contributions - Recurring Cancellation Notification','5','contribution_recurring_cancelled',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(709,79,'Contributions - Recurring Billing Updates','6','contribution_recurring_billing',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(710,79,'Contributions - Recurring Updates','7','contribution_recurring_edit',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(711,79,'Personal Campaign Pages - Admin Notification','8','pcp_notify',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(712,79,'Personal Campaign Pages - Supporter Status Change Notification','9','pcp_status_change',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(713,79,'Personal Campaign Pages - Supporter Welcome','10','pcp_supporter_notify',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL),(714,80,'Events - Registration Confirmation and Receipt (off-line)','1','event_offline_receipt',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(715,80,'Events - Registration Confirmation and Receipt (on-line)','2','event_online_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(716,80,'Events - Receipt only','3','event_registration_receipt',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(717,80,'Events - Registration Cancellation Notice','4','participant_cancelled',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(718,80,'Events - Registration Confirmation Invite','5','participant_confirm',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(719,80,'Events - Pending Registration Expiration Notice','6','participant_expired',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(720,81,'Tell-a-Friend Email','1','friend',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(721,82,'Memberships - Signup and Renewal Receipts (off-line)','1','membership_offline_receipt',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(722,82,'Memberships - Receipt (on-line)','2','membership_online_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(723,82,'Memberships - Auto-renew Cancellation Notification','3','membership_autorenew_cancelled',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(724,82,'Memberships - Auto-renew Billing Updates','4','membership_autorenew_billing',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(725,83,'Test-drive - Receipt Header','1','test_preview',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(726,84,'Pledges - Acknowledgement','1','pledge_acknowledge',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(727,84,'Pledges - Payment Reminder','2','pledge_reminder',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(728,85,'Profiles - Admin Notification','1','uf_notify',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(729,86,'Petition - signature added','1','petition_sign',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(730,86,'Petition - need verification','2','petition_confirmation_needed',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(731,87,'In Honor of','1','in_honor_of',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(732,87,'In Memory of','2','in_memory_of',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(733,87,'Solicited','3','solicited',NULL,NULL,1,3,NULL,0,1,1,NULL,NULL,NULL),(734,87,'Household','4','household',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(735,87,'Workplace Giving','5','workplace',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(736,87,'Foundation Affiliate','6','foundation_affiliate',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(737,87,'3rd-party Service','7','3rd-party_service',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(738,87,'Donor-advised Fund','8','donor-advised_fund',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(739,87,'Matched Gift','9','matched_gift',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(740,87,'PCP','10','pcp',NULL,NULL,0,10,NULL,0,1,1,NULL,NULL,NULL),(741,2,'Interview','48','Interview',NULL,0,NULL,48,'Conduct a phone or in person interview.',0,0,1,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_option_value` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -998,7 +998,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,70,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(2,114,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(3,6,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,135,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(5,169,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(6,79,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,75,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(8,66,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(9,1,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,163,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(11,2,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(12,108,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,82,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(14,192,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(15,162,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,190,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(17,18,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(18,165,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,78,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(20,61,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(21,139,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,73,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(23,200,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(24,176,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,57,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,68,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(27,90,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(28,84,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,158,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(30,13,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(31,28,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,12,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(33,15,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(34,22,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,130,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(36,36,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(37,74,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,184,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(39,111,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(40,24,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,171,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(42,153,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(43,60,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(44,32,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(45,16,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(46,150,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,121,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(48,180,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(49,193,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,47,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,103,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(2,97,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(3,53,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,136,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(5,142,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(6,75,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,39,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(8,110,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(9,159,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,161,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(11,56,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(12,122,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,155,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(14,96,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(15,140,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,35,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(18,28,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,105,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(20,148,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(21,11,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,170,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(23,7,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(24,23,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,102,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,77,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(27,60,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(28,168,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,8,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(30,131,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(31,14,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,149,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(33,32,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(34,67,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,40,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(36,17,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(37,188,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,118,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(40,52,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,5,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(42,138,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(43,150,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,179,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(45,66,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(46,177,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,112,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(48,58,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(49,194,3,3,'1','2009-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(50,200,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;
 
@@ -1008,7 +1008,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,9,45),(2,11,46),(3,3,47),(4,32,48),(5,30,49),(6,33,50),(7,45,51),(8,17,52),(9,34,53),(10,40,54),(11,31,55),(12,44,56),(13,36,57),(14,50,58),(15,25,59),(16,43,60),(17,20,61),(18,8,62),(19,26,63),(20,1,64),(21,22,65),(22,37,66),(23,7,67),(24,19,68),(25,6,69),(26,13,70),(27,28,71),(28,27,72),(29,12,73),(30,39,74),(31,2,75),(32,47,76),(33,35,77),(34,4,78),(35,21,79),(36,46,80),(37,42,81),(38,29,82),(39,15,83),(40,10,84),(41,18,85),(42,5,86),(43,41,87),(44,24,88),(45,48,89),(46,38,90),(47,16,91),(48,14,92),(49,49,93),(50,23,94);
+INSERT INTO `civicrm_participant_payment` (`id`, `participant_id`, `contribution_id`) VALUES (1,41,45),(2,23,46),(3,29,47),(4,21,48),(5,31,49),(6,36,50),(7,24,51),(8,18,52),(9,33,53),(10,17,54),(11,7,55),(12,35,56),(13,40,57),(14,3,58),(15,11,59),(16,48,60),(17,27,61),(18,38,62),(19,45,63),(20,34,64),(21,6,65),(22,26,66),(23,14,67),(24,2,68),(25,25,69),(26,1,70),(27,19,71),(28,16,72),(29,8,73),(30,47,74),(31,39,75),(32,12,76),(33,30,77),(34,4,78),(35,42,79),(36,15,80),(37,5,81),(38,20,82),(39,32,83),(40,43,84),(41,13,85),(42,9,86),(43,10,87),(44,28,88),(45,22,89),(46,46,90),(47,44,91),(48,37,92),(49,49,93),(50,50,94);
 /*!40000 ALTER TABLE `civicrm_participant_payment` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1018,7 +1018,7 @@ UNLOCK TABLES;
 
 LOCK TABLES `civicrm_participant_status_type` WRITE;
 /*!40000 ALTER TABLE `civicrm_participant_status_type` DISABLE KEYS */;
-INSERT INTO `civicrm_participant_status_type` (`id`, `name`, `label`, `class`, `is_reserved`, `is_active`, `is_counted`, `weight`, `visibility_id`) VALUES (1,'Registered','Registered','Positive',1,1,1,1,1),(2,'Attended','Attended','Positive',0,1,1,2,2),(3,'No-show','No-show','Negative',0,1,0,3,2),(4,'Cancelled','Cancelled','Negative',1,1,0,4,2),(5,'Pending from pay later','Pending from pay later','Pending',1,1,1,5,2),(6,'Pending from incomplete transaction','Pending from incomplete transaction','Pending',1,1,0,6,2),(7,'On waitlist','On waitlist','Waiting',1,0,0,7,2),(8,'Awaiting approval','Awaiting approval','Waiting',1,0,1,8,2),(9,'Pending from waitlist','Pending from waitlist','Pending',1,0,1,9,2),(10,'Pending from approval','Pending from approval','Pending',1,0,1,10,2),(11,'Rejected','Rejected','Negative',1,0,0,11,2),(12,'Expired','Expired','Negative',1,1,0,12,2),(13,'Pending in cart','Pending in cart','Pending',1,1,0,13,2);
+INSERT INTO `civicrm_participant_status_type` (`id`, `name`, `label`, `class`, `is_reserved`, `is_active`, `is_counted`, `weight`, `visibility_id`) VALUES (1,'Registered','Registered','Positive',1,1,1,1,1),(2,'Attended','Attended','Positive',0,1,1,2,2),(3,'No-show','No-show','Negative',0,1,0,3,2),(4,'Cancelled','Cancelled','Negative',1,1,0,4,2),(5,'Pending from pay later','Pending from pay later','Pending',1,1,1,5,2),(6,'Pending from incomplete transaction','Pending from incomplete transaction','Pending',1,1,0,6,2),(7,'On waitlist','On waitlist','Waiting',1,0,0,7,2),(8,'Awaiting approval','Awaiting approval','Waiting',1,0,1,8,2),(9,'Pending from waitlist','Pending from waitlist','Pending',1,0,1,9,2),(10,'Pending from approval','Pending from approval','Pending',1,0,1,10,2),(11,'Rejected','Rejected','Negative',1,0,0,11,2),(12,'Expired','Expired','Negative',1,1,0,12,2),(13,'Pending in cart','Pending in cart','Pending',1,1,0,13,2),(14,'Partially paid','Partially paid','Positive',1,1,1,14,2),(15,'Pending refund','Pending refund','Positive',1,1,1,14,2);
 /*!40000 ALTER TABLE `civicrm_participant_status_type` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1047,7 +1047,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,141,2,'My Personal Civi Fundraiser','I\'m on a mission to get all my friends and family to help support my favorite open-source civic sector CRM.','<p>Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!</p>\r\n<p><a href=\"http://civicrm.org\">You can learn more about CiviCRM here</a>.</p>\r\n<p>Then click the <strong>Contribute Now</strong> button to go to our easy-to-use online contribution form.</p>','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1);
+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,109,2,'My Personal Civi Fundraiser','I\'m on a mission to get all my friends and family to help support my favorite open-source civic sector CRM.','<p>Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!</p>\r\n<p><a href=\"http://civicrm.org\">You can learn more about CiviCRM here</a>.</p>\r\n<p>Then click the <strong>Contribute Now</strong> button to go to our easy-to-use online contribution form.</p>','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1);
 /*!40000 ALTER TABLE `civicrm_pcp` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1076,7 +1076,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,111,1,1,0,NULL,'(442) 741-9299',NULL,'4427419299',1),(2,111,1,0,0,NULL,'(478) 735-1196',NULL,'4787351196',1),(3,149,1,1,0,NULL,'268-6690',NULL,'2686690',2),(4,29,1,1,0,NULL,'306-6502',NULL,'3066502',1),(5,175,1,1,0,NULL,'383-8897',NULL,'3838897',1),(6,113,1,1,0,NULL,'293-7011',NULL,'2937011',2),(7,113,1,0,0,NULL,'617-2019',NULL,'6172019',2),(8,34,1,1,0,NULL,'541-1603',NULL,'5411603',1),(9,105,1,1,0,NULL,'(317) 596-6619',NULL,'3175966619',1),(10,121,1,1,0,NULL,'(483) 854-4962',NULL,'4838544962',1),(11,4,1,1,0,NULL,'(894) 553-1422',NULL,'8945531422',1),(12,2,1,1,0,NULL,'623-9788',NULL,'6239788',1),(13,7,1,1,0,NULL,'(587) 611-1259',NULL,'5876111259',2),(14,7,1,0,0,NULL,'(833) 628-6057',NULL,'8336286057',2),(15,69,1,1,0,NULL,'669-9050',NULL,'6699050',2),(16,112,1,1,0,NULL,'545-6383',NULL,'5456383',1),(17,195,1,1,0,NULL,'684-8361',NULL,'6848361',2),(18,5,1,1,0,NULL,'574-1930',NULL,'5741930',2),(19,183,1,1,0,NULL,'459-1418',NULL,'4591418',2),(20,183,1,0,0,NULL,'791-7852',NULL,'7917852',1),(21,41,1,1,0,NULL,'889-3655',NULL,'8893655',2),(22,68,1,1,0,NULL,'(680) 536-9984',NULL,'6805369984',2),(23,106,1,1,0,NULL,'871-5455',NULL,'8715455',2),(24,50,1,1,0,NULL,'524-1423',NULL,'5241423',2),(25,75,1,1,0,NULL,'(640) 658-1369',NULL,'6406581369',2),(26,57,1,1,0,NULL,'(331) 222-9214',NULL,'3312229214',2),(27,87,1,1,0,NULL,'(701) 616-8173',NULL,'7016168173',2),(28,87,1,0,0,NULL,'516-2595',NULL,'5162595',2),(29,198,1,1,0,NULL,'(743) 445-1027',NULL,'7434451027',1),(30,93,1,1,0,NULL,'892-3103',NULL,'8923103',2),(31,128,1,1,0,NULL,'(532) 861-3191',NULL,'5328613191',1),(32,128,1,0,0,NULL,'(713) 607-3101',NULL,'7136073101',1),(33,11,1,1,0,NULL,'(631) 722-4855',NULL,'6317224855',2),(34,11,1,0,0,NULL,'651-9584',NULL,'6519584',1),(35,74,1,1,0,NULL,'432-6720',NULL,'4326720',2),(36,74,1,0,0,NULL,'(849) 548-6359',NULL,'8495486359',2),(37,160,1,1,0,NULL,'434-8248',NULL,'4348248',1),(38,160,1,0,0,NULL,'491-9046',NULL,'4919046',1),(39,61,1,1,0,NULL,'495-4478',NULL,'4954478',1),(40,61,1,0,0,NULL,'(870) 579-3464',NULL,'8705793464',1),(41,133,1,1,0,NULL,'(258) 379-5586',NULL,'2583795586',1),(42,133,1,0,0,NULL,'282-7438',NULL,'2827438',1),(43,26,1,1,0,NULL,'258-1509',NULL,'2581509',2),(44,37,1,1,0,NULL,'636-7194',NULL,'6367194',1),(45,44,1,1,0,NULL,'853-9415',NULL,'8539415',1),(46,44,1,0,0,NULL,'651-7842',NULL,'6517842',2),(47,15,1,1,0,NULL,'310-4901',NULL,'3104901',1),(48,47,1,1,0,NULL,'208-3020',NULL,'2083020',2),(49,6,1,1,0,NULL,'(747) 522-4722',NULL,'7475224722',2),(50,179,1,1,0,NULL,'(315) 798-3036',NULL,'3157983036',1),(51,179,1,0,0,NULL,'(482) 223-7238',NULL,'4822237238',2),(52,33,1,1,0,NULL,'712-2498',NULL,'7122498',1),(53,100,1,1,0,NULL,'237-8464',NULL,'2378464',2),(54,100,1,0,0,NULL,'621-3579',NULL,'6213579',1),(55,189,1,1,0,NULL,'555-8528',NULL,'5558528',1),(56,189,1,0,0,NULL,'(889) 622-1909',NULL,'8896221909',1),(57,43,1,1,0,NULL,'435-7169',NULL,'4357169',2),(58,158,1,1,0,NULL,'(879) 690-1638',NULL,'8796901638',1),(59,8,1,1,0,NULL,'(227) 295-8850',NULL,'2272958850',1),(60,8,1,0,0,NULL,'256-1237',NULL,'2561237',1),(61,173,1,1,0,NULL,'662-6215',NULL,'6626215',1),(62,3,1,1,0,NULL,'885-5629',NULL,'8855629',1),(63,70,1,1,0,NULL,'693-5974',NULL,'6935974',1),(64,53,1,1,0,NULL,'652-9530',NULL,'6529530',1),(65,92,1,1,0,NULL,'(774) 380-2480',NULL,'7743802480',1),(66,66,1,1,0,NULL,'(738) 469-7603',NULL,'7384697603',1),(67,66,1,0,0,NULL,'(374) 705-8450',NULL,'3747058450',1),(68,136,1,1,0,NULL,'(226) 398-6655',NULL,'2263986655',1),(69,136,1,0,0,NULL,'387-8510',NULL,'3878510',2),(70,64,1,1,0,NULL,'(844) 763-9959',NULL,'8447639959',1),(71,30,1,1,0,NULL,'789-5170',NULL,'7895170',1),(72,30,1,0,0,NULL,'(542) 669-6086',NULL,'5426696086',1),(73,85,1,1,0,NULL,'429-4712',NULL,'4294712',1),(74,193,1,1,0,NULL,'(367) 583-5559',NULL,'3675835559',2),(75,129,1,1,0,NULL,'848-7711',NULL,'8487711',2),(76,129,1,0,0,NULL,'210-4328',NULL,'2104328',1),(77,20,1,1,0,NULL,'374-2564',NULL,'3742564',2),(78,86,1,1,0,NULL,'421-1742',NULL,'4211742',1),(79,86,1,0,0,NULL,'394-9303',NULL,'3949303',1),(80,130,1,1,0,NULL,'(673) 401-2664',NULL,'6734012664',1),(81,188,1,1,0,NULL,'771-1985',NULL,'7711985',1),(82,188,1,0,0,NULL,'(476) 740-9619',NULL,'4767409619',2),(83,98,1,1,0,NULL,'870-7121',NULL,'8707121',1),(84,98,1,0,0,NULL,'(684) 783-8276',NULL,'6847838276',1),(85,165,1,1,0,NULL,'773-2672',NULL,'7732672',1),(86,116,1,1,0,NULL,'572-7436',NULL,'5727436',2),(87,22,1,1,0,NULL,'(804) 414-7924',NULL,'8044147924',2),(88,22,1,0,0,NULL,'251-7910',NULL,'2517910',1),(89,196,1,1,0,NULL,'(843) 504-8799',NULL,'8435048799',2),(90,196,1,0,0,NULL,'(887) 458-2384',NULL,'8874582384',1),(91,152,1,1,0,NULL,'283-2432',NULL,'2832432',2),(92,55,1,1,0,NULL,'(273) 852-4107',NULL,'2738524107',1),(93,55,1,0,0,NULL,'(392) 596-8978',NULL,'3925968978',2),(94,104,1,1,0,NULL,'(272) 229-9728',NULL,'2722299728',2),(95,35,1,1,0,NULL,'415-5455',NULL,'4155455',1),(96,35,1,0,0,NULL,'773-8033',NULL,'7738033',1),(97,163,1,1,0,NULL,'(534) 377-1358',NULL,'5343771358',1),(98,163,1,0,0,NULL,'(833) 809-1073',NULL,'8338091073',1),(99,172,1,1,0,NULL,'(292) 441-2719',NULL,'2924412719',2),(100,172,1,0,0,NULL,'(357) 217-3215',NULL,'3572173215',2),(101,145,1,1,0,NULL,'(519) 800-1705',NULL,'5198001705',1),(102,145,1,0,0,NULL,'518-5836',NULL,'5185836',2),(103,143,1,1,0,NULL,'(656) 368-7263',NULL,'6563687263',2),(104,143,1,0,0,NULL,'(662) 217-4727',NULL,'6622174727',1),(105,54,1,1,0,NULL,'305-3883',NULL,'3053883',1),(106,156,1,1,0,NULL,'726-5204',NULL,'7265204',2),(107,118,1,1,0,NULL,'(256) 678-9118',NULL,'2566789118',2),(108,182,1,1,0,NULL,'(386) 524-1150',NULL,'3865241150',2),(109,182,1,0,0,NULL,'294-6300',NULL,'2946300',1),(110,109,1,1,0,NULL,'(201) 454-7360',NULL,'2014547360',2),(111,82,1,1,0,NULL,'(888) 635-3082',NULL,'8886353082',1),(112,184,1,1,0,NULL,'224-2425',NULL,'2242425',1),(113,194,1,1,0,NULL,'(504) 694-4169',NULL,'5046944169',2),(114,194,1,0,0,NULL,'(837) 313-9263',NULL,'8373139263',2),(115,132,1,1,0,NULL,'(509) 276-6203',NULL,'5092766203',2),(116,132,1,0,0,NULL,'(504) 795-9628',NULL,'5047959628',1),(117,39,1,1,0,NULL,'879-8609',NULL,'8798609',2),(118,39,1,0,0,NULL,'(206) 304-2834',NULL,'2063042834',1),(119,144,1,1,0,NULL,'(844) 690-3266',NULL,'8446903266',2),(120,144,1,0,0,NULL,'880-6702',NULL,'8806702',2),(121,99,1,1,0,NULL,'805-2680',NULL,'8052680',1),(122,99,1,0,0,NULL,'747-4035',NULL,'7474035',1),(123,10,1,1,0,NULL,'821-6012',NULL,'8216012',1),(124,164,1,1,0,NULL,'727-2597',NULL,'7272597',1),(125,164,1,0,0,NULL,'861-8253',NULL,'8618253',2),(126,71,1,1,0,NULL,'444-2967',NULL,'4442967',1),(127,176,1,1,0,NULL,'316-4540',NULL,'3164540',1),(128,176,1,0,0,NULL,'218-5796',NULL,'2185796',2),(129,28,1,1,0,NULL,'(342) 372-6218',NULL,'3423726218',2),(130,157,1,1,0,NULL,'883-7248',NULL,'8837248',2),(131,157,1,0,0,NULL,'(559) 250-7312',NULL,'5592507312',2),(132,122,1,1,0,NULL,'(855) 795-4524',NULL,'8557954524',2),(133,122,1,0,0,NULL,'749-9698',NULL,'7499698',2),(134,60,1,1,0,NULL,'536-1579',NULL,'5361579',1),(135,27,1,1,0,NULL,'(656) 868-3084',NULL,'6568683084',2),(136,177,1,1,0,NULL,'591-4928',NULL,'5914928',2),(137,177,1,0,0,NULL,'270-1406',NULL,'2701406',1),(138,23,1,1,0,NULL,'(387) 790-2185',NULL,'3877902185',2),(139,166,1,1,0,NULL,'365-6592',NULL,'3656592',2),(140,166,1,0,0,NULL,'638-7818',NULL,'6387818',1),(141,9,1,1,0,NULL,'(856) 559-6558',NULL,'8565596558',2),(142,114,1,1,0,NULL,'437-8450',NULL,'4378450',1),(143,114,1,0,0,NULL,'(759) 339-7606',NULL,'7593397606',1),(144,49,1,1,0,NULL,'(544) 291-7350',NULL,'5442917350',2),(145,102,1,1,0,NULL,'(290) 800-8407',NULL,'2908008407',2),(146,31,1,1,0,NULL,'672-6367',NULL,'6726367',1),(147,31,1,0,0,NULL,'(316) 851-8471',NULL,'3168518471',1),(148,159,1,1,0,NULL,'415-4450',NULL,'4154450',2),(149,159,1,0,0,NULL,'(659) 225-4741',NULL,'6592254741',1),(150,76,1,1,0,NULL,'(278) 580-4873',NULL,'2785804873',2),(151,178,1,1,0,NULL,'591-5983',NULL,'5915983',2),(152,178,1,0,0,NULL,'(659) 719-1091',NULL,'6597191091',2),(153,40,1,1,0,NULL,'487-2874',NULL,'4872874',1),(154,40,1,0,0,NULL,'256-1665',NULL,'2561665',1),(155,131,1,1,0,NULL,'(653) 401-3176',NULL,'6534013176',1),(156,199,1,1,0,NULL,'429-9290',NULL,'4299290',2),(157,25,1,1,0,NULL,'(797) 467-2737',NULL,'7974672737',1),(158,58,1,1,0,NULL,'537-2767',NULL,'5372767',1),(159,115,1,1,0,NULL,'340-8666',NULL,'3408666',2),(160,115,1,0,0,NULL,'(626) 526-6392',NULL,'6265266392',1),(161,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),(162,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),(163,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,195,1,1,0,NULL,'(663) 852-2193',NULL,'6638522193',1),(2,195,1,0,0,NULL,'(328) 692-5565',NULL,'3286925565',1),(3,19,1,1,0,NULL,'(230) 270-8248',NULL,'2302708248',2),(4,91,1,1,0,NULL,'(423) 898-9724',NULL,'4238989724',2),(5,151,1,1,0,NULL,'280-4333',NULL,'2804333',2),(6,151,1,0,0,NULL,'373-9706',NULL,'3739706',1),(7,132,1,1,0,NULL,'305-4430',NULL,'3054430',2),(8,98,1,1,0,NULL,'(875) 327-1654',NULL,'8753271654',2),(9,54,1,1,0,NULL,'(293) 474-5206',NULL,'2934745206',1),(10,54,1,0,0,NULL,'483-8164',NULL,'4838164',1),(11,197,1,1,0,NULL,'721-7421',NULL,'7217421',2),(12,197,1,0,0,NULL,'(444) 552-3233',NULL,'4445523233',2),(13,123,1,1,0,NULL,'(821) 293-5346',NULL,'8212935346',1),(14,123,1,0,0,NULL,'(676) 576-5344',NULL,'6765765344',2),(15,176,1,1,0,NULL,'528-3601',NULL,'5283601',2),(16,32,1,1,0,NULL,'876-1049',NULL,'8761049',1),(17,88,1,1,0,NULL,'477-5783',NULL,'4775783',2),(18,14,1,1,0,NULL,'(504) 378-1603',NULL,'5043781603',2),(19,9,1,1,0,NULL,'572-4691',NULL,'5724691',1),(20,72,1,1,0,NULL,'332-8549',NULL,'3328549',1),(21,96,1,1,0,NULL,'465-3777',NULL,'4653777',2),(22,83,1,1,0,NULL,'807-1548',NULL,'8071548',1),(23,53,1,1,0,NULL,'860-5095',NULL,'8605095',1),(24,186,1,1,0,NULL,'272-9161',NULL,'2729161',2),(25,186,1,0,0,NULL,'(420) 334-6666',NULL,'4203346666',1),(26,107,1,1,0,NULL,'(289) 287-7250',NULL,'2892877250',2),(27,105,1,1,0,NULL,'(667) 250-1152',NULL,'6672501152',2),(28,191,1,1,0,NULL,'256-9499',NULL,'2569499',2),(29,191,1,0,0,NULL,'507-1970',NULL,'5071970',2),(30,139,1,1,0,NULL,'(487) 408-9106',NULL,'4874089106',2),(31,139,1,0,0,NULL,'794-3469',NULL,'7943469',2),(32,35,1,1,0,NULL,'778-2675',NULL,'7782675',1),(33,35,1,0,0,NULL,'228-7370',NULL,'2287370',1),(34,198,1,1,0,NULL,'(215) 876-8982',NULL,'2158768982',1),(35,198,1,0,0,NULL,'837-1576',NULL,'8371576',2),(36,190,1,1,0,NULL,'381-7419',NULL,'3817419',2),(37,190,1,0,0,NULL,'(717) 308-8348',NULL,'7173088348',2),(38,93,1,1,0,NULL,'(241) 404-8414',NULL,'2414048414',2),(39,157,1,1,0,NULL,'602-5987',NULL,'6025987',1),(40,157,1,0,0,NULL,'(437) 485-9023',NULL,'4374859023',2),(41,189,1,1,0,NULL,'556-1458',NULL,'5561458',2),(42,189,1,0,0,NULL,'(660) 556-4371',NULL,'6605564371',1),(43,28,1,1,0,NULL,'(659) 631-3512',NULL,'6596313512',1),(44,28,1,0,0,NULL,'(555) 688-4743',NULL,'5556884743',2),(45,130,1,1,0,NULL,'822-6997',NULL,'8226997',1),(46,130,1,0,0,NULL,'783-3171',NULL,'7833171',2),(47,162,1,1,0,NULL,'523-7364',NULL,'5237364',2),(48,113,1,1,0,NULL,'(751) 555-2660',NULL,'7515552660',1),(49,49,1,1,0,NULL,'216-3221',NULL,'2163221',2),(50,171,1,1,0,NULL,'(688) 540-1456',NULL,'6885401456',1),(51,171,1,0,0,NULL,'(517) 705-5236',NULL,'5177055236',2),(52,64,1,1,0,NULL,'513-8415',NULL,'5138415',1),(53,148,1,1,0,NULL,'855-8891',NULL,'8558891',1),(54,152,1,1,0,NULL,'322-6862',NULL,'3226862',1),(55,152,1,0,0,NULL,'740-6852',NULL,'7406852',2),(56,196,1,1,0,NULL,'(451) 793-4582',NULL,'4517934582',2),(57,196,1,0,0,NULL,'(368) 471-4477',NULL,'3684714477',2),(58,135,1,1,0,NULL,'(647) 224-6997',NULL,'6472246997',2),(59,120,1,1,0,NULL,'(712) 763-9791',NULL,'7127639791',2),(60,120,1,0,0,NULL,'761-4685',NULL,'7614685',1),(61,11,1,1,0,NULL,'288-5780',NULL,'2885780',1),(62,11,1,0,0,NULL,'490-4350',NULL,'4904350',2),(63,115,1,1,0,NULL,'529-1154',NULL,'5291154',2),(64,46,1,1,0,NULL,'891-6648',NULL,'8916648',1),(65,46,1,0,0,NULL,'411-4420',NULL,'4114420',2),(66,29,1,1,0,NULL,'365-7838',NULL,'3657838',2),(67,29,1,0,0,NULL,'413-4160',NULL,'4134160',2),(68,81,1,1,0,NULL,'(539) 688-6205',NULL,'5396886205',2),(69,81,1,0,0,NULL,'562-2139',NULL,'5622139',2),(70,101,1,1,0,NULL,'(645) 461-9904',NULL,'6454619904',2),(71,101,1,0,0,NULL,'(217) 247-4188',NULL,'2172474188',1),(72,43,1,1,0,NULL,'(837) 663-4301',NULL,'8376634301',1),(73,43,1,0,0,NULL,'670-5582',NULL,'6705582',2),(74,201,1,1,0,NULL,'658-5579',NULL,'6585579',1),(75,92,1,1,0,NULL,'525-4170',NULL,'5254170',1),(76,92,1,0,0,NULL,'482-8794',NULL,'4828794',2),(77,146,1,1,0,NULL,'636-3828',NULL,'6363828',1),(78,146,1,0,0,NULL,'(210) 573-3066',NULL,'2105733066',2),(79,73,1,1,0,NULL,'(344) 668-3209',NULL,'3446683209',2),(80,12,1,1,0,NULL,'(368) 634-5797',NULL,'3686345797',1),(81,121,1,1,0,NULL,'394-4868',NULL,'3944868',1),(82,121,1,0,0,NULL,'(422) 808-9273',NULL,'4228089273',1),(83,136,1,1,0,NULL,'640-8025',NULL,'6408025',1),(84,114,1,1,0,NULL,'(253) 671-3582',NULL,'2536713582',1),(85,114,1,0,0,NULL,'(588) 762-2586',NULL,'5887622586',1),(86,134,1,1,0,NULL,'412-2749',NULL,'4122749',2),(87,10,1,1,0,NULL,'(432) 295-5346',NULL,'4322955346',2),(88,168,1,1,0,NULL,'(483) 844-8473',NULL,'4838448473',1),(89,168,1,0,0,NULL,'784-5309',NULL,'7845309',2),(90,177,1,1,0,NULL,'(646) 339-7754',NULL,'6463397754',1),(91,177,1,0,0,NULL,'622-6905',NULL,'6226905',1),(92,41,1,1,0,NULL,'(256) 834-8442',NULL,'2568348442',1),(93,33,1,1,0,NULL,'(587) 692-1397',NULL,'5876921397',2),(94,194,1,1,0,NULL,'(891) 516-9620',NULL,'8915169620',2),(95,127,1,1,0,NULL,'701-7551',NULL,'7017551',1),(96,127,1,0,0,NULL,'386-4818',NULL,'3864818',2),(97,182,1,1,0,NULL,'280-5498',NULL,'2805498',2),(98,182,1,0,0,NULL,'619-9265',NULL,'6199265',2),(99,69,1,1,0,NULL,'681-4269',NULL,'6814269',2),(100,155,1,1,0,NULL,'491-5249',NULL,'4915249',1),(101,155,1,0,0,NULL,'(731) 816-5429',NULL,'7318165429',2),(102,138,1,1,0,NULL,'229-9641',NULL,'2299641',2),(103,138,1,0,0,NULL,'(580) 684-4164',NULL,'5806844164',2),(104,55,1,1,0,NULL,'837-7953',NULL,'8377953',1),(105,17,1,1,0,NULL,'(239) 235-1605',NULL,'2392351605',2),(106,199,1,1,0,NULL,'427-8766',NULL,'4278766',2),(107,199,1,0,0,NULL,'(767) 649-7794',NULL,'7676497794',1),(108,15,1,1,0,NULL,'(284) 819-1463',NULL,'2848191463',1),(109,185,1,1,0,NULL,'(666) 484-8369',NULL,'6664848369',2),(110,79,1,1,0,NULL,'(682) 711-1530',NULL,'6827111530',2),(111,79,1,0,0,NULL,'(220) 342-6558',NULL,'2203426558',2),(112,175,1,1,0,NULL,'(614) 394-7823',NULL,'6143947823',2),(113,175,1,0,0,NULL,'625-1386',NULL,'6251386',1),(114,184,1,1,0,NULL,'346-4305',NULL,'3464305',1),(115,77,1,1,0,NULL,'(434) 430-1065',NULL,'4344301065',1),(116,42,1,1,0,NULL,'(642) 799-4480',NULL,'6427994480',2),(117,8,1,1,0,NULL,'(230) 371-4389',NULL,'2303714389',1),(118,8,1,0,0,NULL,'425-6780',NULL,'4256780',2),(119,137,1,1,0,NULL,'768-6112',NULL,'7686112',2),(120,167,1,1,0,NULL,'(495) 771-7083',NULL,'4957717083',2),(121,78,1,1,0,NULL,'(348) 559-2592',NULL,'3485592592',1),(122,179,1,1,0,NULL,'(837) 473-4163',NULL,'8374734163',1),(123,23,1,1,0,NULL,'(612) 826-5181',NULL,'6128265181',1),(124,23,1,0,0,NULL,'797-3077',NULL,'7973077',2),(125,110,1,1,0,NULL,'(487) 490-8052',NULL,'4874908052',2),(126,141,1,1,0,NULL,'810-4206',NULL,'8104206',2),(127,153,1,1,0,NULL,'410-5277',NULL,'4105277',1),(128,90,1,1,0,NULL,'(722) 580-1661',NULL,'7225801661',1),(129,90,1,0,0,NULL,'(420) 337-6418',NULL,'4203376418',2),(130,60,1,1,0,NULL,'(394) 541-2147',NULL,'3945412147',2),(131,60,1,0,0,NULL,'832-5577',NULL,'8325577',2),(132,58,1,1,0,NULL,'(538) 710-4518',NULL,'5387104518',2),(133,174,1,1,0,NULL,'442-9135',NULL,'4429135',2),(134,174,1,0,0,NULL,'(423) 306-7839',NULL,'4233067839',2),(135,20,1,1,0,NULL,'(714) 861-5290',NULL,'7148615290',1),(136,20,1,0,0,NULL,'(649) 852-2569',NULL,'6498522569',1),(137,13,1,1,0,NULL,'(651) 628-4046',NULL,'6516284046',1),(138,13,1,0,0,NULL,'297-1664',NULL,'2971664',1),(139,7,1,1,0,NULL,'(622) 322-5315',NULL,'6223225315',1),(140,7,1,0,0,NULL,'(491) 516-6022',NULL,'4915166022',2),(141,63,1,1,0,NULL,'(231) 892-9630',NULL,'2318929630',2),(142,80,1,1,0,NULL,'(816) 805-8303',NULL,'8168058303',1),(143,80,1,0,0,NULL,'(306) 416-4566',NULL,'3064164566',2),(144,160,1,1,0,NULL,'(557) 890-5702',NULL,'5578905702',2),(145,108,1,1,0,NULL,'(334) 523-7704',NULL,'3345237704',1),(146,108,1,0,0,NULL,'214-6328',NULL,'2146328',1),(147,21,1,1,0,NULL,'(865) 560-1888',NULL,'8655601888',2),(148,21,1,0,0,NULL,'(326) 888-4856',NULL,'3268884856',2),(149,27,1,1,0,NULL,'401-8821',NULL,'4018821',1),(150,27,1,0,0,NULL,'(790) 386-3439',NULL,'7903863439',2),(151,71,1,1,0,NULL,'(598) 852-7360',NULL,'5988527360',2),(152,71,1,0,0,NULL,'(253) 664-1383',NULL,'2536641383',2),(153,129,1,1,0,NULL,'(656) 800-2401',NULL,'6568002401',1),(154,129,1,0,0,NULL,'(416) 407-9514',NULL,'4164079514',1),(155,161,1,1,0,NULL,'(731) 564-1204',NULL,'7315641204',2),(156,111,1,1,0,NULL,'(251) 789-6686',NULL,'2517896686',2),(157,111,1,0,0,NULL,'462-2309',NULL,'4622309',2),(158,45,1,1,0,NULL,'(467) 448-2815',NULL,'4674482815',2),(159,61,1,1,0,NULL,'(490) 642-2965',NULL,'4906422965',2),(160,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),(161,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),(162,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1);
 /*!40000 ALTER TABLE `civicrm_phone` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1224,7 +1224,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,188,86,1,NULL,NULL,1,NULL,0,0,NULL),(2,98,86,1,NULL,NULL,1,NULL,0,0,NULL),(3,188,130,1,NULL,NULL,1,NULL,0,0,NULL),(4,98,130,1,NULL,NULL,1,NULL,0,0,NULL),(5,98,188,4,NULL,NULL,1,NULL,0,0,NULL),(6,130,45,8,NULL,NULL,1,NULL,0,0,NULL),(7,188,45,8,NULL,NULL,1,NULL,0,0,NULL),(8,98,45,8,NULL,NULL,1,NULL,0,0,NULL),(9,86,45,7,NULL,NULL,0,NULL,0,0,NULL),(10,130,86,2,NULL,NULL,0,NULL,0,0,NULL),(11,73,77,1,NULL,NULL,1,NULL,0,0,NULL),(12,116,77,1,NULL,NULL,1,NULL,0,0,NULL),(13,73,165,1,NULL,NULL,1,NULL,0,0,NULL),(14,116,165,1,NULL,NULL,1,NULL,0,0,NULL),(15,116,73,4,NULL,NULL,1,NULL,0,0,NULL),(16,165,148,8,NULL,NULL,1,NULL,0,0,NULL),(17,73,148,8,NULL,NULL,1,NULL,0,0,NULL),(18,116,148,8,NULL,NULL,1,NULL,0,0,NULL),(19,77,148,7,NULL,NULL,1,NULL,0,0,NULL),(20,165,77,2,NULL,NULL,1,NULL,0,0,NULL),(21,171,22,1,NULL,NULL,1,NULL,0,0,NULL),(22,152,22,1,NULL,NULL,1,NULL,0,0,NULL),(23,171,196,1,NULL,NULL,1,NULL,0,0,NULL),(24,152,196,1,NULL,NULL,1,NULL,0,0,NULL),(25,152,171,4,NULL,NULL,1,NULL,0,0,NULL),(26,196,89,8,NULL,NULL,1,NULL,0,0,NULL),(27,171,89,8,NULL,NULL,1,NULL,0,0,NULL),(28,152,89,8,NULL,NULL,1,NULL,0,0,NULL),(29,22,89,7,NULL,NULL,1,NULL,0,0,NULL),(30,196,22,2,NULL,NULL,1,NULL,0,0,NULL),(31,104,55,1,NULL,NULL,1,NULL,0,0,NULL),(32,35,55,1,NULL,NULL,1,NULL,0,0,NULL),(33,104,38,1,NULL,NULL,1,NULL,0,0,NULL),(34,35,38,1,NULL,NULL,1,NULL,0,0,NULL),(35,35,104,4,NULL,NULL,1,NULL,0,0,NULL),(36,38,120,8,NULL,NULL,1,NULL,0,0,NULL),(37,104,120,8,NULL,NULL,1,NULL,0,0,NULL),(38,35,120,8,NULL,NULL,1,NULL,0,0,NULL),(39,55,120,7,NULL,NULL,1,NULL,0,0,NULL),(40,38,55,2,NULL,NULL,1,NULL,0,0,NULL),(41,145,163,1,NULL,NULL,1,NULL,0,0,NULL),(42,14,163,1,NULL,NULL,1,NULL,0,0,NULL),(43,145,172,1,NULL,NULL,1,NULL,0,0,NULL),(44,14,172,1,NULL,NULL,1,NULL,0,0,NULL),(45,14,145,4,NULL,NULL,1,NULL,0,0,NULL),(46,172,108,8,NULL,NULL,1,NULL,0,0,NULL),(47,145,108,8,NULL,NULL,1,NULL,0,0,NULL),(48,14,108,8,NULL,NULL,1,NULL,0,0,NULL),(49,163,108,7,NULL,NULL,1,NULL,0,0,NULL),(50,172,163,2,NULL,NULL,1,NULL,0,0,NULL),(51,83,127,1,NULL,NULL,1,NULL,0,0,NULL),(52,54,127,1,NULL,NULL,1,NULL,0,0,NULL),(53,83,143,1,NULL,NULL,1,NULL,0,0,NULL),(54,54,143,1,NULL,NULL,1,NULL,0,0,NULL),(55,54,83,4,NULL,NULL,1,NULL,0,0,NULL),(56,143,12,8,NULL,NULL,1,NULL,0,0,NULL),(57,83,12,8,NULL,NULL,1,NULL,0,0,NULL),(58,54,12,8,NULL,NULL,1,NULL,0,0,NULL),(59,127,12,7,NULL,NULL,1,NULL,0,0,NULL),(60,143,127,2,NULL,NULL,1,NULL,0,0,NULL),(61,182,156,1,NULL,NULL,1,NULL,0,0,NULL),(62,109,156,1,NULL,NULL,1,NULL,0,0,NULL),(63,182,118,1,NULL,NULL,1,NULL,0,0,NULL),(64,109,118,1,NULL,NULL,1,NULL,0,0,NULL),(65,109,182,4,NULL,NULL,1,NULL,0,0,NULL),(66,118,72,8,NULL,NULL,1,NULL,0,0,NULL),(67,182,72,8,NULL,NULL,1,NULL,0,0,NULL),(68,109,72,8,NULL,NULL,1,NULL,0,0,NULL),(69,156,72,7,NULL,NULL,0,NULL,0,0,NULL),(70,118,156,2,NULL,NULL,0,NULL,0,0,NULL),(71,197,62,1,NULL,NULL,1,NULL,0,0,NULL),(72,82,62,1,NULL,NULL,1,NULL,0,0,NULL),(73,197,16,1,NULL,NULL,1,NULL,0,0,NULL),(74,82,16,1,NULL,NULL,1,NULL,0,0,NULL),(75,82,197,4,NULL,NULL,1,NULL,0,0,NULL),(76,16,162,8,NULL,NULL,1,NULL,0,0,NULL),(77,197,162,8,NULL,NULL,1,NULL,0,0,NULL),(78,82,162,8,NULL,NULL,1,NULL,0,0,NULL),(79,62,162,7,NULL,NULL,1,NULL,0,0,NULL),(80,16,62,2,NULL,NULL,1,NULL,0,0,NULL),(81,174,184,1,NULL,NULL,1,NULL,0,0,NULL),(82,132,184,1,NULL,NULL,1,NULL,0,0,NULL),(83,174,194,1,NULL,NULL,1,NULL,0,0,NULL),(84,132,194,1,NULL,NULL,1,NULL,0,0,NULL),(85,132,174,4,NULL,NULL,1,NULL,0,0,NULL),(86,194,19,8,NULL,NULL,1,NULL,0,0,NULL),(87,174,19,8,NULL,NULL,1,NULL,0,0,NULL),(88,132,19,8,NULL,NULL,1,NULL,0,0,NULL),(89,184,19,7,NULL,NULL,1,NULL,0,0,NULL),(90,194,184,2,NULL,NULL,1,NULL,0,0,NULL),(91,144,39,1,NULL,NULL,1,NULL,0,0,NULL),(92,99,39,1,NULL,NULL,1,NULL,0,0,NULL),(93,144,161,1,NULL,NULL,1,NULL,0,0,NULL),(94,99,161,1,NULL,NULL,1,NULL,0,0,NULL),(95,99,144,4,NULL,NULL,1,NULL,0,0,NULL),(96,161,167,8,NULL,NULL,1,NULL,0,0,NULL),(97,144,167,8,NULL,NULL,1,NULL,0,0,NULL),(98,99,167,8,NULL,NULL,1,NULL,0,0,NULL),(99,39,167,7,NULL,NULL,1,NULL,0,0,NULL),(100,161,39,2,NULL,NULL,1,NULL,0,0,NULL),(101,71,10,1,NULL,NULL,1,NULL,0,0,NULL),(102,176,10,1,NULL,NULL,1,NULL,0,0,NULL),(103,71,164,1,NULL,NULL,1,NULL,0,0,NULL),(104,176,164,1,NULL,NULL,1,NULL,0,0,NULL),(105,176,71,4,NULL,NULL,1,NULL,0,0,NULL),(106,164,88,8,NULL,NULL,1,NULL,0,0,NULL),(107,71,88,8,NULL,NULL,1,NULL,0,0,NULL),(108,176,88,8,NULL,NULL,1,NULL,0,0,NULL),(109,10,88,7,NULL,NULL,1,NULL,0,0,NULL),(110,164,10,2,NULL,NULL,1,NULL,0,0,NULL),(111,13,28,1,NULL,NULL,1,NULL,0,0,NULL),(112,142,28,1,NULL,NULL,1,NULL,0,0,NULL),(113,13,125,1,NULL,NULL,1,NULL,0,0,NULL),(114,142,125,1,NULL,NULL,1,NULL,0,0,NULL),(115,142,13,4,NULL,NULL,1,NULL,0,0,NULL),(116,125,192,8,NULL,NULL,1,NULL,0,0,NULL),(117,13,192,8,NULL,NULL,1,NULL,0,0,NULL),(118,142,192,8,NULL,NULL,1,NULL,0,0,NULL),(119,28,192,7,NULL,NULL,1,NULL,0,0,NULL),(120,125,28,2,NULL,NULL,1,NULL,0,0,NULL),(121,180,81,1,NULL,NULL,1,NULL,0,0,NULL),(122,101,81,1,NULL,NULL,1,NULL,0,0,NULL),(123,180,157,1,NULL,NULL,1,NULL,0,0,NULL),(124,101,157,1,NULL,NULL,1,NULL,0,0,NULL),(125,101,180,4,NULL,NULL,1,NULL,0,0,NULL),(126,157,117,8,NULL,NULL,1,NULL,0,0,NULL),(127,180,117,8,NULL,NULL,1,NULL,0,0,NULL),(128,101,117,8,NULL,NULL,1,NULL,0,0,NULL),(129,81,117,7,NULL,NULL,0,NULL,0,0,NULL),(130,157,81,2,NULL,NULL,0,NULL,0,0,NULL),(131,147,122,1,NULL,NULL,1,NULL,0,0,NULL),(132,27,122,1,NULL,NULL,1,NULL,0,0,NULL),(133,147,60,1,NULL,NULL,1,NULL,0,0,NULL),(134,27,60,1,NULL,NULL,1,NULL,0,0,NULL),(135,27,147,4,NULL,NULL,1,NULL,0,0,NULL),(136,60,24,8,NULL,NULL,1,NULL,0,0,NULL),(137,147,24,8,NULL,NULL,1,NULL,0,0,NULL),(138,27,24,8,NULL,NULL,1,NULL,0,0,NULL),(139,122,24,7,NULL,NULL,1,NULL,0,0,NULL),(140,60,122,2,NULL,NULL,1,NULL,0,0,NULL),(141,166,177,1,NULL,NULL,1,NULL,0,0,NULL),(142,119,177,1,NULL,NULL,1,NULL,0,0,NULL),(143,166,23,1,NULL,NULL,1,NULL,0,0,NULL),(144,119,23,1,NULL,NULL,1,NULL,0,0,NULL),(145,119,166,4,NULL,NULL,1,NULL,0,0,NULL),(146,23,126,8,NULL,NULL,1,NULL,0,0,NULL),(147,166,126,8,NULL,NULL,1,NULL,0,0,NULL),(148,119,126,8,NULL,NULL,1,NULL,0,0,NULL),(149,177,126,7,NULL,NULL,0,NULL,0,0,NULL),(150,23,177,2,NULL,NULL,0,NULL,0,0,NULL),(151,49,9,1,NULL,NULL,1,NULL,0,0,NULL),(152,102,9,1,NULL,NULL,1,NULL,0,0,NULL),(153,49,114,1,NULL,NULL,1,NULL,0,0,NULL),(154,102,114,1,NULL,NULL,1,NULL,0,0,NULL),(155,102,49,4,NULL,NULL,1,NULL,0,0,NULL),(156,114,110,8,NULL,NULL,1,NULL,0,0,NULL),(157,49,110,8,NULL,NULL,1,NULL,0,0,NULL),(158,102,110,8,NULL,NULL,1,NULL,0,0,NULL),(159,9,110,7,NULL,NULL,1,NULL,0,0,NULL),(160,114,9,2,NULL,NULL,1,NULL,0,0,NULL),(161,159,170,1,NULL,NULL,1,NULL,0,0,NULL),(162,76,170,1,NULL,NULL,1,NULL,0,0,NULL),(163,159,31,1,NULL,NULL,1,NULL,0,0,NULL),(164,76,31,1,NULL,NULL,1,NULL,0,0,NULL),(165,76,159,4,NULL,NULL,1,NULL,0,0,NULL),(166,31,18,8,NULL,NULL,1,NULL,0,0,NULL),(167,159,18,8,NULL,NULL,1,NULL,0,0,NULL),(168,76,18,8,NULL,NULL,1,NULL,0,0,NULL),(169,170,18,7,NULL,NULL,0,NULL,0,0,NULL),(170,31,170,2,NULL,NULL,0,NULL,0,0,NULL),(171,40,178,1,NULL,NULL,1,NULL,0,0,NULL),(172,131,178,1,NULL,NULL,1,NULL,0,0,NULL),(173,40,103,1,NULL,NULL,1,NULL,0,0,NULL),(174,131,103,1,NULL,NULL,1,NULL,0,0,NULL),(175,131,40,4,NULL,NULL,1,NULL,0,0,NULL),(176,103,56,8,NULL,NULL,1,NULL,0,0,NULL),(177,40,56,8,NULL,NULL,1,NULL,0,0,NULL),(178,131,56,8,NULL,NULL,1,NULL,0,0,NULL),(179,178,56,7,NULL,NULL,0,NULL,0,0,NULL),(180,103,178,2,NULL,NULL,0,NULL,0,0,NULL),(181,21,80,1,NULL,NULL,1,NULL,0,0,NULL),(182,25,80,1,NULL,NULL,1,NULL,0,0,NULL),(183,21,199,1,NULL,NULL,1,NULL,0,0,NULL),(184,25,199,1,NULL,NULL,1,NULL,0,0,NULL),(185,25,21,4,NULL,NULL,1,NULL,0,0,NULL),(186,199,46,8,NULL,NULL,1,NULL,0,0,NULL),(187,21,46,8,NULL,NULL,1,NULL,0,0,NULL),(188,25,46,8,NULL,NULL,1,NULL,0,0,NULL),(189,80,46,7,NULL,NULL,1,NULL,0,0,NULL),(190,199,80,2,NULL,NULL,1,NULL,0,0,NULL),(191,115,58,1,NULL,NULL,1,NULL,0,0,NULL),(192,139,58,1,NULL,NULL,1,NULL,0,0,NULL),(193,115,146,1,NULL,NULL,1,NULL,0,0,NULL),(194,139,146,1,NULL,NULL,1,NULL,0,0,NULL),(195,139,115,4,NULL,NULL,1,NULL,0,0,NULL),(196,146,48,8,NULL,NULL,1,NULL,0,0,NULL),(197,115,48,8,NULL,NULL,1,NULL,0,0,NULL),(198,139,48,8,NULL,NULL,1,NULL,0,0,NULL),(199,58,48,7,NULL,NULL,1,NULL,0,0,NULL),(200,146,58,2,NULL,NULL,1,NULL,0,0,NULL),(201,85,52,5,NULL,NULL,1,NULL,0,0,NULL),(202,169,59,5,NULL,NULL,1,NULL,0,0,NULL),(203,122,63,5,NULL,NULL,1,NULL,0,0,NULL),(204,136,67,5,NULL,NULL,1,NULL,0,0,NULL),(205,5,84,5,NULL,NULL,1,NULL,0,0,NULL),(206,74,90,5,NULL,NULL,1,NULL,0,0,NULL),(207,77,91,5,NULL,NULL,1,NULL,0,0,NULL),(208,16,94,5,NULL,NULL,1,NULL,0,0,NULL),(209,69,96,5,NULL,NULL,1,NULL,0,0,NULL),(210,75,107,5,NULL,NULL,1,NULL,0,0,NULL),(211,51,123,5,NULL,NULL,1,NULL,0,0,NULL),(212,3,124,5,NULL,NULL,1,NULL,0,0,NULL),(213,98,134,5,NULL,NULL,1,NULL,0,0,NULL),(214,197,137,5,NULL,NULL,1,NULL,0,0,NULL),(215,87,155,5,NULL,NULL,1,NULL,0,0,NULL),(216,11,187,5,NULL,NULL,1,NULL,0,0,NULL),(217,39,191,5,NULL,NULL,1,NULL,0,0,NULL);
+INSERT INTO `civicrm_relationship` (`id`, `contact_id_a`, `contact_id_b`, `relationship_type_id`, `start_date`, `end_date`, `is_active`, `description`, `is_permission_a_b`, `is_permission_b_a`, `case_id`) VALUES (1,136,94,1,NULL,NULL,1,NULL,0,0,NULL),(2,114,94,1,NULL,NULL,1,NULL,0,0,NULL),(3,136,103,1,NULL,NULL,1,NULL,0,0,NULL),(4,114,103,1,NULL,NULL,1,NULL,0,0,NULL),(5,114,136,4,NULL,NULL,1,NULL,0,0,NULL),(6,103,159,8,NULL,NULL,1,NULL,0,0,NULL),(7,136,159,8,NULL,NULL,1,NULL,0,0,NULL),(8,114,159,8,NULL,NULL,1,NULL,0,0,NULL),(9,94,159,7,NULL,NULL,1,NULL,0,0,NULL),(10,103,94,2,NULL,NULL,1,NULL,0,0,NULL),(11,40,134,1,NULL,NULL,1,NULL,0,0,NULL),(12,10,134,1,NULL,NULL,1,NULL,0,0,NULL),(13,40,65,1,NULL,NULL,1,NULL,0,0,NULL),(14,10,65,1,NULL,NULL,1,NULL,0,0,NULL),(15,10,40,4,NULL,NULL,1,NULL,0,0,NULL),(16,65,124,8,NULL,NULL,1,NULL,0,0,NULL),(17,40,124,8,NULL,NULL,1,NULL,0,0,NULL),(18,10,124,8,NULL,NULL,1,NULL,0,0,NULL),(19,134,124,7,NULL,NULL,1,NULL,0,0,NULL),(20,65,134,2,NULL,NULL,1,NULL,0,0,NULL),(21,177,168,1,NULL,NULL,1,NULL,0,0,NULL),(22,76,168,1,NULL,NULL,1,NULL,0,0,NULL),(23,177,30,1,NULL,NULL,1,NULL,0,0,NULL),(24,76,30,1,NULL,NULL,1,NULL,0,0,NULL),(25,76,177,4,NULL,NULL,1,NULL,0,0,NULL),(26,30,154,8,NULL,NULL,1,NULL,0,0,NULL),(27,177,154,8,NULL,NULL,1,NULL,0,0,NULL),(28,76,154,8,NULL,NULL,1,NULL,0,0,NULL),(29,168,154,7,NULL,NULL,0,NULL,0,0,NULL),(30,30,168,2,NULL,NULL,0,NULL,0,0,NULL),(31,33,87,1,NULL,NULL,1,NULL,0,0,NULL),(32,194,87,1,NULL,NULL,1,NULL,0,0,NULL),(33,33,41,1,NULL,NULL,1,NULL,0,0,NULL),(34,194,41,1,NULL,NULL,1,NULL,0,0,NULL),(35,194,33,4,NULL,NULL,1,NULL,0,0,NULL),(36,41,22,8,NULL,NULL,1,NULL,0,0,NULL),(37,33,22,8,NULL,NULL,1,NULL,0,0,NULL),(38,194,22,8,NULL,NULL,1,NULL,0,0,NULL),(39,87,22,7,NULL,NULL,1,NULL,0,0,NULL),(40,41,87,2,NULL,NULL,1,NULL,0,0,NULL),(41,127,26,1,NULL,NULL,1,NULL,0,0,NULL),(42,182,26,1,NULL,NULL,1,NULL,0,0,NULL),(43,127,68,1,NULL,NULL,1,NULL,0,0,NULL),(44,182,68,1,NULL,NULL,1,NULL,0,0,NULL),(45,182,127,4,NULL,NULL,1,NULL,0,0,NULL),(46,68,172,8,NULL,NULL,1,NULL,0,0,NULL),(47,127,172,8,NULL,NULL,1,NULL,0,0,NULL),(48,182,172,8,NULL,NULL,1,NULL,0,0,NULL),(49,26,172,7,NULL,NULL,1,NULL,0,0,NULL),(50,68,26,2,NULL,NULL,1,NULL,0,0,NULL),(51,155,69,1,NULL,NULL,1,NULL,0,0,NULL),(52,138,69,1,NULL,NULL,1,NULL,0,0,NULL),(53,155,142,1,NULL,NULL,1,NULL,0,0,NULL),(54,138,142,1,NULL,NULL,1,NULL,0,0,NULL),(55,138,155,4,NULL,NULL,1,NULL,0,0,NULL),(56,142,50,8,NULL,NULL,1,NULL,0,0,NULL),(57,155,50,8,NULL,NULL,1,NULL,0,0,NULL),(58,138,50,8,NULL,NULL,1,NULL,0,0,NULL),(59,69,50,7,NULL,NULL,0,NULL,0,0,NULL),(60,142,69,2,NULL,NULL,0,NULL,0,0,NULL),(61,199,55,1,NULL,NULL,1,NULL,0,0,NULL),(62,149,55,1,NULL,NULL,1,NULL,0,0,NULL),(63,199,17,1,NULL,NULL,1,NULL,0,0,NULL),(64,149,17,1,NULL,NULL,1,NULL,0,0,NULL),(65,149,199,4,NULL,NULL,1,NULL,0,0,NULL),(66,17,118,8,NULL,NULL,1,NULL,0,0,NULL),(67,199,118,8,NULL,NULL,1,NULL,0,0,NULL),(68,149,118,8,NULL,NULL,1,NULL,0,0,NULL),(69,55,118,7,NULL,NULL,1,NULL,0,0,NULL),(70,17,55,2,NULL,NULL,1,NULL,0,0,NULL),(71,185,15,1,NULL,NULL,1,NULL,0,0,NULL),(72,79,15,1,NULL,NULL,1,NULL,0,0,NULL),(73,185,158,1,NULL,NULL,1,NULL,0,0,NULL),(74,79,158,1,NULL,NULL,1,NULL,0,0,NULL),(75,79,185,4,NULL,NULL,1,NULL,0,0,NULL),(76,158,181,8,NULL,NULL,1,NULL,0,0,NULL),(77,185,181,8,NULL,NULL,1,NULL,0,0,NULL),(78,79,181,8,NULL,NULL,1,NULL,0,0,NULL),(79,15,181,7,NULL,NULL,1,NULL,0,0,NULL),(80,158,15,2,NULL,NULL,1,NULL,0,0,NULL),(81,77,175,1,NULL,NULL,1,NULL,0,0,NULL),(82,42,175,1,NULL,NULL,1,NULL,0,0,NULL),(83,77,184,1,NULL,NULL,1,NULL,0,0,NULL),(84,42,184,1,NULL,NULL,1,NULL,0,0,NULL),(85,42,77,4,NULL,NULL,1,NULL,0,0,NULL),(86,184,48,8,NULL,NULL,1,NULL,0,0,NULL),(87,77,48,8,NULL,NULL,1,NULL,0,0,NULL),(88,42,48,8,NULL,NULL,1,NULL,0,0,NULL),(89,175,48,7,NULL,NULL,0,NULL,0,0,NULL),(90,184,175,2,NULL,NULL,0,NULL,0,0,NULL),(91,8,200,1,NULL,NULL,1,NULL,0,0,NULL),(92,137,200,1,NULL,NULL,1,NULL,0,0,NULL),(93,8,16,1,NULL,NULL,1,NULL,0,0,NULL),(94,137,16,1,NULL,NULL,1,NULL,0,0,NULL),(95,137,8,4,NULL,NULL,1,NULL,0,0,NULL),(96,16,131,8,NULL,NULL,1,NULL,0,0,NULL),(97,8,131,8,NULL,NULL,1,NULL,0,0,NULL),(98,137,131,8,NULL,NULL,1,NULL,0,0,NULL),(99,200,131,7,NULL,NULL,0,NULL,0,0,NULL),(100,16,200,2,NULL,NULL,0,NULL,0,0,NULL),(101,179,167,1,NULL,NULL,1,NULL,0,0,NULL),(102,31,167,1,NULL,NULL,1,NULL,0,0,NULL),(103,179,78,1,NULL,NULL,1,NULL,0,0,NULL),(104,31,78,1,NULL,NULL,1,NULL,0,0,NULL),(105,31,179,4,NULL,NULL,1,NULL,0,0,NULL),(106,78,70,8,NULL,NULL,1,NULL,0,0,NULL),(107,179,70,8,NULL,NULL,1,NULL,0,0,NULL),(108,31,70,8,NULL,NULL,1,NULL,0,0,NULL),(109,167,70,7,NULL,NULL,0,NULL,0,0,NULL),(110,78,167,2,NULL,NULL,0,NULL,0,0,NULL),(111,110,23,1,NULL,NULL,1,NULL,0,0,NULL),(112,141,23,1,NULL,NULL,1,NULL,0,0,NULL),(113,110,84,1,NULL,NULL,1,NULL,0,0,NULL),(114,141,84,1,NULL,NULL,1,NULL,0,0,NULL),(115,141,110,4,NULL,NULL,1,NULL,0,0,NULL),(116,84,122,8,NULL,NULL,1,NULL,0,0,NULL),(117,110,122,8,NULL,NULL,1,NULL,0,0,NULL),(118,141,122,8,NULL,NULL,1,NULL,0,0,NULL),(119,23,122,7,NULL,NULL,1,NULL,0,0,NULL),(120,84,23,2,NULL,NULL,1,NULL,0,0,NULL),(121,153,3,1,NULL,NULL,1,NULL,0,0,NULL),(122,192,3,1,NULL,NULL,1,NULL,0,0,NULL),(123,153,133,1,NULL,NULL,1,NULL,0,0,NULL),(124,192,133,1,NULL,NULL,1,NULL,0,0,NULL),(125,192,153,4,NULL,NULL,1,NULL,0,0,NULL),(126,133,62,8,NULL,NULL,1,NULL,0,0,NULL),(127,153,62,8,NULL,NULL,1,NULL,0,0,NULL),(128,192,62,8,NULL,NULL,1,NULL,0,0,NULL),(129,3,62,7,NULL,NULL,1,NULL,0,0,NULL),(130,133,3,2,NULL,NULL,1,NULL,0,0,NULL),(131,97,90,1,NULL,NULL,1,NULL,0,0,NULL),(132,75,90,1,NULL,NULL,1,NULL,0,0,NULL),(133,97,60,1,NULL,NULL,1,NULL,0,0,NULL),(134,75,60,1,NULL,NULL,1,NULL,0,0,NULL),(135,75,97,4,NULL,NULL,1,NULL,0,0,NULL),(136,60,89,8,NULL,NULL,1,NULL,0,0,NULL),(137,97,89,8,NULL,NULL,1,NULL,0,0,NULL),(138,75,89,8,NULL,NULL,1,NULL,0,0,NULL),(139,90,89,7,NULL,NULL,0,NULL,0,0,NULL),(140,60,90,2,NULL,NULL,0,NULL,0,0,NULL),(141,119,4,1,NULL,NULL,1,NULL,0,0,NULL),(142,174,4,1,NULL,NULL,1,NULL,0,0,NULL),(143,119,58,1,NULL,NULL,1,NULL,0,0,NULL),(144,174,58,1,NULL,NULL,1,NULL,0,0,NULL),(145,174,119,4,NULL,NULL,1,NULL,0,0,NULL),(146,58,25,8,NULL,NULL,1,NULL,0,0,NULL),(147,119,25,8,NULL,NULL,1,NULL,0,0,NULL),(148,174,25,8,NULL,NULL,1,NULL,0,0,NULL),(149,4,25,7,NULL,NULL,1,NULL,0,0,NULL),(150,58,4,2,NULL,NULL,1,NULL,0,0,NULL),(151,7,20,1,NULL,NULL,1,NULL,0,0,NULL),(152,63,20,1,NULL,NULL,1,NULL,0,0,NULL),(153,7,13,1,NULL,NULL,1,NULL,0,0,NULL),(154,63,13,1,NULL,NULL,1,NULL,0,0,NULL),(155,63,7,4,NULL,NULL,1,NULL,0,0,NULL),(156,13,6,8,NULL,NULL,1,NULL,0,0,NULL),(157,7,6,8,NULL,NULL,1,NULL,0,0,NULL),(158,63,6,8,NULL,NULL,1,NULL,0,0,NULL),(159,20,6,7,NULL,NULL,0,NULL,0,0,NULL),(160,13,20,2,NULL,NULL,0,NULL,0,0,NULL),(161,160,150,1,NULL,NULL,1,NULL,0,0,NULL),(162,106,150,1,NULL,NULL,1,NULL,0,0,NULL),(163,160,80,1,NULL,NULL,1,NULL,0,0,NULL),(164,106,80,1,NULL,NULL,1,NULL,0,0,NULL),(165,106,160,4,NULL,NULL,1,NULL,0,0,NULL),(166,80,147,8,NULL,NULL,1,NULL,0,0,NULL),(167,160,147,8,NULL,NULL,1,NULL,0,0,NULL),(168,106,147,8,NULL,NULL,1,NULL,0,0,NULL),(169,150,147,7,NULL,NULL,0,NULL,0,0,NULL),(170,80,150,2,NULL,NULL,0,NULL,0,0,NULL),(171,21,108,1,NULL,NULL,1,NULL,0,0,NULL),(172,27,108,1,NULL,NULL,1,NULL,0,0,NULL),(173,21,66,1,NULL,NULL,1,NULL,0,0,NULL),(174,27,66,1,NULL,NULL,1,NULL,0,0,NULL),(175,27,21,4,NULL,NULL,1,NULL,0,0,NULL),(176,66,156,8,NULL,NULL,1,NULL,0,0,NULL),(177,21,156,8,NULL,NULL,1,NULL,0,0,NULL),(178,27,156,8,NULL,NULL,1,NULL,0,0,NULL),(179,108,156,7,NULL,NULL,1,NULL,0,0,NULL),(180,66,108,2,NULL,NULL,1,NULL,0,0,NULL),(181,161,71,1,NULL,NULL,1,NULL,0,0,NULL),(182,111,71,1,NULL,NULL,1,NULL,0,0,NULL),(183,161,129,1,NULL,NULL,1,NULL,0,0,NULL),(184,111,129,1,NULL,NULL,1,NULL,0,0,NULL),(185,111,161,4,NULL,NULL,1,NULL,0,0,NULL),(186,129,104,8,NULL,NULL,1,NULL,0,0,NULL),(187,161,104,8,NULL,NULL,1,NULL,0,0,NULL),(188,111,104,8,NULL,NULL,1,NULL,0,0,NULL),(189,71,104,7,NULL,NULL,0,NULL,0,0,NULL),(190,129,71,2,NULL,NULL,0,NULL,0,0,NULL),(191,45,102,1,NULL,NULL,1,NULL,0,0,NULL),(192,61,102,1,NULL,NULL,1,NULL,0,0,NULL),(193,45,34,1,NULL,NULL,1,NULL,0,0,NULL),(194,61,34,1,NULL,NULL,1,NULL,0,0,NULL),(195,61,45,4,NULL,NULL,1,NULL,0,0,NULL),(196,34,100,8,NULL,NULL,1,NULL,0,0,NULL),(197,45,100,8,NULL,NULL,1,NULL,0,0,NULL),(198,61,100,8,NULL,NULL,1,NULL,0,0,NULL),(199,102,100,7,NULL,NULL,0,NULL,0,0,NULL),(200,34,102,2,NULL,NULL,0,NULL,0,0,NULL),(201,113,5,5,NULL,NULL,1,NULL,0,0,NULL),(202,57,36,5,NULL,NULL,1,NULL,0,0,NULL),(203,98,37,5,NULL,NULL,1,NULL,0,0,NULL),(204,153,39,5,NULL,NULL,1,NULL,0,0,NULL),(205,111,44,5,NULL,NULL,1,NULL,0,0,NULL),(206,119,51,5,NULL,NULL,1,NULL,0,0,NULL),(207,32,56,5,NULL,NULL,1,NULL,0,0,NULL),(208,194,67,5,NULL,NULL,1,NULL,0,0,NULL),(209,175,82,5,NULL,NULL,1,NULL,0,0,NULL),(210,61,86,5,NULL,NULL,1,NULL,0,0,NULL),(211,13,99,5,NULL,NULL,1,NULL,0,0,NULL),(212,75,116,5,NULL,NULL,1,NULL,0,0,NULL),(213,109,126,5,NULL,NULL,1,NULL,0,0,NULL),(214,127,140,5,NULL,NULL,1,NULL,0,0,NULL),(215,130,144,5,NULL,NULL,1,NULL,0,0,NULL),(216,42,164,5,NULL,NULL,1,NULL,0,0,NULL),(217,72,165,5,NULL,NULL,1,NULL,0,0,NULL),(218,160,178,5,NULL,NULL,1,NULL,0,0,NULL),(219,137,187,5,NULL,NULL,1,NULL,0,0,NULL);
 /*!40000 ALTER TABLE `civicrm_relationship` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1263,7 +1263,7 @@ UNLOCK TABLES;
 
 LOCK TABLES `civicrm_setting` WRITE;
 /*!40000 ALTER TABLE `civicrm_setting` DISABLE KEYS */;
-INSERT INTO `civicrm_setting` (`id`, `group_name`, `name`, `value`, `domain_id`, `contact_id`, `is_domain`, `component_id`, `created_date`, `created_id`) VALUES (1,'CiviCRM Preferences','contact_view_options','s:28:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 113\ 1\";',1,NULL,1,NULL,NULL,NULL),(2,'CiviCRM Preferences','contact_smart_group_display','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(3,'CiviCRM Preferences','contact_edit_options','s:37:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 111\ 112\ 114\ 115\ 116\ 117\ 1\";',1,NULL,1,NULL,NULL,NULL),(4,'CiviCRM Preferences','advanced_search_options','s:46:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 112\ 113\ 115\ 116\ 117\ 118\ 119\ 1\";',1,NULL,1,NULL,NULL,NULL),(5,'CiviCRM Preferences','user_dashboard_options','s:15:\"\ 11\ 12\ 13\ 14\ 15\ 17\ 18\ 1\";',1,NULL,1,NULL,NULL,NULL),(6,'CiviCRM Preferences','address_options','s:23:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 18\ 19\ 110\ 111\ 1\";',1,NULL,1,NULL,NULL,NULL),(7,'CiviCRM Preferences','address_format','s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(8,'CiviCRM Preferences','mailing_format','s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(9,'CiviCRM Preferences','display_name_format','s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";',1,NULL,1,NULL,NULL,NULL),(10,'CiviCRM Preferences','sort_name_format','s:43:\"{contact.last_name}{, }{contact.first_name}\";',1,NULL,1,NULL,NULL,NULL),(11,'CiviCRM Preferences','editor_id','s:1:\"2\";',1,NULL,1,NULL,NULL,NULL),(12,'CiviCRM Preferences','contact_ajax_check_similar','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(13,'CiviCRM Preferences','activity_assignee_notification','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(14,'CiviCRM Preferences','activity_assignee_notification_ics','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(15,'CiviCRM Preferences','contact_autocomplete_options','s:5:\"\ 11\ 12\ 1\";',1,NULL,1,NULL,NULL,NULL),(16,'CiviCRM Preferences','contact_reference_options','s:5:\"\ 11\ 12\ 1\";',1,NULL,1,NULL,NULL,NULL),(17,'Address Standardization Preferences','address_standardization_provider',NULL,1,NULL,1,NULL,NULL,NULL),(18,'Address Standardization Preferences','address_standardization_userid',NULL,1,NULL,1,NULL,NULL,NULL),(19,'Address Standardization Preferences','address_standardization_url',NULL,1,NULL,1,NULL,NULL,NULL),(20,'Campaign Preferences','tag_unconfirmed','s:11:\"Unconfirmed\";',1,NULL,1,NULL,NULL,NULL),(21,'Campaign Preferences','petition_contacts','s:17:\"Petition Contacts\";',1,NULL,1,NULL,NULL,NULL),(22,'Event Preferences','enable_cart','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(23,'Mailing Preferences','profile_double_optin','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(24,'Mailing Preferences','profile_add_to_group_double_optin','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(25,'Mailing Preferences','track_civimail_replies','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(26,'Mailing Preferences','civimail_workflow','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(27,'Mailing Preferences','civimail_server_wide_lock','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(28,'Mailing Preferences','mailing_backend','a:1:{s:15:\"outBound_option\";s:1:\"3\";}',1,NULL,1,NULL,NULL,NULL),(29,'Mailing Preferences','write_activity_record','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(30,'Member Preferences','default_renewal_contribution_page',NULL,1,NULL,1,NULL,NULL,NULL),(31,'Multi Site Preferences','is_enabled','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(32,'Multi Site Preferences','uniq_email_per_site','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(33,'Multi Site Preferences','domain_group_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(34,'Multi Site Preferences','event_price_set_domain_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(35,'Directory Preferences','uploadDir','s:7:\"upload/\";',1,NULL,1,NULL,'2013-12-11 12:10:38',NULL),(36,'Directory Preferences','imageUploadDir','s:19:\"persist/contribute/\";',1,NULL,1,NULL,'2013-12-11 12:10:38',NULL),(37,'Directory Preferences','customFileUploadDir','s:7:\"custom/\";',1,NULL,1,NULL,'2013-12-11 12:10:38',NULL),(38,'Directory Preferences','customTemplateDir',NULL,1,NULL,1,NULL,NULL,NULL),(39,'Directory Preferences','customPHPPathDir',NULL,1,NULL,1,NULL,NULL,NULL),(40,'Directory Preferences','extensionsDir',NULL,1,NULL,1,NULL,NULL,NULL),(41,'URL Preferences','userFrameworkResourceURL',NULL,1,NULL,1,NULL,'2013-12-11 12:10:38',NULL),(42,'URL Preferences','imageUploadURL',NULL,1,NULL,1,NULL,'2013-12-11 12:10:38',NULL),(43,'URL Preferences','customCSSURL',NULL,1,NULL,1,NULL,NULL,NULL),(44,'URL Preferences','extensionsURL',NULL,1,NULL,1,NULL,NULL,NULL);
+INSERT INTO `civicrm_setting` (`id`, `group_name`, `name`, `value`, `domain_id`, `contact_id`, `is_domain`, `component_id`, `created_date`, `created_id`) VALUES (1,'CiviCRM Preferences','contact_view_options','s:28:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 113\ 1\";',1,NULL,1,NULL,NULL,NULL),(2,'CiviCRM Preferences','contact_smart_group_display','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(3,'CiviCRM Preferences','contact_edit_options','s:37:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 111\ 112\ 114\ 115\ 116\ 117\ 1\";',1,NULL,1,NULL,NULL,NULL),(4,'CiviCRM Preferences','advanced_search_options','s:46:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 112\ 113\ 115\ 116\ 117\ 118\ 119\ 1\";',1,NULL,1,NULL,NULL,NULL),(5,'CiviCRM Preferences','user_dashboard_options','s:15:\"\ 11\ 12\ 13\ 14\ 15\ 17\ 18\ 1\";',1,NULL,1,NULL,NULL,NULL),(6,'CiviCRM Preferences','address_options','s:23:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 18\ 19\ 110\ 111\ 1\";',1,NULL,1,NULL,NULL,NULL),(7,'CiviCRM Preferences','address_format','s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(8,'CiviCRM Preferences','mailing_format','s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(9,'CiviCRM Preferences','display_name_format','s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";',1,NULL,1,NULL,NULL,NULL),(10,'CiviCRM Preferences','sort_name_format','s:43:\"{contact.last_name}{, }{contact.first_name}\";',1,NULL,1,NULL,NULL,NULL),(11,'CiviCRM Preferences','editor_id','s:1:\"2\";',1,NULL,1,NULL,NULL,NULL),(12,'CiviCRM Preferences','contact_ajax_check_similar','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(13,'CiviCRM Preferences','activity_assignee_notification','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(14,'CiviCRM Preferences','activity_assignee_notification_ics','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(15,'CiviCRM Preferences','contact_autocomplete_options','s:5:\"\ 11\ 12\ 1\";',1,NULL,1,NULL,NULL,NULL),(16,'CiviCRM Preferences','contact_reference_options','s:5:\"\ 11\ 12\ 1\";',1,NULL,1,NULL,NULL,NULL),(17,'Address Standardization Preferences','address_standardization_provider',NULL,1,NULL,1,NULL,NULL,NULL),(18,'Address Standardization Preferences','address_standardization_userid',NULL,1,NULL,1,NULL,NULL,NULL),(19,'Address Standardization Preferences','address_standardization_url',NULL,1,NULL,1,NULL,NULL,NULL),(20,'Campaign Preferences','tag_unconfirmed','s:11:\"Unconfirmed\";',1,NULL,1,NULL,NULL,NULL),(21,'Campaign Preferences','petition_contacts','s:17:\"Petition Contacts\";',1,NULL,1,NULL,NULL,NULL),(22,'Event Preferences','enable_cart','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(23,'Mailing Preferences','profile_double_optin','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(24,'Mailing Preferences','profile_add_to_group_double_optin','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(25,'Mailing Preferences','track_civimail_replies','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(26,'Mailing Preferences','civimail_workflow','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(27,'Mailing Preferences','civimail_server_wide_lock','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(28,'Mailing Preferences','mailing_backend','a:1:{s:15:\"outBound_option\";s:1:\"3\";}',1,NULL,1,NULL,NULL,NULL),(29,'Mailing Preferences','write_activity_record','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(30,'Member Preferences','default_renewal_contribution_page',NULL,1,NULL,1,NULL,NULL,NULL),(31,'Multi Site Preferences','is_enabled','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(32,'Multi Site Preferences','uniq_email_per_site','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(33,'Multi Site Preferences','domain_group_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(34,'Multi Site Preferences','event_price_set_domain_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(35,'Directory Preferences','uploadDir','s:7:\"upload/\";',1,NULL,1,NULL,'2014-01-08 12:19:39',NULL),(36,'Directory Preferences','imageUploadDir','s:19:\"persist/contribute/\";',1,NULL,1,NULL,'2014-01-08 12:19:39',NULL),(37,'Directory Preferences','customFileUploadDir','s:7:\"custom/\";',1,NULL,1,NULL,'2014-01-08 12:19:39',NULL),(38,'Directory Preferences','customTemplateDir',NULL,1,NULL,1,NULL,NULL,NULL),(39,'Directory Preferences','customPHPPathDir',NULL,1,NULL,1,NULL,NULL,NULL),(40,'Directory Preferences','extensionsDir',NULL,1,NULL,1,NULL,NULL,NULL),(41,'URL Preferences','userFrameworkResourceURL',NULL,1,NULL,1,NULL,'2014-01-08 12:19:39',NULL),(42,'URL Preferences','imageUploadURL',NULL,1,NULL,1,NULL,'2014-01-08 12:19:40',NULL),(43,'URL Preferences','customCSSURL',NULL,1,NULL,1,NULL,NULL,NULL),(44,'URL Preferences','extensionsURL',NULL,1,NULL,1,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `civicrm_setting` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1292,7 +1292,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,78,2,'2013-07-25 04:56:55','Admin','Added',NULL),(2,111,2,'2013-10-05 12:33:24','Email','Added',NULL),(3,140,2,'2013-08-05 08:01:46','Admin','Added',NULL),(4,141,2,'2013-04-24 08:41:00','Admin','Added',NULL),(5,169,2,'2013-03-02 04:23:23','Admin','Added',NULL),(6,151,2,'2013-04-06 05:05:43','Admin','Added',NULL),(7,149,2,'2013-10-26 12:24:39','Email','Added',NULL),(8,29,2,'2013-07-13 11:15:56','Admin','Added',NULL),(9,153,2,'2013-07-17 02:16:04','Email','Added',NULL),(10,175,2,'2013-04-08 08:15:27','Email','Added',NULL),(11,51,2,'2013-05-01 08:46:31','Admin','Added',NULL),(12,181,2,'2013-02-10 08:24:46','Email','Added',NULL),(13,113,2,'2013-02-24 03:45:41','Admin','Added',NULL),(14,34,2,'2013-06-09 06:18:40','Email','Added',NULL),(15,105,2,'2013-12-03 06:41:15','Email','Added',NULL),(16,121,2,'2012-12-17 02:05:00','Admin','Added',NULL),(17,4,2,'2013-03-14 04:02:26','Email','Added',NULL),(18,97,2,'2013-06-26 03:54:15','Email','Added',NULL),(19,2,2,'2013-01-01 05:24:51','Email','Added',NULL),(20,7,2,'2012-12-13 06:35:25','Admin','Added',NULL),(21,69,2,'2013-09-26 05:46:00','Email','Added',NULL),(22,112,2,'2013-05-02 10:07:57','Admin','Added',NULL),(23,195,2,'2013-02-21 02:29:30','Email','Added',NULL),(24,5,2,'2013-07-08 10:46:23','Admin','Added',NULL),(25,183,2,'2013-05-03 02:21:17','Admin','Added',NULL),(26,41,2,'2013-04-10 06:26:01','Admin','Added',NULL),(27,68,2,'2013-07-23 08:49:50','Admin','Added',NULL),(28,168,2,'2013-11-22 12:13:20','Email','Added',NULL),(29,106,2,'2013-05-05 09:39:11','Admin','Added',NULL),(30,50,2,'2013-07-08 02:04:22','Admin','Added',NULL),(31,75,2,'2013-09-08 12:29:12','Email','Added',NULL),(32,57,2,'2012-12-22 06:04:36','Email','Added',NULL),(33,95,2,'2013-01-29 02:46:35','Admin','Added',NULL),(34,87,2,'2013-06-05 05:09:43','Email','Added',NULL),(35,198,2,'2013-04-16 11:22:42','Email','Added',NULL),(36,93,2,'2013-10-26 04:00:01','Email','Added',NULL),(37,185,2,'2013-07-26 12:32:24','Admin','Added',NULL),(38,79,2,'2013-10-01 12:25:42','Email','Added',NULL),(39,128,2,'2013-11-24 02:34:01','Admin','Added',NULL),(40,201,2,'2013-03-26 01:24:38','Email','Added',NULL),(41,11,2,'2013-07-16 11:33:51','Email','Added',NULL),(42,74,2,'2013-02-12 03:03:54','Email','Added',NULL),(43,160,2,'2013-11-03 05:52:22','Email','Added',NULL),(44,61,2,'2013-05-15 04:46:29','Admin','Added',NULL),(45,133,2,'2013-03-13 09:58:58','Email','Added',NULL),(46,26,2,'2012-12-28 07:49:26','Email','Added',NULL),(47,37,2,'2013-11-04 01:47:51','Email','Added',NULL),(48,44,2,'2013-10-16 02:00:49','Admin','Added',NULL),(49,17,2,'2013-09-22 02:53:34','Email','Added',NULL),(50,15,2,'2013-01-24 01:25:01','Admin','Added',NULL),(51,186,2,'2013-02-04 06:01:55','Email','Added',NULL),(52,65,2,'2013-07-18 01:51:56','Admin','Added',NULL),(53,135,2,'2013-10-16 10:05:22','Email','Added',NULL),(54,47,2,'2013-01-03 05:44:56','Admin','Added',NULL),(55,6,2,'2013-05-13 12:41:23','Admin','Added',NULL),(56,154,2,'2013-10-01 01:53:35','Admin','Added',NULL),(57,179,2,'2013-03-03 10:20:54','Admin','Added',NULL),(58,33,2,'2013-10-02 09:51:44','Email','Added',NULL),(59,138,2,'2013-11-17 07:30:17','Admin','Added',NULL),(60,100,2,'2013-05-24 10:21:01','Admin','Added',NULL),(61,189,3,'2013-04-01 09:22:24','Email','Added',NULL),(62,43,3,'2013-01-22 07:32:53','Email','Added',NULL),(63,200,3,'2013-05-30 11:30:45','Admin','Added',NULL),(64,158,3,'2013-11-10 05:51:46','Email','Added',NULL),(65,8,3,'2013-02-01 08:08:24','Admin','Added',NULL),(66,173,3,'2013-04-27 07:27:11','Email','Added',NULL),(67,3,3,'2013-02-22 05:14:14','Email','Added',NULL),(68,70,3,'2013-09-02 07:21:02','Email','Added',NULL),(69,53,3,'2013-03-19 03:49:19','Email','Added',NULL),(70,92,3,'2013-09-11 12:13:34','Email','Added',NULL),(71,36,3,'2013-09-12 04:56:04','Admin','Added',NULL),(72,190,3,'2013-01-08 06:28:56','Admin','Added',NULL),(73,66,3,'2013-09-16 12:29:35','Admin','Added',NULL),(74,136,3,'2013-10-04 01:51:04','Email','Added',NULL),(75,64,3,'2013-11-20 05:23:36','Admin','Added',NULL),(76,78,4,'2013-10-09 01:57:27','Email','Added',NULL),(77,29,4,'2013-01-31 01:16:50','Email','Added',NULL),(78,105,4,'2013-01-05 04:55:27','Email','Added',NULL),(79,112,4,'2013-08-24 12:23:32','Email','Added',NULL),(80,106,4,'2013-05-23 03:20:41','Admin','Added',NULL),(81,93,4,'2013-04-03 04:18:31','Email','Added',NULL),(82,160,4,'2013-05-11 10:26:01','Admin','Added',NULL),(83,15,4,'2012-12-25 07:36:05','Email','Added',NULL);
+INSERT INTO `civicrm_subscription_history` (`id`, `contact_id`, `group_id`, `date`, `method`, `status`, `tracking`) VALUES (1,195,2,'2013-04-01 06:16:51','Email','Added',NULL),(2,180,2,'2013-03-12 05:44:32','Admin','Added',NULL),(3,19,2,'2013-01-09 04:09:09','Email','Added',NULL),(4,109,2,'2014-01-01 11:33:14','Admin','Added',NULL),(5,91,2,'2013-10-07 09:24:23','Email','Added',NULL),(6,151,2,'2013-08-02 02:50:33','Email','Added',NULL),(7,18,2,'2013-05-29 07:52:36','Admin','Added',NULL),(8,132,2,'2013-03-19 08:58:46','Admin','Added',NULL),(9,98,2,'2013-07-08 12:52:28','Email','Added',NULL),(10,54,2,'2013-01-08 04:49:54','Admin','Added',NULL),(11,197,2,'2013-08-11 05:40:05','Admin','Added',NULL),(12,123,2,'2013-04-01 12:25:10','Admin','Added',NULL),(13,176,2,'2013-05-03 12:37:49','Email','Added',NULL),(14,145,2,'2013-02-03 02:07:43','Email','Added',NULL),(15,112,2,'2013-06-26 01:32:55','Admin','Added',NULL),(16,32,2,'2013-11-03 05:20:14','Admin','Added',NULL),(17,163,2,'2013-06-22 10:28:38','Admin','Added',NULL),(18,88,2,'2013-10-05 04:28:17','Admin','Added',NULL),(19,95,2,'2013-01-10 08:11:49','Email','Added',NULL),(20,193,2,'2013-08-08 04:32:05','Admin','Added',NULL),(21,188,2,'2013-03-27 09:57:38','Admin','Added',NULL),(22,38,2,'2013-01-25 02:32:41','Email','Added',NULL),(23,14,2,'2013-02-22 08:41:35','Admin','Added',NULL),(24,74,2,'2014-01-03 12:54:16','Email','Added',NULL),(25,9,2,'2013-06-10 07:12:19','Email','Added',NULL),(26,169,2,'2013-03-03 08:40:36','Email','Added',NULL),(27,72,2,'2013-08-06 08:43:02','Email','Added',NULL),(28,96,2,'2013-03-16 06:35:33','Admin','Added',NULL),(29,83,2,'2013-07-15 06:18:18','Admin','Added',NULL),(30,53,2,'2013-08-10 05:29:12','Email','Added',NULL),(31,186,2,'2013-01-27 07:13:47','Admin','Added',NULL),(32,107,2,'2013-03-24 04:03:02','Admin','Added',NULL),(33,105,2,'2013-02-04 05:32:04','Admin','Added',NULL),(34,191,2,'2013-12-01 10:04:02','Email','Added',NULL),(35,139,2,'2013-07-06 12:57:40','Email','Added',NULL),(36,35,2,'2013-08-27 04:13:42','Email','Added',NULL),(37,198,2,'2013-05-10 05:20:48','Email','Added',NULL),(38,52,2,'2013-09-29 10:53:06','Admin','Added',NULL),(39,190,2,'2013-02-21 05:20:00','Admin','Added',NULL),(40,57,2,'2013-03-09 11:33:55','Admin','Added',NULL),(41,143,2,'2013-05-19 08:52:10','Admin','Added',NULL),(42,173,2,'2013-02-05 02:37:59','Admin','Added',NULL),(43,93,2,'2013-08-07 03:10:55','Admin','Added',NULL),(44,157,2,'2013-12-16 02:29:45','Email','Added',NULL),(45,59,2,'2013-05-03 01:46:00','Email','Added',NULL),(46,189,2,'2013-08-06 02:34:23','Email','Added',NULL),(47,28,2,'2013-02-25 11:27:29','Admin','Added',NULL),(48,130,2,'2013-07-30 05:17:47','Admin','Added',NULL),(49,117,2,'2013-12-02 12:34:06','Email','Added',NULL),(50,162,2,'2013-10-01 01:39:49','Email','Added',NULL),(51,113,2,'2013-01-15 03:13:18','Admin','Added',NULL),(52,49,2,'2013-08-27 07:26:44','Email','Added',NULL),(53,47,2,'2013-01-21 12:44:01','Email','Added',NULL),(54,171,2,'2013-07-11 12:54:37','Email','Added',NULL),(55,64,2,'2013-08-02 11:26:59','Email','Added',NULL),(56,148,2,'2013-06-14 12:15:30','Admin','Added',NULL),(57,128,2,'2013-02-11 03:39:08','Admin','Added',NULL),(58,24,2,'2013-08-01 04:19:42','Admin','Added',NULL),(59,152,2,'2013-07-01 08:38:07','Email','Added',NULL),(60,196,2,'2013-04-30 07:34:03','Admin','Added',NULL),(61,135,3,'2013-07-30 12:56:51','Email','Added',NULL),(62,2,3,'2013-03-27 01:05:18','Admin','Added',NULL),(63,120,3,'2013-04-18 05:41:41','Email','Added',NULL),(64,11,3,'2013-01-27 02:27:03','Email','Added',NULL),(65,115,3,'2013-05-06 01:56:03','Admin','Added',NULL),(66,46,3,'2013-08-21 10:30:13','Admin','Added',NULL),(67,183,3,'2013-05-02 07:58:07','Email','Added',NULL),(68,29,3,'2013-10-23 03:59:09','Email','Added',NULL),(69,81,3,'2013-06-16 04:29:48','Admin','Added',NULL),(70,101,3,'2013-06-15 02:32:46','Email','Added',NULL),(71,43,3,'2013-04-22 09:32:16','Email','Added',NULL),(72,170,3,'2013-06-01 03:42:45','Email','Added',NULL),(73,201,3,'2013-09-09 05:30:31','Admin','Added',NULL),(74,125,3,'2013-07-20 03:33:58','Email','Added',NULL),(75,92,3,'2013-01-26 12:18:57','Email','Added',NULL),(76,195,4,'2013-06-27 05:17:48','Admin','Added',NULL),(77,132,4,'2013-03-18 10:54:19','Admin','Added',NULL),(78,112,4,'2013-09-22 02:15:14','Email','Added',NULL),(79,38,4,'2013-06-17 01:46:01','Admin','Added',NULL),(80,83,4,'2013-11-03 04:47:33','Email','Added',NULL),(81,35,4,'2013-09-17 06:24:47','Admin','Added',NULL),(82,93,4,'2013-08-02 01:36:52','Admin','Added',NULL),(83,162,4,'2013-03-15 02:41:07','Email','Added',NULL);
 /*!40000 ALTER TABLE `civicrm_subscription_history` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1379,7 +1379,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,32,'http://dixonhealth.org',1),(2,124,'http://memphisschool.org',1),(3,134,'http://meadmusicpartnership.org',1),(4,187,'http://ohioaction.org',1),(5,42,'http://gouldsboroadvocacy.org',1),(6,84,'http://missourimusic.org',1),(7,96,'http://urbanwellnessassociation.org',1),(8,123,'http://ncsustainabilityschool.org',1),(9,155,'http://communitysoftware.org',1),(10,63,'http://illinoispartners.org',1),(11,107,'http://mlkinghealth.org',1),(12,94,'http://alabamawellnessservices.org',1),(13,59,'http://stateslegalservices.org',1),(14,191,'http://pineenvironmentalservices.org',1),(15,90,'http://collegealliance.org',1),(16,150,'http://linevillefamily.org',1);
+INSERT INTO `civicrm_website` (`id`, `contact_id`, `url`, `website_type_id`) VALUES (1,56,'http://statespoetry.org',1),(2,144,'http://localfamilyservices.org',1),(3,140,'http://buffaloinitiative.org',1),(4,37,'http://sierradevelopmentinitiative.org',1),(5,36,'http://coloradoadvocacyschool.org',1),(6,44,'http://ruraltechnologyalliance.org',1),(7,67,'http://mainarts.org',1),(8,126,'http://indianaarts.org',1),(9,85,'http://alabamasystems.org',1),(10,164,'http://globalwellness.org',1),(11,5,'http://urbanfamilycenter.org',1),(12,187,'http://localtechnologysystems.org',1),(13,116,'http://northpointfellowship.org',1);
 /*!40000 ALTER TABLE `civicrm_website` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1411,7 +1411,7 @@ UNLOCK TABLES;
 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
 /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
 
--- Dump completed on 2013-12-11 12:13:43
+-- Dump completed on 2014-01-08 12:22:10
 -- +--------------------------------------------------------------------+
 -- | CiviCRM version 3.4                                                |
 -- +--------------------------------------------------------------------+
diff --git a/templates/CRM/Contribute/Form/AdditionalPayment.hlp b/templates/CRM/Contribute/Form/AdditionalPayment.hlp
new file mode 100644 (file)
index 0000000..5cdafc3
--- /dev/null
@@ -0,0 +1,36 @@
+{*
+ +--------------------------------------------------------------------+
+ | CiviCRM version 4.4                                                |
+ +--------------------------------------------------------------------+
+ | 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        |
+ +--------------------------------------------------------------------+
+*}
+{htxt id="id-trans_id"}
+{ts}Unique payment ID for this transaction. The Payment Processor's transaction ID will be automatically stored here on online contributions.{/ts} {ts}For offline contributions you can record a bank transfer ID or other identifier if applicable.{/ts}
+{/htxt}
+{htxt id="payment_instrument_id"}
+  <p>
+    {ts}Choose the method by which this transaction was paid.{/ts}
+  </p><p>
+    {ts}Note: if the correct payment instrument is not listed here (e.g. for in-kind donations) ask your administrator to add a new option to this list.{/ts}
+  </p>
+
+{/htxt}
diff --git a/templates/CRM/Contribute/Form/AdditionalPayment.tpl b/templates/CRM/Contribute/Form/AdditionalPayment.tpl
new file mode 100644 (file)
index 0000000..55afd63
--- /dev/null
@@ -0,0 +1,259 @@
+{*
+ +--------------------------------------------------------------------+
+ | CiviCRM version 4.4                                                |
+ +--------------------------------------------------------------------+
+ | 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        |
+ +--------------------------------------------------------------------+
+*}
+{if $formType}
+  {include file="CRM/Contribute/Form/AdditionalInfo/$formType.tpl"}
+{else}
+
+<h3>{if $component eq 'event'}{if $contributionMode}{ts}Credit Card Event Payment{/ts}{else}{ts}New Event Payement{/ts}{/if}{/if}</h3>
+
+<div class="crm-block crm-form-block crm-payment-form-block">
+
+  {if $contributionMode == 'test'}
+    {assign var=contribMode value="TEST"}
+    {elseif $contributionMode == 'live'}
+    {assign var=contribMode value="LIVE"}
+  {/if}
+
+  {if !$email}
+  <div class="messages status no-popup">
+    <div class="icon inform-icon"></div>&nbsp;{ts}You will not be able to send an automatic email receipt for this payment because there is no email address recorded for this contact. If you want a receipt to be sent when this payment is recorded, click Cancel and then click Edit from the Summary tab to add an email address before recording the payment.{/ts}
+  </div>
+  {/if}
+  <div class="crm-submit-buttons">
+    {include file="CRM/common/formButtons.tpl"}
+    {if $newCredit AND $contributionMode EQ null}
+      {if $contactId}
+        {capture assign=ccModeLink}{crmURL p='civicrm/payment/add' q="reset=1&action=add&cid=`$contactId`&id=`$id`&component=`$component`&mode=live"}{/capture}
+       {/if}
+      <span class="action-link crm-link-credit-card-mode">&nbsp;<a href="{$ccModeLink}">&raquo; {ts}submit credit card payment{/ts}</a>
+    {/if}
+  </div>
+  <table class="form-layout-compressed">    
+    <tr>
+      <td class="font-size12pt label"><strong>{ts}Participant{/ts}</strong></td><td class="font-size12pt"><strong>{$displayName}</strong></td>
+    </tr>
+    {if $contributionMode}
+      <tr class="crm-payment-form-block-payment_processor_id"><td class="label nowrap">{$form.payment_processor_id.label}<span class="marker"> * </span></td><td>{$form.payment_processor_id.html}</td></tr>
+    {/if}   
+    <tr>
+      <td class='label'>{ts}Event{/ts}</td><td>{$eventName}</td>
+    </tr>
+    <tr class="crm-payment-form-block-contribution_type_id crm-payment-form-block-financial_type_id">
+      <td class="label">{$form.financial_type_id.label}</td><td{$valueStyle}>{$form.financial_type_id.html}&nbsp;
+      </td>
+    </tr>
+    <tr class="crm-payment-form-block-total_amount">
+      <td class="label">{$form.total_amount.label}</td>
+      <td>
+        <span id='totalAmount'>{$form.currency.html|crmAddClass:eight}&nbsp;{$form.total_amount.html|crmAddClass:eight}</span> {$paymentAmt}
+      </td>
+    </tr>
+   </table>
+    <div class="crm-accordion-wrapper crm-accordion_title-accordion crm-accordion-processed" id="paymentDetails_Information">
+      <div class="crm-accordion-header">
+        {ts}Payment Details{/ts}
+      </div>
+      <div class="crm-accordion-body">
+        <table class="form-layout-compressed" >
+          <tr class="crm-payment-form-block-receive_date">
+            <td class="label">{$form.receive_date.label}</td>
+            <td {$valueStyle}>{include file="CRM/common/jcalendar.tpl" elementName=receive_date}<br />
+              <span class="description">{ts}The date this payment was received.{/ts}</span>
+            </td>
+          </tr>
+          <tr class="crm-payment-form-block-payment_instrument_id">
+            <td class="label">{$form.payment_instrument_id.label}</td>
+            <td {$valueStyle}>{$form.payment_instrument_id.html} {help id="payment_instrument_id"}</td>
+            </td>
+          </tr>
+          {if $showCheckNumber || !$isOnline}
+            <tr id="checkNumber" class="crm-payment-form-block-check_number">
+              <td class="label">{$form.check_number.label}</td>
+              <td>{$form.check_number.html|crmReplace:class:six}</td>
+            </tr>
+          {/if}
+          <tr class="crm-payment-form-block-trxn_id">
+            <td class="label">{$form.trxn_id.label}</td>
+            <td {$valueStyle}>{$form.trxn_id.html|crmReplace:class:twelve} {help id="id-trans_id"}</td>
+          </tr>
+          {if $email and $outBound_option != 2}
+            <tr class="crm-payment-form-block-is_email_receipt">
+              <td class="label">
+                {$form.is_email_receipt.label}</td><td>{$form.is_email_receipt.html}&nbsp;
+                <span class="description">{ts 1=$email}Automatically email a receipt for this payment to %1?{/ts}</span>
+              </td>
+            </tr>
+            {elseif $context eq 'standalone' and $outBound_option != 2 }
+            <tr id="email-receipt" style="display:none;" class="crm-payment-form-block-is_email_receipt">
+              <td class="label">{$form.is_email_receipt.label}</td>
+              <td>{$form.is_email_receipt.html} <span class="description">{ts}Automatically email a receipt for this payment to {/ts}<span id="email-address"></span>?</span>
+              </td>
+            </tr>
+          {/if}
+          <tr id="fromEmail" class="crm-payment-form-block-receipt_date" style="display:none;">
+            <td class="label">{$form.from_email_address.label}</td>
+            <td>{$form.from_email_address.html}</td>
+          </tr>
+          <tr class="crm-payment-form-block-fee_amount"><td class="label">{$form.fee_amount.label}</td><td{$valueStyle}>{$form.fee_amount.html|crmMoney:$currency:'XXX':'YYY'}<br />
+            <span class="description">{ts}Processing fee for this transaction (if applicable).{/ts}</span></td></tr>
+          <tr class="crm-payment-form-block-net_amount"><td class="label">{$form.net_amount.label}</td><td{$valueStyle}>{$form.net_amount.html|crmMoney:$currency:'':1}<br />
+            <span class="description">{ts}Net value of the payment (Total Amount minus Fee).{/ts}</span></td></tr>
+        </table>
+      </div>
+    </div>
+
+<div class="accordion ui-accordion ui-widget ui-helper-reset">
+  {* Additional Detail / Honoree Information / Premium Information *}
+    {foreach from=$allPanes key=paneName item=paneValue}
+
+      <div class="crm-accordion-wrapper crm-ajax-accordion crm-{$paneValue.id}-accordion {if $paneValue.open neq 'true'}collapsed{/if}">
+        <div class="crm-accordion-header" id="{$paneValue.id}">
+
+          {$paneName}
+        </div><!-- /.crm-accordion-header -->
+        <div class="crm-accordion-body">
+
+          <div class="{$paneValue.id}"></div>
+        </div><!-- /.crm-accordion-body -->
+      </div><!-- /.crm-accordion-wrapper -->
+
+    {/foreach}
+  </div>
+
+
+
+    {literal}
+    <script type="text/javascript">
+
+  var url = "{/literal}{$dataUrl}{literal}";
+
+      cj( function( ) {
+        showHideByValue( 'is_email_receipt', '', 'fromEmail', 'table-row', 'radio', false );
+      });
+    {/literal}
+  </script>
+
+<br />
+<div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
+</div>
+
+  {literal}
+  <script type="text/javascript">
+  function verify( ) {
+    if (cj('#is_email_receipt').attr( 'checked' )) {
+      var ok = confirm( '{/literal}{ts escape='js'}Click OK to save this payment record AND send a receipt to the contributor now{/ts}{literal}.' );
+      if (!ok) {
+        return false;
+      }
+    }
+  }
+  </script>
+  {/literal}
+
+    {literal}
+    <script type="text/javascript">
+      cj( function( ) {
+        checkEmailDependancies( );
+        cj('#is_email_receipt').click( function( ) {
+          checkEmailDependancies( );
+        });
+      });
+
+      function checkEmailDependancies( ) {
+        if (cj('#is_email_receipt').attr( 'checked' )) {
+          cj('#fromEmail').show( );
+          cj('#receiptDate').hide( );
+        }
+        else {
+          cj('#fromEmail').hide( );
+          cj('#receiptDate').show( );
+        }
+      }
+
+  // bind first click of accordion header to load crm-accordion-body with snippet
+    // everything else taken care of by cj().crm-accordions()
+    cj(function() {
+      cj('#adjust-option-type').hide();
+      cj('.crm-ajax-accordion .crm-accordion-header').one('click', function() {
+        loadPanes(cj(this).attr('id'));
+      });
+      cj('.crm-ajax-accordion:not(.collapsed) .crm-accordion-header').each(function(index) {
+        loadPanes(cj(this).attr('id'));
+      });
+    });
+    // load panes function call for snippet based on id of crm-accordion-header
+    function loadPanes( id ) {
+      var url = "{/literal}{crmURL p='civicrm/payment/add' q='snippet=4&formType=' h=0}{literal}" + id;
+      {/literal}
+      {if $contributionMode}
+        url = url + "&mode={$contributionMode}";
+      {/if}
+      {if $qfKey}
+        url = url + "&qfKey={$qfKey}";
+      {/if}
+      {literal}
+      if (! cj('div.'+id).html()) {
+        var loading = '<img src="{/literal}{$config->resourceBase}i/loading.gif{literal}" alt="{/literal}{ts escape='js'}loading{/ts}{literal}" />&nbsp;{/literal}{ts escape='js'}Loading{/ts}{literal}...';
+        cj('div.'+id).html(loading);
+        cj.ajax({
+          url    : url,
+          success: function(data) { cj('div.'+id).html(data); }
+        });
+      }
+    }
+
+cj('#fee_amount').change( function() {
+  var totalAmount = cj('#total_amount').val();
+  var feeAmount = cj('#fee_amount').val();
+  var netAmount = totalAmount.replace(/,/g, '') - feeAmount.replace(/,/g, '');
+  if (!cj('#net_amount').val()) {
+    cj('#net_amount').val(netAmount);
+  }
+});
+    </script>
+    {/literal}
+      {if !$contributionMode}
+        {include file="CRM/common/showHideByFieldValue.tpl"
+        trigger_field_id    ="payment_instrument_id"
+        trigger_value       = '4'
+        target_element_id   ="checkNumber"
+        target_element_type ="table-row"
+        field_type          ="select"
+        invert              = 0
+        }
+    {/if}
+  {* include jscript to warn if unsaved form field changes *}
+  {include file="CRM/common/formNavigate.tpl"}
+
+{/if}
+{literal}
+<script type="text/javascript">
+cj(function() {
+  cj().crmAccordions();
+});
+</script>
+{/literal}
index 80a775945dfa5f9c4c2c20cb5061e8ca11777cb0..1074a31358c48c5e53c3382742a30390cf52c927 100644 (file)
@@ -313,7 +313,7 @@ VALUES
    (@option_group_id_act, '{ts escape="sql"}Tell a Friend{/ts}',                      9, 'Tell a Friend',       NULL, 1, NULL, 9, '{ts escape="sql"}Send information about a contribution campaign or event to a friend.{/ts}', 0, 1, 1, NULL, NULL),
    (@option_group_id_act, '{ts escape="sql"}Pledge Acknowledgment{/ts}',              10, 'Pledge Acknowledgment',  NULL, 1, NULL, 10, '{ts escape="sql"}Send Pledge Acknowledgment.{/ts}',                                     0, 1, 1, @pledgeCompId, NULL),
    (@option_group_id_act, '{ts escape="sql"}Pledge Reminder{/ts}',                    11, 'Pledge Reminder',    NULL, 1, NULL, 11, '{ts escape="sql"}Send Pledge Reminder.{/ts}',                                               0, 1, 1, @pledgeCompId, NULL),
-   (@option_group_id_act, '{ts escape="sql"}Inbound Email{/ts}',                      12, 'Inbound Email',      NULL, 1, NULL, 12, '{ts escape="sql"}Inbound Email.{/ts}',                                                      0, 1, 1, NULL, NULL),
+   (@option_group_id_act, '{ts escape="sql"}Inbound Email{/ts}',                      12, 'Inbound Email',      NULL, 1, NULL, 12, '{ts escape="sql"}Inbound Email.{/ts}',                                                      0, 1, 1, NULL, NULL),   
 
 -- Activity Types for case activities
    (@option_group_id_act, '{ts escape="sql"}Open Case{/ts}',          13, 'Open Case',          NULL, 0,  0, 13, '', 0, 1, 1, @caseCompId, NULL),
@@ -363,6 +363,11 @@ VALUES
    (@option_group_id_act, '{ts escape="sql"}SMS delivery{/ts}', 44, 'SMS delivery', NULL, 1, NULL, 44, '{ts escape="sql"}SMS delivery{/ts}', 0, 1, 1, NULL, NULL),
    (@option_group_id_act, '{ts escape="sql"}Inbound SMS{/ts}',  45, 'Inbound SMS', NULL, 1, NULL,  45, '{ts escape="sql"}Inbound SMS{/ts}', 0, 1, 1, NULL, NULL),
 
+
+ -- Activity types for particial payment   
+   (@option_group_id_act, '{ts escape="sql"}Payment{/ts}', 46, 'Payment', NULL, 1, NULL, 46, '{ts escape="sql"}Additional payment recorded for event or membership fee.{/ts}', 0, 1, 1, @contributeCompId, NULL),
+   (@option_group_id_act, '{ts escape="sql"}Refund{/ts}', 47, 'Refund', NULL, 1, NULL, 47, '{ts escape="sql"}Refund recorded for event or membership fee.{/ts}', 0, 1, 1, @contributeCompId, NULL),
+
    (@option_group_id_gender, '{ts escape="sql"}Female{/ts}',      1, 'Female',      NULL, 0, NULL, 1, NULL, 0, 0, 1, NULL, NULL),
    (@option_group_id_gender, '{ts escape="sql"}Male{/ts}',        2, 'Male',        NULL, 0, NULL, 2, NULL, 0, 0, 1, NULL, NULL),
    (@option_group_id_gender, '{ts escape="sql"}Transgender{/ts}', 3, 'Transgender', NULL, 0, NULL, 3, NULL, 0, 0, 1, NULL, NULL),
@@ -414,6 +419,7 @@ VALUES
   (@option_group_id_cs, '{ts escape="sql"}Overdue{/ts}'    , 6, 'Overdue'    , NULL, 0, NULL, 6, NULL, 0, 1, 1, NULL, NULL),
   (@option_group_id_cs, '{ts escape="sql"}Refunded{/ts}'   , 7, 'Refunded'   , NULL, 0, NULL, 7, NULL, 0, 1, 1, NULL, NULL),
   (@option_group_id_cs, '{ts escape="sql"}Partially paid{/ts}', 8, 'Partially paid', NULL, 0, NULL, 8, NULL, 0, 1, 1, NULL, NULL),
+  (@option_group_id_cs, '{ts escape="sql"}Pending refund{/ts}', 9, 'Pending refund', NULL, 0, NULL, 9, NULL, 0, 1, 1, NULL, NULL),
 
   (@option_group_id_pcp, '{ts escape="sql"}Waiting Review{/ts}', 1, 'Waiting Review', NULL, 0, NULL, 1, NULL, 0, 1, 1, NULL, NULL),
   (@option_group_id_pcp, '{ts escape="sql"}Approved{/ts}'      , 2, 'Approved'      , NULL, 0, NULL, 2, NULL, 0, 1, 1, NULL, NULL),
@@ -1448,7 +1454,8 @@ INSERT INTO civicrm_participant_status_type
   (11, 'Rejected',                            '{ts escape="sql"}Rejected{/ts}',                            'Negative', 1,           0,         0,          11,     2            ),
   (12, 'Expired',                             '{ts escape="sql"}Expired{/ts}',                             'Negative', 1,           1,         0,          12,     2            ),
   (13, 'Pending in cart',                     '{ts escape="sql"}Pending in cart{/ts}',                     'Pending',  1,           1,         0,          13,     2            ),
-  (14,  'Partially paid',                      '{ts escape="sql"}Partially paid{/ts}',                      'Positive', 1,           1,         1,          14,     2           );
+  (14,  'Partially paid',                      '{ts escape="sql"}Partially paid{/ts}',                      'Positive', 1,           1,         1,          14,     2           ),
+  (15,  'Pending refund',                      '{ts escape="sql"}Pending refund{/ts}',                      'Positive', 1,           1,         1,          14,     2           );