From 6ccc84f897b446ee06536a3239cefebf4c586d0a Mon Sep 17 00:00:00 2001 From: Eileen Date: Thu, 23 Aug 2012 10:19:55 +1200 Subject: [PATCH] upgrade to 4.2 stable --- CRM/ACL/BAO/ACL.php | 52 +- CRM/Admin/Form/RelationshipType.php | 2 +- CRM/Admin/Form/Setting/Url.php | 7 + CRM/Admin/Form/WordReplacements.php | 6 +- CRM/Contact/BAO/GroupContact.php | 22 +- CRM/Contact/Form/Search/Custom/Group.php | 180 +- CRM/Contact/Page/View/Summary.php | 12 +- CRM/Contribute/Form/Contribution/Confirm.php | 6 +- CRM/Contribute/Form/Contribution/Main.php | 12 +- CRM/Core/BAO/CustomField.php | 3 - CRM/Core/BAO/PaymentProcessorType.php | 80 + CRM/Core/BAO/Tag.php | 27 +- CRM/Core/Config.php | 11 +- CRM/Core/DAO.php | 21 + CRM/Core/DAO/.listAll.php | 1 + CRM/Core/DAO/Managed.php | 240 ++ CRM/Core/Extensions.php | 16 + CRM/Core/Extensions/Extension.php | 125 +- CRM/Core/Extensions/Module.php | 5 +- CRM/Core/IDS.php | 4 +- CRM/Core/Invoke.php | 3 + CRM/Core/ManagedEntities.php | 245 ++ CRM/Core/Module.php | 75 + CRM/Core/Payment/PaymentExpress.php | 2 +- CRM/Core/Payment/PaymentExpressIPN.php | 23 +- CRM/Core/PseudoConstant.php | 50 + CRM/Core/Resources.php | 2 +- CRM/Import/Page/AJAX.php | 4 +- CRM/Import/Parser.php | 10 +- CRM/Report/Form/Activity.php | 2 +- CRM/Upgrade/Form.php | 10 + CRM/Upgrade/Incremental/php/FourTwo.php | 165 +- CRM/Upgrade/Incremental/sql/4.2.0.mysql.tpl | 34 + .../Incremental/sql/4.2.alpha1.mysql.tpl | 10 - .../Incremental/sql/4.2.alpha2.mysql.tpl | 1 - .../Incremental/sql/4.2.beta6.mysql.tpl | 23 + CRM/Utils/Array.php | 51 +- CRM/Utils/Date.php | 10 +- CRM/Utils/File.php | 6 +- CRM/Utils/Hook.php | 210 +- CRM/Utils/Hook/Drupal.php | 26 +- CRM/Utils/Hook/Drupal6.php | 37 +- CRM/Utils/Hook/Joomla.php | 28 +- CRM/Utils/JSON.php | 9 +- CRM/Utils/Money.php | 3 +- CRM/Utils/REST.php | 13 + CRM/Utils/Recent.php | 12 +- CRM/Utils/Request.php | 6 +- CRM/Utils/Rule.php | 116 +- CRM/Utils/Sort.php | 9 +- CRM/Utils/System/Drupal.php | 15 +- CRM/Utils/System/Drupal6.php | 14 + CRM/Utils/System/Joomla.php | 24 +- CRM/Utils/System/UnitTests.php | 4 + CRM/Utils/Time.php | 9 +- CRM/Utils/Zip.php | 139 + Sponsors.txt | 3 + api/v3/Activity.php | 1 - api/v3/Case.php | 61 +- api/v3/Contact.php | 17 +- api/v3/CustomSearch.php | 75 + api/v3/OptionGroup.php | 3 +- api/v3/OptionValue.php | 18 +- api/v3/PaymentProcessorType.php | 124 + api/v3/ReportTemplate.php | 172 + .../examples/PaymentProcessorTypeCreate.php | 81 + .../examples/PaymentProcessorTypeDelete.php | 50 + api/v3/utils.php | 17 +- civicrm-version.php | 4 +- civicrm.config.php | 2 +- install/index.php | 9 - joomla/admin/configure.php | 15 +- joomla/admin/plugins/civicrm/civicrm.php | 85 +- .../admin/plugins/civicrmsys/civicrmsys.php | 126 + .../admin/plugins/civicrmsys/civicrmsys.xml | 16 + joomla/admin/plugins/civicrmsys/index.html | 1 + js/rest.js | 9 +- packages/CA/Config/Curl.php | 135 + packages/CA/Config/Stream.php | 140 + packages/CA/Config/cacert.pem | 3825 +++++++++++++++++ packages/jquery/plugins/jquery.validate.js | 2 + packages/kcfinder/integration/civicrm.php | 118 +- sql/civicrm.mysql | 31 + sql/civicrm_data.mysql | 18 +- sql/civicrm_drop.mysql | 1 + sql/civicrm_generated.mysql | 63 +- sql/civicrm_navigation.mysql | 5 +- templates/CRM/Admin/Page/ExtensionDetails.tpl | 9 +- templates/CRM/Contact/Page/View/Summary.tpl | 89 +- .../Form/Contribution/MembershipBlock.tpl | 3 + templates/CRM/Core/AjaxDoc.tpl | 2 +- templates/CRM/UF/Form/AdvanceSetting.tpl | 24 +- templates/CRM/UF/Form/Block.tpl | 26 +- templates/CRM/UF/Form/Field.tpl | 112 +- templates/CRM/UF/Form/Group.tpl | 18 +- templates/CRM/UF/Form/Preview.tpl | 48 +- templates/CRM/UF/Page/Field.tpl | 20 +- templates/CRM/UF/Page/Group.tpl | 22 +- templates/CRM/common/drupal6.tpl | 6 + templates/CRM/common/version.tpl | 2 +- 100 files changed, 6777 insertions(+), 1063 deletions(-) create mode 100644 CRM/Core/DAO/Managed.php create mode 100644 CRM/Core/ManagedEntities.php create mode 100644 CRM/Core/Module.php create mode 100644 CRM/Upgrade/Incremental/sql/4.2.0.mysql.tpl create mode 100644 CRM/Upgrade/Incremental/sql/4.2.beta6.mysql.tpl create mode 100644 CRM/Utils/Zip.php create mode 100644 api/v3/CustomSearch.php create mode 100644 api/v3/PaymentProcessorType.php create mode 100644 api/v3/ReportTemplate.php create mode 100644 api/v3/examples/PaymentProcessorTypeCreate.php create mode 100644 api/v3/examples/PaymentProcessorTypeDelete.php create mode 100644 joomla/admin/plugins/civicrmsys/civicrmsys.php create mode 100644 joomla/admin/plugins/civicrmsys/civicrmsys.xml create mode 100644 joomla/admin/plugins/civicrmsys/index.html create mode 100644 packages/CA/Config/Curl.php create mode 100644 packages/CA/Config/Stream.php create mode 100644 packages/CA/Config/cacert.pem diff --git a/CRM/ACL/BAO/ACL.php b/CRM/ACL/BAO/ACL.php index c357d95fd..089ddd672 100644 --- a/CRM/ACL/BAO/ACL.php +++ b/CRM/ACL/BAO/ACL.php @@ -135,7 +135,7 @@ public static function permissionClause(&$tables, $operation, if (!empty($acl_id)) { - $where .= " AND ({$t['ACL']}.acl_id IS null + $where .= " AND ({$t['ACL']}.acl_id IS null OR {$t['ACL']}.acl_id = " . CRM_Utils_Type::escape($acl_id, 'Integer') . ')'; if ($acl_role) { $where .= " AND {$t['ACL']}.acl_table = '{$t['ACLRole']}'"; @@ -152,7 +152,7 @@ public static function permissionClause(&$tables, $operation, $query[] = "SELECT {$t['ACL']}.*, 0 as override FROM {$t['ACL']} - + WHERE {$t['ACL']}.entity_table = '{$t['Domain']}' AND ($where)"; @@ -161,16 +161,16 @@ public static function permissionClause(&$tables, $operation, $query[] = "SELECT {$t['ACL']}.*, 0 as override FROM {$t['ACL']} - + INNER JOIN {$t['ACLEntityRole']} ON ({$t['ACL']}.entity_table = '{$t['ACLRole']}' - AND {$t['ACL']}.entity_id = + AND {$t['ACL']}.entity_id = {$t['ACLEntityRole']}.acl_role_id) - + INNER JOIN {$t['ACLRole']} - ON {$t['ACL']}.entity_id = + ON {$t['ACL']}.entity_id = {$t['ACLRole']}.id - + WHERE {$t['ACLEntityRole']}.entity_table = '{$t['Domain']}' AND {$t['ACLRole']}.is_active = 1 @@ -181,12 +181,12 @@ public static function permissionClause(&$tables, $operation, $query[] = "SELECT {$t['ACL']}.*, 1 as override FROM {$t['ACL']} - + INNER JOIN {$t['Contact']} ON ({$t['ACL']}.entity_table = '{$t['Contact']}' AND {$t['ACL']}.entity_id = {$t['Contact']}.id) - - WHERE {$t['Contact']}.id = $contact_id + + WHERE {$t['Contact']}.id = $contact_id AND ($where)"; /* Query for permissions granted to the contact through an ACL group */ @@ -194,17 +194,17 @@ public static function permissionClause(&$tables, $operation, $query[] = "SELECT {$t['ACL']}.*, 1 as override FROM {$t['ACL']} - + INNER JOIN {$t['ACLEntityRole']} ON ({$t['ACL']}.entity_table = '{$t['ACLRole']}' AND {$t['ACL']}.entity_id = {$t['ACLEntityRole']}.acl_role_id) - + INNER JOIN {$t['ACLRole']} ON {$t['ACL']}.entity_id = {$t['ACLRole']}.id - - WHERE {$t['ACLEntityRole']}.entity_table = - '{$t['Contact']}' + + WHERE {$t['ACLEntityRole']}.entity_table = + '{$t['Contact']}' AND {$t['ACLRole']}.is_active = 1 AND {$t['ACLEntityRole']}.entity_id = $contact_id AND ($where)"; @@ -214,12 +214,12 @@ public static function permissionClause(&$tables, $operation, $query[] = "SELECT {$t['ACL']}.*, 0 as override FROM {$t['ACL']} - + INNER JOIN {$t['GroupContact']} ON ({$t['ACL']}.entity_table = '{$t['Group']}' AND {$t['ACL']}.entity_id = {$t['GroupContact']}.group_id) - + WHERE ($where) AND {$t['GroupContact']}.contact_id = $contact_id AND {$t['GroupContact']}.status = 'Added')"; @@ -231,21 +231,21 @@ public static function permissionClause(&$tables, $operation, $query[] = "SELECT {$t['ACL']}.*, 0 as override FROM {$t['ACL']} - + INNER JOIN {$t['ACLEntityRole']} ON ({$t['ACL']}.entity_table = '{$t['ACLRole']}' - AND {$t['ACL']}.entity_id = + AND {$t['ACL']}.entity_id = {$t['ACLEntityRole']}.acl_role_id) - + INNER JOIN {$t['ACLRole']} ON {$t['ACL']}.entity_id = {$t['ACLRole']}.id - + INNER JOIN {$t['GroupContact']} ON ({$t['ACLEntityRole']}.entity_table = '{$t['Group']}' AND {$t['ACLEntityRole']}.entity_id = {$t['GroupContact']}.group_id) - + WHERE ($where) AND {$t['ACLRole']}.is_active = 1 AND {$t['GroupContact']}.contact_id = $contact_id @@ -468,7 +468,7 @@ public static function &getACLRoles($contact_id = NULL, $group_id = NULL) { $c2g = CRM_Contact_BAO_GroupContact::getTableName(); $group = CRM_Contact_BAO_Group::getTableName(); - $query = " SELECT $acl.* + $query = " SELECT $acl.* FROM $acl INNER JOIN civicrm_option_group og ON og.name = 'acl_role' @@ -532,7 +532,7 @@ public static function &getGroupACLs($contact_id, $aclRoles = FALSE) { if ($contact_id) { $query = " SELECT $acl.* - FROM $acl + FROM $acl INNER JOIN $c2g ON $acl.entity_id = $c2g.group_id WHERE $acl.entity_table = '$group' @@ -576,7 +576,7 @@ public static function &getGroupACLRoles($contact_id) { $c2g = CRM_Contact_BAO_GroupContact::getTableName(); $group = CRM_Contact_BAO_Group::getTableName(); - $query = " SELECT $acl.* + $query = " SELECT $acl.* FROM $acl INNER JOIN civicrm_option_group og ON og.name = 'acl_role' @@ -614,7 +614,7 @@ public static function &getGroupACLRoles($contact_id) { $query = " SELECT $acl.* - FROM $acl + FROM $acl WHERE $acl.entity_id IN ( $roles ) AND $acl.entity_table = 'civicrm_acl_role' "; diff --git a/CRM/Admin/Form/RelationshipType.php b/CRM/Admin/Form/RelationshipType.php index d52ed8c3d..22d6ac88d 100644 --- a/CRM/Admin/Form/RelationshipType.php +++ b/CRM/Admin/Form/RelationshipType.php @@ -112,7 +112,7 @@ function setDefaultValues() { $defaults = $params = array(); $params = array('id' => $this->_id); eval($this->_BAOName . '::retrieve( $params, $defaults );'); - $defaults['contact_types_a'] = $defaults['contact_type_a']; + $defaults['contact_types_a'] = CRM_Utils_Array::value('contact_type_a', $defaults); if (CRM_Utils_Array::value('contact_sub_type_a', $defaults)) { $defaults['contact_types_a'] .= CRM_Core_DAO::VALUE_SEPARATOR . $defaults['contact_sub_type_a']; } diff --git a/CRM/Admin/Form/Setting/Url.php b/CRM/Admin/Form/Setting/Url.php index 689179b8c..226f25465 100644 --- a/CRM/Admin/Form/Setting/Url.php +++ b/CRM/Admin/Form/Setting/Url.php @@ -83,6 +83,13 @@ function formRule($fields) { } public function postProcess() { + // if extensions url is set, lets clear session status messages to avoid + // a potentially spurious message which might already have been set. This + // is a bit hackish + // CRM-10629 + $session = CRM_Core_Session::singleton( ); + $session->getStatus(TRUE); + parent::postProcess(); parent::rebuildMenu(); diff --git a/CRM/Admin/Form/WordReplacements.php b/CRM/Admin/Form/WordReplacements.php index 035c09478..eda10d814 100644 --- a/CRM/Admin/Form/WordReplacements.php +++ b/CRM/Admin/Form/WordReplacements.php @@ -206,8 +206,8 @@ public function postProcess() { for ($i = 1; $i <= $this->_numStrings; $i++) { if (CRM_Utils_Array::value($i, $params['new']) && CRM_Utils_Array::value($i, $params['old']) - ) { - if (CRM_Utils_Array::value($i, $params['enabled'])) { + ) { + if (isset($params['enabled']) && CRM_Utils_Array::value($i, $params['enabled'])) { if (CRM_Utils_Array::value('cb', $params) && CRM_Utils_Array::value($i, $params['cb']) ) { @@ -218,7 +218,7 @@ public function postProcess() { } } else { - if (is_array($params['cb']) && array_key_exists($i, $params['cb'])) { + if (isset($params['cb']) && is_array($params['cb']) && array_key_exists($i, $params['cb'])) { $disabled['exactMatch'] += array($params['old'][$i] => $params['new'][$i]); } else { diff --git a/CRM/Contact/BAO/GroupContact.php b/CRM/Contact/BAO/GroupContact.php index 2efb7964c..a5fadca96 100644 --- a/CRM/Contact/BAO/GroupContact.php +++ b/CRM/Contact/BAO/GroupContact.php @@ -284,7 +284,7 @@ function getGroupList($contactId = 0, $visibility = FALSE) { $where = " WHERE civicrm_group.is_active = 1 "; if ($contactId) { $from .= ' , civicrm_group_contact '; - $where .= " AND civicrm_group.id = civicrm_group_contact.group_id + $where .= " AND civicrm_group.id = civicrm_group_contact.group_id AND civicrm_group_contact.contact_id = " . CRM_Utils_Type::escape($contactId, 'Integer'); } @@ -334,11 +334,11 @@ function &getContactGroup($contactId, $select = 'SELECT count(DISTINCT civicrm_group_contact.id)'; } else { - $select = 'SELECT - civicrm_group_contact.id as civicrm_group_contact_id, + $select = 'SELECT + civicrm_group_contact.id as civicrm_group_contact_id, civicrm_group.title as group_title, civicrm_group.visibility as visibility, - civicrm_group_contact.status as status, + civicrm_group_contact.status as status, civicrm_group.id as group_id, civicrm_group.is_hidden as is_hidden, civicrm_subscription_history.date as date, @@ -540,9 +540,9 @@ function getGroupContacts(&$group, * @static */ function &getMembershipDetail($contactId, $groupID) { - $query = "SELECT * -FROM civicrm_group_contact -LEFT JOIN civicrm_subscription_history ON (civicrm_group_contact.contact_id = civicrm_subscription_history.contact_id) + $query = "SELECT * +FROM civicrm_group_contact +LEFT JOIN civicrm_subscription_history ON (civicrm_group_contact.contact_id = civicrm_subscription_history.contact_id) WHERE civicrm_group_contact.contact_id = %1 AND civicrm_group_contact.group_id = %2 AND civicrm_subscription_history.method ='Email' "; @@ -573,7 +573,7 @@ function updateGroupMembershipStatus($contactId, $groupID, $method = 'Email', $t return CRM_Core_Error::fatal("$contactId or $groupID should not empty"); } - $query = "UPDATE civicrm_group_contact + $query = "UPDATE civicrm_group_contact SET civicrm_group_contact.status = 'Added' WHERE civicrm_group_contact.contact_id = %1 AND civicrm_group_contact.group_id = %2"; @@ -785,14 +785,14 @@ function mergeGroupContact($mainContactId, $dontCare, $otherContactId) { // delete all the other group contacts $sql = " -DELETE -FROM civicrm_group_contact +DELETE +FROM civicrm_group_contact WHERE contact_id = %2 "; CRM_Core_DAO::executeQuery($sql, $params); $sql = " -DELETE +DELETE FROM civicrm_subscription_history WHERE contact_id = %2 "; diff --git a/CRM/Contact/Form/Search/Custom/Group.php b/CRM/Contact/Form/Search/Custom/Group.php index 5bbeb25ea..5de25c7f2 100644 --- a/CRM/Contact/Form/Search/Custom/Group.php +++ b/CRM/Contact/Form/Search/Custom/Group.php @@ -55,11 +55,8 @@ class CRM_Contact_Form_Search_Custom_Group extends CRM_Contact_Form_Search_Custo $this->_excludeGroups = CRM_Utils_Array::value('excludeGroups', $this->_formValues, array()); $this->_includeTags = CRM_Utils_Array::value('includeTags', $this->_formValues, array()); $this->_excludeTags = CRM_Utils_Array::value('excludeTags', $this->_formValues, array()); - $this->_activity_include = json_decode(CRM_Utils_Array::value('activity_include', $this->_formValues, '')); - $this->_activity_exclude = json_decode(CRM_Utils_Array::value('activity_exclude', $this->_formValues, '')); //define variables - //NEEDED? $this->_allSearch = FALSE; $this->_groups = FALSE; $this->_tags = FALSE; @@ -69,7 +66,7 @@ class CRM_Contact_Form_Search_Custom_Group extends CRM_Contact_Form_Search_Custo //make easy to check conditions for groups and tags are //selected or it is empty search if (empty($this->_includeGroups) && empty($this->_excludeGroups) && - empty($this->_includeTags) && empty($this->_excludeTags) && empty($this->_activity_include) && empty($this->_activity_exclude) + empty($this->_includeTags) && empty($this->_excludeTags) ) { //empty search $this->_allSearch = TRUE; @@ -78,8 +75,6 @@ class CRM_Contact_Form_Search_Custom_Group extends CRM_Contact_Form_Search_Custo $this->_groups = (!empty($this->_includeGroups) || !empty($this->_excludeGroups)); $this->_tags = (!empty($this->_includeTags) || !empty($this->_excludeTags)); - - $this->_activities = (!empty($this->_activity_include) || !empty($this->_activity_exclude)); } function __destruct() { @@ -152,41 +147,11 @@ function buildForm(&$form) { $int->setButtonAttributes('remove', array('value' => ts('<< Remove')));; $outt->setButtonAttributes('remove', array('value' => ts('<< Remove')));; - // Text box for Activity Subject - $form->add('text', - 'activity_subject', - ts('Activity Subject') - ); - - // Select box for Activity Type - $activityType = array('' => ts('- select activity -')) + CRM_Core_PseudoConstant::activityType(); - - $form->add('select', 'activity_type_id', ts('Activity Type'), - $activityType, - FALSE - ); - - // textbox for Activity Status - $activityStatus = array('' => ts('- select status -')) + CRM_Core_PseudoConstant::activityStatus(); - - $form->add('select', 'activity_status_id', ts('Activity Status'), - $activityStatus, - FALSE - ); - - // Activity Date range - $form->addDate('start_date', ts('Activity date from'), FALSE, array('formatType' => 'custom')); - $form->addDate('end_date', ts('Activity date through'), FALSE, array('formatType' => 'custom')); - $form->add('button', 'include_activity_targets', ts('Include activity targets >>'), 'include_activity_targets'); - $form->add('text', 'activity_include', ts('Include activities'), array('style' => 'display: none')); - $form->add('button', 'exclude_activity_targets', ts('Exclude activity targets >>'), 'exclude_activity_targets'); - $form->add('text', 'activity_exclude', ts('Exclude activities'), array('style' => 'display: none')); - /** * if you are using the standard template, this array tells the template what elements * are part of the search criteria */ - $form->assign('elements', array('includeGroups', 'excludeGroups', 'andOr', 'includeTags', 'excludeTags', 'activity_subject', 'activity_type_id', 'activity_status_id', 'start_date', 'end_date', 'include_activity_targets', 'exclude_activity_targets', 'activity_include', 'activity_exclude')); + $form->assign('elements', array('includeGroups', 'excludeGroups', 'andOr', 'includeTags', 'excludeTags')); } function all($offset = 0, $rowcount = 0, $sort = NULL, @@ -478,151 +443,24 @@ function from() { CRM_Core_DAO::executeQuery($includeTag); } - //block for Activities search - if ($this->_activity_include || $this->_activity_exclude) { - - - /* if ( is_array( $this->_activity_exclude ) ) { - $xActs = $this->_activity_exclude; - } else { - $xActs = 0; - } - - if ( is_array( $this->_activity_include ) ) { - $iActs = $this->_activity_include; - } else { - $iActs = null; - } -print $xActs . ' / ' . $iActs . ' / '; */ - - //print 'activities '; print_r($this->_activity_include); print_r($this->_activity_exclude); die(); - - $sql = "CREATE TEMPORARY TABLE Xa_{$this->_tableName} ( contact_id int primary key) ENGINE=HEAP"; - CRM_Core_DAO::executeQuery($sql); - - //used only when exclude tag is selected - if ($this->_activity_exclude && is_array($this->_activity_exclude)) { - $xactwhere = array(); - foreach ($this->_activity_exclude as $xactid => $xactitem) { - foreach ($xactitem as $crit) { - if (substr($crit, 0, 19) == 'activity_type_id = ') { - $xactwhere[$xactid][] = 'activity_type_id = ' . intval(substr($crit, 19)); - } - elseif (substr($crit, 0, 21) == 'activity_status_id = ') { - $xactwhere[$xactid][] = 'status_id = ' . intval(substr($crit, 21)); - } - elseif (in_array(substr($crit, 0, 22), array( - 'activity_date_time >= ', 'activity_date_time <= '))) { - $xactwhere[$xactid][] = substr($crit, 0, 22) . strftime('%F', strtotime(substr($crit, 22))); - } - elseif (substr($crit, 0, 13) == 'subject like ') { - $xactwhere[$xactid][] = 'subject like "%' . mysql_real_escape_string(substr($crit, 13)) . '%"'; - } - } - - $xactwhere[$xactid] = implode(' AND ', $xactwhere[$xactid]); - } - $xactwhere = '(' . implode(') OR (', $xactwhere) . ')'; - $excludeActivity = "INSERT INTO Xa_{$this->_tableName} ( contact_id ) - SELECT DISTINCT civicrm_activity_target.target_contact_id - FROM civicrm_activity - LEFT JOIN civicrm_activity_target - ON civicrm_activity.id = civicrm_activity_target.activity_id - WHERE - $xactwhere"; - CRM_Core_DAO::executeQuery($excludeActivity); - } - - $sql = "CREATE TEMPORARY TABLE Ia_{$this->_tableName} ( id int PRIMARY KEY AUTO_INCREMENT, - contact_id varchar(64)) ENGINE=HEAP"; - - CRM_Core_DAO::executeQuery($sql); - - if ($this->_activity_include) { - $includeAct = "INSERT INTO Ia_{$this->_tableName} (contact_id) - SELECT DISTINCT civicrm_activity_target.target_contact_id - FROM civicrm_activity - LEFT JOIN civicrm_activity_target - ON civicrm_activity.id = civicrm_activity_target.activity_id"; - } - else { - $includeAct = "INSERT INTO Ia_{$this->_tableName} (contact_id) - SELECT civicrm_contact.id as contact_id - FROM civicrm_contact"; - } - - //used only when exclude tag is selected - if ($this->_activity_exclude) { - $includeAct .= " LEFT JOIN Xa_{$this->_tableName} "; - if ($this->_activity_include) { - $includeAct .= " ON civicrm_activity_target.target_contact_id = Xa_{$this->_tableName}.contact_id"; - } - else { - $includeAct .= " ON civicrm_contact.id = Xa_{$this->_tableName}.contact_id"; - } - } - $iactwhere = array(); - if (is_array($this->_activity_include)) { - foreach ($this->_activity_include as $iactid => $iactitem) { - foreach ($iactitem as $crit) { - if (substr($crit, 0, 19) == 'activity_type_id = ') { - $iactwhere[$iactid][] = 'activity_type_id = ' . intval(substr($crit, 19)); - } - elseif (substr($crit, 0, 21) == 'activity_status_id = ') { - $iactwhere[$iactid][] = 'status_id = ' . intval(substr($crit, 21)); - } - elseif (in_array(substr($crit, 0, 22), array( - 'activity_date_time >= ', 'activity_date_time <= '))) { - $iactwhere[$iactid][] = substr($crit, 0, 22) . '"' . strftime('%F', strtotime(substr($crit, 22))) . '"'; - } - elseif (substr($crit, 0, 13) == 'subject like ') { - $iactwhere[$iactid][] = 'subject like "%' . mysql_real_escape_string(substr($crit, 13)) . '%"'; - } - } - - $iactwhere[$iactid] = implode(' AND ', $iactwhere[$iactid]); - } - } - if ($iactwhere) { - $iactwhere = '(' . implode(') OR (', $iactwhere) . ')'; - } - if ($iactwhere) { - $includeAct .= " WHERE $iactwhere"; - } - else { - $includeAct .= " WHERE ( 1 ) "; - } - - //used only when exclude tag is selected - if ($this->_activity_exclude) { - $includeAct .= " AND Xa_{$this->_tableName}.contact_id IS null"; - } - - CRM_Core_DAO::executeQuery($includeAct); - } - //end activities - $from = " FROM civicrm_contact contact_a"; $this->buildACLClause('contact_a'); /* - * check the situation and set booleans - */ + * check the situation and set booleans + */ $Ig = ($iGroups != 0); $It = ($iTags != 0); - $Ia = ($this->_activity_include); - $Xg = ($xGroups != 0); $Xt = ($xTags != 0); - $Xa = ($this->_activity_exclude); //PICK UP FROM HERE - if (!$this->_groups && !$this->_tags || !$this->_groups && !$this->_activities || !$this->_tags && !$this->_activities) { + if (!$this->_groups && !$this->_tags) { $this->_andOr = 1; } /* @@ -631,7 +469,7 @@ function from() { $whereitems = array(); foreach (array( - 'Ig', 'It', 'Ia') as $inc) { + 'Ig', 'It') as $inc) { if ($this->_andOr == 1) { if ($$inc) { $from .= " INNER JOIN {$inc}_{$this->_tableName} temptable$inc ON (contact_a.id = temptable$inc.contact_id)"; @@ -648,7 +486,7 @@ function from() { } $this->_where = $whereitems ? "(" . implode(' OR ', $whereitems) . ')' : '(1)'; foreach (array( - 'Xg', 'Xt', 'Xa') as $exc) { + 'Xg', 'Xt') as $exc) { if ($$exc) { $from .= " LEFT JOIN {$exc}_{$this->_tableName} temptable$exc ON (contact_a.id = temptable$exc.contact_id)"; $this->_where .= " AND temptable$exc.contact_id IS NULL"; @@ -713,9 +551,9 @@ function summary() { } function templateFile() { - return 'CRM/Contact/Form/Search/Custom/Group.tpl'; + return 'CRM/Contact/Form/Search/Custom.tpl'; } - + function setTitle($title) { if ($title) { CRM_Utils_System::setTitle($title); diff --git a/CRM/Contact/Page/View/Summary.php b/CRM/Contact/Page/View/Summary.php index 1d4070168..54d22716e 100644 --- a/CRM/Contact/Page/View/Summary.php +++ b/CRM/Contact/Page/View/Summary.php @@ -210,16 +210,10 @@ function view() { $this->_editOptions = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'contact_edit_options' ); - $configItems = array( - 'CommBlock' => 'Communication Preferences', - 'Demographics' => 'Demographics', - 'TagsAndGroups' => 'Tags and Groups', - 'Notes' => 'Notes', - ); - foreach ($configItems as $c => $t) { - $varName = '_show' . $c; - $this->$varName = CRM_Utils_Array::value($c, $this->_editOptions); + foreach ($this->_editOptions as $blockName => $value) { + $varName = '_show' . $blockName; + $this->$varName = $value; $this->assign(substr($varName, 1), $this->$varName); } diff --git a/CRM/Contribute/Form/Contribution/Confirm.php b/CRM/Contribute/Form/Contribution/Confirm.php index bfc10bb12..f901d7930 100644 --- a/CRM/Contribute/Form/Contribution/Confirm.php +++ b/CRM/Contribute/Form/Contribution/Confirm.php @@ -144,11 +144,12 @@ public function preProcess() { $priceField->orderBy('weight'); $priceField->find(); $contriPriceId = NULL; + $isQuickConfig = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_Set', $this->_params['priceSetId'], 'is_quick_config'); while ($priceField->fetch()) { if ($priceField->name == "contribution_amount") { $contriPriceId = $priceField->id; } - if (CRM_Core_DAO::getFieldValue('CRM_Price_DAO_Set', $this->_params['priceSetId'], 'is_quick_config') && !empty($this->_params["price_{$priceField->id}"])) { + if ($isQuickConfig && !empty($this->_params["price_{$priceField->id}"])) { if ($this->_values['fee'][$priceField->id]['html_type'] != 'Text') { $this->_params['amount_level'] = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_FieldValue', $this->_params["price_{$priceField->id}"], 'label'); } @@ -310,7 +311,8 @@ public function preProcess() { ) { $this->_params['is_recur'] = $this->_values['is_recur'] = 1; - if (CRM_Utils_Array::value('priceSetId', $this->_params)) { + // check if price set is not quick config + if (CRM_Utils_Array::value('priceSetId', $this->_params) && !$isQuickConfig) { list($this->_params['frequency_interval'], $this->_params['frequency_unit']) = CRM_Price_BAO_Set::getRecurDetails($this->_params['priceSetId']); } else { diff --git a/CRM/Contribute/Form/Contribution/Main.php b/CRM/Contribute/Form/Contribution/Main.php index 41134f3ca..6c37ad84f 100644 --- a/CRM/Contribute/Form/Contribution/Main.php +++ b/CRM/Contribute/Form/Contribution/Main.php @@ -1100,11 +1100,13 @@ static function formRule($fields, $files, $self) { return $errors; } - foreach ($self->_paymentFields as $name => $fld) { - if ($fld['is_required'] && - CRM_Utils_System::isNull(CRM_Utils_Array::value($name, $fields)) - ) { - $errors[$name] = ts('%1 is a required field.', array(1 => $fld['title'])); + if(isset($self->_paymentFields)) { + foreach ($self->_paymentFields as $name => $fld) { + if ($fld['is_required'] && + CRM_Utils_System::isNull(CRM_Utils_Array::value($name, $fields)) + ) { + $errors[$name] = ts('%1 is a required field.', array(1 => $fld['title'])); + } } } diff --git a/CRM/Core/BAO/CustomField.php b/CRM/Core/BAO/CustomField.php index fca4d9c0e..5c43b5483 100644 --- a/CRM/Core/BAO/CustomField.php +++ b/CRM/Core/BAO/CustomField.php @@ -1528,9 +1528,6 @@ static function formatCustomField($customFieldId, &$customFormatted, $value, !$customFields[$customFieldId]['is_multiple'] && $entityId ) { - //get the entity table for the custom field - $entityTable = CRM_Core_BAO_CustomQuery::$extendsMap[$customFieldExtend]; - $query = " SELECT id FROM $tableName diff --git a/CRM/Core/BAO/PaymentProcessorType.php b/CRM/Core/BAO/PaymentProcessorType.php index 2c586c11e..6110946a8 100644 --- a/CRM/Core/BAO/PaymentProcessorType.php +++ b/CRM/Core/BAO/PaymentProcessorType.php @@ -107,6 +107,76 @@ function &getDefault() { return self::$_defaultPaymentProcessorType; } + /** + * Function to add the payment-processor type in the db + * + * @param array $params (reference ) an assoc array of name/value pairs + * @param array $ids the array that holds all the db ids + * + * @return object CRM_Core_DAO_PaymentProcessorType + * @access public + * @static + * + */ + static + function create(&$params) { + $paymentProcessorType = new CRM_Core_DAO_PaymentProcessorType(); + $paymentProcessorType->copyValues($params); + + /* + // adapted from CRM_Core_Extensions_Payment::install + foreach (array( + 'class_name', + 'title', + 'name', + 'description', + 'user_name_label', + 'password_label', + 'signature_label', + 'subject_label', + 'url_site_default', + 'url_api_default', + 'url_recur_default', + 'url_site_test_default', + 'url_api_test_default', + 'url_recur_test_default', + 'url_button_default', + 'url_button_test_default', + 'billing_mode', + 'is_recur', + 'payment_type' + ) as $trimmable) { + if (isset($paymentProcessorType->{$trimmable})) { + $paymentProcessorType->{$trimmable} = trim($paymentProcessorType->{$trimmable}); + } + } + */ + + if (isset($paymentProcessorType->billing_mode)) { + // ugh unidirectional manipulation + if (!is_numeric($paymentProcessorType->billing_mode)) { + $billingModes = array_flip(CRM_Core_PseudoConstant::billingMode()); + if (array_key_exists($paymentProcessorType->billing_mode, $billingModes)) { + $paymentProcessorType->billing_mode = $billingModes[$paymentProcessorType->billing_mode]; + } + } + if (!array_key_exists($paymentProcessorType->billing_mode, CRM_Core_PseudoConstant::billingMode())) { + throw new Exception("Unrecognized billing_mode"); + } + } + + // FIXME handle is_default + + if (!empty($paymentProcessorType->id)) { + $ppByName = self::getAllPaymentProcessorTypes('name'); + if (array_key_exists($paymentProcessorType->name, $ppByName)) { + CRM_Core_Error::fatal('This payment processor type already exists.'); + } + } + + return $paymentProcessorType->save(); + } + /** * Function to delete payment processor * @@ -136,5 +206,15 @@ function del($paymentProcessorTypeId) { return TRUE; } } + + static private function getAllPaymentProcessorTypes($attr) { + $ppt = array(); + $dao = new CRM_Core_DAO_PaymentProcessorType(); + $dao->find(); + while ($dao->fetch()) { + $ppt[$dao->$attr] = $dao->id; + } + return $ppt; + } } diff --git a/CRM/Core/BAO/Tag.php b/CRM/Core/BAO/Tag.php index ddcd3c72e..ee3588214 100644 --- a/CRM/Core/BAO/Tag.php +++ b/CRM/Core/BAO/Tag.php @@ -185,18 +185,23 @@ function getTagsUsedFor($usedFor = array('civicrm_contact'), static function getTags($usedFor = 'civicrm_contact', &$tags = array(), $parentId = NULL, - $separator = '  ', - $flatlist = TRUE + $separator = '  ' ) { // We need to build a list of tags ordered by hierarchy and sorted by // name. The heirarchy will be communicated by an accumulation of - // '  ' in front of the name to give it a visual offset. + // separators in front of the name to give it a visual offset. // Instead of recursively making mysql queries, we'll make one big // query and build the heirarchy with the algorithm below. + $args = array(1 => array('%' . $usedFor . '%', 'String')); $query = "SELECT id, name, parent_id, is_tagset FROM civicrm_tag - WHERE used_for LIKE '%{$usedFor}%' ORDER BY name"; - $dao = CRM_Core_DAO::executeQuery($query, CRM_Core_DAO::$_nullArray, TRUE, NULL, FALSE, FALSE); + WHERE used_for LIKE %1"; + if ($parentId) { + $query .= " AND parent_id = %2"; + $args[2] = array($parentId, 'Integer'); + } + $query .= " ORDER BY name"; + $dao = CRM_Core_DAO::executeQuery($query, $args, TRUE, NULL, FALSE, FALSE); // Sort the tags into the correct storage by the parent_id/is_tagset // filter the filter was in place previously, we're just reusing it. @@ -205,14 +210,14 @@ static function getTags($usedFor = 'civicrm_contact', // are necessarily placed. $roots = $rows = array(); while ($dao->fetch()) { - if (!$dao->parent_id && $dao->is_tagset == 0) { + if ($dao->parent_id == $parentId && $dao->is_tagset == 0) { $roots[] = array('id' => $dao->id, 'prefix' => '', 'name' => $dao->name); } else { $rows[] = array('id' => $dao->id, 'prefix' => '', 'name' => $dao->name, 'parent_id' => $dao->parent_id); } } - + $dao->free(); // While we have nodes left to build, shift the first (alphabetically) // node of the list, place it in our tags list and loop through the // list of unplaced nodes to find its children. We make a copy to @@ -378,11 +383,13 @@ static function dataExists(&$params) { */ static function getTagSet($entityTable) { $tagSets = array(); - $query = "SELECT name FROM civicrm_tag WHERE is_tagset=1 AND parent_id IS NULL and used_for LIKE '%{$entityTable}%'"; - $dao = CRM_Core_DAO::executeQuery($query, CRM_Core_DAO::$_nullArray, TRUE, NULL, FALSE, FALSE); + $query = "SELECT name, id FROM civicrm_tag + WHERE is_tagset=1 AND parent_id IS NULL and used_for LIKE %1"; + $dao = CRM_Core_DAO::executeQuery($query, array(1 => array('%' . $entityTable . '%', 'String')), TRUE, NULL, FALSE, FALSE); while ($dao->fetch()) { - $tagSets[] = $dao->name; + $tagSets[$dao->id] = $dao->name; } + $dao->free(); return $tagSets; } diff --git a/CRM/Core/Config.php b/CRM/Core/Config.php index 3a1bde5d3..59201b38c 100644 --- a/CRM/Core/Config.php +++ b/CRM/Core/Config.php @@ -633,12 +633,19 @@ function cleanupCaches() { // clear db caching $this->clearDBCache(); - CRM_Core_PseudoConstant::getModuleExtensions(TRUE); - $session = CRM_Core_Session::singleton(); $session->reset(2); } + /** + * Flush information about loaded modules + */ + function clearModuleList() { + CRM_Utils_Hook::singleton(TRUE); + CRM_Core_PseudoConstant::getModuleExtensions(TRUE); + CRM_Core_Module::getAll(TRUE); + } + /** * clear db cache */ diff --git a/CRM/Core/DAO.php b/CRM/Core/DAO.php index fc44c20c0..05fbd2f9e 100644 --- a/CRM/Core/DAO.php +++ b/CRM/Core/DAO.php @@ -1194,6 +1194,27 @@ static function escapeString($string) { return $_dao->escape($string); } + /** + * Escape a list of strings for use with "WHERE X IN (...)" queries. + * + * @param $strings array + * @param $default string the value to use if $strings has no elements + * @return string eg "abc","def","ghi" + */ + static function escapeStrings($strings, $default = NULL) { + static $_dao = NULL; + if (!$_dao) { + $_dao = new CRM_Core_DAO(); + } + + if (empty($strings)) { + return $default; + } + + $escapes = array_map(array($_dao, 'escape'), $strings); + return '"' . implode('","', $escapes) . '"'; + } + static function escapeWildCardString($string) { // CRM-9155 // ensure we escape the single characters % and _ which are mysql wild diff --git a/CRM/Core/DAO/.listAll.php b/CRM/Core/DAO/.listAll.php index 235420c97..1c8b25742 100644 --- a/CRM/Core/DAO/.listAll.php +++ b/CRM/Core/DAO/.listAll.php @@ -11,6 +11,7 @@ $dao['JobLog'] = 'CRM_Core_DAO_JobLog'; $dao['LocationType'] = 'CRM_Core_DAO_LocationType'; $dao['MailSettings'] = 'CRM_Core_DAO_MailSettings'; +$dao['Managed'] = 'CRM_Core_DAO_Managed'; $dao['Mapping'] = 'CRM_Core_DAO_Mapping'; $dao['Navigation'] = 'CRM_Core_DAO_Navigation'; $dao['OptionGroup'] = 'CRM_Core_DAO_OptionGroup'; diff --git a/CRM/Core/DAO/Managed.php b/CRM/Core/DAO/Managed.php new file mode 100644 index 000000000..d569f4853 --- /dev/null +++ b/CRM/Core/DAO/Managed.php @@ -0,0 +1,240 @@ +__table = 'civicrm_managed'; + parent::__construct(); + } + /** + * returns all the column names of this table + * + * @access public + * @return array + */ + static function &fields() + { + if (!(self::$_fields)) { + self::$_fields = array( + 'id' => array( + 'name' => 'id', + 'type' => CRM_Utils_Type::T_INT, + 'required' => true, + ) , + 'module' => array( + 'name' => 'module', + 'type' => CRM_Utils_Type::T_STRING, + 'title' => ts('Module') , + 'required' => true, + 'maxlength' => 127, + 'size' => CRM_Utils_Type::HUGE, + ) , + 'name' => array( + 'name' => 'name', + 'type' => CRM_Utils_Type::T_STRING, + 'title' => ts('Name') , + 'maxlength' => 127, + 'size' => CRM_Utils_Type::HUGE, + ) , + 'entity_type' => array( + 'name' => 'entity_type', + 'type' => CRM_Utils_Type::T_STRING, + 'title' => ts('Entity Type') , + 'required' => true, + 'maxlength' => 64, + 'size' => CRM_Utils_Type::BIG, + ) , + 'entity_id' => array( + 'name' => 'entity_id', + 'type' => CRM_Utils_Type::T_INT, + 'required' => true, + ) , + ); + } + return self::$_fields; + } + /** + * returns the names of this table + * + * @access public + * @static + * @return string + */ + static function getTableName() + { + return self::$_tableName; + } + /** + * returns if this table needs to be logged + * + * @access public + * @return boolean + */ + function getLog() + { + return self::$_log; + } + /** + * returns the list of fields that can be imported + * + * @access public + * return array + * @static + */ + static function &import($prefix = false) + { + if (!(self::$_import)) { + self::$_import = array(); + $fields = self::fields(); + foreach($fields as $name => $field) { + if (CRM_Utils_Array::value('import', $field)) { + if ($prefix) { + self::$_import['managed'] = & $fields[$name]; + } else { + self::$_import[$name] = & $fields[$name]; + } + } + } + } + return self::$_import; + } + /** + * returns the list of fields that can be exported + * + * @access public + * return array + * @static + */ + static function &export($prefix = false) + { + if (!(self::$_export)) { + self::$_export = array(); + $fields = self::fields(); + foreach($fields as $name => $field) { + if (CRM_Utils_Array::value('export', $field)) { + if ($prefix) { + self::$_export['managed'] = & $fields[$name]; + } else { + self::$_export[$name] = & $fields[$name]; + } + } + } + } + return self::$_export; + } +} diff --git a/CRM/Core/Extensions.php b/CRM/Core/Extensions.php index 8cbbef559..20445c960 100644 --- a/CRM/Core/Extensions.php +++ b/CRM/Core/Extensions.php @@ -174,6 +174,22 @@ public function getRepositoryUrl() { return $this->_repoUrl; } + /** + * Get a list of all installed modules, including enabled and disabled ones + * + * @return array CRM_Core_Module + */ + public function getModules() { + $result = array(); + $dao = new CRM_Core_DAO_Extension(); + $dao->type = 'module'; + $dao->find(); + while ($dao->fetch()) { + $result[] = new CRM_Core_Module($dao->full_name, $dao->is_active); + } + return $result; + } + /** * Populates variables containing information about extension. * This method is not supposed to call on object initialisation. diff --git a/CRM/Core/Extensions/Extension.php b/CRM/Core/Extensions/Extension.php index a1c9daed8..b937ff0c6 100644 --- a/CRM/Core/Extensions/Extension.php +++ b/CRM/Core/Extensions/Extension.php @@ -192,7 +192,9 @@ private function _parseXMLFile($file) { public function install() { if ($this->status != self::STATUS_LOCAL) { if ($this->download()) { - $this->installFiles(); + if (!$this->installFiles()) { + return FALSE; + } } else { // CRM-10322 If download fails but files exist anyway, continue with install // using local version. If no local version exists, then it's OK @@ -206,6 +208,7 @@ public function install() { $this->_runPaymentHook('install'); } } + CRM_Core_Invoke::rebuildMenuAndCaches(TRUE); } /** @@ -225,6 +228,7 @@ public function uninstall() { } } } + CRM_Core_Invoke::rebuildMenuAndCaches(TRUE); } public function upgrade() { @@ -232,6 +236,7 @@ public function upgrade() { $this->removeFiles(); $this->installFiles(); //TODO// $this->_updateExtensionEntry(); + CRM_Core_Invoke::rebuildMenuAndCaches(TRUE); } /** @@ -252,21 +257,40 @@ public function installFiles() { $zip = new ZipArchive; $res = $zip->open($this->tmpFile); if ($res === TRUE) { + $zipSubDir = CRM_Utils_Zip::guessBasedir($zip, $this->key); + if ($zipSubDir === FALSE) { + CRM_Core_Session::setStatus(ts('Unable to extract the extension: bad directory structure') . '
'); + return FALSE; + } $path = $config->extensionsDir . DIRECTORY_SEPARATOR . 'tmp'; - $zip->extractTo($path); + $extractedZipPath = $path . DIRECTORY_SEPARATOR . $zipSubDir; + if (is_dir($extractedZipPath)) { + if (!CRM_Utils_File::cleanDir($extractedZipPath, TRUE, FALSE)) { + CRM_Core_Session::setStatus(ts('Unable to extract the extension: %1 cannot be cleared', array(1 => $extractedZipPath)) . '
'); + return FALSE; + } + } + if (!$zip->extractTo($path)) { + CRM_Core_Session::setStatus(ts('Unable to extract the extension to %1.', array(1 => $path)) . '
'); + return FALSE; + } $zip->close(); } else { CRM_Core_Session::setStatus('Unable to extract the extension.'); - return; + return FALSE; } - $filename = $path . DIRECTORY_SEPARATOR . $this->key . DIRECTORY_SEPARATOR . 'info.xml'; + $filename = $extractedZipPath . DIRECTORY_SEPARATOR . 'info.xml'; + if (!is_readable($filename)) { + CRM_Core_Session::setStatus(ts('Failed reading data from %1 during installation', array(1 => $filename)) . '
'); + return FALSE; + } $newxml = file_get_contents($filename); if (empty($newxml)) { - CRM_Core_Session::setStatus(ts('Failed reading data from %1 during installation', array(1 => $filename))); - return; + CRM_Core_Session::setStatus(ts('Failed reading data from %1 during installation', array(1 => $filename)) . '
'); + return FALSE; } $check = new CRM_Core_Extensions_Extension($this->key . ".newversion"); @@ -275,9 +299,16 @@ public function installFiles() { CRM_Core_Error::fatal('Cannot install - there are differences between extdir XML file and archive XML file!'); } - CRM_Utils_File::copyDir($path . DIRECTORY_SEPARATOR . $this->key, + // Why is this a copy instead of a move? + CRM_Utils_File::copyDir($extractedZipPath, $config->extensionsDir . DIRECTORY_SEPARATOR . $this->key ); + + if (!CRM_Utils_File::cleanDir($extractedZipPath, TRUE, FALSE)) { + CRM_Core_Session::setStatus(ts('Failed to clean temp dir: %1', array(1 => $extractedZipPath)) . '
'); + } + + return TRUE; } /** @@ -286,6 +317,7 @@ public function installFiles() { * @return boolean Whether the download was successful. */ public function download() { + require_once 'CA/Config/Curl.php'; $config = CRM_Core_Config::singleton(); $path = $config->extensionsDir . DIRECTORY_SEPARATOR . 'tmp'; @@ -296,56 +328,45 @@ public function download() { } // Download extension zip file ... + if (!function_exists('curl_init')) { + CRM_Core_Error::fatal('Cannot install this extension - curl is not installed!'); + } + if (preg_match('/^https:/', $this->downloadUrl) && !CA_Config_Curl::singleton()->isEnableSSL()) { + CRM_Core_Error::fatal('Cannot install this extension - does not support SSL'); + } - @ini_set('allow_url_fopen', 1); - @ini_set('user_agent', 'CiviCRM v' . CRM_Utils_System::version()); - - // Check response code on downloadUrl - $headers = get_headers($this->downloadUrl); - $response_code = substr($headers[0], 9, 3); - - if ($response_code == 200) { - $context = stream_context_create(array( - 'http' => array( - // Timeout if no reply after 20 seconds - 'timeout' => 20, - ), - )); - - // Attempt to download file - if (!$zipfile = file_get_contents($this->downloadUrl, FALSE, $context)) { - // CRM_Core_Error::fatal(ts('Unable to download extension from %1', array(1 => $this->downloadUrl))); - CRM_Core_Session::setStatus(ts('Unable to download extension from %1', array(1 => $this->downloadUrl))); - return; - } + //setting the curl parameters. + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $this->downloadUrl); + curl_setopt($ch, CURLOPT_HEADER, false); + curl_setopt($ch, CURLOPT_VERBOSE, 1); + if (preg_match('/^https:/', $this->downloadUrl)) { + curl_setopt_array($ch, CA_Config_Curl::singleton()->toCurlOptions()); + } - // Attempt to save file - if (@file_put_contents($filename, $zipfile) === FALSE) { - CRM_Core_Session::setStatus(ts('Unable to write to %1.
Is the location writable?', array(1 => $filename))); - return; - } + //follow redirects + curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE); + + $fp = fopen($filename, "w"); + if (! $fp) { + CRM_Core_Session::setStatus(ts('Unable to write to %1.
Is the location writable?', array(1 => $filename))); + return; + } + curl_setopt($ch, CURLOPT_FILE, $fp); + + curl_exec($ch); + if (curl_errno($ch)) { + CRM_Core_Error::debug(curl_error($ch)); + CRM_Core_Error::debug(curl_errno($ch)); exit( ); + CRM_Core_Session::setStatus(ts('Unable to download extension from %1. Error Message: %2', + array(1 => $this->downloadUrl, 2 => curl_error($ch)))); + return; } else { - // Response code != 200? - // Bail and inform user ... - $error = ts('Unable to download extension from %1.', array(1 => $this->downloadUrl)); - - if ($response_code >= 100 && $response_code < 300) { - CRM_Core_Session::setStatus($error . '
' . ts('Server returned an HTTP %1 response code.', array(1 => $response_code))); - return; - } - elseif ($response_code >= 300 && $response_code < 400) { - CRM_Core_Session::setStatus($error . '
' . ts('URL is redirecting.')); - return; - } - else { - CRM_Core_Session::setStatus($error . '
' . ts('Server returned an HTTP %1 error.', array(1 => $response_code))); - return; - } + curl_close($ch); } - @ini_restore('user_agent'); - @ini_restore('allow_url_fopen'); + fclose($fp); $this->tmpFile = $filename; return TRUE; @@ -357,6 +378,7 @@ public function enable() { if ($this->type == 'payment') { $this->_runPaymentHook('enable'); } + CRM_Core_Invoke::rebuildMenuAndCaches(TRUE); } public function disable() { @@ -365,6 +387,7 @@ public function disable() { } $this->_setActiveByType(0); CRM_Core_DAO::setFieldValue('CRM_Core_DAO_Extension', $this->id, 'is_active', 0); + CRM_Core_Invoke::rebuildMenuAndCaches(TRUE); } private function _setActiveByType($state) { diff --git a/CRM/Core/Extensions/Module.php b/CRM/Core/Extensions/Module.php index 316bbbc35..3f9aaece6 100644 --- a/CRM/Core/Extensions/Module.php +++ b/CRM/Core/Extensions/Module.php @@ -42,6 +42,7 @@ public function __construct($ext) { public function install() { self::commonInstall('install'); + self::commonInstall('enable'); } private function callHook($moduleName, $modulePath, $hookName) { @@ -53,8 +54,6 @@ private function callHook($moduleName, $modulePath, $hookName) { } private function commonInstall($type = 'install') { - CRM_Core_PseudoConstant::getModuleExtensions(TRUE); - $this->callHook($this->ext->file, $this->ext->path, $type @@ -67,8 +66,6 @@ public function uninstall() { } private function commonUNInstall($type = 'uninstall') { - CRM_Core_PseudoConstant::getModuleExtensions(TRUE); - $this->callHook($this->ext->file, $this->ext->path, $type diff --git a/CRM/Core/IDS.php b/CRM/Core/IDS.php index 4e634e5d6..c534a5e7d 100644 --- a/CRM/Core/IDS.php +++ b/CRM/Core/IDS.php @@ -124,9 +124,7 @@ public function check(&$args) { exceptions[] = instructions exceptions[] = suggested_message exceptions[] = page_text - exceptions[] = activity_include - exceptions[] = activity_exclude -"; + "; if (file_put_contents($configFile, $contents) === FALSE) { CRM_Core_Error::movedSiteError($configFile); } diff --git a/CRM/Core/Invoke.php b/CRM/Core/Invoke.php index e64111414..72f5095ba 100644 --- a/CRM/Core/Invoke.php +++ b/CRM/Core/Invoke.php @@ -376,6 +376,7 @@ function profile($args) { static function rebuildMenuAndCaches($triggerRebuild = FALSE) { $config = CRM_Core_Config::singleton(); + $config->clearModuleList(); CRM_Core_Menu::store(); @@ -392,6 +393,8 @@ function rebuildMenuAndCaches($triggerRebuild = FALSE) { ) { CRM_Core_DAO::triggerRebuild(); } + + CRM_Core_ManagedEntities::singleton(TRUE)->reconcile(); } } diff --git a/CRM/Core/ManagedEntities.php b/CRM/Core/ManagedEntities.php new file mode 100644 index 000000000..c0c5ad358 --- /dev/null +++ b/CRM/Core/ManagedEntities.php @@ -0,0 +1,245 @@ + array($name => CRM_Core_Module)) + */ + public $moduleIndex; + + /** + * @var array per hook_civicrm_managed + */ + public $declarations; + + /** + * Get an instance + */ + public static function singleton($fresh = FALSE) { + static $singleton; + if ($fresh || !$singleton) { + $declarations = array(); + CRM_Utils_Hook::managed($declarations); + $singleton = new CRM_Core_ManagedEntities(CRM_Core_Module::getAll(), $declarations); + } + return $singleton; + } + + /** + * @param $modules array CRM_Core_Module + * @param $declarations array per hook_civicrm_managed + */ + public function __construct($modules, $declarations) { + $this->moduleIndex = self::createModuleIndex($modules); + $this->declarations = self::cleanDeclarations($declarations); + } + + /** + * Read the managed entity + */ + public function get($moduleName, $name) { + $dao = new CRM_Core_DAO_Managed(); + $dao->module = $moduleName; + $dao->name = $name; + if ($dao->find(TRUE)) { + $result = civicrm_api($dao->entity_type, 'getsingle', array( + 'version' => 3, + 'id' => $dao->entity_id, + )); + if ($result['is_error']) { + throw new Exception('API error: ' . $result['error_message']); + } else { + return $result; + } + } else { + return NULL; + } + } + + public function reconcile() { + if ($error = $this->validate($this->declarations)) { + throw new Exception($error); + } + $this->reconcileEnabledModules(); + $this->reconcileDisabledModules(); + $this->reconcileUnknownModules(); + } + + + public function reconcileEnabledModules() { + // Note: any thing currently declared is necessarily from + // an active module -- because we got it from a hook! + + // index by moduleName,name + $decls = self::createDeclarationIndex($this->declarations); + foreach ($decls as $moduleName => $todos) { + if (isset($this->moduleIndex[TRUE][$moduleName])) { + $this->reconcileEnabledModule($this->moduleIndex[TRUE][$moduleName], $todos); + } elseif (isset($this->moduleIndex[FALSE][$moduleName])) { + // do nothing -- module should get swept up later + } else { + throw new Exception("Entity declaration references invalid or inactive module name [$moduleName]"); + } + } + } + + /** + * Create, update, and delete entities declared by an active module + * + * @param $module string + * @param $todos array $name => array() + */ + public function reconcileEnabledModule(CRM_Core_Module $module, $todos) { + $dao = new CRM_Core_DAO_Managed(); + $dao->module = $module->name; + $dao->find(); + while ($dao->fetch()) { + if ($todos[$dao->name]) { + // update existing entity; remove from $todos + $defaults = array('id' => $dao->entity_id, 'is_active' => 1); // FIXME: test whether is_active is valid + $params = array_merge($defaults, $todos[$dao->name]['params']); + $result = civicrm_api($dao->entity_type, 'create', $params); + if ($result['is_error']) { + throw new Exception($result['error_message']); + } + + unset($todos[$dao->name]); + } else { + // remove stale entity; not in $todos + $result = civicrm_api($dao->entity_type, 'create', array( + 'version' => 3, + 'id' => $dao->entity_id, + )); + if ($result['is_error']) { + throw new Exception('API error: ' . $result['error_message']); + } + + CRM_Core_DAO::executeQuery('DELETE FROM civicrm_managed WHERE id = %1', array( + 1 => array($dao->id, 'Integer') + )); + } + } + + // create new entities from leftover $todos + foreach ($todos as $name => $todo) { + $result = civicrm_api($todo['entity'], 'create', $todo['params']); + if ($result['is_error']) { + throw new Exception('API error: ' . $result['error_message']); + } + + $dao = new CRM_Core_DAO_Managed(); + $dao->module = $todo['module']; + $dao->name = $todo['name']; + $dao->entity_type = $todo['entity']; + $dao->entity_id = $result['id']; + $dao->save(); + } + } + + public function reconcileDisabledModules() { + if (empty($this->moduleIndex[FALSE])) { + return; + } + + $in = CRM_Core_DAO::escapeStrings(array_keys($this->moduleIndex[FALSE])); + $dao = new CRM_Core_DAO_Managed(); + $dao->whereAdd("module in ($in)"); + $dao->find(); + while ($dao->fetch()) { + // FIXME: if ($dao->entity_type supports is_active) { + if (TRUE) { + // FIXME cascading for payproc types? + $result = civicrm_api($dao->entity_type, 'create', array( + 'version' => 3, + 'id' => $dao->entity_id, + 'is_active' => 0, + )); + if ($result['is_error']) { + throw new Exception('API error: ' . $result['error_message']); + } + } + } + } + + public function reconcileUnknownModules() { + $knownModules = array(); + if (array_key_exists(0, $this->moduleIndex) && is_array($this->moduleIndex[0])) { + $knownModules = array_merge($knownModules, array_keys($this->moduleIndex[0])); + } + if (array_key_exists(1, $this->moduleIndex) && is_array($this->moduleIndex[1])) { + $knownModules = array_merge($knownModules, array_keys($this->moduleIndex[1])); + + } + + $dao = new CRM_Core_DAO_Managed(); + if (!empty($knownModules)) { + $in = CRM_Core_DAO::escapeStrings($knownModules); + $dao->whereAdd("module NOT IN ($in)"); + } + $dao->find(); + while ($dao->fetch()) { + $result = civicrm_api($dao->entity_type, 'delete', array( + 'version' => 3, + 'id' => $dao->entity_id, + )); + if ($result['is_error']) { + throw new Exception('API error: ' . $result['error_message']); + } + + CRM_Core_DAO::executeQuery('DELETE FROM civicrm_managed WHERE id = %1', array( + 1 => array($dao->id, 'Integer') + )); + } + } + + /** + * @return array indexed by is_active,name + */ + protected static function createModuleIndex($modules) { + $result = array(); + foreach ($modules as $module) { + $result[$module->is_active][$module->name] = $module; + } + return $result; + } + + /** + * @return array indexed by module,name + */ + protected static function createDeclarationIndex($declarations) { + $result = array(); + foreach ($declarations as $declaration) { + $result[$declaration['module']][$declaration['name']] = $declaration; + } + return $result; + } + + /** + * @return mixed string on error, or FALSE + */ + protected static function validate($declarations) { + foreach ($declarations as $declare) { + foreach (array('name', 'module', 'entity', 'params') as $key) { + if (empty($declare[$key])) { + $str = print_r($declare, TRUE); + return ("Managed Entity is missing field \"$key\": $str"); + } + } + // FIXME: validate that each 'module' is known + } + return FALSE; + } + protected static function cleanDeclarations($declarations) { + foreach ($declarations as $name => &$declare) { + if (!array_key_exists('name', $declare)) { + $declare['name'] = $name; + } + } + return $declarations; + } +} + diff --git a/CRM/Core/Module.php b/CRM/Core/Module.php new file mode 100644 index 000000000..17e46aff7 --- /dev/null +++ b/CRM/Core/Module.php @@ -0,0 +1,75 @@ +name = $name; + $this->is_active = $is_active; + } + + /** + * Get a list of all known modules + */ + public static function getAll($fresh = FALSE) { + static $result; + if ($fresh || !is_array($result)) { + $result = array(); + + $ext = new CRM_Core_Extensions(); + if ($ext->enabled) { + $result = array_merge($result, $ext->getModules()); + } + + $config = CRM_Core_Config::singleton(); + if (is_callable(array($config->userSystem, 'getModules'))) { + $result = array_merge($result, $config->userSystem->getModules()); + } + } + return $result; + } +} diff --git a/CRM/Core/Payment/PaymentExpress.php b/CRM/Core/Payment/PaymentExpress.php index 944a5e3bd..8b71c795a 100644 --- a/CRM/Core/Payment/PaymentExpress.php +++ b/CRM/Core/Payment/PaymentExpress.php @@ -176,7 +176,7 @@ function doTransferCheckout(&$params, $component) { 'MerchantReference' => $merchantRef, 'TxnData1' => $params['qfKey'], 'TxnData2' => $privateData, - 'TxnData3' => $component, + 'TxnData3' => $component . ",".$this->_paymentProcessor['id'], 'TxnType' => 'Purchase', // Leave this empty for now, causes an error with DPS if we populate it 'TxnId' => '', diff --git a/CRM/Core/Payment/PaymentExpressIPN.php b/CRM/Core/Payment/PaymentExpressIPN.php index 60701e55c..37f73827e 100644 --- a/CRM/Core/Payment/PaymentExpressIPN.php +++ b/CRM/Core/Payment/PaymentExpressIPN.php @@ -236,12 +236,6 @@ function getContext($privateData, $orderNo) { echo "Failure: Could not find contribution page for contribution record: $contributionID

"; exit(); } - - // get the payment processor id from contribution page - $paymentProcessorID = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionPage', - $contribution->contribution_page_id, - 'payment_processor_id' - ); } else { @@ -262,18 +256,9 @@ function getContext($privateData, $orderNo) { echo "Failure: Could not find event: $eventID

"; exit(); } - - // get the payment processor id from contribution page - $paymentProcessorID = $event->payment_processor_id; - } - - if (!$paymentProcessorID) { - CRM_Core_Error::debug_log_message("Could not find payment processor for contribution record: $contributionID"); - echo "Failure: Could not find payment processor for contribution record: $contributionID

"; - exit(); } - return array($isTest, $component, $paymentProcessorID, $duplicateTransaction); + return array($isTest, $component, $duplicateTransaction); } /** @@ -330,7 +315,7 @@ function main($dps_method, $rawPostData, $dps_url, $dps_user, $dps_key, $mac_key $DPStxnRef = _xmlElement($response, 'DpsTxnRef'); $qfKey = _xmlElement($response, "TxnData1"); $privateData = _xmlElement($response, "TxnData2"); - $component = _xmlElement($response, "TxnData3"); + list($component,$paymentProcessorID,) =explode(',', _xmlElement($response, "TxnData3")); $amount = _xmlElement($response, "AmountSettlement"); $merchantReference = _xmlElement($response, "MerchantReference"); } @@ -351,7 +336,7 @@ function main($dps_method, $rawPostData, $dps_url, $dps_user, $dps_key, $mac_key $qfKey = $rsp->getTxnData1(); $privateData = $rsp->getTxnData2(); - $component = $rsp->getTxnData3(); + list($component,$paymentProcessorID) = explode(',',$rsp->getTxnData3()); $success = $rsp->getSuccess(); $authCode = $rsp->getAuthCode(); $DPStxnRef = $rsp->getDpsTxnRef(); @@ -383,7 +368,7 @@ function main($dps_method, $rawPostData, $dps_url, $dps_user, $dps_key, $mac_key $transactionReference = $authCode . "-" . $DPStxnRef; - list($mode, $component, $paymentProcessorID, $duplicateTransaction) = self::getContext($privateData, $transactionReference); + list($mode, $component, $duplicateTransaction) = self::getContext($privateData, $transactionReference); $mode = $mode ? 'test' : 'live'; diff --git a/CRM/Core/PseudoConstant.php b/CRM/Core/PseudoConstant.php index 1e5bd83ad..52326d7a3 100644 --- a/CRM/Core/PseudoConstant.php +++ b/CRM/Core/PseudoConstant.php @@ -73,6 +73,20 @@ class CRM_Core_PseudoConstant { * @static */ private static $activityType = array(); + + /** + * payment processor billing modes + * @var array + * @static + */ + private static $billingMode; + + /** + * component + * @var array + * @static + */ + private static $component; /** * individual prefix @@ -575,6 +589,42 @@ public static function &activityType() { return self::$activityType[$index]; } + /** + * Get all payment-processor billing modes + * + * @access public + * @static + * + * @return array ($id => $name) + */ + public static function billingMode() { + if (!self::$billingMode) { + self::$billingMode = array( + CRM_Core_Payment::BILLING_MODE_FORM => 'form', + CRM_Core_Payment::BILLING_MODE_BUTTON => 'button', + CRM_Core_Payment::BILLING_MODE_NOTIFY => 'notify', + ); + } + return self::$billingMode; + } + + /** + * Get all component names + * + * @access public + * @static + * + * @return array - array reference of all location display names. + * + */ + public static function &component() { + if (!self::$component) { + self::populate(self::$component, 'CRM_Core_DAO_Component', TRUE, 'name'); + } + return self::$component; + } + + /** * Get all Individual Prefix. * diff --git a/CRM/Core/Resources.php b/CRM/Core/Resources.php index 2434be083..2f41ed186 100644 --- a/CRM/Core/Resources.php +++ b/CRM/Core/Resources.php @@ -39,7 +39,7 @@ */ class CRM_Core_Resources { const DEFAULT_WEIGHT = 0; - const DEFAULT_REGION = 'html-header'; + const DEFAULT_REGION = 'page-footer'; /** * We don't have a container or dependency-injection, so use singleton instead diff --git a/CRM/Import/Page/AJAX.php b/CRM/Import/Page/AJAX.php index 881303153..83b363b09 100644 --- a/CRM/Import/Page/AJAX.php +++ b/CRM/Import/Page/AJAX.php @@ -54,10 +54,8 @@ function status() { echo $str; } else { - require_once 'Services/JSON.php'; - $json = new Services_JSON(); $status = "

  " . ts('No processing status reported yet.') . "
"; - echo $json->encode(array(0, $status)); + echo json_encode(array(0, $status)); } CRM_Utils_System::civiExit(); } diff --git a/CRM/Import/Parser.php b/CRM/Import/Parser.php index 48a389a2a..b942ed2c7 100644 --- a/CRM/Import/Parser.php +++ b/CRM/Import/Parser.php @@ -311,20 +311,15 @@ function run($tableName, $config = CRM_Core_Config::singleton(); $statusFile = "{$config->uploadDir}status_{$statusID}.txt"; $status = "
  " . ts('No processing status reported yet.') . "
"; - require_once 'Services/JSON.php'; - $json = new Services_JSON(); //do not force the browser to display the save dialog, CRM-7640 - $contents = $json->encodeUnsafe(array(0, $status)); + $contents = json_encode(array(0, $status)); file_put_contents($statusFile, $contents); $startTimestamp = $currTimestamp = $prevTimestamp = time(); } - // put this outside the while loop - require_once 'Services/JSON.php'; - // get the contents of the temp. import table $query = "SELECT * FROM $tableName"; if ($mode == self::MODE_IMPORT) { @@ -387,8 +382,7 @@ function run($tableName, "; - $json = new Services_JSON(); - $contents = $json->encodeUnsafe(array($processedPercent, $status)); + $contents = json_encode (array($processedPercent, $status)); file_put_contents($statusFile, $contents); diff --git a/CRM/Report/Form/Activity.php b/CRM/Report/Form/Activity.php index d95b1810d..871fcc0fc 100644 --- a/CRM/Report/Form/Activity.php +++ b/CRM/Report/Form/Activity.php @@ -460,7 +460,7 @@ function groupBy() { $this->_groupBy = "GROUP BY {$this->_aliases['civicrm_activity']}.id"; } - function buildACLClause($tableAlias) { + function buildACLClause($tableAlias = 'contact_a') { //override for ACL( Since Cotact may be source //contact/assignee or target also it may be null ) diff --git a/CRM/Upgrade/Form.php b/CRM/Upgrade/Form.php index 1955e62a7..e6344e0c1 100644 --- a/CRM/Upgrade/Form.php +++ b/CRM/Upgrade/Form.php @@ -386,6 +386,16 @@ function checkUpgradeableVersion($currentVer, $latestVer) { array(1 => $latestVer) ); } + + $phpVersion = phpversion(); + $minPhpVersion = '5.3.0'; + if (version_compare($phpVersion, $minPhpVersion) <= 0) { + $error = ts('CiviCRM %3 requires PHP version %1 (or newer), but the current system uses %2 ', array( + 1 => $minPhpVersion, + 2 => $phpVersion, + 3 => $latestVer, + )); + } return $error; } diff --git a/CRM/Upgrade/Incremental/php/FourTwo.php b/CRM/Upgrade/Incremental/php/FourTwo.php index 226035544..5d9795d24 100644 --- a/CRM/Upgrade/Incremental/php/FourTwo.php +++ b/CRM/Upgrade/Incremental/php/FourTwo.php @@ -36,6 +36,7 @@ class CRM_Upgrade_Incremental_php_FourTwo { const BATCH_SIZE = 5000; const SETTINGS_SNIPPET_PATTERN = '/CRM_Core_ClassLoader::singleton\(\)-\>register/'; const SETTINGS_SNIPPET = "\nrequire_once 'CRM/Core/ClassLoader.php';\nCRM_Core_ClassLoader::singleton()->register();\n"; + static $_deleteBadDatas = array(); function verifyPreDBstate(&$errors) { return TRUE; @@ -52,6 +53,28 @@ function verifyPreDBstate(&$errors) { * @return void */ function setPreUpgradeMessage(&$preUpgradeMessage, $rev) { + if ($rev == '4.2.alpha1') { + // CRM-10613 delete bad data for membership + self::deleteBadData(); + if (!empty(self::$_deleteBadDatas)) { + $deletedMembership = $deletedPayments = $retainedMembership = ""; + foreach (self::$_deleteBadDatas as $badData) { + $retainedMembership .= "{$badData['contribution']}" . array_pop($badData['memberships']) . ""; + foreach ($badData['memberships'] as $value ) { + $deletedMembership .= "
  • {$value}
  • "; + $deletedPayments .= "{$badData['contribution']}" . $value . ""; + } + } + $preUpgradeMessage .= "
    " . ts('The upgrade from CiviCRM version 4.1 to version 4.2 has identified some data integrity issues in the database. If you continue, it will attempt to solve a problem of multiple memberships or multiple payments for a membership associated with a single contribution by deleting the following records:') . ""; + + $preUpgradeMessage .= "
    " . ts('For contribution ID ##, membership ID ## will be retained') . ""; + $preUpgradeMessage .= "" . $retainedMembership . "
    contribution IDmembership ID
    "; + $preUpgradeMessage .= "" . ts('and the following memberships will be deleted:') . ""; + $preUpgradeMessage .= "" . ts('In addition, the following links between this contribution and memberships will be deleted:') . ""; + $preUpgradeMessage .= "" . $deletedPayments . "
    contribution IDmembership ID
    "; + } + } + if ($rev == '4.2.beta2') { // note: error conditions are also checked in upgrade_4_2_beta2() if (!defined('CIVICRM_SETTINGS_PATH')) { @@ -67,50 +90,6 @@ function setPreUpgradeMessage(&$preUpgradeMessage, $rev) { )); } } - if ($rev == '4.2.alpha1') { - $query = " - SELECT cc.id,GROUP_CONCAT(cm.id) as membership_id - FROM civicrm_membership_payment cmp - LEFT JOIN `civicrm_contribution` cc ON cc.id = cmp.contribution_id - LEFT JOIN civicrm_line_item cli ON cc.id=cli.entity_id and cli.entity_table = 'civicrm_contribution' - LEFT JOIN civicrm_membership cm ON cm.id=cmp.membership_id - LEFT JOIN civicrm_membership_type cmt ON cmt.id = cm.membership_type_id - WHERE cli.entity_id IS NULL - GROUP BY cc.id, cm.membership_type_id - HAVING count(cc.id) > 1 and count(cm.membership_type_id) > 1 "; - - $dao = CRM_Core_DAO::executeQuery($query); - if ($dao->N) { - $activityTypes = CRM_Core_PseudoConstant::activityType(TRUE, FALSE, FALSE, 'name'); - $activityid = array( - array_search('Membership Signup', $activityTypes), - array_search('Membership Renewal', $activityTypes), - array_search('Membership Renewal Reminder', $activityTypes), - ); - if (array_search('Change Membership Type', $activityTypes)) { - $activityid[] = array_search('Change Membership Type', $activityTypes); - } - if (array_search('Change Membership Status', $activityTypes)) { - $activityid[] = array_search('Change Membership Type', $activityTypes); - } - } - while ($dao->fetch()) { - $membershiIds = explode(',', $dao->membership_id); - sort($membershiIds); - array_pop($membershiIds); - foreach($membershiIds as $id){ - $params = array( - 'source_record_id' => $id, - 'activity_type_id' => $activityid, - ); - CRM_Activity_BAO_Activity::deleteActivity($params); - - $membership = new CRM_Member_DAO_Membership(); - $membership->id = $id; - $membership->delete(); - } - } - } } /** @@ -122,6 +101,19 @@ function setPreUpgradeMessage(&$preUpgradeMessage, $rev) { */ function setPostUpgradeMessage(&$postUpgradeMessage, $rev) { if ($rev == '4.2.alpha1') { + // CRM-10613 delete bad data for membership + self::deleteBadData(); + if (!empty(self::$_deleteBadDatas)) { + $postUpgradeMessage .= "
    " . ts('The following links between this contribution and memberships are successfully deleted:') . ""; + $postUpgradeMessage .= ""; + foreach (self::$_deleteBadDatas as $badData) { + array_pop($badData['memberships']); + foreach ($badData['memberships'] as $value ) { + $postUpgradeMessage .= ""; + } + } + $postUpgradeMessage .= "
    contribution IDmembership ID
    {$badData['contribution']}" . $value . "
    "; + } $postUpgradeMessage .= '
    ' . ts('Default versions of the following System Workflow Message Templates have been modified to handle new functionality: . If you have modified these templates, please review the new default versions and implement updates as needed to your copies (Administer > Communications > Message Templates > System Workflow Messages).'); } if ($rev == '4.2.beta5') { @@ -135,12 +127,24 @@ function setPostUpgradeMessage(&$postUpgradeMessage, $rev) { } function upgrade_4_2_alpha1($rev) { - + //checking whether the foreign key exists before dropping it + //drop foreign key queries of CRM-9850 + $params = array(); + $tables = array('civicrm_contribution_page' =>'FK_civicrm_contribution_page_payment_processor_id', + 'civicrm_event' => 'FK_civicrm_event_payment_processor_id', + 'civicrm_group' => 'FK_civicrm_group_saved_search_id', + ); + foreach($tables as $tableName => $fKey){ + $foreignKeyExists = CRM_Core_DAO::checkConstraintExists($tableName,$fKey); + if ($foreignKeyExists){ + CRM_Core_DAO::executeQuery("ALTER TABLE {$tableName} DROP FOREIGN KEY {$fKey}", $params, TRUE, NULL, FALSE, FALSE); + CRM_Core_DAO::executeQuery("ALTER TABLE {$tableName} DROP INDEX {$fKey}", $params, TRUE, NULL, FALSE, FALSE); + } + } // Drop index UI_title for civicrm_price_set $domain = new CRM_Core_DAO_Domain; $domain->find(TRUE); if ($domain->locales) { - $params = array(); $locales = explode(CRM_Core_DAO::VALUE_SEPARATOR, $domain->locales); foreach ($locales as $locale) { $query = "SHOW KEYS FROM `civicrm_price_set` WHERE key_name = 'UI_title_{$locale}'"; @@ -160,7 +164,7 @@ function upgrade_4_2_alpha1($rev) { // Some steps take a long time, so we break them up into separate // tasks and enqueue them separately. $this->addTask(ts('Upgrade DB to 4.2.alpha1: SQL'), 'task_4_2_alpha1_runSql', $rev); - $this->addTask(ts('Upgrade DB to 4.2.alpha1: Price Sets'), 'task_4_2_alpha1_createPriceSets'); + $this->addTask(ts('Upgrade DB to 4.2.alpha1: Price Sets'), 'task_4_2_alpha1_createPriceSets', $rev); $minContributionId = CRM_Core_DAO::singleValueQuery('SELECT coalesce(min(id),0) FROM civicrm_contribution'); $maxContributionId = CRM_Core_DAO::singleValueQuery('SELECT coalesce(max(id),0) FROM civicrm_contribution'); for ($startId = $minContributionId; $startId <= $maxContributionId; $startId += self::BATCH_SIZE) { @@ -210,13 +214,17 @@ function upgrade_4_2_beta5($rev) { VALUES ('URL Preferences', 'extensionsURL',NULL,1,1); "); } - + + function upgrade_4_2_0($rev) { + $this->addTask(ts('Upgrade DB to 4.2.0: SQL'), 'task_4_2_alpha1_runSql', $rev); + } + /** * (Queue Task Callback) * * Upgrade code to create priceset for contribution pages and events */ - static function task_4_2_alpha1_createPriceSets(CRM_Queue_TaskContext $ctx) { + static function task_4_2_alpha1_createPriceSets(CRM_Queue_TaskContext $ctx, $rev) { $upgrade = new CRM_Upgrade_Form(); $daoName = array( @@ -231,7 +239,8 @@ static function task_4_2_alpha1_createPriceSets(CRM_Queue_TaskContext $ctx) { CRM_Core_Component::getComponentID('CiviEvent') ), ); - + // CRM-10613 delete bad data for membership + self::deleteBadData('delete', $rev); // get all option group used for event and contribution page $query = " SELECT id, name @@ -280,6 +289,62 @@ static function task_4_2_alpha1_runSql(CRM_Queue_TaskContext $ctx, $rev) { return TRUE; } + /** + * + * Function to Delete bad data + */ + static function deleteBadData($deleteMembership = NULL, $rev = NULL) { + //CRM-10613 + + $query = "SELECT cc.id, cmp.membership_id + FROM civicrm_membership_payment cmp + INNER JOIN `civicrm_contribution` cc ON cc.id = cmp.contribution_id + LEFT JOIN civicrm_line_item cli ON cc.id=cli.entity_id and cli.entity_table = 'civicrm_contribution' + INNER JOIN civicrm_membership cm ON cm.id=cmp.membership_id + INNER JOIN civicrm_membership_type cmt ON cmt.id = cm.membership_type_id + INNER JOIN civicrm_membership_payment cmp1 on cmp.contribution_id = cmp1.contribution_id + WHERE cli.entity_id IS NULL + GROUP BY cmp.membership_id + HAVING COUNT(cmp.contribution_id) > 1 + ORDER BY cmp.membership_id ASC"; + + $dao = CRM_Core_DAO::executeQuery($query); + while ($dao->fetch()) { + self::$_deleteBadDatas[$dao->id]['memberships'][] = $dao->membership_id; + self::$_deleteBadDatas[$dao->id]['contribution'] = $dao->id; + } + if ($deleteMembership) { + $activityTypes = CRM_Core_PseudoConstant::activityType(TRUE, FALSE, FALSE, 'name'); + $activityid = array( + array_search('Membership Signup', $activityTypes), + array_search('Membership Renewal', $activityTypes), + array_search('Membership Renewal Reminder', $activityTypes), + ); + if (array_search('Change Membership Type', $activityTypes)) { + $activityid[] = array_search('Change Membership Type', $activityTypes); + } + if (array_search('Change Membership Status', $activityTypes)) { + $activityid[] = array_search('Change Membership Type', $activityTypes); + } + foreach (self::$_deleteBadDatas as $contributionId => $membershipIds) { + array_pop(self::$_deleteBadDatas[$contributionId]['memberships']); + foreach (self::$_deleteBadDatas[$contributionId]['memberships'] as $id) { + $params = array( + 'source_record_id' => $id, + 'activity_type_id' => $activityid, + ); + CRM_Activity_BAO_Activity::deleteActivity($params); + $membership = new CRM_Member_DAO_Membership(); + $membership->id = $id; + $membership->delete(); + CRM_Core_Error::debug_log_message(ts("contribution ID = %1 , membership ID = %2 has been deleted successfully.", array ( + 1 => $contributionId, + 2 => $membership->id, + )), FALSE, "Upgrade{$rev}Data"); + } + } + } + } /** * diff --git a/CRM/Upgrade/Incremental/sql/4.2.0.mysql.tpl b/CRM/Upgrade/Incremental/sql/4.2.0.mysql.tpl new file mode 100644 index 000000000..3456093d0 --- /dev/null +++ b/CRM/Upgrade/Incremental/sql/4.2.0.mysql.tpl @@ -0,0 +1,34 @@ +-- CRM-10641 (fix duplicate option values) + +SELECT @option_group_id_act := max(id) from civicrm_option_group where name = 'activity_type'; +SELECT @maxValue := MAX(ROUND(value)) FROM civicrm_option_value WHERE option_group_id = @option_group_id_act; +SELECT @clientSMSValue := value FROM civicrm_option_value WHERE name = 'BULK SMS' AND option_group_id = @option_group_id_act; + +SELECT @smsVal := value FROM civicrm_option_value WHERE option_group_id = @option_group_id_act GROUP BY value +HAVING count(value) > 1 AND value = @clientSMSValue; + +UPDATE civicrm_option_value +SET value = @maxValue + 1 +WHERE value = @smsVal +AND name = 'BULK SMS' AND option_group_id = @option_group_id_act; + +SELECT @newClientSMSValue := value FROM civicrm_option_value WHERE name = 'BULK SMS' AND option_group_id = @option_group_id_act; + +UPDATE civicrm_activity +INNER JOIN civicrm_mailing ON civicrm_activity.source_record_id = civicrm_mailing.id +SET civicrm_activity.activity_type_id = @newClientSMSValue +WHERE civicrm_activity.activity_type_id = @clientSMSValue; + +-- CRM-10671 remove incomplete price set reports (inserted in 4.2 alpha 1) +SELECT @option_group_id_report := MAX(id) FROM civicrm_option_group WHERE name = 'report_template'; +DELETE from civicrm_option_value +WHERE name = 'CRM_Report_Form_Price_Lineitem' AND +option_group_id = @option_group_id_report; + +DELETE from civicrm_option_value +WHERE name = 'CRM_Report_Form_Price_Contributionbased' AND +option_group_id = @option_group_id_report; + +DELETE from civicrm_option_value +WHERE name = 'CRM_Report_Form_Price_Lineitemparticipant' AND +option_group_id = @option_group_id_report; \ No newline at end of file diff --git a/CRM/Upgrade/Incremental/sql/4.2.alpha1.mysql.tpl b/CRM/Upgrade/Incremental/sql/4.2.alpha1.mysql.tpl index 3ccf51166..73328d6f4 100644 --- a/CRM/Upgrade/Incremental/sql/4.2.alpha1.mysql.tpl +++ b/CRM/Upgrade/Incremental/sql/4.2.alpha1.mysql.tpl @@ -118,18 +118,8 @@ INSERT INTO `civicrm_state_province`(`country_id`, `abbreviation`, `name`) VALUE ALTER TABLE civicrm_contribution_page CHANGE COLUMN is_email_receipt is_email_receipt TINYINT(4) DEFAULT 0; -- CRM-9850 -ALTER TABLE `civicrm_contribution_page` - DROP FOREIGN KEY `FK_civicrm_contribution_page_payment_processor_id`; - - ALTER TABLE civicrm_contribution_page DROP INDEX FK_civicrm_contribution_page_payment_processor_id; - ALTER TABLE `civicrm_contribution_page` CHANGE `payment_processor_id` `payment_processor` VARCHAR( 128 ) NULL DEFAULT NULL COMMENT 'Payment Processor for this contribution Page '; -ALTER TABLE `civicrm_event` - DROP FOREIGN KEY `FK_civicrm_event_payment_processor_id`; - - ALTER TABLE civicrm_event DROP INDEX FK_civicrm_event_payment_processor_id; - ALTER TABLE `civicrm_event` CHANGE `payment_processor_id` `payment_processor` VARCHAR( 128 ) NULL DEFAULT NULL COMMENT 'Payment Processor for this event '; -- CRM-9783 diff --git a/CRM/Upgrade/Incremental/sql/4.2.alpha2.mysql.tpl b/CRM/Upgrade/Incremental/sql/4.2.alpha2.mysql.tpl index 4cec8bac3..44f7384f2 100644 --- a/CRM/Upgrade/Incremental/sql/4.2.alpha2.mysql.tpl +++ b/CRM/Upgrade/Incremental/sql/4.2.alpha2.mysql.tpl @@ -4,7 +4,6 @@ DELETE FROM `civicrm_price_set_entity` WHERE entity_table = "civicrm_contribution" or entity_table = "civicrm_participant"; -- When deleting saved searches, null-out references from groups -ALTER TABLE civicrm_group DROP FOREIGN KEY `FK_civicrm_group_saved_search_id`; ALTER TABLE civicrm_group ADD CONSTRAINT `FK_civicrm_group_saved_search_id` FOREIGN KEY (`saved_search_id`) REFERENCES `civicrm_saved_search` (`id`) ON DELETE SET NULL; diff --git a/CRM/Upgrade/Incremental/sql/4.2.beta6.mysql.tpl b/CRM/Upgrade/Incremental/sql/4.2.beta6.mysql.tpl new file mode 100644 index 000000000..6bb96778f --- /dev/null +++ b/CRM/Upgrade/Incremental/sql/4.2.beta6.mysql.tpl @@ -0,0 +1,23 @@ +-- FIXME: the final release version is uncertain -- could 4.2.0 or 4.2.1; make sure this fixed before merging +-- CRM-10660 +CREATE TABLE `civicrm_managed` ( + + + `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Surrogate Key', + `module` varchar(127) NOT NULL COMMENT 'Name of the module which declared this object', + `name` varchar(127) COMMENT 'Symbolic name used by the module to identify the object', + `entity_type` varchar(64) NOT NULL COMMENT 'API entity type', + `entity_id` int unsigned NOT NULL COMMENT 'Foreign key to the referenced item.', + PRIMARY KEY ( `id` ) + + , INDEX `UI_managed_module_name`( + `module` + , `name` + ) + , INDEX `UI_managed_entity`( + `entity_type` + , `entity_id` + ) + + +) ENGINE=InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ; diff --git a/CRM/Utils/Array.php b/CRM/Utils/Array.php index f52404fba..3bc2ee6cc 100644 --- a/CRM/Utils/Array.php +++ b/CRM/Utils/Array.php @@ -47,8 +47,7 @@ class CRM_Utils_Array { * @access public * */ - static - function value($key, $list, $default = NULL) { + static function value($key, $list, $default = NULL) { if (is_array($list)) { return array_key_exists($key, $list) ? $list[$key] : $default; } @@ -66,8 +65,7 @@ function value($key, $list, $default = NULL) { * @access public * @static */ - static - function retrieveValueRecursive(&$params, $key) { + static function retrieveValueRecursive(&$params, $key) { if (!is_array($params)) { return NULL; } @@ -99,8 +97,7 @@ function retrieveValueRecursive(&$params, $key) { * @access public * */ - static - function key($value, &$list) { + static function key($value, &$list) { if (is_array($list)) { $key = array_search($value, $list); @@ -113,8 +110,7 @@ function key($value, &$list) { return NULL; } - static - function &xml(&$list, $depth = 1, $seperator = "\n") { + static function &xml(&$list, $depth = 1, $seperator = "\n") { $xml = ''; foreach ($list as $name => $value) { $xml .= str_repeat(' ', $depth * 4); @@ -133,8 +129,7 @@ function &xml(&$list, $depth = 1, $seperator = "\n") { return $xml; } - static - function escapeXML($value) { + static function escapeXML($value) { static $src = NULL; static $dst = NULL; @@ -146,8 +141,7 @@ function escapeXML($value) { return str_replace($src, $dst, $value); } - static - function flatten(&$list, &$flat, $prefix = '', $seperator = ".") { + static function flatten(&$list, &$flat, $prefix = '', $seperator = ".") { foreach ($list as $name => $value) { $newPrefix = ($prefix) ? $prefix . $seperator . $name : $name; if (is_array($value)) { @@ -197,8 +191,7 @@ function unflatten($delim, &$arr) { * @return $a3 * @static */ - static - function crmArrayMerge($a1, $a2) { + static function crmArrayMerge($a1, $a2) { if (empty($a1)) { return $a2; } @@ -230,8 +223,7 @@ function crmArrayMerge($a1, $a2) { return $a3; } - static - function isHierarchical(&$list) { + static function isHierarchical(&$list) { foreach ($list as $n => $v) { if (is_array($v)) { return TRUE; @@ -252,8 +244,7 @@ function isHierarchical(&$list) { * @static * @access public */ - static - function array_deep_copy(&$array, $maxdepth = 50, $depth = 0) { + static function array_deep_copy(&$array, $maxdepth = 50, $depth = 0) { if ($depth > $maxdepth) { return $array; } @@ -281,8 +272,7 @@ function array_deep_copy(&$array, $maxdepth = 50, $depth = 0) { * @return void * @static */ - static - function crmArraySplice(&$params, $start, $end) { + static function crmArraySplice(&$params, $start, $end) { // verify start and end date if ($start < 0) { $start = 0; @@ -311,8 +301,7 @@ function crmArraySplice(&$params, $start, $end) { * * @static */ - static - function crmInArray($value, $params, $caseInsensitive = TRUE) { + static function crmInArray($value, $params, $caseInsensitive = TRUE) { foreach ($params as $item) { if (is_array($item)) { $ret = crmInArray($value, $item, $caseInsensitive); @@ -335,8 +324,7 @@ function crmInArray($value, $params, $caseInsensitive = TRUE) { * the api needs the name => value conversion, also the view layer typically * requires value => name conversion */ - static - function lookupValue(&$defaults, $property, $lookup, $reverse) { + static function lookupValue(&$defaults, $property, $lookup, $reverse) { $id = $property . '_id'; $src = $reverse ? $property : $id; @@ -375,8 +363,7 @@ function lookupValue(&$defaults, $property, $lookup, $reverse) { * @return boolean true is array is empty else false * @static */ - static - function crmIsEmptyArray($array = array( + static function crmIsEmptyArray($array = array( )) { if (!is_array($array)) { return TRUE; @@ -402,8 +389,7 @@ function crmIsEmptyArray($array = array( * @return integer $levels containing number of levels in array * @static */ - static - function getLevelsArray($array) { + static function getLevelsArray($array) { if (!is_array($array)) { return 0; } @@ -428,8 +414,7 @@ function getLevelsArray($array) { * @return array $array Sorted array * @static */ - static - function crmArraySortByField($array, $field) { + static function crmArraySortByField($array, $field) { $code = "return strnatcmp(\$a['$field'], \$b['$field']);"; uasort($array, create_function('$a,$b', $code)); return $array; @@ -443,8 +428,7 @@ function crmArraySortByField($array, $field) { * @return array $array The array with duplicate values removed. * @static */ - static - function crmArrayUnique($array) { + static function crmArrayUnique($array) { $result = array_map("unserialize", array_unique(array_map("serialize", $array))); foreach ($result as $key => $value) { if (is_array($value)) { @@ -464,8 +448,7 @@ function crmArrayUnique($array) { * @return array Sorted array * @static */ - static - function asort($array = array( + static function asort($array = array( )) { $lcMessages = CRM_Utils_System::getUFLocale(); diff --git a/CRM/Utils/Date.php b/CRM/Utils/Date.php index 016265864..cc0fa5abc 100644 --- a/CRM/Utils/Date.php +++ b/CRM/Utils/Date.php @@ -1041,7 +1041,7 @@ function relativeToAbsolute($relativeTerm, $unit) { $from['M'] = (3 * $quarter) - 2; $to['M'] = 3 * $quarter; $to['Y'] = $from['Y'] = $now['year'] - $subtractYear; - $to['d'] = date('t', mktime(0, 0, 0, $to['M'], 1, $to['Y'])); + $to['d'] = date('t', mktime(0, 0, 0, $to['M'], 1, $to['Y'])); break; case 'previous_before': @@ -1056,7 +1056,7 @@ function relativeToAbsolute($relativeTerm, $unit) { $from['M'] = (3 * $quarter) - 2; $to['M'] = 3 * $quarter; $to['Y'] = $from['Y'] = $now['year'] - $subtractYear; - $to['d'] = date('t', mktime(0, 0, 0, $to['M'], 1, $to['Y'])); + $to['d'] = date('t', mktime(0, 0, 0, $to['M'], 1, $to['Y'])); break; case 'previous_2': @@ -1434,7 +1434,7 @@ function setDateDefaults($mysqlDate = NULL, $formatType = NULL, $format = NULL, $format = $values['date_format']; } - if ($values['time_format']) { + if (isset($values['time_format'])) { $timeFormat = $values['time_format']; } } @@ -1444,8 +1444,8 @@ function setDateDefaults($mysqlDate = NULL, $formatType = NULL, $format = NULL, // note that for date display we dynamically create text field /* if ( !$format ) { - $format = $config->dateInputFormat; - } + $format = $config->dateInputFormat; + } // get actual format $actualPHPFormats = CRM_Core_SelectValues::datePluginToPHPFormats( ); diff --git a/CRM/Utils/File.php b/CRM/Utils/File.php index 7232ef8b0..8bc96aa17 100644 --- a/CRM/Utils/File.php +++ b/CRM/Utils/File.php @@ -138,7 +138,7 @@ function createDir($path, $abort = TRUE) { * @access public * @static */ - public static function cleanDir($target, $rmdir = TRUE) { + public static function cleanDir($target, $rmdir = TRUE, $verbose = TRUE) { static $exceptions = array('.', '..'); if ($target == '' || $target == '/') { throw new Exception("Overly broad deletion"); @@ -163,7 +163,9 @@ public static function cleanDir($target, $rmdir = TRUE) { if ($rmdir) { if (rmdir($target)) { - CRM_Core_Session::setStatus(ts('Removed directory %1', array(1 => $target)) . '
    '); + if ($verbose) { + CRM_Core_Session::setStatus(ts('Removed directory %1', array(1 => $target)) . '
    '); + } return TRUE; } else { diff --git a/CRM/Utils/Hook.php b/CRM/Utils/Hook.php index ecf7dc4b8..78615a3bc 100644 --- a/CRM/Utils/Hook.php +++ b/CRM/Utils/Hook.php @@ -61,13 +61,23 @@ abstract class CRM_Utils_Hook { */ static private $_singleton = NULL; + /** + * @var bool + */ + private $commonIncluded = FALSE; + + /** + * @var array(string) + */ + private $commonCiviModules = array(); + /** * Constructor and getter for the singleton instance * * @return instance of $config->userHookClass */ - static function singleton() { - if (self::$_singleton == NULL) { + static function singleton($fresh = FALSE) { + if (self::$_singleton == NULL || $fresh) { $config = CRM_Core_Config::singleton(); $class = $config->userHookClass; require_once (str_replace('_', DIRECTORY_SEPARATOR, $config->userHookClass) . '.php'); @@ -84,12 +94,9 @@ function commonInvoke($numParams, &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, $fnSuffix, $fnPrefix ) { - static $included = FALSE; - static $civiModules = array(); - - if (!$included) { + if (!$this->commonIncluded) { // include external file - $included = TRUE; + $this->commonIncluded = TRUE; $config = CRM_Core_Config::singleton(); if (!empty($config->customPHPPathDir) && @@ -99,13 +106,13 @@ function commonInvoke($numParams, } if (!empty($fnPrefix)) { - $civiModules[$fnPrefix] = $fnPrefix; + $this->commonCiviModules[$fnPrefix] = $fnPrefix; } - $this->requireCiviModules($civiModules); + $this->requireCiviModules($this->commonCiviModules); } - return $this->runHooks($civiModules, $fnSuffix, + return $this->runHooks($this->commonCiviModules, $fnSuffix, $numParams, $arg1, $arg2, $arg3, $arg4, $arg5 ); } @@ -177,8 +184,7 @@ function requireCiviModules(&$moduleList) { * @return null the return value is ignored * @access public */ - static - function pre($op, $objectName, $id, &$params) { + static function pre($op, $objectName, $id, &$params) { return self::singleton()->invoke(4, $op, $objectName, $id, $params, $op, 'civicrm_pre'); } @@ -194,8 +200,7 @@ function pre($op, $objectName, $id, &$params) { * an error message which aborts the operation * @access public */ - static - function post($op, $objectName, $objectId, &$objectRef) { + static function post($op, $objectName, $objectId, &$objectRef) { return self::singleton()->invoke(4, $op, $objectName, $objectId, $objectRef, $op, 'civicrm_post'); } @@ -212,8 +217,7 @@ function post($op, $objectName, $objectId, &$objectRef) { * * @access public */ - static - function links($op, $objectName, &$objectId, &$links, &$mask = NULL) { + static function links($op, $objectName, &$objectId, &$links, &$mask = NULL) { return self::singleton()->invoke(5, $op, $objectName, $objectId, $links, $mask, 'civicrm_links'); } @@ -226,8 +230,7 @@ function links($op, $objectName, &$objectId, &$links, &$mask = NULL) { * * @return null the return value is ignored */ - static - function buildForm($formName, &$form) { + static function buildForm($formName, &$form) { return self::singleton()->invoke(2, $formName, $form, $formName, $formName, $formName, 'civicrm_buildForm'); } @@ -240,8 +243,7 @@ function buildForm($formName, &$form) { * * @return null the return value is ignored */ - static - function postProcess($formName, &$form) { + static function postProcess($formName, &$form) { return self::singleton()->invoke(2, $formName, $form, $formName, $formName, $formName, 'civicrm_postProcess'); } @@ -258,8 +260,7 @@ function postProcess($formName, &$form) { * an array of error messages which display a QF Error * @access public */ - static - function validate($formName, &$fields, &$files, &$form) { + static function validate($formName, &$fields, &$files, &$form) { return self::singleton()->invoke(4, $formName, $fields, $files, $form, $formName, 'civicrm_validate'); } @@ -277,8 +278,7 @@ function validate($formName, &$fields, &$files, &$form) { * an array of error messages which display a QF Error * @access public */ - static - function validateForm($formName, &$fields, &$files, &$form, &$errors) { + static function validateForm($formName, &$fields, &$files, &$form, &$errors) { return self::singleton()->invoke(5, $formName, $fields, $files, $form, $errors, 'civicrm_validateForm'); } @@ -293,8 +293,7 @@ function validateForm($formName, &$fields, &$files, &$form, &$errors) { * @return null the return value is ignored * @access public */ - static - function custom($op, $groupID, $entityID, &$params) { + static function custom($op, $groupID, $entityID, &$params) { return self::singleton()->invoke(4, $op, $groupID, $entityID, $params, $op, 'civicrm_custom'); } @@ -311,8 +310,7 @@ function custom($op, $groupID, $entityID, &$params) { * @return null the return value is ignored * @access public */ - static - function aclWhereClause($type, &$tables, &$whereTables, &$contactID, &$where) { + static function aclWhereClause($type, &$tables, &$whereTables, &$contactID, &$where) { return self::singleton()->invoke(5, $type, $tables, $whereTables, $contactID, $where, 'civicrm_aclWhereClause'); } @@ -329,8 +327,7 @@ function aclWhereClause($type, &$tables, &$whereTables, &$contactID, &$where) { * @return null the return value is ignored * @access public */ - static - function aclGroup($type, $contactID, $tableName, &$allGroups, &$currentGroups) { + static function aclGroup($type, $contactID, $tableName, &$allGroups, &$currentGroups) { return self::singleton()->invoke(5, $type, $contactID, $tableName, $allGroups, $currentGroups, 'civicrm_aclGroup'); } @@ -342,14 +339,28 @@ function aclGroup($type, $contactID, $tableName, &$allGroups, &$currentGroups) { * @return null the return value is ignored * @access public */ - static - function xmlMenu(&$files) { + static function xmlMenu(&$files) { return self::singleton()->invoke(1, $files, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_xmlMenu' ); } + /** + * This hook is called for declaring managed entities via API + * + * @param array $entities List of pending entities + * + * @return null the return value is ignored + * @access public + */ + static function managed(&$entities) { + return self::singleton()->invoke(1, $entities, + self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, + 'civicrm_managed' + ); + } + /** * This hook is called when rendering the dashboard (q=civicrm/dashboard) * @@ -359,8 +370,7 @@ function xmlMenu(&$files) { * @return string the html snippet to include in the dashboard * @access public */ - static - function dashboard($contactID, &$contentPlacement = self::DASHBOARD_BELOW) { + static function dashboard($contactID, &$contentPlacement = self::DASHBOARD_BELOW) { $retval = self::singleton()->invoke(2, $contactID, $contentPlacement, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_dashboard' @@ -388,8 +398,7 @@ function dashboard($contactID, &$contentPlacement = self::DASHBOARD_BELOW) { * @return array * @access public */ - static - function recent(&$recentArray) { + static function recent(&$recentArray) { return self::singleton()->invoke(1, $recentArray, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_recent' @@ -406,8 +415,7 @@ function recent(&$recentArray) { * @return null * @access public */ - static - function buildAmount($pageType, &$form, &$amount) { + static function buildAmount($pageType, &$form, &$amount) { return self::singleton()->invoke(3, $pageType, $form, $amount, self::$_nullObject, self::$_nullObject, 'civicrm_buildAmount'); } @@ -419,8 +427,7 @@ function buildAmount($pageType, &$form, &$amount) { * @return null * @access public */ - static - function buildStateProvinceForCountry($countryID, &$states) { + static function buildStateProvinceForCountry($countryID, &$states) { return self::singleton()->invoke(2, $countryID, $states, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_buildStateProvinceForCountry' @@ -436,8 +443,7 @@ function buildStateProvinceForCountry($countryID, &$states) { * @return null * @access public */ - static - function tabs(&$tabs, $contactID) { + static function tabs(&$tabs, $contactID) { return self::singleton()->invoke(2, $tabs, $contactID, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_tabs' ); @@ -451,8 +457,7 @@ function tabs(&$tabs, $contactID) { * @return null * @access public */ - static - function tokens(&$tokens) { + static function tokens(&$tokens) { return self::singleton()->invoke(1, $tokens, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_tokens' ); @@ -471,8 +476,7 @@ function tokens(&$tokens) { * @return null * @access public */ - static - function tokenValues(&$details, + static function tokenValues(&$details, $contactIDs, $jobID = NULL, $tokens = array(), @@ -490,8 +494,7 @@ function tokenValues(&$details, * @return null * @access public */ - static - function pageRun(&$page) { + static function pageRun(&$page) { return self::singleton()->invoke(1, $page, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_pageRun' @@ -508,8 +511,7 @@ function pageRun(&$page) { * @return null * @access public */ - static - function copy($objectName, &$object) { + static function copy($objectName, &$object) { return self::singleton()->invoke(2, $objectName, $object, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_copy' @@ -524,46 +526,39 @@ function copy($objectName, &$object) { * @param int $contact_id - the id of the contact who is unsubscribing * @param array / int $groups - array of groups the contact will be removed from **/ - - static - function unsubscribeGroups($op, $mailingId, $contactId, &$groups, &$baseGroups) { + static function unsubscribeGroups($op, $mailingId, $contactId, &$groups, &$baseGroups) { return self::singleton()->invoke(5, $op, $mailingId, $contactId, $groups, $baseGroups, 'civicrm_unsubscribeGroups'); } - static - function customFieldOptions($customFieldID, &$options, $detailedFormat = FALSE) { + static function customFieldOptions($customFieldID, &$options, $detailedFormat = FALSE) { return self::singleton()->invoke(3, $customFieldID, $options, $detailedFormat, self::$_nullObject, self::$_nullObject, 'civicrm_customFieldOptions' ); } - static - function searchTasks($objectType, &$tasks) { + static function searchTasks($objectType, &$tasks) { return self::singleton()->invoke(2, $objectType, $tasks, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_searchTasks' ); } - static - function eventDiscount(&$form, &$params) { + static function eventDiscount(&$form, &$params) { return self::singleton()->invoke(2, $form, $params, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_eventDiscount' ); } - static - function mailingGroups(&$form, &$groups, &$mailings) { + static function mailingGroups(&$form, &$groups, &$mailings) { return self::singleton()->invoke(3, $form, $groups, $mailings, self::$_nullObject, self::$_nullObject, 'civicrm_mailingGroups' ); } - static - function membershipTypeValues(&$form, &$membershipTypes) { + static function membershipTypeValues(&$form, &$membershipTypes) { return self::singleton()->invoke(2, $form, $membershipTypes, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_membershipTypeValues' @@ -579,16 +574,14 @@ function membershipTypeValues(&$form, &$membershipTypes) { * @return string the html snippet to include in the contact summary * @access public */ - static - function summary($contactID, &$content, &$contentPlacement = self::SUMMARY_BELOW) { + static function summary($contactID, &$content, &$contentPlacement = self::SUMMARY_BELOW) { return self::singleton()->invoke(3, $contactID, $content, $contentPlacement, self::$_nullObject, self::$_nullObject, 'civicrm_summary' ); } - static - function contactListQuery(&$query, $name, $context, $id) { + static function contactListQuery(&$query, $name, $context, $id) { return self::singleton()->invoke(4, $query, $name, $context, $id, self::$_nullObject, 'civicrm_contactListQuery' @@ -612,9 +605,7 @@ function contactListQuery(&$query, $name, $context, $id) { * * @return void */ - - static - function alterPaymentProcessorParams($paymentObj, + static function alterPaymentProcessorParams($paymentObj, &$rawParams, &$cookedParams ) { @@ -624,8 +615,7 @@ function alterPaymentProcessorParams($paymentObj, ); } - static - function alterMailParams(&$params, $context = NULL) { + static function alterMailParams(&$params, $context = NULL) { return self::singleton()->invoke(2, $params, $context, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_alterMailParams' @@ -640,24 +630,21 @@ function alterMailParams(&$params, $context = NULL) { * @return array of data to be displayed, where the key is a unique id to be used for styling (div id's) and the value is an array with keys 'label' and 'value' specifying label/value pairs * @access public */ - static - function caseSummary($caseID) { + static function caseSummary($caseID) { return self::singleton()->invoke(1, $caseID, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_caseSummary' ); } - static - function config(&$config) { + static function config(&$config) { return self::singleton()->invoke(1, $config, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_config' ); } - static - function enableDisable($recordBAO, $recordID, $isActive) { + static function enableDisable($recordBAO, $recordID, $isActive) { return self::singleton()->invoke(3, $recordBAO, $recordID, $isActive, self::$_nullObject, self::$_nullObject, 'civicrm_enableDisable' @@ -672,8 +659,7 @@ function enableDisable($recordBAO, $recordID, $isActive) { * * @access public */ - static - function optionValues(&$options, $name) { + static function optionValues(&$options, $name) { return self::singleton()->invoke(2, $options, $name, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_optionValues' @@ -686,8 +672,7 @@ function optionValues(&$options, $name) { * @param $params associated array of navigation menu entry to Modify/Add * @access public */ - static - function navigationMenu(&$params) { + static function navigationMenu(&$params) { return self::singleton()->invoke(1, $params, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_navigationMenu' @@ -705,8 +690,7 @@ function navigationMenu(&$params) { * * @access public */ - static - function merge($type, &$data, $mainId = NULL, $otherId = NULL, $tables = NULL) { + static function merge($type, &$data, $mainId = NULL, $otherId = NULL, $tables = NULL) { return self::singleton()->invoke(5, $type, $data, $mainId, $otherId, $tables, 'civicrm_merge'); } @@ -717,8 +701,7 @@ function merge($type, &$data, $mainId = NULL, $otherId = NULL, $tables = NULL) { * * @access public */ - static - function notePrivacy(&$noteValues) { + static function notePrivacy(&$noteValues) { return self::singleton()->invoke(1, $noteValues, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_notePrivacy' @@ -736,8 +719,7 @@ function notePrivacy(&$noteValues) { * @return void * @access public */ - static - function export(&$exportTempTable, &$headerRows, &$sqlColumns, &$exportMode) { + static function export(&$exportTempTable, &$headerRows, &$sqlColumns, &$exportMode) { return self::singleton()->invoke(4, $exportTempTable, $headerRows, $sqlColumns, $exportMode, self::$_nullObject, 'civicrm_export' @@ -753,8 +735,7 @@ function export(&$exportTempTable, &$headerRows, &$sqlColumns, &$exportMode) { * * @access public */ - static - function dupeQuery($obj, $type, &$query) { + static function dupeQuery($obj, $type, &$query) { return self::singleton()->invoke(3, $obj, $type, $query, self::$_nullObject, self::$_nullObject, 'civicrm_dupeQuery' @@ -772,8 +753,7 @@ function dupeQuery($obj, $type, &$query) { * * @access public */ - static - function emailProcessor($type, &$params, $mail, &$result, $action = NULL) { + static function emailProcessor($type, &$params, $mail, &$result, $action = NULL) { return self::singleton()->invoke(5, $type, $params, $mail, $result, $action, 'civicrm_emailProcessor'); } @@ -794,8 +774,7 @@ function emailProcessor($type, &$params, $mail, &$result, $action = NULL) { * @return void * @access public */ - static - function import($object, $usage, &$objectRef, &$params) { + static function import($object, $usage, &$objectRef, &$params) { return self::singleton()->invoke(4, $object, $usage, $objectRef, $params, self::$_nullObject, 'civicrm_import' @@ -811,16 +790,14 @@ function import($object, $usage, &$objectRef, &$params) { * @param array &$params the API parameters * @param array &$permisisons the associative permissions array (probably to be altered by this hook) */ - static - function alterAPIPermissions($entity, $action, &$params, &$permissions) { + static function alterAPIPermissions($entity, $action, &$params, &$permissions) { return self::singleton()->invoke(4, $entity, $action, $params, $permissions, self::$_nullObject, 'civicrm_alterAPIPermissions' ); } - static - function postSave(&$dao) { + static function postSave(&$dao) { $hookName = 'civicrm_postSave_' . $dao->getTableName(); return self::singleton()->invoke(1, $dao, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, @@ -834,8 +811,7 @@ function postSave(&$dao) { * @param array $actions Array of all Actions in contextmenu. * @param int $contactID ContactID for the summary page */ - static - function summaryActions(&$actions, $contactID = NULL) { + static function summaryActions(&$actions, $contactID = NULL) { return self::singleton()->invoke(2, $actions, $contactID, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_summaryActions' @@ -860,8 +836,7 @@ function summaryActions(&$actions, $contactID = NULL) { * * @return void modify the header and values object to pass the data u need */ - static - function searchColumns($objectName, &$headers, &$rows, &$selector) { + static function searchColumns($objectName, &$headers, &$rows, &$selector) { return self::singleton()->invoke(4, $objectName, $headers, $rows, $selector, self::$_nullObject, 'civicrm_searchColumns' @@ -877,8 +852,7 @@ function searchColumns($objectName, &$headers, &$rows, &$selector) { * @return null * @access public */ - static - function buildUFGroupsForModule($moduleName, &$ufGroups) { + static function buildUFGroupsForModule($moduleName, &$ufGroups) { return self::singleton()->invoke(2, $moduleName, $ufGroups, self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_buildUFGroupsForModule' @@ -901,8 +875,7 @@ function buildUFGroupsForModule($moduleName, &$ufGroups) { * @return null * @access public */ - static - function emailProcessorContact($email, $contactID, &$result) { + static function emailProcessorContact($email, $contactID, &$result) { return self::singleton()->invoke(3, $email, $contactID, $result, self::$_nullObject, self::$_nullObject, 'civicrm_emailProcessorContact' @@ -940,9 +913,7 @@ function emailProcessorContact($email, $contactID, &$result) { * or 0 for disable this feature. This feature works only when $ishtml=false. * */ - - static - function alterMailingLabelParams(&$args) { + static function alterMailingLabelParams(&$args) { return self::singleton()->invoke(1, $args, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, @@ -960,8 +931,7 @@ function alterMailingLabelParams(&$args) { * * @access public */ - static - function alterContent(&$content, $context, $tplName, &$object) { + static function alterContent(&$content, $context, $tplName, &$object) { return self::singleton()->invoke(4, $content, $context, $tplName, $object, self::$_nullObject, 'civicrm_alterContent' @@ -982,8 +952,7 @@ function alterContent(&$content, $context, $tplName, &$object) { * templatizing logging and other hooks * @param string $tableName (optional) the name of the table that we are interested in only */ - static - function triggerInfo(&$info, $tableName = NULL) { + static function triggerInfo(&$info, $tableName = NULL) { return self::singleton()->invoke(2, $info, $tableName, self::$_nullObject, self::$_nullObject, self::$_nullObject, @@ -991,8 +960,7 @@ function triggerInfo(&$info, $tableName = NULL) { ); } - static - function install() { + static function install() { return self::singleton()->invoke(0, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, @@ -1000,8 +968,7 @@ function install() { ); } - static - function uninstall() { + static function uninstall() { return self::singleton()->invoke(0, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, @@ -1009,8 +976,7 @@ function uninstall() { ); } - static - function enable() { + static function enable() { return self::singleton()->invoke(0, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, @@ -1018,8 +984,7 @@ function enable() { ); } - static - function disable() { + static function disable() { return self::singleton()->invoke(0, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, self::$_nullObject, @@ -1037,8 +1002,7 @@ function disable() { * 'enqueue' returns void * @access public */ - static - function upgrade($op, CRM_Queue_Queue $queue = NULL) { + static function upgrade($op, CRM_Queue_Queue $queue = NULL) { return self::singleton()->invoke(2, $op, $queue, self::$_nullObject, self::$_nullObject, self::$_nullObject, diff --git a/CRM/Utils/Hook/Drupal.php b/CRM/Utils/Hook/Drupal.php index f7e647c02..287398752 100644 --- a/CRM/Utils/Hook/Drupal.php +++ b/CRM/Utils/Hook/Drupal.php @@ -34,27 +34,33 @@ * */ class CRM_Utils_Hook_Drupal extends CRM_Utils_Hook { + + /** + * @var bool + */ + private $first = FALSE; + + /** + * @var array(string) + */ + private $allModules = array(); + function invoke($numParams, &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, $fnSuffix ) { - static $first = FALSE; - static $allModules = array(); - - if (!$first || - empty($allModules) - ) { - $first = TRUE; + if (!$this->first || empty($this->allModules)) { + $this->first = TRUE; // copied from user_module_invoke if (function_exists('module_list')) { - $allModules = module_list(); + $this->allModules = module_list(); } - $this->requireCiviModules($allModules); + $this->requireCiviModules($this->allModules); } - return $this->runHooks($allModules, $fnSuffix, + return $this->runHooks($this->allModules, $fnSuffix, $numParams, $arg1, $arg2, $arg3, $arg4, $arg5 ); } diff --git a/CRM/Utils/Hook/Drupal6.php b/CRM/Utils/Hook/Drupal6.php index d068684f1..2857a7f78 100644 --- a/CRM/Utils/Hook/Drupal6.php +++ b/CRM/Utils/Hook/Drupal6.php @@ -34,27 +34,34 @@ * */ class CRM_Utils_Hook_Drupal6 extends CRM_Utils_Hook { + + /** + * @var bool + */ + private $first = FALSE; + + /** + * @var array(string) + */ + private $allModules = array(); + function invoke($numParams, &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, $fnSuffix ) { - static $first = false; - static $allModules = array( ); - - if ( ! $first || - empty( $allModules ) ) { - $first = true; + if (! $this->first || empty($this->allModules)) { + $this->first = true; - // copied from user_module_invoke - if (function_exists('module_list')) { - $allModules = module_list(); - } + // copied from user_module_invoke + if (function_exists('module_list')) { + $this->allModules = module_list(); + } - $this->requireCiviModules( $allModules ); - } + $this->requireCiviModules($this->allModules); + } - return $this->runHooks( $allModules, $fnSuffix, - $numParams, $arg1, $arg2, $arg3, $arg4, $arg5 ); - } + return $this->runHooks($this->allModules, $fnSuffix, + $numParams, $arg1, $arg2, $arg3, $arg4, $arg5); + } } diff --git a/CRM/Utils/Hook/Joomla.php b/CRM/Utils/Hook/Joomla.php index 0b2a3067e..0661a87fe 100644 --- a/CRM/Utils/Hook/Joomla.php +++ b/CRM/Utils/Hook/Joomla.php @@ -43,28 +43,28 @@ function invoke($numParams, // not execute hooks if joomla is not loaded if (defined('_JEXEC')) { //Invoke the Joomla plugin system to observe to civicrm events. - jimport( 'joomla.plugin.helper' ); + jimport('joomla.plugin.helper'); JPluginHelper::importPlugin('civicrm'); // get app based on cli or web - if ( PHP_SAPI != 'cli' ) { - $app = JFactory::getApplication( 'administrator' ); - } else { + if (PHP_SAPI != 'cli') { + $app = JFactory::getApplication('administrator'); + } else { $app = JCli::getInstance(); } $result = $app->triggerEvent($fnSuffix, array(&$arg1, &$arg2, &$arg3, &$arg4, &$arg5)); - $moduleResult = $this->commonInvoke( $numParams, - $arg1, $arg2, $arg3, $arg4, $arg5, - $fnSuffix, 'joomla' ); - if ( ! empty( $moduleResult ) && is_array( $moduleResult ) ) { - if ( empty( $result ) ) { - $result = $moduleResult; - } else if ( is_array( $moduleResult ) ) { - $result = array_merge( $result, $moduleResult ); - } - } + $moduleResult = $this->commonInvoke($numParams, + $arg1, $arg2, $arg3, $arg4, $arg5, + $fnSuffix, 'joomla'); + if (! empty($moduleResult) && is_array($moduleResult)) { + if (empty($result)) { + $result = $moduleResult; + } else if (is_array($moduleResult)) { + $result = array_merge($result, $moduleResult); + } + } if (!empty($result)) { // collapse result returned from hooks diff --git a/CRM/Utils/JSON.php b/CRM/Utils/JSON.php index 48eeec66c..d331931b4 100644 --- a/CRM/Utils/JSON.php +++ b/CRM/Utils/JSON.php @@ -48,8 +48,7 @@ class CRM_Utils_JSON { * @return string $jsonObject JSON array * @static */ - static - function encode($params, $identifier = 'id') { + static function encode($params, $identifier = 'id') { $buildObject = array(); foreach ($params as $value) { $name = addslashes($value['name']); @@ -70,8 +69,7 @@ function encode($params, $identifier = 'id') { * * @return json encode string */ - static - function encodeSelector(&$params, $page, $total, $selectorElements) { + static function encodeSelector(&$params, $page, $total, $selectorElements) { $json = ""; $json .= "{\n"; $json .= "page: $page,\n"; @@ -104,8 +102,7 @@ function encodeSelector(&$params, $page, $total, $selectorElements) { return $json; } - static - function encodeDataTableSelector($params, $sEcho, $iTotal, $iFilteredTotal, $selectorElements) { + static function encodeDataTableSelector($params, $sEcho, $iTotal, $iFilteredTotal, $selectorElements) { $sOutput = '{'; $sOutput .= '"sEcho": ' . intval($sEcho) . ', '; $sOutput .= '"iTotalRecords": ' . $iTotal . ', '; diff --git a/CRM/Utils/Money.php b/CRM/Utils/Money.php index 29a8ec118..1ff9d4269 100644 --- a/CRM/Utils/Money.php +++ b/CRM/Utils/Money.php @@ -57,8 +57,7 @@ class CRM_Utils_Money { * * @static */ - static - function format($amount, $currency = NULL, $format = NULL, $onlyNumber = FALSE) { + static function format($amount, $currency = NULL, $format = NULL, $onlyNumber = FALSE) { if (CRM_Utils_System::isNull($amount)) { return ''; diff --git a/CRM/Utils/REST.php b/CRM/Utils/REST.php index eafe9a06f..8880243da 100644 --- a/CRM/Utils/REST.php +++ b/CRM/Utils/REST.php @@ -408,6 +408,19 @@ function process(&$args, $restInterface = TRUE) { return $result; } + if ($_SERVER['REQUEST_METHOD'] == 'GET' && strtolower (substr( $args[2],0,3)) != 'get' ) { + // get only valid for non destructive methods + require_once 'api/v3/utils.php'; + return civicrm_api3_create_error("SECURITY: All requests that modify the database must be http POST, not GET.", + array( + 'IP' => $_SERVER['REMOTE_ADDR'], + 'level' => 'security', + 'referer' => $_SERVER['HTTP_REFERER'], + 'reason' => 'Destructive HTTP GET', + ) + ); + } + // trap all fatal errors CRM_Core_Error::setCallback(array('CRM_Utils_REST', 'fatal')); $result = civicrm_api($args[1], $args[2], $params); diff --git a/CRM/Utils/Recent.php b/CRM/Utils/Recent.php index 3dde7128e..4813165e5 100644 --- a/CRM/Utils/Recent.php +++ b/CRM/Utils/Recent.php @@ -79,8 +79,7 @@ static function initialize() { * @access public * @static */ - static - function &get() { + static function &get() { self::initialize(); return self::$_recent; } @@ -97,8 +96,7 @@ function &get() { * @access public * @static */ - static - function add($title, + static function add($title, $url, $id, $type, @@ -155,8 +153,7 @@ function add($title, * @access public * @static */ - static - function del($recentItem) { + static function del($recentItem) { self::initialize(); $tempRecent = self::$_recent; @@ -184,8 +181,7 @@ function del($recentItem) { * @access public * @static */ - static - function delContact($id) { + static function delContact($id) { self::initialize(); $tempRecent = self::$_recent; diff --git a/CRM/Utils/Request.php b/CRM/Utils/Request.php index 0bb1a567a..e27dba532 100644 --- a/CRM/Utils/Request.php +++ b/CRM/Utils/Request.php @@ -51,7 +51,8 @@ class CRM_Utils_Request { /** * class constructor - */ function __construct() {} + */ + function __construct() {} /** * get the variable information from the request (GET/POST/SESSION @@ -68,8 +69,7 @@ class CRM_Utils_Request { * @static * */ - static - function retrieve($name, $type, &$store = NULL, $abort = FALSE, $default = NULL, $method = 'GET') { + static function retrieve($name, $type, &$store = NULL, $abort = FALSE, $default = NULL, $method = 'GET') { // hack to detect stuff not yet converted to new style if (!is_string($type)) { diff --git a/CRM/Utils/Rule.php b/CRM/Utils/Rule.php index 5b9558e40..21a07781d 100644 --- a/CRM/Utils/Rule.php +++ b/CRM/Utils/Rule.php @@ -36,8 +36,7 @@ require_once 'HTML/QuickForm/Rule/Email.php'; class CRM_Utils_Rule { - static - function title($str, $maxLength = 127) { + static function title($str, $maxLength = 127) { // check length etc if (empty($str) || strlen($str) > $maxLength) { @@ -52,13 +51,11 @@ function title($str, $maxLength = 127) { return TRUE; } - static - function longTitle($str) { + static function longTitle($str) { return self::title($str, 255); } - static - function variable($str) { + static function variable($str) { // check length etc if (empty($str) || strlen($str) > 31) { return FALSE; @@ -72,8 +69,7 @@ function variable($str) { return TRUE; } - static - function qfVariable($str) { + static function qfVariable($str) { // check length etc //if ( empty( $str ) || strlen( $str ) > 31 ) { if (strlen(trim($str)) == 0 || strlen($str) > 31) { @@ -89,8 +85,7 @@ function qfVariable($str) { return TRUE; } - static - function phone($phone) { + static function phone($phone) { // check length etc if (empty($phone) || strlen($phone) > 16) { return FALSE; @@ -103,8 +98,7 @@ function phone($phone) { return FALSE; } - static - function query($query) { + static function query($query) { // check length etc if (empty($query) || strlen($query) < 3 || strlen($query) > 127) { return FALSE; @@ -118,19 +112,16 @@ function query($query) { return TRUE; } - static - function url($url) { + static function url($url) { return (bool) filter_var($url, FILTER_VALIDATE_URL); } - static - function wikiURL($string) { + static function wikiURL($string) { $items = explode(' ', trim($string), 2); return self::url($items[0]); } - static - function domain($domain) { + static function domain($domain) { // not perfect, but better than the previous one; see CRM-1502 if (!preg_match('/^[A-Za-z0-9]([A-Za-z0-9\.\-]*[A-Za-z0-9])?$/', $domain)) { return FALSE; @@ -138,8 +129,7 @@ function domain($domain) { return TRUE; } - static - function date($value, $default = NULL) { + static function date($value, $default = NULL) { if (is_string($value) && preg_match('/^\d\d\d\d-?\d\d-?\d\d$/', $value) ) { @@ -148,8 +138,7 @@ function date($value, $default = NULL) { return $default; } - static - function dateTime($value, $default = NULL) { + static function dateTime($value, $default = NULL) { $result = $default; if (is_string($value) && preg_match('/^\d\d\d\d-?\d\d-?\d\d(\s\d\d:\d\d(:\d\d)?|\d\d\d\d(\d\d)?)?$/', $value) @@ -173,8 +162,7 @@ function dateTime($value, $default = NULL) { * @static * @access public */ - static - function currentDate($date, $monthRequired = TRUE) { + static function currentDate($date, $monthRequired = TRUE) { $config = CRM_Core_Config::singleton(); $d = CRM_Utils_Array::value('d', $date); @@ -266,8 +254,7 @@ function currentDate($date, $monthRequired = TRUE) { * @static * @access public */ - static - function mysqlDate($date) { + static function mysqlDate($date) { // allow date to be null if ($date == NULL) { return TRUE; @@ -280,8 +267,7 @@ function mysqlDate($date) { return FALSE; } - static - function integer($value) { + static function integer($value) { if (is_int($value)) { return TRUE; } @@ -300,8 +286,7 @@ function integer($value) { return FALSE; } - static - function positiveInteger($value) { + static function positiveInteger($value) { if (is_int($value)) { return ($value < 0) ? FALSE : TRUE; } @@ -313,18 +298,15 @@ function positiveInteger($value) { return FALSE; } - static - function numeric($value) { + static function numeric($value) { return preg_match('/(^-?\d\d*\.\d*$)|(^-?\d\d*$)|(^-?\.\d\d*$)/', $value) ? TRUE : FALSE; } - static - function numberOfDigit($value, $noOfDigit) { + static function numberOfDigit($value, $noOfDigit) { return preg_match('/^\d{' . $noOfDigit . '}$/', $value) ? TRUE : FALSE; } - static - function cleanMoney($value) { + static function cleanMoney($value) { // first remove all white space $value = str_replace(array(' ', "\t", "\n"), '', $value); @@ -355,8 +337,7 @@ function cleanMoney($value) { return $value; } - static - function money($value) { + static function money($value) { $config = CRM_Core_Config::singleton(); //only edge case when we have a decimal point in the input money @@ -379,8 +360,7 @@ function money($value) { return preg_match('/(^-?\d+\.\d?\d?$)|(^-?\.\d\d?$)/', $value) ? TRUE : FALSE; } - static - function string($value, $maxLength = 0) { + static function string($value, $maxLength = 0) { if (is_string($value) && ($maxLength === 0 || strlen($value) <= $maxLength) ) { @@ -389,20 +369,17 @@ function string($value, $maxLength = 0) { return FALSE; } - static - function boolean($value) { + static function boolean($value) { return preg_match( '/(^(1|0)$)|(^(Y(es)?|N(o)?)$)|(^(T(rue)?|F(alse)?)$)/i', $value ) ? TRUE : FALSE; } - static - function email($value) { + static function email($value) { return (bool) filter_var($value, FILTER_VALIDATE_EMAIL); } - static - function emailList($list) { + static function emailList($list) { $emails = explode(',', $list); foreach ($emails as $email) { $email = trim($email); @@ -416,8 +393,7 @@ function emailList($list) { // allow between 4-6 digits as postal code since india needs 6 and US needs 5 (or // if u disregard the first 0, 4 (thanx excel!) // FIXME: we need to figure out how to localize such rules - static - function postalCode($value) { + static function postalCode($value) { if (preg_match('/^\d{4,6}(-\d{4})?$/', $value)) { return TRUE; } @@ -433,8 +409,7 @@ function postalCode($value) { * * @return bool true if file has been uploaded, false otherwise */ - static - function asciiFile($elementValue) { + static function asciiFile($elementValue) { if ((isset($elementValue['error']) && $elementValue['error'] == 0) || (!empty($elementValue['tmp_name']) && $elementValue['tmp_name'] != 'none') ) { @@ -451,8 +426,7 @@ function asciiFile($elementValue) { * * @return bool whether file has been uploaded properly and is now in UTF-8 */ - static - function utf8File($elementValue) { + static function utf8File($elementValue) { $success = FALSE; if ((isset($elementValue['error']) && $elementValue['error'] == 0) || @@ -482,8 +456,7 @@ function utf8File($elementValue) { * * @return bool true if file has been uploaded, false otherwise */ - static - function htmlFile($elementValue) { + static function htmlFile($elementValue) { if ((isset($elementValue['error']) && $elementValue['error'] == 0) || (!empty($elementValue['tmp_name']) && $elementValue['tmp_name'] != 'none') ) { @@ -502,36 +475,31 @@ function htmlFile($elementValue) { * @access public * @static */ - static - function objectExists($value, $options) { + static function objectExists($value, $options) { $name = 'name'; if (isset($options[2])) { $name = $options[2]; } - return CRM_Core_DAO::objectExists($value, $options[0], $options[1], CRM_Utils_Array::value(2, $options, $name)); + return CRM_Core_DAO::objectExists($value, CRM_Utils_Array::value(0, $options), CRM_Utils_Array::value(1, $options), CRM_Utils_Array::value(2, $options, $name)); } - static - function optionExists($value, $options) { + static function optionExists($value, $options) { return CRM_Core_OptionValue::optionExists($value, $options[0], $options[1], $options[2], CRM_Utils_Array::value(3, $options, 'name')); } - static - function creditCardNumber($value, $type) { + static function creditCardNumber($value, $type) { require_once 'Validate/Finance/CreditCard.php'; return Validate_Finance_CreditCard::number($value, $type); } - static - function cvv($value, $type) { + static function cvv($value, $type) { require_once 'Validate/Finance/CreditCard.php'; return Validate_Finance_CreditCard::cvv($value, $type); } - static - function currencyCode($value) { + static function currencyCode($value) { static $currencyCodes = NULL; if (!$currencyCodes) { $currencyCodes = CRM_Core_PseudoConstant::currencyCode(); @@ -542,8 +510,7 @@ function currencyCode($value) { return FALSE; } - static - function xssString($value) { + static function xssString($value) { if (is_string($value)) { return preg_match('!<(vb)?script[^>]*>.*!ims', $value @@ -554,13 +521,11 @@ function xssString($value) { } } - static - function fileExists($path) { + static function fileExists($path) { return file_exists($path); } - static - function autocomplete($value, $options) { + static function autocomplete($value, $options) { if ($value) { $selectOption = CRM_Core_BAO_CustomOption::valuesByID($options['fieldID'], $options['optionGroupID']); @@ -571,8 +536,7 @@ function autocomplete($value, $options) { return TRUE; } - static - function validContact($value, $actualElementValue = NULL) { + static function validContact($value, $actualElementValue = NULL) { if ($actualElementValue) { $value = $actualElementValue; } @@ -594,8 +558,7 @@ function validContact($value, $actualElementValue = NULL) { * @static * @access public */ - static - function qfDate($date) { + static function qfDate($date) { $config = CRM_Core_Config::singleton(); $d = CRM_Utils_Array::value('d', $date); @@ -637,8 +600,7 @@ function qfDate($date) { return FALSE; } - static - function qfKey($key) { + static function qfKey($key) { return ($key) ? CRM_Core_Key::valid($key) : FALSE; } } diff --git a/CRM/Utils/Sort.php b/CRM/Utils/Sort.php index 52ed434dd..b6639c4cf 100644 --- a/CRM/Utils/Sort.php +++ b/CRM/Utils/Sort.php @@ -121,7 +121,8 @@ class CRM_Utils_Sort { * * @return void * @access public - */ function __construct(&$vars, $defaultSortOrder = NULL) { + */ + function __construct(&$vars, $defaultSortOrder = NULL) { $this->_vars = array(); $this->_response = array(); @@ -176,8 +177,7 @@ function orderBy() { * @static * @access public */ - static - function sortIDValue($index, $dir) { + static function sortIDValue($index, $dir) { return ($dir == self::DESCENDING) ? $index . '_d' : $index . '_u'; } @@ -280,8 +280,7 @@ function getCurrentSortDirection() { * @return array of items sorted by weight * @access public */ - static - function cmpFunc($a, $b) { + static function cmpFunc($a, $b) { return ($a['weight'] <= $b['weight']) ? -1 : 1; } } diff --git a/CRM/Utils/System/Drupal.php b/CRM/Utils/System/Drupal.php index 440434412..7982fab24 100644 --- a/CRM/Utils/System/Drupal.php +++ b/CRM/Utils/System/Drupal.php @@ -857,5 +857,18 @@ function replacePermission($oldPerm, $newPerms) { } } } -} + /** + * Get a list of all installed modules, including enabled and disabled ones + * + * @return array CRM_Core_Module + */ + function getModules() { + $result = array(); + $q = db_query('SELECT name, status FROM system WHERE type = \'module\' AND schema_version <> -1'); + foreach ($q as $row) { + $result[] = new CRM_Core_Module('drupal.' . $row->name, ($row->status == 1) ? TRUE : FALSE); + } + return $result; + } +} diff --git a/CRM/Utils/System/Drupal6.php b/CRM/Utils/System/Drupal6.php index e5be4ff16..ec55e56f2 100644 --- a/CRM/Utils/System/Drupal6.php +++ b/CRM/Utils/System/Drupal6.php @@ -787,5 +787,19 @@ function replacePermission($oldPerm, $newPerms) { $oldPerm, implode(', ', $newPerms) );*/ } } + + /** + * Get a list of all installed modules, including enabled and disabled ones + * + * @return array CRM_Core_Module + */ + function getModules() { + $result = array(); + $q = db_query('SELECT name, status FROM system WHERE type = \'module\' AND schema_version <> -1'); + while ($row = db_fetch_object($q)) { + $result[] = new CRM_Core_Module('drupal.' . $row->name, ($row->status == 1) ? TRUE : FALSE); + } + return $result; + } } diff --git a/CRM/Utils/System/Joomla.php b/CRM/Utils/System/Joomla.php index 16809bf16..d9bc30540 100644 --- a/CRM/Utils/System/Joomla.php +++ b/CRM/Utils/System/Joomla.php @@ -537,7 +537,6 @@ function loadBootStrap($params = array(), $loadUser = TRUE, $throwError = TRUE) // Get the framework. require $joomlaBase . '/libraries/import.php'; require $joomlaBase . '/libraries/joomla/environment/uri.php'; - require $joomlaBase . '/libraries/joomla/environment/uri.php'; require $joomlaBase . '/configuration.php'; jimport('joomla.application.cli'); @@ -564,5 +563,28 @@ public function getLoggedInUfID() { $user = JFactory::getUser(); return ($user->guest) ? NULL : $user->id; } + + /** + * Get a list of all installed modules, including enabled and disabled ones + * + * @return array CRM_Core_Module + */ + function getModules() { + $result = array(); + + $db = JFactory::getDbo(); + $query = $db->getQuery(true); + $query->select('type, folder, element, enabled') + ->from('#__extensions') + ->where('type =' . $db->Quote('plugin')); + $plugins = $db->setQuery($query)->loadAssocList(); + foreach ($plugins as $plugin) { + // question: is the folder really a critical part of the plugin's name? + $name = implode('.', array('joomla', $plugin['type'], $plugin['folder'], $plugin['element'])); + $result[] = new CRM_Core_Module($name, $plugin['enabled'] ? TRUE : FALSE); + } + + return $result; + } } diff --git a/CRM/Utils/System/UnitTests.php b/CRM/Utils/System/UnitTests.php index e67b6e437..d2a222530 100644 --- a/CRM/Utils/System/UnitTests.php +++ b/CRM/Utils/System/UnitTests.php @@ -155,5 +155,9 @@ function logout() { function getUFLocale() { return NULL; } + + function getModules() { + return array(); + } } diff --git a/CRM/Utils/Time.php b/CRM/Utils/Time.php index 32eada764..567f0ff98 100644 --- a/CRM/Utils/Time.php +++ b/CRM/Utils/Time.php @@ -61,8 +61,7 @@ static function getTime($returnFormat = 'YmdHis') { * * @return int, seconds since epoch */ - static - function getTimeRaw() { + static function getTimeRaw() { return time() + self::$_delta; } @@ -76,8 +75,7 @@ function getTimeRaw() { * * @static */ - static - function setTime($newDateTime, $returnFormat = 'YmdHis') { + static function setTime($newDateTime, $returnFormat = 'YmdHis') { self::$_delta = strtotime($newDateTime) - time(); return self::getTime($returnFormat); } @@ -85,8 +83,7 @@ function setTime($newDateTime, $returnFormat = 'YmdHis') { /** * Remove any time overrides */ - static - function resetTime() { + static function resetTime() { self::$_delta = 0; } } diff --git a/CRM/Utils/Zip.php b/CRM/Utils/Zip.php new file mode 100644 index 000000000..931567988 --- /dev/null +++ b/CRM/Utils/Zip.php @@ -0,0 +1,139 @@ +numFiles; + + $base = FALSE; + $baselen = FALSE; + + for ($i = 0; $i < $cnt; $i++) { + $filename = $zip->getNameIndex($i); + if ($base === FALSE) { + if (preg_match('/^[^\/]+\/$/', $filename) && $filename != './' && $filename != '../') { + $base = $filename; + $baselen = strlen($filename); + } else { + return FALSE; + } + } elseif (0 != substr_compare($base, $filename, 0, $baselen)) { + return FALSE; + } + } + + return $base; + } + + /** + * Given a zip file, find all directory names in the root + * + * @return array(string), no trailing / + */ + static public function findBaseDirs(ZipArchive $zip) { + $cnt = $zip->numFiles; + $basedirs = array(); + + for ($i = 0; $i < $cnt; $i++) { + $filename = $zip->getNameIndex($i); + // hypothetically, ./ or ../ would not be legit here + if (preg_match('/^[^\/]+\/$/', $filename) && $filename != './' && $filename != '../') { + $basedirs[] = rtrim($filename, '/'); + } + } + + return $basedirs; + } + + /** + * Determine the name of the folder within a zip + * + * @return string or FALSE + */ + static public function guessBasedir(ZipArchive $zip, $expected) { + $candidate = FALSE; + $basedirs = CRM_Utils_Zip::findBaseDirs($zip); + if (in_array($expected, $basedirs)) { + $candidate = $expected; + } elseif (count($basedirs) == 1) { + $candidate = array_shift($basedirs); + } + if ($candidate !== FALSE && preg_match('/^[a-zA-Z0-9]/', $candidate)) { + return $candidate; + } else { + return FALSE; + } + } + + + /** + * An inefficient helper for creating a ZIP file from data in memory. + * This is only intended for building temp files for unit-testing. + * + * @param $zipName string, file name + * @param $dirs array, list of directory paths + * @param $files array, keys are file names and values are file contents + * @return bool + */ + static public function createTestZip($zipName, $dirs, $files) { + $zip = new ZipArchive(); + $res = $zip->open($zipName, ZipArchive::CREATE); + if ($res === TRUE) { + foreach ($dirs as $dir) { + if (!$zip->addEmptyDir($dir)) { + return FALSE; + } + } + foreach ($files as $fileName => $fileData) { + if (!$zip->addFromString($fileName, $fileData)) { + return FALSE; + } + } + $zip->close(); + } else { + return FALSE; + } + return TRUE; + } +} diff --git a/Sponsors.txt b/Sponsors.txt index 56148b1fa..bca342961 100644 --- a/Sponsors.txt +++ b/Sponsors.txt @@ -13,6 +13,7 @@ Anthony Camilleri Ariel Gold Brian Shaughnessy Chris Ward +Dave Moreton Eileen McNaughton Eliet Henderson Erik Hommel @@ -35,6 +36,8 @@ Matt Neimayer Micah Lee Michael Daryabeygi Michael McAndrew +Nicolas Ganivet +Noah Miller Parvez Saleh Peter Gehres Peter McAndrew diff --git a/api/v3/Activity.php b/api/v3/Activity.php index ee70c94d7..c93968fa8 100644 --- a/api/v3/Activity.php +++ b/api/v3/Activity.php @@ -175,7 +175,6 @@ function civicrm_api3_activity_create($params) { * @param array $params (reference) array of parameters determined by getfields */ function _civicrm_api3_activity_create_spec(&$params) { - $params['subject']['api.required'] = 1; //default for source_contact_id = currently logged in user $params['source_contact_id']['api.default'] = 'user_contact_id'; diff --git a/api/v3/Case.php b/api/v3/Case.php index 183e9c27a..83675297e 100644 --- a/api/v3/Case.php +++ b/api/v3/Case.php @@ -37,7 +37,6 @@ * */ - require_once 'CRM/Case/BAO/Case.php'; require_once 'CRM/Case/PseudoConstant.php'; @@ -67,6 +66,10 @@ */ function civicrm_api3_case_create($params) { + if (empty($params['contact_id']) && isset($params['client_id'])) { + $params['contact_id'] = $params['client_id']; + } + if (isset($params['id']) || isset($params['case_id'])) { return _api_case_update($params); } @@ -105,10 +108,10 @@ function civicrm_api3_case_create($params) { return civicrm_api3_create_error('Case not created. Please check input params.'); } - // Add client role - $contactParams = array('case_id' => $caseBAO->id, 'contact_id' => $params['contact_id']); - - CRM_Case_BAO_Case::addCaseToContact($contactParams); + foreach ((array) $params['contact_id'] as $cid) { + $contactParams = array('case_id' => $caseBAO->id, 'contact_id' => $cid); + CRM_Case_BAO_Case::addCaseToContact($contactParams); + } // Initialize XML processor with $params require_once 'CRM/Case/XMLProcessor/Process.php'; @@ -147,15 +150,13 @@ function civicrm_api3_case_create($params) { */ function civicrm_api3_case_get($params) { - //get mode - if (CRM_Utils_Array::value('id', $params)) { - $caseId = $params['id']; - } - elseif (CRM_Utils_Array::value('case_id', $params)) { - $caseId = $params['case_id']; + // Get mode + if (!($caseId = CRM_Utils_Array::value('id', $params))) { + $caseId = CRM_Utils_Array::value('case_id', $params); } - if (!empty($caseId)) { - //validate param + + if ($caseId) { + // Validate param if (!is_numeric($caseId)) { return civicrm_api3_create_error('Invalid parameter: case_id. Must provide a numeric value.'); } @@ -188,16 +189,16 @@ function civicrm_api3_case_get($params) { } //search by client - if ($client = $params['client_id']) { + if ($client = CRM_Utils_Array::value('client_id', $params)) { - if (!is_numeric($client)) { - return civicrm_api3_create_error('Invalid parameter: client_id. Must provide a numeric value.'); + $ids = array(); + foreach ((array) $client as $cid) { + if (is_numeric($cid)) { + $ids = array_merge($ids, CRM_Case_BAO_Case::retrieveCaseIdsByContactId($cid, TRUE)); + } } - - $ids = CRM_Case_BAO_Case::retrieveCaseIdsByContactId($client, TRUE); if (empty($ids)) { - return civicrm_api3_create_success(array()); } @@ -210,15 +211,13 @@ function civicrm_api3_case_get($params) { } //search by activity - if ($act = $params['activity_id']) { + if ($act = CRM_Utils_Array::value('activity_id', $params)) { if (!is_numeric($act)) { return civicrm_api3_create_error('Invalid parameter: activity_id. Must provide a numeric value.'); } - $sql = "SELECT case_id FROM civicrm_case_activity WHERE activity_id = $act"; - - $caseId = CRM_Core_DAO::singleValueQuery($sql); + $caseId = CRM_Case_BAO_Case::getCaseIdByActivityId($act); if (!$caseId) { return civicrm_api3_create_success(array()); @@ -230,7 +229,7 @@ function civicrm_api3_case_get($params) { } //search by contacts - if ($contact = $params['contact_id']) { + if ($contact = CRM_Utils_Array::value('contact_id', $params)) { if (!is_numeric($contact)) { return civicrm_api3_create_error('Invalid parameter: contact_id. Must provide a numeric value.'); } @@ -256,8 +255,7 @@ function civicrm_api3_case_get($params) { } /** - * Depreciated. Use activity API instead - * + * Deprecated. Use activity API instead */ function civicrm_api3_case_activity_create($params) { require_once 'api/v3/Activity.php'; @@ -286,8 +284,6 @@ function _api_case_update($params) { if (empty($params['case_id'])) { $params['case_id'] = CRM_Utils_Array::value('id', $params); } - require_once 'CRM/Core/Transaction.php'; - $tx = new CRM_Core_Transaction(); civicrm_api3_verify_mandatory($params); $errors = array(); @@ -367,7 +363,6 @@ function civicrm_api3_case_delete($params) { $errors = _civicrm_api3_case_check_params($params, 'delete'); if ($errors) { - return $errors; } @@ -405,6 +400,7 @@ function _civicrm_api3_case_read($caseId) { if ($dao->find(TRUE)) { $case = array(); _civicrm_api3_object_to_array($dao, $case); + $case['client_id'] = $dao->retrieveContactIdsByCaseId($caseId); //handle multi-value case type $sep = CRM_Core_DAO::VALUE_SEPARATOR; @@ -423,9 +419,12 @@ function _civicrm_api3_case_read($caseId) { function _civicrm_api3_case_format_params(&$params, $mode) { switch ($mode) { case 'create': - if (!CRM_Utils_Array::value('start_date', $params)) { + if (empty($params['start_date'])) { $params['start_date'] = date('YmdHis'); } + if (empty($params['contact_id']) && isset($params['client_id'])) { + $params['contact_id'] = $params['client_id']; + } // figure out case type id, if not supplied if (!CRM_Utils_Array::value('case_type_id', $params)) { $sql = " @@ -473,7 +472,7 @@ function _civicrm_api3_case_check_params($params, $mode = NULL) { return civicrm_api3_create_error('Missing input parameters. Must provide case_type or case_type_id.'); } - $required = array('contact_id' => 'num', 'subject' => 'str'); + $required = array('contact_id' => '', 'subject' => 'str'); if (!CRM_Utils_Array::value('case_type', $params)) { diff --git a/api/v3/Contact.php b/api/v3/Contact.php index d70f465dc..6cc35aab8 100644 --- a/api/v3/Contact.php +++ b/api/v3/Contact.php @@ -169,7 +169,7 @@ function _civicrm_api3_contact_create_spec(&$params) { function civicrm_api3_contact_get($params) { $options = array(); _civicrm_api3_contact_get_supportanomalies($params, $options); - $contacts = _civicrm_api3_get_using_query_object($params,$options); + $contacts = _civicrm_api3_get_using_query_object('contact', $params, $options); // CRM-7929 Quick fix by colemanw // TODO: Figure out what function is responsible for prepending 'individual_' to these keys @@ -725,19 +725,24 @@ function civicrm_api3_contact_quicksearch($params) { $listCurrentEmployer = FALSE; } } - + //return organization name if doesn't exist in db if (empty($contactList)) { if (CRM_Utils_Array::value('org', $params)) { if ($listCurrentEmployer && !empty($currEmpDetails)) { $contactList = array( - 'data' => $currEmpDetails['data'], - 'id' => $currEmpDetails['id'], + array( + 'data' => $currEmpDetails['data'], + 'id' => $currEmpDetails['id'] + ) ); } else { - $contactList = array('data' => CRM_Utils_Array::value('s', $params), - 'id' => CRM_Utils_Array::value('s', $params), + $contactList = array( + array( + 'data' => $name, + 'id' => $name + ) ); } } diff --git a/api/v3/CustomSearch.php b/api/v3/CustomSearch.php new file mode 100644 index 000000000..a356722b0 --- /dev/null +++ b/api/v3/CustomSearch.php @@ -0,0 +1,75 @@ + $params['option_group_id']) + ); } + if (array_key_exists('component', $params)) { + if (empty($params['component'])) { + $params['component_id'] = ''; + } else { + $params['component_id'] = array_search($params['component'], CRM_Core_PseudoConstant::component()); + } + unset($params['component']); + } if (CRM_Utils_Array::value('id', $params)) { $ids = array('optionValue' => $params['id']); @@ -85,6 +98,9 @@ function civicrm_api3_option_value_create($params) { */ function _civicrm_api3_option_value_create_spec(&$params) { $params['is_active']['api.default'] = 1; + $params['component']['type'] = CRM_Utils_Type::T_STRING; + $params['component']['options'] = array_values(CRM_Core_PseudoConstant::component()); + // $params['component_id']['pseudoconstant'] = 'component'; } /** diff --git a/api/v3/PaymentProcessorType.php b/api/v3/PaymentProcessorType.php new file mode 100644 index 000000000..aa5875c2c --- /dev/null +++ b/api/v3/PaymentProcessorType.php @@ -0,0 +1,124 @@ +id]); + + return civicrm_api3_create_success($relType, $params, 'payment_processor_type', 'create', $payProcType); +} + +/** + * Adjust Metadata for Create action + * + * The metadata is used for setting defaults, documentation & validation + * @param array $params array or parameters determined by getfields + */ +function _civicrm_api3_payment_processor_type_create_spec(&$params) { + $params['billing_mode']['api.required'] = 1; + $params['class_name']['api.required'] = 1; + $params['is_active']['api.default'] = 1; + $params['is_recur']['api.default'] = FALSE; + // FIXME bool support // $params['is_recur']['api.required'] = 1; + $params['name']['api.required'] = 1; + $params['title']['api.required'] = 1; +} + +/** + * Function to get all payment_processor type + * retruns An array of PaymentProcessor_type + * @access public + * {@getfields PaymentProcessorType_get} + * @example PaymentProcessorTypeGet.php + */ +function civicrm_api3_payment_processor_type_get($params) { + return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params); +} + +/** + * Delete a payment_processor type delete + * + * @param id of payment_processor type $id + * + * @return array API Result Array + * {@getfields PaymentProcessorType_delete} + * @static void + * @access public + */ +function civicrm_api3_payment_processor_type_delete($params) { + + require_once 'CRM/Utils/Rule.php'; + if ($params['id'] != NULL && !CRM_Utils_Rule::integer($params['id'])) { + return civicrm_api3_create_error('Invalid value for payment processor type ID'); + } + + $payProcTypeBAO = new CRM_Core_BAO_PaymentProcessorType(); + $result = $payProcTypeBAO->del($params['id']); + if (!$result) { + return civicrm_api3_create_error('Could not delete payment processor type'); + } + return civicrm_api3_create_success($result, $params, 'payment_processor_type', 'delete', $payProcTypeBAO); +} diff --git a/api/v3/ReportTemplate.php b/api/v3/ReportTemplate.php new file mode 100644 index 000000000..a5331b652 --- /dev/null +++ b/api/v3/ReportTemplate.php @@ -0,0 +1,172 @@ + array( + 'name' => 'id', + 'type' => 1, + 'required' => 1, + ), + 'option_group_id' => array( + 'name' => 'option_group_id', + 'type' => 1, + 'required' => 1, + 'FKClassName' => 'CRM_Core_DAO_OptionGroup', + ), + 'label' => array( + 'name' => 'label', + 'type' => 2, + 'title' => 'Option Label', + 'required' => 1, + 'maxlength' => 255, + 'size' => 45, + ), + 'value' => array( + 'name' => 'value', + 'type' => 2, + 'title' => 'Option Value', + 'required' => 1, + 'maxlength' => 512, + 'size' => 45, + ), + 'name' => array( + 'name' => 'name', + 'type' => 2, + 'title' => 'Option Name', + 'maxlength' => 255, + 'size' => 45, + 'import' => 1, + 'where' => 'civicrm_option_value.name', + 'export' => 1, + ), + 'grouping' => array( + 'name' => 'grouping', + 'type' => 2, + 'title' => 'Option Grouping Name', + 'maxlength' => 255, + 'size' => 45, + ), + 'filter' => array( + 'name' => 'filter', + 'type' => 1, + 'title' => 'Filter', + ), + 'is_default' => array( + 'name' => 'is_default', + 'type' => 16, + ), + 'weight' => array( + 'name' => 'weight', + 'type' => 1, + 'title' => 'Weight', + 'required' => 1, + ), + 'description' => array( + 'name' => 'description', + 'type' => 32, + 'title' => 'Description', + 'rows' => 8, + 'cols' => 60, + ), + 'is_optgroup' => array( + 'name' => 'is_optgroup', + 'type' => 16, + ), + 'is_reserved' => array( + 'name' => 'is_reserved', + 'type' => 16, + ), + 'is_active' => array( + 'name' => 'is_active', + 'type' => 16, + ), + 'component_id' => array( + 'name' => 'component_id', + 'type' => 1, + 'FKClassName' => 'CRM_Core_DAO_Component', + ), + 'domain_id' => array( + 'name' => 'domain_id', + 'type' => 1, + 'FKClassName' => 'CRM_Core_DAO_Domain', + ), + 'visibility_id' => array( + 'name' => 'visibility_id', + 'type' => 1, + 'default' => 'UL', + ), + )); +}*/ diff --git a/api/v3/examples/PaymentProcessorTypeCreate.php b/api/v3/examples/PaymentProcessorTypeCreate.php new file mode 100644 index 000000000..8d8995a6a --- /dev/null +++ b/api/v3/examples/PaymentProcessorTypeCreate.php @@ -0,0 +1,81 @@ + 3, + 'sequential' => 1, + 'name' => 'API_Test_PP', + 'title' => 'API Test Payment Processor', + 'class_name' => 'CRM_Core_Payment_APITest', + 'billing_mode' => 'form', + 'is_recur' => 0, +); + + require_once 'api/api.php'; + $result = civicrm_api( 'payment_processor_type','create',$params ); + + return $result; +} + +/* + * Function returns array of result expected from previous function + */ +function payment_processor_type_create_expectedresult(){ + + $expectedResult = array( + 'is_error' => 0, + 'version' => 3, + 'count' => 1, + 'id' => 1, + 'values' => array( + '0' => array( + 'id' => 1, + 'name' => 'API_Test_PP', + 'title' => 'API Test Payment Processor', + 'description' => '', + 'is_active' => 1, + 'is_default' => '', + 'user_name_label' => '', + 'password_label' => '', + 'signature_label' => '', + 'subject_label' => '', + 'class_name' => 'CRM_Core_Payment_APITest', + 'url_site_default' => '', + 'url_api_default' => '', + 'url_recur_default' => '', + 'url_button_default' => '', + 'url_site_test_default' => '', + 'url_api_test_default' => '', + 'url_recur_test_default' => '', + 'url_button_test_default' => '', + 'billing_mode' => 1, + 'is_recur' => 0, + 'payment_type' => '', + ), + ), +); + + return $expectedResult ; +} + + + + +/* +* This example has been generated from the API test suite. The test that created it is called +* +* testPaymentProcessorTypeCreate and can be found in +* http://svn.civicrm.org/civicrm/branches/v3.4/tests/phpunit/CiviTest/api/v3/PaymentProcessorTypeTest.php +* +* You can see the outcome of the API tests at +* http://tests.dev.civicrm.org/trunk/results-api_v3 +* and review the wiki at +* http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs +* Read more about testing here +* http://wiki.civicrm.org/confluence/display/CRM/Testing +*/ \ No newline at end of file diff --git a/api/v3/examples/PaymentProcessorTypeDelete.php b/api/v3/examples/PaymentProcessorTypeDelete.php new file mode 100644 index 000000000..d71b6c579 --- /dev/null +++ b/api/v3/examples/PaymentProcessorTypeDelete.php @@ -0,0 +1,50 @@ + 1, + 'version' => 3, +); + + require_once 'api/api.php'; + $result = civicrm_api( 'payment_processor_type','delete',$params ); + + return $result; +} + +/* + * Function returns array of result expected from previous function + */ +function payment_processor_type_delete_expectedresult(){ + + $expectedResult = array( + 'is_error' => 0, + 'version' => 3, + 'count' => 1, + 'values' => true, +); + + return $expectedResult ; +} + + + + +/* +* This example has been generated from the API test suite. The test that created it is called +* +* testPaymentProcessorTypeDelete and can be found in +* http://svn.civicrm.org/civicrm/branches/v3.4/tests/phpunit/CiviTest/api/v3/PaymentProcessorTypeTest.php +* +* You can see the outcome of the API tests at +* http://tests.dev.civicrm.org/trunk/results-api_v3 +* and review the wiki at +* http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs +* Read more about testing here +* http://wiki.civicrm.org/confluence/display/CRM/Testing +*/ \ No newline at end of file diff --git a/api/v3/utils.php b/api/v3/utils.php index edb5d6802..96538a250 100644 --- a/api/v3/utils.php +++ b/api/v3/utils.php @@ -205,9 +205,12 @@ function civicrm_api3_create_success($values = 1, $params = array( elseif ($action != 'getfields') { $apiFields = civicrm_api($entity, 'getfields', array('version' => 3) + $params); } + else { + $apiFields = FALSE; + } $allFields = array(); - if (is_array(CRM_Utils_Array::value('values', $apiFields))) { + if ($action != 'getfields' && is_array($apiFields) && is_array(CRM_Utils_Array::value('values', $apiFields))) { $allFields = array_keys($apiFields['values']); } $paramFields = array_keys($params); @@ -350,9 +353,15 @@ function _civicrm_api3_store_values(&$fields, &$params, &$values) { * @param array $options array of options (so we can modify the filter) * @param bool $getCount are we just after the count */ -function _civicrm_api3_get_using_query_object($params, $additional_options = array(),$getCount = null){ +function _civicrm_api3_get_using_query_object($object_type, $params, $additional_options = array(), $getCount = null){ + + // Convert id to e.g. contact_id + if (empty($params[$object_type . '_id']) && isset($params['id'])) { + $params[$object_type . '_id'] = $params['id']; + } + unset($params['id']); - $options = _civicrm_api3_get_options_from_params($params, TRUE); + $options = _civicrm_api3_get_options_from_params($params, TRUE); $inputParams = array_merge( CRM_Utils_Array::value('input_params', $options, array()), @@ -872,7 +881,7 @@ function _civicrm_api3_basic_get($bao_name, &$params, $returnAsSuccess = TRUE, $ $bao = new $bao_name(); _civicrm_api3_dao_set_filter($bao, $params, TRUE,$entity); if ($returnAsSuccess) { - return civicrm_api3_create_success(_civicrm_api3_dao_to_array($bao, $params, FALSE, $entity), $params, $bao); + return civicrm_api3_create_success(_civicrm_api3_dao_to_array($bao, $params, FALSE, $entity), $params, $entity); } else { return _civicrm_api3_dao_to_array($bao, $params, FALSE, $entity); diff --git a/civicrm-version.php b/civicrm-version.php index eb3e02761..b5fb306b1 100644 --- a/civicrm-version.php +++ b/civicrm-version.php @@ -1,7 +1,7 @@ '4.2.beta5', + return array( 'version' => '4.2.0', 'cms' => 'Drupal', - 'revision' => '41901' ); + 'revision' => '42055' ); } diff --git a/civicrm.config.php b/civicrm.config.php index a6c270a71..c133e1fc9 100644 --- a/civicrm.config.php +++ b/civicrm.config.php @@ -68,7 +68,7 @@ function civicrm_conf_init() { //if its wordpress $confdir = $currentDir . DIRECTORY_SEPARATOR . '..'; } else { - $confdir = $currentDir . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'sites'; + $confdir = $currentDir . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR; } } diff --git a/install/index.php b/install/index.php index 598c0e36e..98bdeb8a2 100644 --- a/install/index.php +++ b/install/index.php @@ -957,15 +957,6 @@ function createDatabaseIfNotExists($server, $username, $password, $database) { function install($config) { global $installDirPath; - echo ''; - echo '

    Installing CiviCRM...

    -

    I am now running through the installation steps (this should take a few minutes)

    -

    If you receive a fatal error, refresh this page to continue the installation

    '; - - flush(); - - echo '
    Building database schema and setup files...
    '; - flush(); // create database if does not exists $this->createDatabaseIfNotExists($config['mysql']['server'], diff --git a/joomla/admin/configure.php b/joomla/admin/configure.php index dbb18048e..c89de181e 100644 --- a/joomla/admin/configure.php +++ b/joomla/admin/configure.php @@ -90,8 +90,8 @@ function civicrm_main() { // generate backend config file $string = " $jConfig->password, 'CMSdbHost' => $jConfig->host, 'CMSdbName' => $jConfig->db, - 'siteKey' => md5(uniqid('', TRUE) . $liveSite), + 'siteKey' => $siteKey, ); if ($frontend) { diff --git a/joomla/admin/plugins/civicrm/civicrm.php b/joomla/admin/plugins/civicrm/civicrm.php index 0c83041ec..60b5966e9 100644 --- a/joomla/admin/plugins/civicrm/civicrm.php +++ b/joomla/admin/plugins/civicrm/civicrm.php @@ -1,8 +1,7 @@ register(); - + require_once JPATH_ROOT.'/administrator/components/com_civicrm/civicrm.settings.php'; require_once 'CRM/Core/Config.php'; - $civiConfig = CRM_Core_Config::singleton(); + $config = CRM_Core_Config::singleton( ); // Reset Navigation require_once 'CRM/Core/BAO/UFMatch.php'; - CRM_Core_BAO_UFMatch::deleteUser($user['id']); + CRM_Core_BAO_UFMatch::deleteUser( $user['id'] ); } // Reset CiviCRM user/contact navigation cache public function civicrmResetNavigation() { + // Instantiate CiviCRM - define('CIVICRM_SETTINGS_PATH', JPATH_ROOT . '/' . 'administrator/components/com_civicrm/civicrm.settings.php'); - require_once CIVICRM_SETTINGS_PATH; + if ( !class_exists('CRM_Core_Config') ) { + require_once JPATH_ROOT.'/administrator/components/com_civicrm/civicrm.settings.php'; + require_once 'CRM/Core/Config.php'; + } - require_once 'CRM/Core/ClassLoader.php'; - CRM_Core_ClassLoader::singleton()->register(); - - require_once 'CRM/Core/Config.php'; - $config = &CRM_Core_Config::singleton(); + $config = CRM_Core_Config::singleton( ); // Reset Navigation require_once 'CRM/Core/BAO/Navigation.php'; - CRM_Core_BAO_Navigation::resetNavigation(); + CRM_Core_BAO_Navigation::resetNavigation( ); } } - diff --git a/joomla/admin/plugins/civicrmsys/civicrmsys.php b/joomla/admin/plugins/civicrmsys/civicrmsys.php new file mode 100644 index 000000000..849859429 --- /dev/null +++ b/joomla/admin/plugins/civicrmsys/civicrmsys.php @@ -0,0 +1,126 @@ +scheduleCivicrmRebuild(); + } + + /** + * After extension source code has been installed + * + * @param JInstaller Installer object + * @param int Extension Identifier + */ + public function onExtensionAfterInstall($installer, $eid) + { + if ($installer->extension instanceof JTableExtension && $installer->extension->folder == 'civicrm') { + //x $args = func_get_args(); dump($args, 'onExtensionAfterInstall'); + $this->scheduleCivicrmRebuild(); + } + } + + /** + * After extension source code has been updated(?) + * + * @param JInstaller Installer object + * @param int Extension identifier + */ + public function onExtensionAfterUpdate($installer, $eid) + { + // TODO test //if ($installer->extension instanceof JTableExtension && $installer->extension->folder == 'civicrm') { + $this->scheduleCivicrmRebuild(); + //} + } + + /** + * After extension configuration has been saved + */ + public function onExtensionAfterSave($type, $ext) + { + // Called by "Manage Plugins" use-case -- per-plugin forms + if ($type == 'com_plugins.plugin' && $ext->folder == 'civicrm') { + $this->scheduleCivicrmRebuild(); + } + } + + public function onContentCleanCache($defaultgroup, $cachebase) { + // Called by "Manage Plugins" use-case -- both bulk operations and per-plugin forms + if ($defaultgroup == 'com_plugins') { + $this->scheduleCivicrmRebuild(); + } + } + + /** + * After extension source code has been removed + * + * @param JInstaller Installer object + * @param int Extension identifier + */ + public function onExtensionAfterUninstall($installer, $eid, $result) + { + $this->scheduleCivicrmRebuild(); + } + + /** + * Ensure that the rebuild will be done + */ + public function scheduleCivicrmRebuild() { + if ($this->scheduled) { + return; + } + register_shutdown_function(array($this, 'doCivicrmRebuild')); + // dump(TRUE, 'scheduled'); + $this->scheduled = TRUE; + } + + /** + * Perform the actual rebuild + */ + public function doCivicrmRebuild() { + // dump($this, 'doCivicrmRebuild'); + $this->bootstrap(); + CRM_Core_Invoke::rebuildMenuAndCaches(TRUE); + } + + /** + * Make sure that CiviCRM is loaded + */ + protected function bootstrap() { + if (defined('CIVICRM_UF')) { + // already loaded settings + return; + } + + $app = JFactory::getApplication(); // copied from example -- but why? + + define('CIVICRM_SETTINGS_PATH', JPATH_ROOT . '/' . 'administrator/components/com_civicrm/civicrm.settings.php'); + require_once CIVICRM_SETTINGS_PATH; + + require_once 'CRM/Core/ClassLoader.php'; + CRM_Core_ClassLoader::singleton()->register(); + + require_once 'CRM/Core/Config.php'; + $civiConfig = CRM_Core_Config::singleton(); + } +} diff --git a/joomla/admin/plugins/civicrmsys/civicrmsys.xml b/joomla/admin/plugins/civicrmsys/civicrmsys.xml new file mode 100644 index 000000000..89bc74783 --- /dev/null +++ b/joomla/admin/plugins/civicrmsys/civicrmsys.xml @@ -0,0 +1,16 @@ + + + CiviCRM System Listener + CiviCRM, LLC + January 2011 + Copyright (C) 2005 - 2011 CiviCRM. All rights reserved. + GNU Affero General Public License version 2 or later + info@civicrm.org + www.civicrm.org + 1.0 + Refresh CiviCRM configuration when related extensions are added or remove + + civicrmsys.php + index.html + + diff --git a/joomla/admin/plugins/civicrmsys/index.html b/joomla/admin/plugins/civicrmsys/index.html new file mode 100644 index 000000000..2efb97f31 --- /dev/null +++ b/joomla/admin/plugins/civicrmsys/index.html @@ -0,0 +1 @@ + diff --git a/js/rest.js b/js/rest.js index 07b32519b..f77b84ca2 100644 --- a/js/rest.js +++ b/js/rest.js @@ -76,17 +76,12 @@ var options {ajaxURL:"{$config->userFrameworkResourceURL}"; url: settings.ajaxURL, dataType: 'json', data: params, + type:'POST', context:this, success: function(result) { settings.callBack.call(this,result,settings); } }); - /* - $.getJSON.call(this,settings.ajaxURL,params,function(result){ - console.log(this); - console.log("bbb"); - return settings.callBack.call(self,result,settings);}); - */ }; $.fn.crmAutocomplete = function (params,options) { @@ -193,7 +188,7 @@ var options {ajaxURL:"{$config->userFrameworkResourceURL}"; } var t= tplURL.replace("civicrm/example",p); if (typeof(params)=='string') { - if (t[0]="/") + if (t[0]=="/") t= t.substring(1); return t.replace("placeholder",params); } else diff --git a/packages/CA/Config/Curl.php b/packages/CA/Config/Curl.php new file mode 100644 index 000000000..51861e5ed --- /dev/null +++ b/packages/CA/Config/Curl.php @@ -0,0 +1,135 @@ + filemtime($policy['fallback_cafile']) + $policy['fallback_ttl']) { + throw new Exception("Certificate Authority file is too old. Please contact the system administrator. See also: " . $policy['fallback_cafile']); + } else { + return new CA_Config_Curl(TRUE, TRUE, $policy['fallback_cafile']); + } + } else { + // Most PHP builds include a built-in reference to a CA list + return new CA_Config_Curl(TRUE, TRUE, NULL); + } + } + + public function __construct($enableSSL, $verifyPeer, $caFile) + { + $this->enableSSL = $enableSSL; + $this->verifyPeer = $verifyPeer; + $this->caFile = $caFile; + } + + /** + * Whether SSL is supported at all + * + * @return bool + */ + public function isEnableSSL() + { + return $this->enableSSL; + } + + /** + * Whether server certifiates should be verified + * + * @return bool + */ + public function isVerifyPeer() + { + return $this->verifyPeer; + } + + /** + * Path to a CA file (if available/applicable) + * + * @return string + */ + public function getCaFile() + { + return $this->caFile; + } + + /** + * Format the CA config in a manner appropriate to curl_setopt_array() + * + * @return array + */ + public function toCurlOptions() + { + $options = array(); + $options[CURLOPT_SSL_VERIFYPEER] = $this->verifyPeer; + $options[CURLOPT_SSL_VERIFYHOST] = $this->verifyPeer ? 2 : 0; + if ($this->caFile) { + $options[CURLOPT_CAINFO] = $this->caFile; + } // else: system default + return $options; + } +} diff --git a/packages/CA/Config/Stream.php b/packages/CA/Config/Stream.php new file mode 100644 index 000000000..d7b39b559 --- /dev/null +++ b/packages/CA/Config/Stream.php @@ -0,0 +1,140 @@ +isEnableSSL()) { + * $context = stream_context_create(array( + * 'ssl' => $caConfig->toStreamOptions(), + * )); + * $data = file_get_contents('https://example.com/', 0, $context); + * } else { + * printf("This system does not support SSL."); + * } + * @endcode + */ +class CA_Config_Stream +{ + static private $_singleton; + + /** + * Provide a singleton instance to simplify integration. If you prefer + * to manage the lifecycle of the config object, then consider using + * "probe()" or "new" instead. + * + * @return CA_Config_Stream + */ + static public function singleton() + { + if (! self::$_singleton) { + global $CA_CONFIG; + self::$_singleton = self::probe($CA_CONFIG ? $CA_CONFIG : array()); + } + return self::$_singleton; + } + + /** + * Factory fuction which produces a configuration based on a policy and based + * on local system resources. + * + * @param $policy array: + * - enable_ssl: bool; default: TRUE + * - verify_peer: bool; default: TRUE + * - cafile: string, path to aggregated PEM; overrides any system defaults + * - fallback_cafile: string, path to aggregated PEM; used on systems which lack default; set FALSE to disable + * - fallback_ttl: int, seconds, the max age of the fallback cafile before it's regarded as stale; default: 5 years + * @return CA_Config_Stream + */ + static public function probe($policy = array()) + { + if (isset($policy['enable_ssl']) && $policy['enable_ssl'] === FALSE) { + return new CA_Config_Stream(FALSE, FALSE, NULL); + } + $sw = stream_get_wrappers(); + if (!extension_loaded('openssl') || !in_array('https', $sw)) { + return new CA_Config_Stream(FALSE, FALSE, NULL); + } + if (isset($policy['verify_peer']) && $policy['verify_peer'] === FALSE) { + return new CA_Config_Stream(TRUE, FALSE, NULL); + } + if (isset($policy['cafile'])) { + if (file_exists($policy['cafile']) && is_readable($policy['cafile'])) { + return new CA_Config_Stream(TRUE, TRUE, $policy['cafile']); + } else { + throw new Exception("Certificate Authority file is missing. Please contact the system administrator. See also: " . $policy['cafile']); + } + } + + if (!isset($policy['fallback_ttl'])) { + $policy['fallback_ttl'] = 5 * 364 * 24 * 60 * 60; + } + if (!isset($policy['fallback_cafile'])) { + $policy['fallback_cafile'] = dirname(__FILE__) . '/cacert.pem'; + } + + if (empty($policy['fallback_cafile']) || !file_exists($policy['fallback_cafile'])) { + throw new Exception("Certificate Authority file is required for SSL. Please contact the system administrator."); + } elseif (time() > filemtime($policy['fallback_cafile']) + $policy['fallback_ttl']) { + throw new Exception("Certificate Authority file is too old. Please contact the system administrator. See also: " . $policy['fallback_cafile']); + } else { + return new CA_Config_Stream(TRUE, TRUE, $policy['fallback_cafile']); + } + } + + public function __construct($enableSSL, $verifyPeer, $caFile) + { + $this->enableSSL = $enableSSL; + $this->verifyPeer = $verifyPeer; + $this->caFile = $caFile; + } + + /** + * Whether SSL is supported at all + * + * @return bool + */ + public function isEnableSSL() + { + return $this->enableSSL; + } + + /** + * Whether server certifiates should be verified + * + * @return bool + */ + public function isVerifyPeer() + { + return $this->verifyPeer; + } + + /** + * Path to a CA file (if available/applicable) + * + * @return string + */ + public function getCaFile() + { + return $this->caFile; + } + + /** + * Format the CA config in a manner appropriate to file_get_contents('https://') + * + * @return array + */ + public function toStreamOptions() + { + $options = array(); + $options['verify_peer'] = $this->verifyPeer; + if ($this->caFile) { + $options['cafile'] = $this->caFile; + } // else: system default + return $options; + } +} diff --git a/packages/CA/Config/cacert.pem b/packages/CA/Config/cacert.pem new file mode 100644 index 000000000..87a16628d --- /dev/null +++ b/packages/CA/Config/cacert.pem @@ -0,0 +1,3825 @@ +## +## ca-bundle.crt -- Bundle of CA Root Certificates +## +## Certificate data from Mozilla as of: Thu Jun 28 15:03:08 2012 +## +## This is a bundle of X.509 certificates of public Certificate Authorities +## (CA). These were automatically extracted from Mozilla's root certificates +## file (certdata.txt). This file can be found in the mozilla source tree: +## http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1 +## +## It contains the certificates in PEM format and therefore +## can be directly used with curl / libcurl / php_curl, or with +## an Apache+mod_ssl webserver for SSL client authentication. +## Just configure this file as the SSLCACertificateFile. +## + +# @(#) $RCSfile: certdata.txt,v $ $Revision: 1.85 $ $Date: 2012/06/28 13:50:18 $ + +GTE CyberTrust Global Root +========================== +-----BEGIN CERTIFICATE----- +MIICWjCCAcMCAgGlMA0GCSqGSIb3DQEBBAUAMHUxCzAJBgNVBAYTAlVTMRgwFgYDVQQKEw9HVEUg +Q29ycG9yYXRpb24xJzAlBgNVBAsTHkdURSBDeWJlclRydXN0IFNvbHV0aW9ucywgSW5jLjEjMCEG +A1UEAxMaR1RFIEN5YmVyVHJ1c3QgR2xvYmFsIFJvb3QwHhcNOTgwODEzMDAyOTAwWhcNMTgwODEz +MjM1OTAwWjB1MQswCQYDVQQGEwJVUzEYMBYGA1UEChMPR1RFIENvcnBvcmF0aW9uMScwJQYDVQQL +Ex5HVEUgQ3liZXJUcnVzdCBTb2x1dGlvbnMsIEluYy4xIzAhBgNVBAMTGkdURSBDeWJlclRydXN0 +IEdsb2JhbCBSb290MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCVD6C28FCc6HrHiM3dFw4u +sJTQGz0O9pTAipTHBsiQl8i4ZBp6fmw8U+E3KHNgf7KXUwefU/ltWJTSr41tiGeA5u2ylc9yMcql +HHK6XALnZELn+aks1joNrI1CqiQBOeacPwGFVw1Yh0X404Wqk2kmhXBIgD8SFcd5tB8FLztimQID +AQABMA0GCSqGSIb3DQEBBAUAA4GBAG3rGwnpXtlR22ciYaQqPEh346B8pt5zohQDhT37qw4wxYMW +M4ETCJ57NE7fQMh017l93PR2VX2bY1QY6fDq81yx2YtCHrnAlU66+tXifPVoYb+O7AWXX1uw16OF +NMQkpw0PlZPvy5TYnh+dXIVtx6quTx8itc2VrbqnzPmrC3p/ +-----END CERTIFICATE----- + +Thawte Server CA +================ +-----BEGIN CERTIFICATE----- +MIIDEzCCAnygAwIBAgIBATANBgkqhkiG9w0BAQQFADCBxDELMAkGA1UEBhMCWkExFTATBgNVBAgT +DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMR0wGwYDVQQKExRUaGF3dGUgQ29uc3Vs +dGluZyBjYzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEZMBcGA1UE +AxMQVGhhd3RlIFNlcnZlciBDQTEmMCQGCSqGSIb3DQEJARYXc2VydmVyLWNlcnRzQHRoYXd0ZS5j +b20wHhcNOTYwODAxMDAwMDAwWhcNMjAxMjMxMjM1OTU5WjCBxDELMAkGA1UEBhMCWkExFTATBgNV +BAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMR0wGwYDVQQKExRUaGF3dGUgQ29u +c3VsdGluZyBjYzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEZMBcG +A1UEAxMQVGhhd3RlIFNlcnZlciBDQTEmMCQGCSqGSIb3DQEJARYXc2VydmVyLWNlcnRzQHRoYXd0 +ZS5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBANOkUG7I/1Zr5s9dtuoMaHVHoqrC2oQl +/Kj0R1HahbUgdJSGHg91yekIYfUGbTBuFRkC6VLAYttNmZ7iagxEOM3+vuNkCXDF/rFrKbYvScg7 +1CcEJRCXL+eQbcAoQpnXTEPew/UhbVSfXcNY4cDk2VuwuNy0e982OsK1ZiIS1ocNAgMBAAGjEzAR +MA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEEBQADgYEAB/pMaVz7lcxG7oWDTSEwjsrZqG9J +GubaUeNgcGyEYRGhGshIPllDfU+VPaGLtwtimHp1it2ITk6eQNuozDJ0uW8NxuOzRAvZim+aKZuZ +GCg70eNAKJpaPNW15yAbi8qkq43pUdniTCxZqdq5snUb9kLy78fyGPmJvKP/iiMucEc= +-----END CERTIFICATE----- + +Thawte Premium Server CA +======================== +-----BEGIN CERTIFICATE----- +MIIDJzCCApCgAwIBAgIBATANBgkqhkiG9w0BAQQFADCBzjELMAkGA1UEBhMCWkExFTATBgNVBAgT +DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMR0wGwYDVQQKExRUaGF3dGUgQ29uc3Vs +dGluZyBjYzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEhMB8GA1UE +AxMYVGhhd3RlIFByZW1pdW0gU2VydmVyIENBMSgwJgYJKoZIhvcNAQkBFhlwcmVtaXVtLXNlcnZl +ckB0aGF3dGUuY29tMB4XDTk2MDgwMTAwMDAwMFoXDTIwMTIzMTIzNTk1OVowgc4xCzAJBgNVBAYT +AlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEdMBsGA1UEChMU +VGhhd3RlIENvbnN1bHRpbmcgY2MxKDAmBgNVBAsTH0NlcnRpZmljYXRpb24gU2VydmljZXMgRGl2 +aXNpb24xITAfBgNVBAMTGFRoYXd0ZSBQcmVtaXVtIFNlcnZlciBDQTEoMCYGCSqGSIb3DQEJARYZ +cHJlbWl1bS1zZXJ2ZXJAdGhhd3RlLmNvbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA0jY2 +aovXwlue2oFBYo847kkEVdbQ7xwblRZH7xhINTpS9CtqBo87L+pW46+GjZ4X9560ZXUCTe/LCaIh +Udib0GfQug2SBhRz1JPLlyoAnFxODLz6FVL88kRu2hFKbgifLy3j+ao6hnO2RlNYyIkFvYMRuHM/ +qgeN9EJN50CdHDcCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQQFAAOBgQAm +SCwWwlj66BZ0DKqqX1Q/8tfJeGBeXm43YyJ3Nn6yF8Q0ufUIhfzJATj/Tb7yFkJD57taRvvBxhEf +8UqwKEbJw8RCfbz6q1lu1bdRiBHjpIUZa4JMpAwSremkrj/xw0llmozFyD4lt5SZu5IycQfwhl7t +UCemDaYj+bvLpgcUQg== +-----END CERTIFICATE----- + +Equifax Secure CA +================= +-----BEGIN CERTIFICATE----- +MIIDIDCCAomgAwIBAgIENd70zzANBgkqhkiG9w0BAQUFADBOMQswCQYDVQQGEwJVUzEQMA4GA1UE +ChMHRXF1aWZheDEtMCsGA1UECxMkRXF1aWZheCBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 +MB4XDTk4MDgyMjE2NDE1MVoXDTE4MDgyMjE2NDE1MVowTjELMAkGA1UEBhMCVVMxEDAOBgNVBAoT +B0VxdWlmYXgxLTArBgNVBAsTJEVxdWlmYXggU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eTCB +nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAwV2xWGcIYu6gmi0fCG2RFGiYCh7+2gRvE4RiIcPR +fM6fBeC4AfBONOziipUEZKzxa1NfBbPLZ4C/QgKO/t0BCezhABRP/PvwDN1Dulsr4R+AcJkVV5MW +8Q+XarfCaCMczE1ZMKxRHjuvK9buY0V7xdlfUNLjUA86iOe/FP3gx7kCAwEAAaOCAQkwggEFMHAG +A1UdHwRpMGcwZaBjoGGkXzBdMQswCQYDVQQGEwJVUzEQMA4GA1UEChMHRXF1aWZheDEtMCsGA1UE +CxMkRXF1aWZheCBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MQ0wCwYDVQQDEwRDUkwxMBoG +A1UdEAQTMBGBDzIwMTgwODIyMTY0MTUxWjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAUSOZo+SvS +spXXR9gjIBBPM5iQn9QwHQYDVR0OBBYEFEjmaPkr0rKV10fYIyAQTzOYkJ/UMAwGA1UdEwQFMAMB +Af8wGgYJKoZIhvZ9B0EABA0wCxsFVjMuMGMDAgbAMA0GCSqGSIb3DQEBBQUAA4GBAFjOKer89961 +zgK5F7WF0bnj4JXMJTENAKaSbn+2kmOeUJXRmm/kEd5jhW6Y7qj/WsjTVbJmcVfewCHrPSqnI0kB +BIZCe/zuf6IWUrVnZ9NA2zsmWLIodz2uFHdh1voqZiegDfqnc1zqcPGUIWVEX/r87yloqaKHee95 +70+sB3c4 +-----END CERTIFICATE----- + +Digital Signature Trust Co. Global CA 1 +======================================= +-----BEGIN CERTIFICATE----- +MIIDKTCCApKgAwIBAgIENnAVljANBgkqhkiG9w0BAQUFADBGMQswCQYDVQQGEwJVUzEkMCIGA1UE +ChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMREwDwYDVQQLEwhEU1RDQSBFMTAeFw05ODEy +MTAxODEwMjNaFw0xODEyMTAxODQwMjNaMEYxCzAJBgNVBAYTAlVTMSQwIgYDVQQKExtEaWdpdGFs +IFNpZ25hdHVyZSBUcnVzdCBDby4xETAPBgNVBAsTCERTVENBIEUxMIGdMA0GCSqGSIb3DQEBAQUA +A4GLADCBhwKBgQCgbIGpzzQeJN3+hijM3oMv+V7UQtLodGBmE5gGHKlREmlvMVW5SXIACH7TpWJE +NySZj9mDSI+ZbZUTu0M7LklOiDfBu1h//uG9+LthzfNHwJmm8fOR6Hh8AMthyUQncWlVSn5JTe2i +o74CTADKAqjuAQIxZA9SLRN0dja1erQtcQIBA6OCASQwggEgMBEGCWCGSAGG+EIBAQQEAwIABzBo +BgNVHR8EYTBfMF2gW6BZpFcwVTELMAkGA1UEBhMCVVMxJDAiBgNVBAoTG0RpZ2l0YWwgU2lnbmF0 +dXJlIFRydXN0IENvLjERMA8GA1UECxMIRFNUQ0EgRTExDTALBgNVBAMTBENSTDEwKwYDVR0QBCQw +IoAPMTk5ODEyMTAxODEwMjNagQ8yMDE4MTIxMDE4MTAyM1owCwYDVR0PBAQDAgEGMB8GA1UdIwQY +MBaAFGp5fpFpRhgTCgJ3pVlbYJglDqL4MB0GA1UdDgQWBBRqeX6RaUYYEwoCd6VZW2CYJQ6i+DAM +BgNVHRMEBTADAQH/MBkGCSqGSIb2fQdBAAQMMAobBFY0LjADAgSQMA0GCSqGSIb3DQEBBQUAA4GB +ACIS2Hod3IEGtgllsofIH160L+nEHvI8wbsEkBFKg05+k7lNQseSJqBcNJo4cvj9axY+IO6CizEq +kzaFI4iKPANo08kJD038bKTaKHKTDomAsH3+gG9lbRgzl4vCa4nuYD3Im+9/KzJic5PLPON74nZ4 +RbyhkwS7hp86W0N6w4pl +-----END CERTIFICATE----- + +Digital Signature Trust Co. Global CA 3 +======================================= +-----BEGIN CERTIFICATE----- +MIIDKTCCApKgAwIBAgIENm7TzjANBgkqhkiG9w0BAQUFADBGMQswCQYDVQQGEwJVUzEkMCIGA1UE +ChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMREwDwYDVQQLEwhEU1RDQSBFMjAeFw05ODEy +MDkxOTE3MjZaFw0xODEyMDkxOTQ3MjZaMEYxCzAJBgNVBAYTAlVTMSQwIgYDVQQKExtEaWdpdGFs +IFNpZ25hdHVyZSBUcnVzdCBDby4xETAPBgNVBAsTCERTVENBIEUyMIGdMA0GCSqGSIb3DQEBAQUA +A4GLADCBhwKBgQC/k48Xku8zExjrEH9OFr//Bo8qhbxe+SSmJIi2A7fBw18DW9Fvrn5C6mYjuGOD +VvsoLeE4i7TuqAHhzhy2iCoiRoX7n6dwqUcUP87eZfCocfdPJmyMvMa1795JJ/9IKn3oTQPMx7JS +xhcxEzu1TdvIxPbDDyQq2gyd55FbgM2UnQIBA6OCASQwggEgMBEGCWCGSAGG+EIBAQQEAwIABzBo +BgNVHR8EYTBfMF2gW6BZpFcwVTELMAkGA1UEBhMCVVMxJDAiBgNVBAoTG0RpZ2l0YWwgU2lnbmF0 +dXJlIFRydXN0IENvLjERMA8GA1UECxMIRFNUQ0EgRTIxDTALBgNVBAMTBENSTDEwKwYDVR0QBCQw +IoAPMTk5ODEyMDkxOTE3MjZagQ8yMDE4MTIwOTE5MTcyNlowCwYDVR0PBAQDAgEGMB8GA1UdIwQY +MBaAFB6CTShlgDzJQW6sNS5ay97u+DlbMB0GA1UdDgQWBBQegk0oZYA8yUFurDUuWsve7vg5WzAM +BgNVHRMEBTADAQH/MBkGCSqGSIb2fQdBAAQMMAobBFY0LjADAgSQMA0GCSqGSIb3DQEBBQUAA4GB +AEeNg61i8tuwnkUiBbmi1gMOOHLnnvx75pO2mqWilMg0HZHRxdf0CiUPPXiBng+xZ8SQTGPdXqfi +up/1902lMXucKS1M/mQ+7LZT/uqb7YLbdHVLB3luHtgZg3Pe9T7Qtd7nS2h9Qy4qIOF+oHhEngj1 +mPnHfxsb1gYgAlihw6ID +-----END CERTIFICATE----- + +Verisign Class 3 Public Primary Certification Authority +======================================================= +-----BEGIN CERTIFICATE----- +MIICPDCCAaUCEHC65B0Q2Sk0tjjKewPMur8wDQYJKoZIhvcNAQECBQAwXzELMAkGA1UEBhMCVVMx +FzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAzIFB1YmxpYyBQcmltYXJ5 +IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2MDEyOTAwMDAwMFoXDTI4MDgwMTIzNTk1OVow +XzELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAz +IFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUA +A4GNADCBiQKBgQDJXFme8huKARS0EN8EQNvjV69qRUCPhAwL0TPZ2RHP7gJYHyX3KqhEBarsAx94 +f56TuZoAqiN91qyFomNFx3InzPRMxnVx0jnvT0Lwdd8KkMaOIG+YD/isI19wKTakyYbnsZogy1Ol +hec9vn2a/iRFM9x2Fe0PonFkTGUugWhFpwIDAQABMA0GCSqGSIb3DQEBAgUAA4GBALtMEivPLCYA +TxQT3ab7/AoRhIzzKBxnki98tsX63/Dolbwdj2wsqFHMc9ikwFPwTtYmwHYBV4GSXiHx0bH/59Ah +WM1pF+NEHJwZRDmJXNycAA9WjQKZ7aKQRUzkuxCkPfAyAw7xzvjoyVGM5mKf5p/AfbdynMk2Omuf +Tqj/ZA1k +-----END CERTIFICATE----- + +Verisign Class 1 Public Primary Certification Authority - G2 +============================================================ +-----BEGIN CERTIFICATE----- +MIIDAjCCAmsCEEzH6qqYPnHTkxD4PTqJkZIwDQYJKoZIhvcNAQEFBQAwgcExCzAJBgNVBAYTAlVT +MRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE8MDoGA1UECxMzQ2xhc3MgMSBQdWJsaWMgUHJpbWFy +eSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMTowOAYDVQQLEzEoYykgMTk5OCBWZXJpU2ln +biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVz +dCBOZXR3b3JrMB4XDTk4MDUxODAwMDAwMFoXDTI4MDgwMTIzNTk1OVowgcExCzAJBgNVBAYTAlVT +MRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE8MDoGA1UECxMzQ2xhc3MgMSBQdWJsaWMgUHJpbWFy +eSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMTowOAYDVQQLEzEoYykgMTk5OCBWZXJpU2ln +biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVz +dCBOZXR3b3JrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq0Lq+Fi24g9TK0g+8djHKlNgd +k4xWArzZbxpvUjZudVYKVdPfQ4chEWWKfo+9Id5rMj8bhDSVBZ1BNeuS65bdqlk/AVNtmU/t5eIq +WpDBucSmFc/IReumXY6cPvBkJHalzasab7bYe1FhbqZ/h8jit+U03EGI6glAvnOSPWvndQIDAQAB +MA0GCSqGSIb3DQEBBQUAA4GBAKlPww3HZ74sy9mozS11534Vnjty637rXC0Jh9ZrbWB85a7FkCMM +XErQr7Fd88e2CtvgFZMN3QO8x3aKtd1Pw5sTdbgBwObJW2uluIncrKTdcu1OofdPvAbT6shkdHvC +lUGcZXNY8ZCaPGqxmMnEh7zPRW1F4m4iP/68DzFc6PLZ +-----END CERTIFICATE----- + +Verisign Class 2 Public Primary Certification Authority - G2 +============================================================ +-----BEGIN CERTIFICATE----- +MIIDAzCCAmwCEQC5L2DMiJ+hekYJuFtwbIqvMA0GCSqGSIb3DQEBBQUAMIHBMQswCQYDVQQGEwJV +UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xPDA6BgNVBAsTM0NsYXNzIDIgUHVibGljIFByaW1h +cnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMjE6MDgGA1UECxMxKGMpIDE5OTggVmVyaVNp +Z24sIEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1 +c3QgTmV0d29yazAeFw05ODA1MTgwMDAwMDBaFw0yODA4MDEyMzU5NTlaMIHBMQswCQYDVQQGEwJV +UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xPDA6BgNVBAsTM0NsYXNzIDIgUHVibGljIFByaW1h +cnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMjE6MDgGA1UECxMxKGMpIDE5OTggVmVyaVNp +Z24sIEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1 +c3QgTmV0d29yazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAp4gBIXQs5xoD8JjhlzwPIQjx +nNuX6Zr8wgQGE75fUsjMHiwSViy4AWkszJkfrbCWrnkE8hM5wXuYuggs6MKEEyyqaekJ9MepAqRC +wiNPStjwDqL7MWzJ5m+ZJwf15vRMeJ5t60aG+rmGyVTyssSv1EYcWskVMP8NbPUtDm3Of3cCAwEA +ATANBgkqhkiG9w0BAQUFAAOBgQByLvl/0fFx+8Se9sVeUYpAmLho+Jscg9jinb3/7aHmZuovCfTK +1+qlK5X2JGCGTUQug6XELaDTrnhpb3LabK4I8GOSN+a7xDAXrXfMSTWqz9iP0b63GJZHc2pUIjRk +LbYWm1lbtFFZOrMLFPQS32eg9K0yZF6xRnInjBJ7xUS0rg== +-----END CERTIFICATE----- + +Verisign Class 3 Public Primary Certification Authority - G2 +============================================================ +-----BEGIN CERTIFICATE----- +MIIDAjCCAmsCEH3Z/gfPqB63EHln+6eJNMYwDQYJKoZIhvcNAQEFBQAwgcExCzAJBgNVBAYTAlVT +MRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE8MDoGA1UECxMzQ2xhc3MgMyBQdWJsaWMgUHJpbWFy +eSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMTowOAYDVQQLEzEoYykgMTk5OCBWZXJpU2ln +biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVz +dCBOZXR3b3JrMB4XDTk4MDUxODAwMDAwMFoXDTI4MDgwMTIzNTk1OVowgcExCzAJBgNVBAYTAlVT +MRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE8MDoGA1UECxMzQ2xhc3MgMyBQdWJsaWMgUHJpbWFy +eSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMTowOAYDVQQLEzEoYykgMTk5OCBWZXJpU2ln +biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVz +dCBOZXR3b3JrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDMXtERXVxp0KvTuWpMmR9ZmDCO +FoUgRm1HP9SFIIThbbP4pO0M8RcPO/mn+SXXwc+EY/J8Y8+iR/LGWzOOZEAEaMGAuWQcRXfH2G71 +lSk8UOg013gfqLptQ5GVj0VXXn7F+8qkBOvqlzdUMG+7AUcyM83cV5tkaWH4mx0ciU9cZwIDAQAB +MA0GCSqGSIb3DQEBBQUAA4GBAFFNzb5cy5gZnBWyATl4Lk0PZ3BwmcYQWpSkU01UbSuvDV1Ai2TT +1+7eVmGSX6bEHRBhNtMsJzzoKQm5EWR0zLVznxxIqbxhAe7iF6YM40AIOw7n60RzKprxaZLvcRTD +Oaxxp5EJb+RxBrO6WVcmeQD2+A2iMzAo1KpYoJ2daZH9 +-----END CERTIFICATE----- + +GlobalSign Root CA +================== +-----BEGIN CERTIFICATE----- +MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkGA1UEBhMCQkUx +GTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jvb3QgQ0ExGzAZBgNVBAMTEkds +b2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAwMDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNV +BAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYD +VQQDExJHbG9iYWxTaWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDa +DuaZjc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavpxy0Sy6sc +THAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp1Wrjsok6Vjk4bwY8iGlb +Kk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdGsnUOhugZitVtbNV4FpWi6cgKOOvyJBNP +c1STE4U6G7weNLWLBYy5d4ux2x8gkasJU26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrX +gzT/LCrBbBlDSgeF59N89iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0BAQUF +AAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOzyj1hTdNGCbM+w6Dj +Y1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE38NflNUVyRRBnMRddWQVDf9VMOyG +j/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymPAbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhH +hm4qxFYxldBniYUr+WymXUadDKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveC +X4XSQRjbgbMEHMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== +-----END CERTIFICATE----- + +GlobalSign Root CA - R2 +======================= +-----BEGIN CERTIFICATE----- +MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4GA1UECxMXR2xv +YmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh +bFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT +aWduIFJvb3QgQ0EgLSBSMjETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln +bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6 +ErPLv4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8eoLrvozp +s6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklqtTleiDTsvHgMCJiEbKjN +S7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzdC9XZzPnqJworc5HGnRusyMvo4KD0L5CL +TfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pazq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6C +ygPCm48CAwEAAaOBnDCBmTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E +FgQUm+IHV2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5nbG9i +YWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG3lm0mi3f3BmGLjAN +BgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4GsJ0/WwbgcQ3izDJr86iw8bmEbTUsp +9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu +01yiPqFbQfXf5WRDLenVOavSot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG7 +9G+dwfCMNYxdAfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7 +TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg== +-----END CERTIFICATE----- + +ValiCert Class 1 VA +=================== +-----BEGIN CERTIFICATE----- +MIIC5zCCAlACAQEwDQYJKoZIhvcNAQEFBQAwgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0IFZhbGlkYXRp +b24gTmV0d29yazEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAzBgNVBAsTLFZhbGlDZXJ0IENs +YXNzIDEgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9yaXR5MSEwHwYDVQQDExhodHRwOi8vd3d3LnZh +bGljZXJ0LmNvbS8xIDAeBgkqhkiG9w0BCQEWEWluZm9AdmFsaWNlcnQuY29tMB4XDTk5MDYyNTIy +MjM0OFoXDTE5MDYyNTIyMjM0OFowgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0IFZhbGlkYXRpb24gTmV0 +d29yazEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAzBgNVBAsTLFZhbGlDZXJ0IENsYXNzIDEg +UG9saWN5IFZhbGlkYXRpb24gQXV0aG9yaXR5MSEwHwYDVQQDExhodHRwOi8vd3d3LnZhbGljZXJ0 +LmNvbS8xIDAeBgkqhkiG9w0BCQEWEWluZm9AdmFsaWNlcnQuY29tMIGfMA0GCSqGSIb3DQEBAQUA +A4GNADCBiQKBgQDYWYJ6ibiWuqYvaG9YLqdUHAZu9OqNSLwxlBfw8068srg1knaw0KWlAdcAAxIi +GQj4/xEjm84H9b9pGib+TunRf50sQB1ZaG6m+FiwnRqP0z/x3BkGgagO4DrdyFNFCQbmD3DD+kCm +DuJWBQ8YTfwggtFzVXSNdnKgHZ0dwN0/cQIDAQABMA0GCSqGSIb3DQEBBQUAA4GBAFBoPUn0LBwG +lN+VYH+Wexf+T3GtZMjdd9LvWVXoP+iOBSoh8gfStadS/pyxtuJbdxdA6nLWI8sogTLDAHkY7FkX +icnGah5xyf23dKUlRWnFSKsZ4UWKJWsZ7uW7EvV/96aNUcPwnXS3qT6gpf+2SQMT2iLM7XGCK5nP +Orf1LXLI +-----END CERTIFICATE----- + +ValiCert Class 2 VA +=================== +-----BEGIN CERTIFICATE----- +MIIC5zCCAlACAQEwDQYJKoZIhvcNAQEFBQAwgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0IFZhbGlkYXRp +b24gTmV0d29yazEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAzBgNVBAsTLFZhbGlDZXJ0IENs +YXNzIDIgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9yaXR5MSEwHwYDVQQDExhodHRwOi8vd3d3LnZh +bGljZXJ0LmNvbS8xIDAeBgkqhkiG9w0BCQEWEWluZm9AdmFsaWNlcnQuY29tMB4XDTk5MDYyNjAw +MTk1NFoXDTE5MDYyNjAwMTk1NFowgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0IFZhbGlkYXRpb24gTmV0 +d29yazEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAzBgNVBAsTLFZhbGlDZXJ0IENsYXNzIDIg +UG9saWN5IFZhbGlkYXRpb24gQXV0aG9yaXR5MSEwHwYDVQQDExhodHRwOi8vd3d3LnZhbGljZXJ0 +LmNvbS8xIDAeBgkqhkiG9w0BCQEWEWluZm9AdmFsaWNlcnQuY29tMIGfMA0GCSqGSIb3DQEBAQUA +A4GNADCBiQKBgQDOOnHK5avIWZJV16vYdA757tn2VUdZZUcOBVXc65g2PFxTXdMwzzjsvUGJ7SVC +CSRrCl6zfN1SLUzm1NZ9WlmpZdRJEy0kTRxQb7XBhVQ7/nHk01xC+YDgkRoKWzk2Z/M/VXwbP7Rf +ZHM047QSv4dk+NoS/zcnwbNDu+97bi5p9wIDAQABMA0GCSqGSIb3DQEBBQUAA4GBADt/UG9vUJSZ +SWI4OB9L+KXIPqeCgfYrx+jFzug6EILLGACOTb2oWH+heQC1u+mNr0HZDzTuIYEZoDJJKPTEjlbV +UjP9UNV+mWwD5MlM/Mtsq2azSiGM5bUMMj4QssxsodyamEwCW/POuZ6lcg5Ktz885hZo+L7tdEy8 +W9ViH0Pd +-----END CERTIFICATE----- + +RSA Root Certificate 1 +====================== +-----BEGIN CERTIFICATE----- +MIIC5zCCAlACAQEwDQYJKoZIhvcNAQEFBQAwgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0IFZhbGlkYXRp +b24gTmV0d29yazEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAzBgNVBAsTLFZhbGlDZXJ0IENs +YXNzIDMgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9yaXR5MSEwHwYDVQQDExhodHRwOi8vd3d3LnZh +bGljZXJ0LmNvbS8xIDAeBgkqhkiG9w0BCQEWEWluZm9AdmFsaWNlcnQuY29tMB4XDTk5MDYyNjAw +MjIzM1oXDTE5MDYyNjAwMjIzM1owgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0IFZhbGlkYXRpb24gTmV0 +d29yazEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAzBgNVBAsTLFZhbGlDZXJ0IENsYXNzIDMg +UG9saWN5IFZhbGlkYXRpb24gQXV0aG9yaXR5MSEwHwYDVQQDExhodHRwOi8vd3d3LnZhbGljZXJ0 +LmNvbS8xIDAeBgkqhkiG9w0BCQEWEWluZm9AdmFsaWNlcnQuY29tMIGfMA0GCSqGSIb3DQEBAQUA +A4GNADCBiQKBgQDjmFGWHOjVsQaBalfDcnWTq8+epvzzFlLWLU2fNUSoLgRNB0mKOCn1dzfnt6td +3zZxFJmP3MKS8edgkpfs2Ejcv8ECIMYkpChMMFp2bbFc893enhBxoYjHW5tBbcqwuI4V7q0zK89H +BFx1cQqYJJgpp0lZpd34t0NiYfPT4tBVPwIDAQABMA0GCSqGSIb3DQEBBQUAA4GBAFa7AliEZwgs +3x/be0kz9dNnnfS0ChCzycUs4pJqcXgn8nCDQtM+z6lU9PHYkhaM0QTLS6vJn0WuPIqpsHEzXcjF +V9+vqDWzf4mH6eglkrh/hXqu1rweN1gqZ8mRzyqBPu3GOd/APhmcGcwTTYJBtYze4D1gCCAPRX5r +on+jjBXu +-----END CERTIFICATE----- + +Verisign Class 1 Public Primary Certification Authority - G3 +============================================================ +-----BEGIN CERTIFICATE----- +MIIEGjCCAwICEQCLW3VWhFSFCwDPrzhIzrGkMA0GCSqGSIb3DQEBBQUAMIHKMQswCQYDVQQGEwJV +UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv +cmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl +IG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDEgUHVibGljIFByaW1hcnkgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQsw +CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRy +dXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhv +cml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDEgUHVibGljIFByaW1hcnkg +Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAN2E1Lm0+afY8wR4nN493GwTFtl63SRRZsDHJlkNrAYIwpTRMx/wgzUfbhvI3qpuFU5UJ+/E +bRrsC+MO8ESlV8dAWB6jRx9x7GD2bZTIGDnt/kIYVt/kTEkQeE4BdjVjEjbdZrwBBDajVWjVojYJ +rKshJlQGrT/KFOCsyq0GHZXi+J3x4GD/wn91K0zM2v6HmSHquv4+VNfSWXjbPG7PoBMAGrgnoeS+ +Z5bKoMWznN3JdZ7rMJpfo83ZrngZPyPpXNspva1VyBtUjGP26KbqxzcSXKMpHgLZ2x87tNcPVkeB +FQRKr4Mn0cVYiMHd9qqnoxjaaKptEVHhv2Vrn5Z20T0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA +q2aN17O6x5q25lXQBfGfMY1aqtmqRiYPce2lrVNWYgFHKkTp/j90CxObufRNG7LRX7K20ohcs5/N +y9Sn2WCVhDr4wTcdYcrnsMXlkdpUpqwxga6X3s0IrLjAl4B/bnKk52kTlWUfxJM8/XmPBNQ+T+r3 +ns7NZ3xPZQL/kYVUc8f/NveGLezQXk//EZ9yBta4GvFMDSZl4kSAHsef493oCtrspSCAaWihT37h +a88HQfqDjrw43bAuEbFrskLMmrz5SCJ5ShkPshw+IHTZasO+8ih4E1Z5T21Q6huwtVexN2ZYI/Pc +D98Kh8TvhgXVOBRgmaNL3gaWcSzy27YfpO8/7g== +-----END CERTIFICATE----- + +Verisign Class 2 Public Primary Certification Authority - G3 +============================================================ +-----BEGIN CERTIFICATE----- +MIIEGTCCAwECEGFwy0mMX5hFKeewptlQW3owDQYJKoZIhvcNAQEFBQAwgcoxCzAJBgNVBAYTAlVT +MRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29y +azE6MDgGA1UECxMxKGMpIDE5OTkgVmVyaVNpZ24sIEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ug +b25seTFFMEMGA1UEAxM8VmVyaVNpZ24gQ2xhc3MgMiBQdWJsaWMgUHJpbWFyeSBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eSAtIEczMB4XDTk5MTAwMTAwMDAwMFoXDTM2MDcxNjIzNTk1OVowgcoxCzAJ +BgNVBAYTAlVTMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1 +c3QgTmV0d29yazE6MDgGA1UECxMxKGMpIDE5OTkgVmVyaVNpZ24sIEluYy4gLSBGb3IgYXV0aG9y +aXplZCB1c2Ugb25seTFFMEMGA1UEAxM8VmVyaVNpZ24gQ2xhc3MgMiBQdWJsaWMgUHJpbWFyeSBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEczMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEArwoNwtUs22e5LeWUJ92lvuCwTY+zYVY81nzD9M0+hsuiiOLh2KRpxbXiv8GmR1BeRjmL1Za6 +tW8UvxDOJxOeBUebMXoT2B/Z0wI3i60sR/COgQanDTAM6/c8DyAd3HJG7qUCyFvDyVZpTMUYwZF7 +C9UTAJu878NIPkZgIIUq1ZC2zYugzDLdt/1AVbJQHFauzI13TccgTacxdu9okoqQHgiBVrKtaaNS +0MscxCM9H5n+TOgWY47GCI72MfbS+uV23bUckqNJzc0BzWjNqWm6o+sdDZykIKbBoMXRRkwXbdKs +Zj+WjOCE1Db/IlnF+RFgqF8EffIa9iVCYQ/ESrg+iQIDAQABMA0GCSqGSIb3DQEBBQUAA4IBAQA0 +JhU8wI1NQ0kdvekhktdmnLfexbjQ5F1fdiLAJvmEOjr5jLX77GDx6M4EsMjdpwOPMPOY36TmpDHf +0xwLRtxyID+u7gU8pDM/CzmscHhzS5kr3zDCVLCoO1Wh/hYozUK9dG6A2ydEp85EXdQbkJgNHkKU +sQAsBNB0owIFImNjzYO1+8FtYmtpdf1dcEG59b98377BMnMiIYtYgXsVkXq642RIsH/7NiXaldDx +JBQX3RiAa0YjOVT1jmIJBB2UkKab5iXiQkWquJCtvgiPqQtCGJTPcjnhsUPgKM+351psE2tJs//j +GHyJizNdrDPXp/naOlXJWBD5qu9ats9LS98q +-----END CERTIFICATE----- + +Verisign Class 3 Public Primary Certification Authority - G3 +============================================================ +-----BEGIN CERTIFICATE----- +MIIEGjCCAwICEQCbfgZJoz5iudXukEhxKe9XMA0GCSqGSIb3DQEBBQUAMIHKMQswCQYDVQQGEwJV +UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv +cmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl +IG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQsw +CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRy +dXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhv +cml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkg +Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAMu6nFL8eB8aHm8bN3O9+MlrlBIwT/A2R/XQkQr1F8ilYcEWQE37imGQ5XYgwREGfassbqb1 +EUGO+i2tKmFZpGcmTNDovFJbcCAEWNF6yaRpvIMXZK0Fi7zQWM6NjPXr8EJJC52XJ2cybuGukxUc +cLwgTS8Y3pKI6GyFVxEa6X7jJhFUokWWVYPKMIno3Nij7SqAP395ZVc+FSBmCC+Vk7+qRy+oRpfw +EuL+wgorUeZ25rdGt+INpsyow0xZVYnm6FNcHOqd8GIWC6fJXwzw3sJ2zq/3avL6QaaiMxTJ5Xpj +055iN9WFZZ4O5lMkdBteHRJTW8cs54NJOxWuimi5V5cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA +ERSWwauSCPc/L8my/uRan2Te2yFPhpk0djZX3dAVL8WtfxUfN2JzPtTnX84XA9s1+ivbrmAJXx5f +j267Cz3qWhMeDGBvtcC1IyIuBwvLqXTLR7sdwdela8wv0kL9Sd2nic9TutoAWii/gt/4uhMdUIaC +/Y4wjylGsB49Ndo4YhYYSq3mtlFs3q9i6wHQHiT+eo8SGhJouPtmmRQURVyu565pF4ErWjfJXir0 +xuKhXFSbplQAz/DxwceYMBo7Nhbbo27q/a2ywtrvAkcTisDxszGtTxzhT5yvDwyd93gN2PQ1VoDa +t20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ== +-----END CERTIFICATE----- + +Verisign Class 4 Public Primary Certification Authority - G3 +============================================================ +-----BEGIN CERTIFICATE----- +MIIEGjCCAwICEQDsoKeLbnVqAc/EfMwvlF7XMA0GCSqGSIb3DQEBBQUAMIHKMQswCQYDVQQGEwJV +UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv +cmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl +IG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDQgUHVibGljIFByaW1hcnkgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQsw +CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRy +dXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhv +cml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDQgUHVibGljIFByaW1hcnkg +Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAK3LpRFpxlmr8Y+1GQ9Wzsy1HyDkniYlS+BzZYlZ3tCD5PUPtbut8XzoIfzk6AzufEUiGXaS +tBO3IFsJ+mGuqPKljYXCKtbeZjbSmwL0qJJgfJxptI8kHtCGUvYynEFYHiK9zUVilQhu0GbdU6LM +8BDcVHOLBKFGMzNcF0C5nk3T875Vg+ixiY5afJqWIpA7iCXy0lOIAgwLePLmNxdLMEYH5IBtptiW +Lugs+BGzOA1mppvqySNb247i8xOOGlktqgLw7KSHZtzBP/XYufTsgsbSPZUd5cBPhMnZo0QoBmrX +Razwa2rvTl/4EYIeOGM0ZlDUPpNz+jDDZq3/ky2X7wMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA +j/ola09b5KROJ1WrIhVZPMq1CtRK26vdoV9TxaBXOcLORyu+OshWv8LZJxA6sQU8wHcxuzrTBXtt +mhwwjIDLk5Mqg6sFUYICABFna/OIYUdfA5PVWw3g8dShMjWFsjrbsIKr0csKvE+MW8VLADsfKoKm +fjaF3H48ZwC15DtS4KjrXRX5xm3wrR0OhbepmnMUWluPQSjA1egtTaRezarZ7c7c2NU8Qh0XwRJd +RTjDOPP8hS6DRkiy1yBfkjaP53kPmF6Z6PDQpLv1U70qzlmwr25/bLvSHgCwIe34QWKCudiyxLtG +UPMxxY8BqHTr9Xgn2uf3ZkPznoM+IKrDNWCRzg== +-----END CERTIFICATE----- + +Entrust.net Secure Server CA +============================ +-----BEGIN CERTIFICATE----- +MIIE2DCCBEGgAwIBAgIEN0rSQzANBgkqhkiG9w0BAQUFADCBwzELMAkGA1UEBhMCVVMxFDASBgNV +BAoTC0VudHJ1c3QubmV0MTswOQYDVQQLEzJ3d3cuZW50cnVzdC5uZXQvQ1BTIGluY29ycC4gYnkg +cmVmLiAobGltaXRzIGxpYWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRl +ZDE6MDgGA1UEAxMxRW50cnVzdC5uZXQgU2VjdXJlIFNlcnZlciBDZXJ0aWZpY2F0aW9uIEF1dGhv +cml0eTAeFw05OTA1MjUxNjA5NDBaFw0xOTA1MjUxNjM5NDBaMIHDMQswCQYDVQQGEwJVUzEUMBIG +A1UEChMLRW50cnVzdC5uZXQxOzA5BgNVBAsTMnd3dy5lbnRydXN0Lm5ldC9DUFMgaW5jb3JwLiBi +eSByZWYuIChsaW1pdHMgbGlhYi4pMSUwIwYDVQQLExwoYykgMTk5OSBFbnRydXN0Lm5ldCBMaW1p +dGVkMTowOAYDVQQDEzFFbnRydXN0Lm5ldCBTZWN1cmUgU2VydmVyIENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQDNKIM0VBuJ8w+vN5Ex/68xYMmo6LIQ +aO2f55M28Qpku0f1BBc/I0dNxScZgSYMVHINiC3ZH5oSn7yzcdOAGT9HZnuMNSjSuQrfJNqc1lB5 +gXpa0zf3wkrYKZImZNHkmGw6AIr1NJtl+O3jEP/9uElY3KDegjlrgbEWGWG5VLbmQwIBA6OCAdcw +ggHTMBEGCWCGSAGG+EIBAQQEAwIABzCCARkGA1UdHwSCARAwggEMMIHeoIHboIHYpIHVMIHSMQsw +CQYDVQQGEwJVUzEUMBIGA1UEChMLRW50cnVzdC5uZXQxOzA5BgNVBAsTMnd3dy5lbnRydXN0Lm5l +dC9DUFMgaW5jb3JwLiBieSByZWYuIChsaW1pdHMgbGlhYi4pMSUwIwYDVQQLExwoYykgMTk5OSBF +bnRydXN0Lm5ldCBMaW1pdGVkMTowOAYDVQQDEzFFbnRydXN0Lm5ldCBTZWN1cmUgU2VydmVyIENl +cnRpZmljYXRpb24gQXV0aG9yaXR5MQ0wCwYDVQQDEwRDUkwxMCmgJ6AlhiNodHRwOi8vd3d3LmVu +dHJ1c3QubmV0L0NSTC9uZXQxLmNybDArBgNVHRAEJDAigA8xOTk5MDUyNTE2MDk0MFqBDzIwMTkw +NTI1MTYwOTQwWjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAU8BdiE1U9s/8KAGv7UISX8+1i0Bow +HQYDVR0OBBYEFPAXYhNVPbP/CgBr+1CEl/PtYtAaMAwGA1UdEwQFMAMBAf8wGQYJKoZIhvZ9B0EA +BAwwChsEVjQuMAMCBJAwDQYJKoZIhvcNAQEFBQADgYEAkNwwAvpkdMKnCqV8IY00F6j7Rw7/JXyN +Ewr75Ji174z4xRAN95K+8cPV1ZVqBLssziY2ZcgxxufuP+NXdYR6Ee9GTxj005i7qIcyunL2POI9 +n9cd2cNgQ4xYDiKWL2KjLB+6rQXvqzJ4h6BUcxm1XAX5Uj5tLUUL9wqT6u0G+bI= +-----END CERTIFICATE----- + +Entrust.net Premium 2048 Secure Server CA +========================================= +-----BEGIN CERTIFICATE----- +MIIEXDCCA0SgAwIBAgIEOGO5ZjANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChMLRW50cnVzdC5u +ZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBpbmNvcnAuIGJ5IHJlZi4gKGxp +bWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNV +BAMTKkVudHJ1c3QubmV0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQx +NzUwNTFaFw0xOTEyMjQxODIwNTFaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3 +d3d3LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTEl +MCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEGA1UEAxMqRW50cnVzdC5u +ZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEArU1LqRKGsuqjIAcVFmQqK0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOL +Gp18EzoOH1u3Hs/lJBQesYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSr +hRSGlVuXMlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVTXTzW +nLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/HoZdenoVve8AjhUi +VBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH4QIDAQABo3QwcjARBglghkgBhvhC +AQEEBAMCAAcwHwYDVR0jBBgwFoAUVeSB0RGAvtiJuQijMfmhJAkWuXAwHQYDVR0OBBYEFFXkgdER +gL7YibkIozH5oSQJFrlwMB0GCSqGSIb2fQdBAAQQMA4bCFY1LjA6NC4wAwIEkDANBgkqhkiG9w0B +AQUFAAOCAQEAWUesIYSKF8mciVMeuoCFGsY8Tj6xnLZ8xpJdGGQC49MGCBFhfGPjK50xA3B20qMo +oPS7mmNz7W3lKtvtFKkrxjYR0CvrB4ul2p5cGZ1WEvVUKcgF7bISKo30Axv/55IQh7A6tcOdBTcS +o8f0FbnVpDkWm1M6I5HxqIKiaohowXkCIryqptau37AUX7iH0N18f3v/rxzP5tsHrV7bhZ3QKw0z +2wTR5klAEyt2+z7pnIkPFc4YsIV4IU9rTw76NmfNB/L/CNDi3tm/Kq+4h4YhPATKt5Rof8886ZjX +OP/swNlQ8C5LWK5Gb9Auw2DaclVyvUxFnmG6v4SBkgPR0ml8xQ== +-----END CERTIFICATE----- + +Baltimore CyberTrust Root +========================= +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE +ChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li +ZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC +SUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs +dGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME +uyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB +UnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C +G9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9 +XbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr +l3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI +VDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB +BQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh +cL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5 +hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa +Y71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H +RCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp +-----END CERTIFICATE----- + +Equifax Secure Global eBusiness CA +================================== +-----BEGIN CERTIFICATE----- +MIICkDCCAfmgAwIBAgIBATANBgkqhkiG9w0BAQQFADBaMQswCQYDVQQGEwJVUzEcMBoGA1UEChMT +RXF1aWZheCBTZWN1cmUgSW5jLjEtMCsGA1UEAxMkRXF1aWZheCBTZWN1cmUgR2xvYmFsIGVCdXNp +bmVzcyBDQS0xMB4XDTk5MDYyMTA0MDAwMFoXDTIwMDYyMTA0MDAwMFowWjELMAkGA1UEBhMCVVMx +HDAaBgNVBAoTE0VxdWlmYXggU2VjdXJlIEluYy4xLTArBgNVBAMTJEVxdWlmYXggU2VjdXJlIEds +b2JhbCBlQnVzaW5lc3MgQ0EtMTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuucXkAJlsTRV +PEnCUdXfp9E3j9HngXNBUmCbnaEXJnitx7HoJpQytd4zjTov2/KaelpzmKNc6fuKcxtc58O/gGzN +qfTWK8D3+ZmqY6KxRwIP1ORROhI8bIpaVIRw28HFkM9yRcuoWcDNM50/o5brhTMhHD4ePmBudpxn +hcXIw2ECAwEAAaNmMGQwEQYJYIZIAYb4QgEBBAQDAgAHMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0j +BBgwFoAUvqigdHJQa0S3ySPY+6j/s1draGwwHQYDVR0OBBYEFL6ooHRyUGtEt8kj2Puo/7NXa2hs +MA0GCSqGSIb3DQEBBAUAA4GBADDiAVGqx+pf2rnQZQ8w1j7aDRRJbpGTJxQx78T3LUX47Me/okEN +I7SS+RkAZ70Br83gcfxaz2TE4JaY0KNA4gGK7ycH8WUBikQtBmV1UsCGECAhX2xrD2yuCRyv8qIY +NMR1pHMc8Y3c7635s3a0kr/clRAevsvIO1qEYBlWlKlV +-----END CERTIFICATE----- + +Equifax Secure eBusiness CA 1 +============================= +-----BEGIN CERTIFICATE----- +MIICgjCCAeugAwIBAgIBBDANBgkqhkiG9w0BAQQFADBTMQswCQYDVQQGEwJVUzEcMBoGA1UEChMT +RXF1aWZheCBTZWN1cmUgSW5jLjEmMCQGA1UEAxMdRXF1aWZheCBTZWN1cmUgZUJ1c2luZXNzIENB +LTEwHhcNOTkwNjIxMDQwMDAwWhcNMjAwNjIxMDQwMDAwWjBTMQswCQYDVQQGEwJVUzEcMBoGA1UE +ChMTRXF1aWZheCBTZWN1cmUgSW5jLjEmMCQGA1UEAxMdRXF1aWZheCBTZWN1cmUgZUJ1c2luZXNz +IENBLTEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM4vGbwXt3fek6lfWg0XTzQaDJj0ItlZ +1MRoRvC0NcWFAyDGr0WlIVFFQesWWDYyb+JQYmT5/VGcqiTZ9J2DKocKIdMSODRsjQBuWqDZQu4a +IZX5UkxVWsUPOE9G+m34LjXWHXzr4vCwdYDIqROsvojvOm6rXyo4YgKwEnv+j6YDAgMBAAGjZjBk +MBEGCWCGSAGG+EIBAQQEAwIABzAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFEp4MlIR21kW +Nl7fwRQ2QGpHfEyhMB0GA1UdDgQWBBRKeDJSEdtZFjZe38EUNkBqR3xMoTANBgkqhkiG9w0BAQQF +AAOBgQB1W6ibAxHm6VZMzfmpTMANmvPMZWnmJXbMWbfWVMMdzZmsGd20hdXgPfxiIKeES1hl8eL5 +lSE/9dR+WB5Hh1Q+WKG1tfgq73HnvMP2sUlG4tega+VWeponmHxGYhTnyfxuAxJ5gDgdSIKN/Bf+ +KpYrtWKmpj29f5JZzVoqgrI3eQ== +-----END CERTIFICATE----- + +Equifax Secure eBusiness CA 2 +============================= +-----BEGIN CERTIFICATE----- +MIIDIDCCAomgAwIBAgIEN3DPtTANBgkqhkiG9w0BAQUFADBOMQswCQYDVQQGEwJVUzEXMBUGA1UE +ChMORXF1aWZheCBTZWN1cmUxJjAkBgNVBAsTHUVxdWlmYXggU2VjdXJlIGVCdXNpbmVzcyBDQS0y +MB4XDTk5MDYyMzEyMTQ0NVoXDTE5MDYyMzEyMTQ0NVowTjELMAkGA1UEBhMCVVMxFzAVBgNVBAoT +DkVxdWlmYXggU2VjdXJlMSYwJAYDVQQLEx1FcXVpZmF4IFNlY3VyZSBlQnVzaW5lc3MgQ0EtMjCB +nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA5Dk5kx5SBhsoNviyoynF7Y6yEb3+6+e0dMKP/wXn +2Z0GvxLIPw7y1tEkshHe0XMJitSxLJgJDR5QRrKDpkWNYmi7hRsgcDKqQM2mll/EcTc/BPO3QSQ5 +BxoeLmFYoBIL5aXfxavqN3HMHMg3OrmXUqesxWoklE6ce8/AatbfIb0CAwEAAaOCAQkwggEFMHAG +A1UdHwRpMGcwZaBjoGGkXzBdMQswCQYDVQQGEwJVUzEXMBUGA1UEChMORXF1aWZheCBTZWN1cmUx +JjAkBgNVBAsTHUVxdWlmYXggU2VjdXJlIGVCdXNpbmVzcyBDQS0yMQ0wCwYDVQQDEwRDUkwxMBoG +A1UdEAQTMBGBDzIwMTkwNjIzMTIxNDQ1WjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAUUJ4L6q9e +uSBIplBqy/3YIHqngnYwHQYDVR0OBBYEFFCeC+qvXrkgSKZQasv92CB6p4J2MAwGA1UdEwQFMAMB +Af8wGgYJKoZIhvZ9B0EABA0wCxsFVjMuMGMDAgbAMA0GCSqGSIb3DQEBBQUAA4GBAAyGgq3oThr1 +jokn4jVYPSm0B482UJW/bsGe68SQsoWou7dC4A8HOd/7npCy0cE+U58DRLB+S/Rv5Hwf5+Kx5Lia +78O9zt4LMjTZ3ijtM2vE1Nc9ElirfQkty3D1E4qUoSek1nDFbZS1yX2doNLGCEnZZpum0/QL3MUm +V+GRMOrN +-----END CERTIFICATE----- + +AddTrust Low-Value Services Root +================================ +-----BEGIN CERTIFICATE----- +MIIEGDCCAwCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQGEwJTRTEUMBIGA1UEChML +QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEwHwYDVQQDExhBZGRU +cnVzdCBDbGFzcyAxIENBIFJvb3QwHhcNMDAwNTMwMTAzODMxWhcNMjAwNTMwMTAzODMxWjBlMQsw +CQYDVQQGEwJTRTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBO +ZXR3b3JrMSEwHwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3QwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQCWltQhSWDia+hBBwzexODcEyPNwTXH+9ZOEQpnXvUGW2ulCDtbKRY6 +54eyNAbFvAWlA3yCyykQruGIgb3WntP+LVbBFc7jJp0VLhD7Bo8wBN6ntGO0/7Gcrjyvd7ZWxbWr +oulpOj0OM3kyP3CCkplhbY0wCI9xP6ZIVxn4JdxLZlyldI+Yrsj5wAYi56xz36Uu+1LcsRVlIPo1 +Zmne3yzxbrww2ywkEtvrNTVokMsAsJchPXQhI2U0K7t4WaPW4XY5mqRJjox0r26kmqPZm9I4XJui +GMx1I4S+6+JNM3GOGvDC+Mcdoq0Dlyz4zyXG9rgkMbFjXZJ/Y/AlyVMuH79NAgMBAAGjgdIwgc8w +HQYDVR0OBBYEFJWxtPCUtr3H2tERCSG+wa9J/RB7MAsGA1UdDwQEAwIBBjAPBgNVHRMBAf8EBTAD +AQH/MIGPBgNVHSMEgYcwgYSAFJWxtPCUtr3H2tERCSG+wa9J/RB7oWmkZzBlMQswCQYDVQQGEwJT +RTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEw +HwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBACxt +ZBsfzQ3duQH6lmM0MkhHma6X7f1yFqZzR1r0693p9db7RcwpiURdv0Y5PejuvE1Uhh4dbOMXJ0Ph +iVYrqW9yTkkz43J8KiOavD7/KCrto/8cI7pDVwlnTUtiBi34/2ydYB7YHEt9tTEv2dB8Xfjea4MY +eDdXL+gzB2ffHsdrKpV2ro9Xo/D0UrSpUwjP4E/TelOL/bscVjby/rK25Xa71SJlpz/+0WatC7xr +mYbvP33zGDLKe8bjq2RGlfgmadlVg3sslgf/WSxEo8bl6ancoWOAWiFeIc9TVPC6b4nbqKqVz4vj +ccweGyBECMB6tkD9xOQ14R0WHNC8K47Wcdk= +-----END CERTIFICATE----- + +AddTrust External Root +====================== +-----BEGIN CERTIFICATE----- +MIIENjCCAx6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBvMQswCQYDVQQGEwJTRTEUMBIGA1UEChML +QWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFsIFRUUCBOZXR3b3JrMSIwIAYD +VQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEw +NDgzOFowbzELMAkGA1UEBhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMSYwJAYDVQQLEx1BZGRU +cnVzdCBFeHRlcm5hbCBUVFAgTmV0d29yazEiMCAGA1UEAxMZQWRkVHJ1c3QgRXh0ZXJuYWwgQ0Eg +Um9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALf3GjPm8gAELTngTlvtH7xsD821 ++iO2zt6bETOXpClMfZOfvUq8k+0DGuOPz+VtUFrWlymUWoCwSXrbLpX9uMq/NzgtHj6RQa1wVsfw +Tz/oMp50ysiQVOnGXw94nZpAPA6sYapeFI+eh6FqUNzXmk6vBbOmcZSccbNQYArHE504B4YCqOmo +aSYYkKtMsE8jqzpPhNjfzp/haW+710LXa0Tkx63ubUFfclpxCDezeWWkWaCUN/cALw3CknLa0Dhy +2xSoRcRdKn23tNbE7qzNE0S3ySvdQwAl+mG5aWpYIxG3pzOPVnVZ9c0p10a3CitlttNCbxWyuHv7 +7+ldU9U0WicCAwEAAaOB3DCB2TAdBgNVHQ4EFgQUrb2YejS0Jvf6xCZU7wO94CTLVBowCwYDVR0P +BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wgZkGA1UdIwSBkTCBjoAUrb2YejS0Jvf6xCZU7wO94CTL +VBqhc6RxMG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEmMCQGA1UECxMdQWRk +VHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsxIjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENB +IFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBALCb4IUlwtYj4g+WBpKdQZic2YR5gdkeWxQHIzZl +j7DYd7usQWxHYINRsPkyPef89iYTx4AWpb9a/IfPeHmJIZriTAcKhjW88t5RxNKWt9x+Tu5w/Rw5 +6wwCURQtjr0W4MHfRnXnJK3s9EK0hZNwEGe6nQY1ShjTK3rMUUKhemPR5ruhxSvCNr4TDea9Y355 +e6cJDUCrat2PisP29owaQgVR1EX1n6diIWgVIEM8med8vSTYqZEXc4g/VhsxOBi0cQ+azcgOno4u +G+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5amnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ= +-----END CERTIFICATE----- + +AddTrust Public Services Root +============================= +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIBATANBgkqhkiG9w0BAQUFADBkMQswCQYDVQQGEwJTRTEUMBIGA1UEChML +QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSAwHgYDVQQDExdBZGRU +cnVzdCBQdWJsaWMgQ0EgUm9vdDAeFw0wMDA1MzAxMDQxNTBaFw0yMDA1MzAxMDQxNTBaMGQxCzAJ +BgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQIE5l +dHdvcmsxIDAeBgNVBAMTF0FkZFRydXN0IFB1YmxpYyBDQSBSb290MIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEA6Rowj4OIFMEg2Dybjxt+A3S72mnTRqX4jsIMEZBRpS9mVEBV6tsfSlbu +nyNu9DnLoblv8n75XYcmYZ4c+OLspoH4IcUkzBEMP9smcnrHAZcHF/nXGCwwfQ56HmIexkvA/X1i +d9NEHif2P0tEs7c42TkfYNVRknMDtABp4/MUTu7R3AnPdzRGULD4EfL+OHn3Bzn+UZKXC1sIXzSG +Aa2Il+tmzV7R/9x98oTaunet3IAIx6eH1lWfl2royBFkuucZKT8Rs3iQhCBSWxHveNCD9tVIkNAw +HM+A+WD+eeSI8t0A65RF62WUaUC6wNW0uLp9BBGo6zEFlpROWCGOn9Bg/QIDAQABo4HRMIHOMB0G +A1UdDgQWBBSBPjfYkrAfd59ctKtzquf2NGAv+jALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zCBjgYDVR0jBIGGMIGDgBSBPjfYkrAfd59ctKtzquf2NGAv+qFopGYwZDELMAkGA1UEBhMCU0Ux +FDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRUcnVzdCBUVFAgTmV0d29yazEgMB4G +A1UEAxMXQWRkVHJ1c3QgUHVibGljIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBAAP3FUr4 +JNojVhaTdt02KLmuG7jD8WS6IBh4lSknVwW8fCr0uVFV2ocC3g8WFzH4qnkuCRO7r7IgGRLlk/lL ++YPoRNWyQSW/iHVv/xD8SlTQX/D67zZzfRs2RcYhbbQVuE7PnFylPVoAjgbjPGsye/Kf8Lb93/Ao +GEjwxrzQvzSAlsJKsW2Ox5BF3i9nrEUEo3rcVZLJR2bYGozH7ZxOmuASu7VqTITh4SINhwBk/ox9 +Yjllpu9CtoAlEmEBqCQTcAARJl/6NVDFSMwGR+gn2HCNX2TmoUQmXiLsks3/QppEIW1cxeMiHV9H +EufOX1362KqxMy3ZdvJOOjMMK7MtkAY= +-----END CERTIFICATE----- + +AddTrust Qualified Certificates Root +==================================== +-----BEGIN CERTIFICATE----- +MIIEHjCCAwagAwIBAgIBATANBgkqhkiG9w0BAQUFADBnMQswCQYDVQQGEwJTRTEUMBIGA1UEChML +QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSMwIQYDVQQDExpBZGRU +cnVzdCBRdWFsaWZpZWQgQ0EgUm9vdDAeFw0wMDA1MzAxMDQ0NTBaFw0yMDA1MzAxMDQ0NTBaMGcx +CzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQ +IE5ldHdvcmsxIzAhBgNVBAMTGkFkZFRydXN0IFF1YWxpZmllZCBDQSBSb290MIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5B6a/twJWoekn0e+EV+vhDTbYjx5eLfpMLXsDBwqxBb/4Oxx +64r1EW7tTw2R0hIYLUkVAcKkIhPHEWT/IhKauY5cLwjPcWqzZwFZ8V1G87B4pfYOQnrjfxvM0PC3 +KP0q6p6zsLkEqv32x7SxuCqg+1jxGaBvcCV+PmlKfw8i2O+tCBGaKZnhqkRFmhJePp1tUvznoD1o +L/BLcHwTOK28FSXx1s6rosAx1i+f4P8UWfyEk9mHfExUE+uf0S0R+Bg6Ot4l2ffTQO2kBhLEO+GR +wVY18BTcZTYJbqukB8c10cIDMzZbdSZtQvESa0NvS3GU+jQd7RNuyoB/mC9suWXY6QIDAQABo4HU +MIHRMB0GA1UdDgQWBBQ5lYtii1zJ1IC6WA+XPxUIQ8yYpzALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zCBkQYDVR0jBIGJMIGGgBQ5lYtii1zJ1IC6WA+XPxUIQ8yYp6FrpGkwZzELMAkGA1UE +BhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRUcnVzdCBUVFAgTmV0d29y +azEjMCEGA1UEAxMaQWRkVHJ1c3QgUXVhbGlmaWVkIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQAD +ggEBABmrder4i2VhlRO6aQTvhsoToMeqT2QbPxj2qC0sVY8FtzDqQmodwCVRLae/DLPt7wh/bDxG +GuoYQ992zPlmhpwsaPXpF/gxsxjE1kh9I0xowX67ARRvxdlu3rsEQmr49lx95dr6h+sNNVJn0J6X +dgWTP5XHAeZpVTh/EGGZyeNfpso+gmNIquIISD6q8rKFYqa0p9m9N5xotS1WfbC3P6CxB9bpT9ze +RXEwMn8bLgn5v1Kh7sKAPgZcLlVAwRv1cEWw3F369nJad9Jjzc9YiQBCYz95OdBEsIJuQRno3eDB +iFrRHnGTHyQwdOUeqN48Jzd/g66ed8/wMLH/S5noxqE= +-----END CERTIFICATE----- + +Entrust Root Certification Authority +==================================== +-----BEGIN CERTIFICATE----- +MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMCVVMxFjAUBgNV +BAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0Lm5ldC9DUFMgaXMgaW5jb3Jw +b3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMWKGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsG +A1UEAxMkRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0 +MloXDTI2MTEyNzIwNTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMu +MTkwNwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSByZWZlcmVu +Y2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNVBAMTJEVudHJ1c3QgUm9v +dCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +ALaVtkNC+sZtKm9I35RMOVcF7sN5EUFoNu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYsz +A9u3g3s+IIRe7bJWKKf44LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOww +Cj0Yzfv9KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGIrb68 +j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi94DkZfs0Nw4pgHBN +rziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOBsDCBrTAOBgNVHQ8BAf8EBAMCAQYw +DwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAigA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1 +MzQyWjAfBgNVHSMEGDAWgBRokORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DH +hmak8fdLQ/uEvW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA +A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9tO1KzKtvn1ISM +Y/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6ZuaAGAT/3B+XxFNSRuzFVJ7yVTa +v52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTS +W3iDVuycNsMm4hH2Z0kdkquM++v/eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0 +tHuu2guQOHXvgR1m0vdXcDazv/wor3ElhVsT/h5/WrQ8 +-----END CERTIFICATE----- + +RSA Security 2048 v3 +==================== +-----BEGIN CERTIFICATE----- +MIIDYTCCAkmgAwIBAgIQCgEBAQAAAnwAAAAKAAAAAjANBgkqhkiG9w0BAQUFADA6MRkwFwYDVQQK +ExBSU0EgU2VjdXJpdHkgSW5jMR0wGwYDVQQLExRSU0EgU2VjdXJpdHkgMjA0OCBWMzAeFw0wMTAy +MjIyMDM5MjNaFw0yNjAyMjIyMDM5MjNaMDoxGTAXBgNVBAoTEFJTQSBTZWN1cml0eSBJbmMxHTAb +BgNVBAsTFFJTQSBTZWN1cml0eSAyMDQ4IFYzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEAt49VcdKA3XtpeafwGFAyPGJn9gqVB93mG/Oe2dJBVGutn3y+Gc37RqtBaB4Y6lXIL5F4iSj7 +Jylg/9+PjDvJSZu1pJTOAeo+tWN7fyb9Gd3AIb2E0S1PRsNO3Ng3OTsor8udGuorryGlwSMiuLgb +WhOHV4PR8CDn6E8jQrAApX2J6elhc5SYcSa8LWrg903w8bYqODGBDSnhAMFRD0xS+ARaqn1y07iH +KrtjEAMqs6FPDVpeRrc9DvV07Jmf+T0kgYim3WBU6JU2PcYJk5qjEoAAVZkZR73QpXzDuvsf9/UP ++Ky5tfQ3mBMY3oVbtwyCO4dvlTlYMNpuAWgXIszACwIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/ +MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBQHw1EwpKrpRa41JPr/JCwz0LGdjDAdBgNVHQ4E +FgQUB8NRMKSq6UWuNST6/yQsM9CxnYwwDQYJKoZIhvcNAQEFBQADggEBAF8+hnZuuDU8TjYcHnmY +v/3VEhF5Ug7uMYm83X/50cYVIeiKAVQNOvtUudZj1LGqlk2iQk3UUx+LEN5/Zb5gEydxiKRz44Rj +0aRV4VCT5hsOedBnvEbIvz8XDZXmxpBp3ue0L96VfdASPz0+f00/FGj1EVDVwfSQpQgdMWD/YIwj +VAqv/qFuxdF6Kmh4zx6CCiC0H63lhbJqaHVOrSU3lIW+vaHU6rcMSzyd6BIA8F+sDeGscGNz9395 +nzIlQnQFgCi/vcEkllgVsRch6YlL2weIZ/QVrXA+L02FO8K32/6YaCOJ4XQP3vTFhGMpG8zLB8kA +pKnXwiJPZ9d37CAFYd4= +-----END CERTIFICATE----- + +GeoTrust Global CA +================== +-----BEGIN CERTIFICATE----- +MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVTMRYwFAYDVQQK +Ew1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9iYWwgQ0EwHhcNMDIwNTIxMDQw +MDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5j +LjEbMBkGA1UEAxMSR2VvVHJ1c3QgR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEA2swYYzD99BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjo +BbdqfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDviS2Aelet +8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU1XupGc1V3sjs0l44U+Vc +T4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+bw8HHa8sHo9gOeL6NlMTOdReJivbPagU +vTLrGAMoUgRx5aszPeE4uwc2hGKceeoWMPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBTAephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVk +DBF9qn1luMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKInZ57Q +zxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfStQWVYrmm3ok9Nns4 +d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcFPseKUgzbFbS9bZvlxrFUaKnjaZC2 +mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Unhw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6p +XE0zX5IJL4hmXXeXxx12E6nV5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvm +Mw== +-----END CERTIFICATE----- + +GeoTrust Global CA 2 +==================== +-----BEGIN CERTIFICATE----- +MIIDZjCCAk6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBEMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN +R2VvVHJ1c3QgSW5jLjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFsIENBIDIwHhcNMDQwMzA0MDUw +MDAwWhcNMTkwMzA0MDUwMDAwWjBEMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5j +LjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFsIENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw +ggEKAoIBAQDvPE1APRDfO1MA4Wf+lGAVPoWI8YkNkMgoI5kF6CsgncbzYEbYwbLVjDHZ3CB5JIG/ +NTL8Y2nbsSpr7iFY8gjpeMtvy/wWUsiRxP89c96xPqfCfWbB9X5SJBri1WeR0IIQ13hLTytCOb1k +LUCgsBDTOEhGiKEMuzozKmKY+wCdE1l/bztyqu6mD4b5BWHqZ38MN5aL5mkWRxHCJ1kDs6ZgwiFA +Vvqgx306E+PsV8ez1q6diYD3Aecs9pYrEw15LNnA5IZ7S4wMcoKK+xfNAGw6EzywhIdLFnopsk/b +HdQL82Y3vdj2V7teJHq4PIu5+pIaGoSe2HSPqht/XvT+RSIhAgMBAAGjYzBhMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFHE4NvICMVNHK266ZUapEBVYIAUJMB8GA1UdIwQYMBaAFHE4NvICMVNH +K266ZUapEBVYIAUJMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQUFAAOCAQEAA/e1K6tdEPx7 +srJerJsOflN4WT5CBP51o62sgU7XAotexC3IUnbHLB/8gTKY0UvGkpMzNTEv/NgdRN3ggX+d6Yvh +ZJFiCzkIjKx0nVnZellSlxG5FntvRdOW2TF9AjYPnDtuzywNA0ZF66D0f0hExghAzN4bcLUprbqL +OzRldRtxIR0sFAqwlpW41uryZfspuk/qkZN0abby/+Ea0AzRdoXLiiW9l14sbxWZJue2Kf8i7MkC +x1YAzUm5s2x7UwQa4qjJqhIFI8LO57sEAszAR6LkxCkvW0VXiVHuPOtSCP8HNR6fNWpHSlaY0VqF +H4z1Ir+rzoPz4iIprn2DQKi6bA== +-----END CERTIFICATE----- + +GeoTrust Universal CA +===================== +-----BEGIN CERTIFICATE----- +MIIFaDCCA1CgAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN +R2VvVHJ1c3QgSW5jLjEeMBwGA1UEAxMVR2VvVHJ1c3QgVW5pdmVyc2FsIENBMB4XDTA0MDMwNDA1 +MDAwMFoXDTI5MDMwNDA1MDAwMFowRTELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IElu +Yy4xHjAcBgNVBAMTFUdlb1RydXN0IFVuaXZlcnNhbCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIP +ADCCAgoCggIBAKYVVaCjxuAfjJ0hUNfBvitbtaSeodlyWL0AG0y/YckUHUWCq8YdgNY96xCcOq9t +JPi8cQGeBvV8Xx7BDlXKg5pZMK4ZyzBIle0iN430SppyZj6tlcDgFgDgEB8rMQ7XlFTTQjOgNB0e +RXbdT8oYN+yFFXoZCPzVx5zw8qkuEKmS5j1YPakWaDwvdSEYfyh3peFhF7em6fgemdtzbvQKoiFs +7tqqhZJmr/Z6a4LauiIINQ/PQvE1+mrufislzDoR5G2vc7J2Ha3QsnhnGqQ5HFELZ1aD/ThdDc7d +8Lsrlh/eezJS/R27tQahsiFepdaVaH/wmZ7cRQg+59IJDTWU3YBOU5fXtQlEIGQWFwMCTFMNaN7V +qnJNk22CDtucvc+081xdVHppCZbW2xHBjXWotM85yM48vCR85mLK4b19p71XZQvk/iXttmkQ3Cga +Rr0BHdCXteGYO8A3ZNY9lO4L4fUorgtWv3GLIylBjobFS1J72HGrH4oVpjuDWtdYAVHGTEHZf9hB +Z3KiKN9gg6meyHv8U3NyWfWTehd2Ds735VzZC1U0oqpbtWpU5xPKV+yXbfReBi9Fi1jUIxaS5BZu +KGNZMN9QAZxjiRqf2xeUgnA3wySemkfWWspOqGmJch+RbNt+nhutxx9z3SxPGWX9f5NAEC7S8O08 +ni4oPmkmM8V7AgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNq7LqqwDLiIJlF0 +XG0D08DYj3rWMB8GA1UdIwQYMBaAFNq7LqqwDLiIJlF0XG0D08DYj3rWMA4GA1UdDwEB/wQEAwIB +hjANBgkqhkiG9w0BAQUFAAOCAgEAMXjmx7XfuJRAyXHEqDXsRh3ChfMoWIawC/yOsjmPRFWrZIRc +aanQmjg8+uUfNeVE44B5lGiku8SfPeE0zTBGi1QrlaXv9z+ZhP015s8xxtxqv6fXIwjhmF7DWgh2 +qaavdy+3YL1ERmrvl/9zlcGO6JP7/TG37FcREUWbMPEaiDnBTzynANXH/KttgCJwpQzgXQQpAvvL +oJHRfNbDflDVnVi+QTjruXU8FdmbyUqDWcDaU/0zuzYYm4UPFd3uLax2k7nZAY1IEKj79TiG8dsK +xr2EoyNB3tZ3b4XUhRxQ4K5RirqNPnbiucon8l+f725ZDQbYKxek0nxru18UGkiPGkzns0ccjkxF +KyDuSN/n3QmOGKjaQI2SJhFTYXNd673nxE0pN2HrrDktZy4W1vUAg4WhzH92xH3kt0tm7wNFYGm2 +DFKWkoRepqO1pD4r2czYG0eq8kTaT/kD6PAUyz/zg97QwVTjt+gKN02LIFkDMBmhLMi9ER/frslK +xfMnZmaGrGiR/9nmUxwPi1xpZQomyB40w11Re9epnAahNt3ViZS82eQtDF4JbAiXfKM9fJP/P6EU +p8+1Xevb2xzEdt+Iub1FBZUbrvxGakyvSOPOrg/SfuvmbJxPgWp6ZKy7PtXny3YuxadIwVyQD8vI +P/rmMuGNG2+k5o7Y+SlIis5z/iw= +-----END CERTIFICATE----- + +GeoTrust Universal CA 2 +======================= +-----BEGIN CERTIFICATE----- +MIIFbDCCA1SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBHMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN +R2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVyc2FsIENBIDIwHhcNMDQwMzA0 +MDUwMDAwWhcNMjkwMzA0MDUwMDAwWjBHMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3Qg +SW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVyc2FsIENBIDIwggIiMA0GCSqGSIb3DQEBAQUA +A4ICDwAwggIKAoICAQCzVFLByT7y2dyxUxpZKeexw0Uo5dfR7cXFS6GqdHtXr0om/Nj1XqduGdt0 +DE81WzILAePb63p3NeqqWuDW6KFXlPCQo3RWlEQwAx5cTiuFJnSCegx2oG9NzkEtoBUGFF+3Qs17 +j1hhNNwqCPkuwwGmIkQcTAeC5lvO0Ep8BNMZcyfwqph/Lq9O64ceJHdqXbboW0W63MOhBW9Wjo8Q +JqVJwy7XQYci4E+GymC16qFjwAGXEHm9ADwSbSsVsaxLse4YuU6W3Nx2/zu+z18DwPw76L5GG//a +QMJS9/7jOvdqdzXQ2o3rXhhqMcceujwbKNZrVMaqW9eiLBsZzKIC9ptZvTdrhrVtgrrY6slWvKk2 +WP0+GfPtDCapkzj4T8FdIgbQl+rhrcZV4IErKIM6+vR7IVEAvlI4zs1meaj0gVbi0IMJR1FbUGrP +20gaXT73y/Zl92zxlfgCOzJWgjl6W70viRu/obTo/3+NjN8D8WBOWBFM66M/ECuDmgFz2ZRthAAn +ZqzwcEAJQpKtT5MNYQlRJNiS1QuUYbKHsu3/mjX/hVTK7URDrBs8FmtISgocQIgfksILAAX/8sgC +SqSqqcyZlpwvWOB94b67B9xfBHJcMTTD7F8t4D1kkCLm0ey4Lt1ZrtmhN79UNdxzMk+MBB4zsslG +8dhcyFVQyWi9qLo2CQIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR281Xh+qQ2 ++/CfXGJx7Tz0RzgQKzAfBgNVHSMEGDAWgBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAOBgNVHQ8BAf8E +BAMCAYYwDQYJKoZIhvcNAQEFBQADggIBAGbBxiPz2eAubl/oz66wsCVNK/g7WJtAJDday6sWSf+z +dXkzoS9tcBc0kf5nfo/sm+VegqlVHy/c1FEHEv6sFj4sNcZj/NwQ6w2jqtB8zNHQL1EuxBRa3ugZ +4T7GzKQp5y6EqgYweHZUcyiYWTjgAA1i00J9IZ+uPTqM1fp3DRgrFg5fNuH8KrUwJM/gYwx7WBr+ +mbpCErGR9Hxo4sjoryzqyX6uuyo9DRXcNJW2GHSoag/HtPQTxORb7QrSpJdMKu0vbBKJPfEncKpq +A1Ihn0CoZ1Dy81of398j9tx4TuaYT1U6U+Pv8vSfx3zYWK8pIpe44L2RLrB27FcRz+8pRPPphXpg +Y+RdM4kX2TGq2tbzGDVyz4crL2MjhF2EjD9XoIj8mZEoJmmZ1I+XRL6O1UixpCgp8RW04eWe3fiP +pm8m1wk8OhwRDqZsN/etRIcsKMfYdIKz0G9KV7s1KSegi+ghp4dkNl3M2Basx7InQJJVOCiNUW7d +FGdTbHFcJoRNdVq2fmBWqU2t+5sel/MN2dKXVHfaPRK34B7vCAas+YWH6aLcr34YEoP9VhdBLtUp +gn2Z9DH2canPLAEnpQW5qrJITirvn5NSUZU8UnOOVkwXQMAJKOSLakhT2+zNVVXxxvjpoixMptEm +X36vWkzaH6byHCx+rgIW0lbQL1dTR+iS +-----END CERTIFICATE----- + +UTN-USER First-Network Applications +=================================== +-----BEGIN CERTIFICATE----- +MIIEZDCCA0ygAwIBAgIQRL4Mi1AAJLQR0zYwS8AzdzANBgkqhkiG9w0BAQUFADCBozELMAkGA1UE +BhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhl +IFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xKzAp +BgNVBAMTIlVUTi1VU0VSRmlyc3QtTmV0d29yayBBcHBsaWNhdGlvbnMwHhcNOTkwNzA5MTg0ODM5 +WhcNMTkwNzA5MTg1NzQ5WjCBozELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5T +YWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho +dHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xKzApBgNVBAMTIlVUTi1VU0VSRmlyc3QtTmV0d29yayBB +cHBsaWNhdGlvbnMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCz+5Gh5DZVhawGNFug +mliy+LUPBXeDrjKxdpJo7CNKyXY/45y2N3kDuatpjQclthln5LAbGHNhSuh+zdMvZOOmfAz6F4Cj +DUeJT1FxL+78P/m4FoCHiZMlIJpDgmkkdihZNaEdwH+DBmQWICzTSaSFtMBhf1EI+GgVkYDLpdXu +Ozr0hAReYFmnjDRy7rh4xdE7EkpvfmUnuaRVxblvQ6TFHSyZwFKkeEwVs0CYCGtDxgGwenv1axwi +P8vv/6jQOkt2FZ7S0cYu49tXGzKiuG/ohqY/cKvlcJKrRB5AUPuco2LkbG6gyN7igEL66S/ozjIE +j3yNtxyjNTwV3Z7DrpelAgMBAAGjgZEwgY4wCwYDVR0PBAQDAgHGMA8GA1UdEwEB/wQFMAMBAf8w +HQYDVR0OBBYEFPqGydvguul49Uuo1hXf8NPhahQ8ME8GA1UdHwRIMEYwRKBCoECGPmh0dHA6Ly9j +cmwudXNlcnRydXN0LmNvbS9VVE4tVVNFUkZpcnN0LU5ldHdvcmtBcHBsaWNhdGlvbnMuY3JsMA0G +CSqGSIb3DQEBBQUAA4IBAQCk8yXM0dSRgyLQzDKrm5ZONJFUICU0YV8qAhXhi6r/fWRRzwr/vH3Y +IWp4yy9Rb/hCHTO967V7lMPDqaAt39EpHx3+jz+7qEUqf9FuVSTiuwL7MT++6LzsQCv4AdRWOOTK +RIK1YSAhZ2X28AvnNPilwpyjXEAfhZOVBt5P1CeptqX8Fs1zMT+4ZSfP1FMa8Kxun08FDAOBp4Qp +xFq9ZFdyrTvPNximmMatBrTcCKME1SmklpoSZ0qMYEWd8SOasACcaLWYUNPvji6SZbFIPiG+FTAq +DbUMo2s/rn9X9R+WfN9v3YIwLGUbQErNaLly7HF27FSOH4UMAWr6pjisH8SE +-----END CERTIFICATE----- + +America Online Root Certification Authority 1 +============================================= +-----BEGIN CERTIFICATE----- +MIIDpDCCAoygAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEcMBoGA1UEChMT +QW1lcmljYSBPbmxpbmUgSW5jLjE2MDQGA1UEAxMtQW1lcmljYSBPbmxpbmUgUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSAxMB4XDTAyMDUyODA2MDAwMFoXDTM3MTExOTIwNDMwMFowYzELMAkG +A1UEBhMCVVMxHDAaBgNVBAoTE0FtZXJpY2EgT25saW5lIEluYy4xNjA0BgNVBAMTLUFtZXJpY2Eg +T25saW5lIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgMTCCASIwDQYJKoZIhvcNAQEBBQAD +ggEPADCCAQoCggEBAKgv6KRpBgNHw+kqmP8ZonCaxlCyfqXfaE0bfA+2l2h9LaaLl+lkhsmj76CG +v2BlnEtUiMJIxUo5vxTjWVXlGbR0yLQFOVwWpeKVBeASrlmLojNoWBym1BW32J/X3HGrfpq/m44z +DyL9Hy7nBzbvYjnF3cu6JRQj3gzGPTzOggjmZj7aUTsWOqMFf6Dch9Wc/HKpoH145LcxVR5lu9Rh +sCFg7RAycsWSJR74kEoYeEfffjA3PlAb2xzTa5qGUwew76wGePiEmf4hjUyAtgyC9mZweRrTT6PP +8c9GsEsPPt2IYriMqQkoO3rHl+Ee5fSfwMCuJKDIodkP1nsmgmkyPacCAwEAAaNjMGEwDwYDVR0T +AQH/BAUwAwEB/zAdBgNVHQ4EFgQUAK3Zo/Z59m50qX8zPYEX10zPM94wHwYDVR0jBBgwFoAUAK3Z +o/Z59m50qX8zPYEX10zPM94wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBBQUAA4IBAQB8itEf +GDeC4Liwo+1WlchiYZwFos3CYiZhzRAW18y0ZTTQEYqtqKkFZu90821fnZmv9ov761KyBZiibyrF +VL0lvV+uyIbqRizBs73B6UlwGBaXCBOMIOAbLjpHyx7kADCVW/RFo8AasAFOq73AI25jP4BKxQft +3OJvx8Fi8eNy1gTIdGcL+oiroQHIb/AUr9KZzVGTfu0uOMe9zkZQPXLjeSWdm4grECDdpbgyn43g +Kd8hdIaC2y+CMMbHNYaz+ZZfRtsMRf3zUMNvxsNIrUam4SdHCh0Om7bCd39j8uB9Gr784N/Xx6ds +sPmuujz9dLQR6FgNgLzTqIA6me11zEZ7 +-----END CERTIFICATE----- + +America Online Root Certification Authority 2 +============================================= +-----BEGIN CERTIFICATE----- +MIIFpDCCA4ygAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEcMBoGA1UEChMT +QW1lcmljYSBPbmxpbmUgSW5jLjE2MDQGA1UEAxMtQW1lcmljYSBPbmxpbmUgUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSAyMB4XDTAyMDUyODA2MDAwMFoXDTM3MDkyOTE0MDgwMFowYzELMAkG +A1UEBhMCVVMxHDAaBgNVBAoTE0FtZXJpY2EgT25saW5lIEluYy4xNjA0BgNVBAMTLUFtZXJpY2Eg +T25saW5lIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgMjCCAiIwDQYJKoZIhvcNAQEBBQAD +ggIPADCCAgoCggIBAMxBRR3pPU0Q9oyxQcngXssNt79Hc9PwVU3dxgz6sWYFas14tNwC206B89en +fHG8dWOgXeMHDEjsJcQDIPT/DjsS/5uN4cbVG7RtIuOx238hZK+GvFciKtZHgVdEglZTvYYUAQv8 +f3SkWq7xuhG1m1hagLQ3eAkzfDJHA1zEpYNI9FdWboE2JxhP7JsowtS013wMPgwr38oE18aO6lhO +qKSlGBxsRZijQdEt0sdtjRnxrXm3gT+9BoInLRBYBbV4Bbkv2wxrkJB+FFk4u5QkE+XRnRTf04JN +RvCAOVIyD+OEsnpD8l7eXz8d3eOyG6ChKiMDbi4BFYdcpnV1x5dhvt6G3NRI270qv0pV2uh9UPu0 +gBe4lL8BPeraunzgWGcXuVjgiIZGZ2ydEEdYMtA1fHkqkKJaEBEjNa0vzORKW6fIJ/KD3l67Xnfn +6KVuY8INXWHQjNJsWiEOyiijzirplcdIz5ZvHZIlyMbGwcEMBawmxNJ10uEqZ8A9W6Wa6897Gqid +FEXlD6CaZd4vKL3Ob5Rmg0gp2OpljK+T2WSfVVcmv2/LNzGZo2C7HK2JNDJiuEMhBnIMoVxtRsX6 +Kc8w3onccVvdtjc+31D1uAclJuW8tf48ArO3+L5DwYcRlJ4jbBeKuIonDFRH8KmzwICMoCfrHRnj +B453cMor9H124HhnAgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFE1FwWg4u3Op +aaEg5+31IqEjFNeeMB8GA1UdIwQYMBaAFE1FwWg4u3OpaaEg5+31IqEjFNeeMA4GA1UdDwEB/wQE +AwIBhjANBgkqhkiG9w0BAQUFAAOCAgEAZ2sGuV9FOypLM7PmG2tZTiLMubekJcmnxPBUlgtk87FY +T15R/LKXeydlwuXK5w0MJXti4/qftIe3RUavg6WXSIylvfEWK5t2LHo1YGwRgJfMqZJS5ivmae2p ++DYtLHe/YUjRYwu5W1LtGLBDQiKmsXeu3mnFzcccobGlHBD7GL4acN3Bkku+KVqdPzW+5X1R+FXg +JXUjhx5c3LqdsKyzadsXg8n33gy8CNyRnqjQ1xU3c6U1uPx+xURABsPr+CKAXEfOAuMRn0T//Zoy +zH1kUQ7rVyZ2OuMeIjzCpjbdGe+n/BLzJsBZMYVMnNjP36TMzCmT/5RtdlwTCJfy7aULTd3oyWgO +ZtMADjMSW7yV5TKQqLPGbIOtd+6Lfn6xqavT4fG2wLHqiMDn05DpKJKUe2h7lyoKZy2FAjgQ5ANh +1NolNscIWC2hp1GvMApJ9aZphwctREZ2jirlmjvXGKL8nDgQzMY70rUXOm/9riW99XJZZLF0Kjhf +GEzfz3EEWjbUvy+ZnOjZurGV5gJLIaFb1cFPj65pbVPbAZO1XB4Y3WRayhgoPmMEEf0cjQAPuDff +Z4qdZqkCapH/E8ovXYO8h5Ns3CRRFgQlZvqz2cK6Kb6aSDiCmfS/O0oxGfm/jiEzFMpPVF/7zvuP +cX/9XhmgD0uRuMRUvAawRY8mkaKO/qk= +-----END CERTIFICATE----- + +Visa eCommerce Root +=================== +-----BEGIN CERTIFICATE----- +MIIDojCCAoqgAwIBAgIQE4Y1TR0/BvLB+WUF1ZAcYjANBgkqhkiG9w0BAQUFADBrMQswCQYDVQQG +EwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRlcm5hdGlvbmFsIFNlcnZpY2Ug +QXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNvbW1lcmNlIFJvb3QwHhcNMDIwNjI2MDIxODM2 +WhcNMjIwNjI0MDAxNjEyWjBrMQswCQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMm +VmlzYSBJbnRlcm5hdGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNv +bW1lcmNlIFJvb3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvV95WHm6h2mCxlCfL +F9sHP4CFT8icttD0b0/Pmdjh28JIXDqsOTPHH2qLJj0rNfVIsZHBAk4ElpF7sDPwsRROEW+1QK8b +RaVK7362rPKgH1g/EkZgPI2h4H3PVz4zHvtH8aoVlwdVZqW1LS7YgFmypw23RuwhY/81q6UCzyr0 +TP579ZRdhE2o8mCP2w4lPJ9zcc+U30rq299yOIzzlr3xF7zSujtFWsan9sYXiwGd/BmoKoMWuDpI +/k4+oKsGGelT84ATB+0tvz8KPFUgOSwsAGl0lUq8ILKpeeUYiZGo3BxN77t+Nwtd/jmliFKMAGzs +GHxBvfaLdXe6YJ2E5/4tAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEG +MB0GA1UdDgQWBBQVOIMPPyw/cDMezUb+B4wg4NfDtzANBgkqhkiG9w0BAQUFAAOCAQEAX/FBfXxc +CLkr4NWSR/pnXKUTwwMhmytMiUbPWU3J/qVAtmPN3XEolWcRzCSs00Rsca4BIGsDoo8Ytyk6feUW +YFN4PMCvFYP3j1IzJL1kk5fui/fbGKhtcbP3LBfQdCVp9/5rPJS+TUtBjE7ic9DjkCJzQ83z7+pz +zkWKsKZJ/0x9nXGIxHYdkFsd7v3M9+79YKWxehZx0RbQfBI8bGmX265fOZpwLwU8GUYEmSA20GBu +YQa7FkKMcPcw++DbZqMAAb3mLNqRX6BGi01qnD093QVG/na/oAo85ADmJ7f/hC3euiInlhBx6yLt +398znM/jra6O1I7mT1GvFpLgXPYHDw== +-----END CERTIFICATE----- + +Certum Root CA +============== +-----BEGIN CERTIFICATE----- +MIIDDDCCAfSgAwIBAgIDAQAgMA0GCSqGSIb3DQEBBQUAMD4xCzAJBgNVBAYTAlBMMRswGQYDVQQK +ExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBDQTAeFw0wMjA2MTExMDQ2Mzla +Fw0yNzA2MTExMDQ2MzlaMD4xCzAJBgNVBAYTAlBMMRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8u +by4xEjAQBgNVBAMTCUNlcnR1bSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM6x +wS7TT3zNJc4YPk/EjG+AanPIW1H4m9LcuwBcsaD8dQPugfCI7iNS6eYVM42sLQnFdvkrOYCJ5JdL +kKWoePhzQ3ukYbDYWMzhbGZ+nPMJXlVjhNWo7/OxLjBos8Q82KxujZlakE403Daaj4GIULdtlkIJ +89eVgw1BS7Bqa/j8D35in2fE7SZfECYPCE/wpFcozo+47UX2bu4lXapuOb7kky/ZR6By6/qmW6/K +Uz/iDsaWVhFu9+lmqSbYf5VT7QqFiLpPKaVCjF62/IUgAKpoC6EahQGcxEZjgoi2IrHu/qpGWX7P +NSzVttpd90gzFFS269lvzs2I1qsb2pY7HVkCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB/zANBgkq +hkiG9w0BAQUFAAOCAQEAuI3O7+cUus/usESSbLQ5PqKEbq24IXfS1HeCh+YgQYHu4vgRt2PRFze+ +GXYkHAQaTOs9qmdvLdTN/mUxcMUbpgIKumB7bVjCmkn+YzILa+M6wKyrO7Do0wlRjBCDxjTgxSvg +GrZgFCdsMneMvLJymM/NzD+5yCRCFNZX/OYmQ6kd5YCQzgNUKD73P9P4Te1qCjqTE5s7FCMTY5w/ +0YcneeVMUeMBrYVdGjux1XMQpNPyvG5k9VpWkKjHDkx0Dy5xO/fIR/RpbxXyEV6DHpx8Uq79AtoS +qFlnGNu8cN2bsWntgM6JQEhqDjXKKWYVIZQs6GAqm4VKQPNriiTsBhYscw== +-----END CERTIFICATE----- + +Comodo AAA Services root +======================== +-----BEGIN CERTIFICATE----- +MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS +R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg +TGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAw +MFoXDTI4MTIzMTIzNTk1OVowezELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hl +c3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNV +BAMMGEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQuaBtDFcCLNSS1UY8y2bmhG +C1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe3M/vg4aijJRPn2jymJBGhCfHdr/jzDUs +i14HZGWCwEiwqJH5YZ92IFCokcdmtet4YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszW +Y19zjNoFmag4qMsXeDZRrOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjH +Ypy+g8cmez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQUoBEK +Iz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wewYDVR0f +BHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20vQUFBQ2VydGlmaWNhdGVTZXJ2aWNl +cy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29tb2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2Vz +LmNybDANBgkqhkiG9w0BAQUFAAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm +7l3sAg9g1o1QGE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz +Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2G9w84FoVxp7Z +8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsil2D4kF501KKaU73yqWjgom7C +12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== +-----END CERTIFICATE----- + +Comodo Secure Services root +=========================== +-----BEGIN CERTIFICATE----- +MIIEPzCCAyegAwIBAgIBATANBgkqhkiG9w0BAQUFADB+MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS +R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg +TGltaXRlZDEkMCIGA1UEAwwbU2VjdXJlIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAw +MDAwMFoXDTI4MTIzMTIzNTk1OVowfjELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFu +Y2hlc3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxJDAi +BgNVBAMMG1NlY3VyZSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBAMBxM4KK0HDrc4eCQNUd5MvJDkKQ+d40uaG6EfQlhfPMcm3ye5drswfxdySRXyWP +9nQ95IDC+DwN879A6vfIUtFyb+/Iq0G4bi4XKpVpDM3SHpR7LZQdqnXXs5jLrLxkU0C8j6ysNstc +rbvd4JQX7NFc0L/vpZXJkMWwrPsbQ996CF23uPJAGysnnlDOXmWCiIxe004MeuoIkbY2qitC++rC +oznl2yY4rYsK7hljxxwk3wN42ubqwUcaCwtGCd0C/N7Lh1/XMGNooa7cMqG6vv5Eq2i2pRcV/b3V +p6ea5EQz6YiO/O1R65NxTq0B50SOqy3LqP4BSUjwwN3HaNiS/j0CAwEAAaOBxzCBxDAdBgNVHQ4E +FgQUPNiTiMLAggnMAZkGkyDpnnAJY08wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w +gYEGA1UdHwR6MHgwO6A5oDeGNWh0dHA6Ly9jcmwuY29tb2RvY2EuY29tL1NlY3VyZUNlcnRpZmlj +YXRlU2VydmljZXMuY3JsMDmgN6A1hjNodHRwOi8vY3JsLmNvbW9kby5uZXQvU2VjdXJlQ2VydGlm +aWNhdGVTZXJ2aWNlcy5jcmwwDQYJKoZIhvcNAQEFBQADggEBAIcBbSMdflsXfcFhMs+P5/OKlFlm +4J4oqF7Tt/Q05qo5spcWxYJvMqTpjOev/e/C6LlLqqP05tqNZSH7uoDrJiiFGv45jN5bBAS0VPmj +Z55B+glSzAVIqMk/IQQezkhr/IXownuvf7fM+F86/TXGDe+X3EyrEeFryzHRbPtIgKvcnDe4IRRL +DXE97IMzbtFuMhbsmMcWi1mmNKsFVy2T96oTy9IT4rcuO81rUBcJaD61JlfutuC23bkpgHl9j6Pw +pCikFcSF9CfUa7/lXORlAnZUtOM3ZiTTGWHIUhDlizeauan5Hb/qmZJhlv8BzaFfDbxxvA6sCx1H +RR3B7Hzs/Sk= +-----END CERTIFICATE----- + +Comodo Trusted Services root +============================ +-----BEGIN CERTIFICATE----- +MIIEQzCCAyugAwIBAgIBATANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS +R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg +TGltaXRlZDElMCMGA1UEAwwcVHJ1c3RlZCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczAeFw0wNDAxMDEw +MDAwMDBaFw0yODEyMzEyMzU5NTlaMH8xCzAJBgNVBAYTAkdCMRswGQYDVQQIDBJHcmVhdGVyIE1h +bmNoZXN0ZXIxEDAOBgNVBAcMB1NhbGZvcmQxGjAYBgNVBAoMEUNvbW9kbyBDQSBMaW1pdGVkMSUw +IwYDVQQDDBxUcnVzdGVkIENlcnRpZmljYXRlIFNlcnZpY2VzMIIBIjANBgkqhkiG9w0BAQEFAAOC +AQ8AMIIBCgKCAQEA33FvNlhTWvI2VFeAxHQIIO0Yfyod5jWaHiWsnOWWfnJSoBVC21ndZHoa0Lh7 +3TkVvFVIxO06AOoxEbrycXQaZ7jPM8yoMa+j49d/vzMtTGo87IvDktJTdyR0nAducPy9C1t2ul/y +/9c3S0pgePfw+spwtOpZqqPOSC+pw7ILfhdyFgymBwwbOM/JYrc/oJOlh0Hyt3BAd9i+FHzjqMB6 +juljatEPmsbS9Is6FARW1O24zG71++IsWL1/T2sr92AkWCTOJu80kTrV44HQsvAEAtdbtz6SrGsS +ivnkBbA7kUlcsutT6vifR4buv5XAwAaf0lteERv0xwQ1KdJVXOTt6wIDAQABo4HJMIHGMB0GA1Ud +DgQWBBTFe1i97doladL3WRaoszLAeydb9DAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zCBgwYDVR0fBHwwejA8oDqgOIY2aHR0cDovL2NybC5jb21vZG9jYS5jb20vVHJ1c3RlZENlcnRp +ZmljYXRlU2VydmljZXMuY3JsMDqgOKA2hjRodHRwOi8vY3JsLmNvbW9kby5uZXQvVHJ1c3RlZENl +cnRpZmljYXRlU2VydmljZXMuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQDIk4E7ibSvuIQSTI3S8Ntw +uleGFTQQuS9/HrCoiWChisJ3DFBKmwCL2Iv0QeLQg4pKHBQGsKNoBXAxMKdTmw7pSqBYaWcOrp32 +pSxBvzwGa+RZzG0Q8ZZvH9/0BAKkn0U+yNj6NkZEUD+Cl5EfKNsYEYwq5GWDVxISjBc/lDb+XbDA +BHcTuPQV1T84zJQ6VdCsmPW6AF/ghhmBeC8owH7TzEIK9a5QoNE+xqFx7D+gIIxmOom0jtTYsU0l +R+4viMi14QVFwL4Ucd56/Y57fU0IlqUSc/AtyjcndBInTMu2l+nZrghtWjlA3QVHdWpaIbOjGM9O +9y5Xt5hwXsjEeLBi +-----END CERTIFICATE----- + +QuoVadis Root CA +================ +-----BEGIN CERTIFICATE----- +MIIF0DCCBLigAwIBAgIEOrZQizANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJCTTEZMBcGA1UE +ChMQUXVvVmFkaXMgTGltaXRlZDElMCMGA1UECxMcUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0 +eTEuMCwGA1UEAxMlUXVvVmFkaXMgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wMTAz +MTkxODMzMzNaFw0yMTAzMTcxODMzMzNaMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRp +cyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQD +EyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEAv2G1lVO6V/z68mcLOhrfEYBklbTRvM16z/Ypli4kVEAkOPcahdxYTMuk +J0KX0J+DisPkBgNbAKVRHnAEdOLB1Dqr1607BxgFjv2DrOpm2RgbaIr1VxqYuvXtdj182d6UajtL +F8HVj71lODqV0D1VNk7feVcxKh7YWWVJWCCYfqtffp/p1k3sg3Spx2zY7ilKhSoGFPlU5tPaZQeL +YzcS19Dsw3sgQUSj7cugF+FxZc4dZjH3dgEZyH0DWLaVSR2mEiboxgx24ONmy+pdpibu5cxfvWen +AScOospUxbF6lR1xHkopigPcakXBpBlebzbNw6Kwt/5cOOJSvPhEQ+aQuwIDAQABo4ICUjCCAk4w +PQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwczovL29jc3AucXVvdmFkaXNvZmZzaG9y +ZS5jb20wDwYDVR0TAQH/BAUwAwEB/zCCARoGA1UdIASCAREwggENMIIBCQYJKwYBBAG+WAABMIH7 +MIHUBggrBgEFBQcCAjCBxxqBxFJlbGlhbmNlIG9uIHRoZSBRdW9WYWRpcyBSb290IENlcnRpZmlj +YXRlIGJ5IGFueSBwYXJ0eSBhc3N1bWVzIGFjY2VwdGFuY2Ugb2YgdGhlIHRoZW4gYXBwbGljYWJs +ZSBzdGFuZGFyZCB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2UsIGNlcnRpZmljYXRpb24gcHJh +Y3RpY2VzLCBhbmQgdGhlIFF1b1ZhZGlzIENlcnRpZmljYXRlIFBvbGljeS4wIgYIKwYBBQUHAgEW +Fmh0dHA6Ly93d3cucXVvdmFkaXMuYm0wHQYDVR0OBBYEFItLbe3TKbkGGew5Oanwl4Rqy+/fMIGu +BgNVHSMEgaYwgaOAFItLbe3TKbkGGew5Oanwl4Rqy+/foYGEpIGBMH8xCzAJBgNVBAYTAkJNMRkw +FwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MS4wLAYDVQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggQ6 +tlCLMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAitQUtf70mpKnGdSkfnIYj9lo +fFIk3WdvOXrEql494liwTXCYhGHoG+NpGA7O+0dQoE7/8CQfvbLO9Sf87C9TqnN7Az10buYWnuul +LsS/VidQK2K6vkscPFVcQR0kvoIgR13VRH56FmjffU1RcHhXHTMe/QKZnAzNCgVPx7uOpHX6Sm2x +gI4JVrmcGmD+XcHXetwReNDWXcG31a0ymQM6isxUJTkxgXsTIlG6Rmyhu576BGxJJnSP0nPrzDCi +5upZIof4l/UO/erMkqQWxFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi +5nrQNiOKSnQ2+Q== +-----END CERTIFICATE----- + +QuoVadis Root CA 2 +================== +-----BEGIN CERTIFICATE----- +MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT +EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMjAeFw0wNjExMjQx +ODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4IC +DwAwggIKAoICAQCaGMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6 +XJxgFyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55JWpzmM+Yk +lvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bBrrcCaoF6qUWD4gXmuVbB +lDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp+ARz8un+XJiM9XOva7R+zdRcAitMOeGy +lZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt +66/3FsvbzSUr5R/7mp/iUcw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1Jdxn +wQ5hYIizPtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og/zOh +D7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UHoycR7hYQe7xFSkyy +BNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuIyV77zGHcizN300QyNQliBJIWENie +J0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1Ud +DgQWBBQahGK8SEwzJQTU7tD2A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGU +a6FJpEcwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT +ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2fBluornFdLwUv +Z+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzng/iN/Ae42l9NLmeyhP3ZRPx3 +UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2BlfF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodm +VjB3pjd4M1IQWK4/YY7yarHvGH5KWWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK ++JDSV6IZUaUtl0HaB0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrW +IozchLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPRTUIZ3Ph1 +WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWDmbA4CD/pXvk1B+TJYm5X +f6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0ZohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II +4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8 +VCLAAVBpQ570su9t+Oza8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u +-----END CERTIFICATE----- + +QuoVadis Root CA 3 +================== +-----BEGIN CERTIFICATE----- +MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT +EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMzAeFw0wNjExMjQx +OTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4IC +DwAwggIKAoICAQDMV0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNgg +DhoB4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUrH556VOij +KTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd8lyyBTNvijbO0BNO/79K +DDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9CabwvvWhDFlaJKjdhkf2mrk7AyxRllDdLkgbv +BNDInIjbC3uBr7E9KsRlOni27tyAsdLTmZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwp +p5ijJUMv7/FfJuGITfhebtfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8 +nT8KKdjcT5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDtWAEX +MJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZc6tsgLjoC2SToJyM +Gf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A4iLItLRkT9a6fUg+qGkM17uGcclz +uD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYDVR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHT +BgkrBgEEAb5YAAMwgcUwgZMGCCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmlj +YXRlIGNvbnN0aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 +aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVudC4wLQYIKwYB +BQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2NwczALBgNVHQ8EBAMCAQYwHQYD +VR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4GA1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4 +ywLQoUmkRzBFMQswCQYDVQQGEwJCTTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UE +AxMSUXVvVmFkaXMgUm9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZV +qyM07ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSemd1o417+s +hvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd+LJ2w/w4E6oM3kJpK27z +POuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2 +Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadNt54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp +8kokUvd0/bpO5qgdAm6xDYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBC +bjPsMZ57k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6szHXu +g/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0jWy10QJLZYxkNc91p +vGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeTmJlglFwjz1onl14LBQaTNx47aTbr +qZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK4SVhM7JZG+Ju1zdXtg2pEto= +-----END CERTIFICATE----- + +Security Communication Root CA +============================== +-----BEGIN CERTIFICATE----- +MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP +U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw +HhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP +U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw +8yl89f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJDKaVv0uM +DPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9Ms+k2Y7CI9eNqPPYJayX +5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/NQV3Is00qVUarH9oe4kA92819uZKAnDfd +DJZkndwi92SL32HeFZRSFaB9UslLqCHJxrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2 +JChzAgMBAAGjPzA9MB0GA1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYw +DwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vGkl3g +0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfrUj94nK9NrvjVT8+a +mCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5Bw+SUEmK3TGXX8npN6o7WWWXlDLJ +s58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJUJRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ +6rBK+1YWc26sTfcioU+tHXotRSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAi +FL39vmwLAw== +-----END CERTIFICATE----- + +Sonera Class 1 Root CA +====================== +-----BEGIN CERTIFICATE----- +MIIDIDCCAgigAwIBAgIBJDANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEPMA0GA1UEChMG +U29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MxIENBMB4XDTAxMDQwNjEwNDkxM1oXDTIxMDQw +NjEwNDkxM1owOTELMAkGA1UEBhMCRkkxDzANBgNVBAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJh +IENsYXNzMSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALWJHytPZwp5/8Ue+H88 +7dF+2rDNbS82rDTG29lkFwhjMDMiikzujrsPDUJVyZ0upe/3p4zDq7mXy47vPxVnqIJyY1MPQYx9 +EJUkoVqlBvqSV536pQHydekfvFYmUk54GWVYVQNYwBSujHxVX3BbdyMGNpfzJLWaRpXk3w0LBUXl +0fIdgrvGE+D+qnr9aTCU89JFhfzyMlsy3uhsXR/LpCJ0sICOXZT3BgBLqdReLjVQCfOAl/QMF645 +2F/NM8EcyonCIvdFEu1eEpOdY6uCLrnrQkFEy0oaAIINnvmLVz5MxxftLItyM19yejhW1ebZrgUa +HXVFsculJRwSVzb9IjcCAwEAAaMzMDEwDwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQIR+IMi/ZT +iFIwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQCLGrLJXWG04bkruVPRsoWdd44W7hE9 +28Jj2VuXZfsSZ9gqXLar5V7DtxYvyOirHYr9qxp81V9jz9yw3Xe5qObSIjiHBxTZ/75Wtf0HDjxV +yhbMp6Z3N/vbXB9OWQaHowND9Rart4S9Tu+fMTfwRvFAttEMpWT4Y14h21VOTzF2nBBhjrZTOqMR +vq9tfB69ri3iDGnHhVNoomG6xT60eVR4ngrHAr5i0RGCS2UvkVrCqIexVmiUefkl98HVrhq4uz2P +qYo4Ffdz0Fpg0YCw8NzVUM1O7pJIae2yIx4wzMiUyLb1O4Z/P6Yun/Y+LLWSlj7fLJOK/4GMDw9Z +IRlXvVWa +-----END CERTIFICATE----- + +Sonera Class 2 Root CA +====================== +-----BEGIN CERTIFICATE----- +MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEPMA0GA1UEChMG +U29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAxMDQwNjA3Mjk0MFoXDTIxMDQw +NjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNVBAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJh +IENsYXNzMiBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3 +/Ei9vX+ALTU74W+oZ6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybT +dXnt5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s3TmVToMG +f+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2EjvOr7nQKV0ba5cTppCD8P +tOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu8nYybieDwnPz3BjotJPqdURrBGAgcVeH +nfO+oJAjPYok4doh28MCAwEAAaMzMDEwDwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITT +XjwwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt +0jSv9zilzqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/3DEI +cbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvDFNr450kkkdAdavph +Oe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6Tk6ezAyNlNzZRZxe7EJQY670XcSx +EtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLH +llpwrN9M +-----END CERTIFICATE----- + +Staat der Nederlanden Root CA +============================= +-----BEGIN CERTIFICATE----- +MIIDujCCAqKgAwIBAgIEAJiWijANBgkqhkiG9w0BAQUFADBVMQswCQYDVQQGEwJOTDEeMBwGA1UE +ChMVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSYwJAYDVQQDEx1TdGFhdCBkZXIgTmVkZXJsYW5kZW4g +Um9vdCBDQTAeFw0wMjEyMTcwOTIzNDlaFw0xNTEyMTYwOTE1MzhaMFUxCzAJBgNVBAYTAk5MMR4w +HAYDVQQKExVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xJjAkBgNVBAMTHVN0YWF0IGRlciBOZWRlcmxh +bmRlbiBSb290IENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmNK1URF6gaYUmHFt +vsznExvWJw56s2oYHLZhWtVhCb/ekBPHZ+7d89rFDBKeNVU+LCeIQGv33N0iYfXCxw719tV2U02P +jLwYdjeFnejKScfST5gTCaI+Ioicf9byEGW07l8Y1Rfj+MX94p2i71MOhXeiD+EwR+4A5zN9RGca +C1Hoi6CeUJhoNFIfLm0B8mBF8jHrqTFoKbt6QZ7GGX+UtFE5A3+y3qcym7RHjm+0Sq7lr7HcsBth +vJly3uSJt3omXdozSVtSnA71iq3DuD3oBmrC1SoLbHuEvVYFy4ZlkuxEK7COudxwC0barbxjiDn6 +22r+I/q85Ej0ZytqERAhSQIDAQABo4GRMIGOMAwGA1UdEwQFMAMBAf8wTwYDVR0gBEgwRjBEBgRV +HSAAMDwwOgYIKwYBBQUHAgEWLmh0dHA6Ly93d3cucGtpb3ZlcmhlaWQubmwvcG9saWNpZXMvcm9v +dC1wb2xpY3kwDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSofeu8Y6R0E3QA7Jbg0zTBLL9s+DAN +BgkqhkiG9w0BAQUFAAOCAQEABYSHVXQ2YcG70dTGFagTtJ+k/rvuFbQvBgwp8qiSpGEN/KtcCFtR +EytNwiphyPgJWPwtArI5fZlmgb9uXJVFIGzmeafR2Bwp/MIgJ1HI8XxdNGdphREwxgDS1/PTfLbw +MVcoEoJz6TMvplW0C5GUR5z6u3pCMuiufi3IvKwUv9kP2Vv8wfl6leF9fpb8cbDCTMjfRTTJzg3y +nGQI0DvDKcWy7ZAEwbEpkcUwb8GpcjPM/l0WFywRaed+/sWDCN+83CI6LiBpIzlWYGeQiy52OfsR +iJf2fL1LuCAWZwWN4jvBcj+UlTfHXbme2JOhF4//DGYVwSR8MnwDHTuhWEUykw== +-----END CERTIFICATE----- + +TDC Internet Root CA +==================== +-----BEGIN CERTIFICATE----- +MIIEKzCCAxOgAwIBAgIEOsylTDANBgkqhkiG9w0BAQUFADBDMQswCQYDVQQGEwJESzEVMBMGA1UE +ChMMVERDIEludGVybmV0MR0wGwYDVQQLExRUREMgSW50ZXJuZXQgUm9vdCBDQTAeFw0wMTA0MDUx +NjMzMTdaFw0yMTA0MDUxNzAzMTdaMEMxCzAJBgNVBAYTAkRLMRUwEwYDVQQKEwxUREMgSW50ZXJu +ZXQxHTAbBgNVBAsTFFREQyBJbnRlcm5ldCBSb290IENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAxLhAvJHVYx/XmaCLDEAedLdInUaMArLgJF/wGROnN4NrXceO+YQwzho7+vvOi20j +xsNuZp+Jpd/gQlBn+h9sHvTQBda/ytZO5GhgbEaqHF1j4QeGDmUApy6mcca8uYGoOn0a0vnRrEvL +znWv3Hv6gXPU/Lq9QYjUdLP5Xjg6PEOo0pVOd20TDJ2PeAG3WiAfAzc14izbSysseLlJ28TQx5yc +5IogCSEWVmb/Bexb4/DPqyQkXsN/cHoSxNK1EKC2IeGNeGlVRGn1ypYcNIUXJXfi9i8nmHj9eQY6 +otZaQ8H/7AQ77hPv01ha/5Lr7K7a8jcDR0G2l8ktCkEiu7vmpwIDAQABo4IBJTCCASEwEQYJYIZI +AYb4QgEBBAQDAgAHMGUGA1UdHwReMFwwWqBYoFakVDBSMQswCQYDVQQGEwJESzEVMBMGA1UEChMM +VERDIEludGVybmV0MR0wGwYDVQQLExRUREMgSW50ZXJuZXQgUm9vdCBDQTENMAsGA1UEAxMEQ1JM +MTArBgNVHRAEJDAigA8yMDAxMDQwNTE2MzMxN1qBDzIwMjEwNDA1MTcwMzE3WjALBgNVHQ8EBAMC +AQYwHwYDVR0jBBgwFoAUbGQBx/2FbazI2p5QCIUItTxWqFAwHQYDVR0OBBYEFGxkAcf9hW2syNqe +UAiFCLU8VqhQMAwGA1UdEwQFMAMBAf8wHQYJKoZIhvZ9B0EABBAwDhsIVjUuMDo0LjADAgSQMA0G +CSqGSIb3DQEBBQUAA4IBAQBOQ8zR3R0QGwZ/t6T609lN+yOfI1Rb5osvBCiLtSdtiaHsmGnc540m +gwV5dOy0uaOXwTUA/RXaOYE6lTGQ3pfphqiZdwzlWqCE/xIWrG64jcN7ksKsLtB9KOy282A4aW8+ +2ARVPp7MVdK6/rtHBNcK2RYKNCn1WBPVT8+PVkuzHu7TmHnaCB4Mb7j4Fifvwm899qNLPg7kbWzb +O0ESm70NRyN/PErQr8Cv9u8btRXE64PECV90i9kR+8JWsTz4cMo0jUNAE4z9mQNUecYu6oah9jrU +Cbz0vGbMPVjQV0kK7iXiQe4T+Zs4NNEA9X7nlB38aQNiuJkFBT1reBK9sG9l +-----END CERTIFICATE----- + +TDC OCES Root CA +================ +-----BEGIN CERTIFICATE----- +MIIFGTCCBAGgAwIBAgIEPki9xDANBgkqhkiG9w0BAQUFADAxMQswCQYDVQQGEwJESzEMMAoGA1UE +ChMDVERDMRQwEgYDVQQDEwtUREMgT0NFUyBDQTAeFw0wMzAyMTEwODM5MzBaFw0zNzAyMTEwOTA5 +MzBaMDExCzAJBgNVBAYTAkRLMQwwCgYDVQQKEwNUREMxFDASBgNVBAMTC1REQyBPQ0VTIENBMIIB +IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArGL2YSCyz8DGhdfjeebM7fI5kqSXLmSjhFuH +nEz9pPPEXyG9VhDr2y5h7JNp46PMvZnDBfwGuMo2HP6QjklMxFaaL1a8z3sM8W9Hpg1DTeLpHTk0 +zY0s2RKY+ePhwUp8hjjEqcRhiNJerxomTdXkoCJHhNlktxmW/OwZ5LKXJk5KTMuPJItUGBxIYXvV +iGjaXbXqzRowwYCDdlCqT9HU3Tjw7xb04QxQBr/q+3pJoSgrHPb8FTKjdGqPqcNiKXEx5TukYBde +dObaE+3pHx8b0bJoc8YQNHVGEBDjkAB2QMuLt0MJIf+rTpPGWOmlgtt3xDqZsXKVSQTwtyv6e1mO +3QIDAQABo4ICNzCCAjMwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwgewGA1UdIASB +5DCB4TCB3gYIKoFQgSkBAQEwgdEwLwYIKwYBBQUHAgEWI2h0dHA6Ly93d3cuY2VydGlmaWthdC5k +ay9yZXBvc2l0b3J5MIGdBggrBgEFBQcCAjCBkDAKFgNUREMwAwIBARqBgUNlcnRpZmlrYXRlciBm +cmEgZGVubmUgQ0EgdWRzdGVkZXMgdW5kZXIgT0lEIDEuMi4yMDguMTY5LjEuMS4xLiBDZXJ0aWZp +Y2F0ZXMgZnJvbSB0aGlzIENBIGFyZSBpc3N1ZWQgdW5kZXIgT0lEIDEuMi4yMDguMTY5LjEuMS4x +LjARBglghkgBhvhCAQEEBAMCAAcwgYEGA1UdHwR6MHgwSKBGoESkQjBAMQswCQYDVQQGEwJESzEM +MAoGA1UEChMDVERDMRQwEgYDVQQDEwtUREMgT0NFUyBDQTENMAsGA1UEAxMEQ1JMMTAsoCqgKIYm +aHR0cDovL2NybC5vY2VzLmNlcnRpZmlrYXQuZGsvb2Nlcy5jcmwwKwYDVR0QBCQwIoAPMjAwMzAy +MTEwODM5MzBagQ8yMDM3MDIxMTA5MDkzMFowHwYDVR0jBBgwFoAUYLWF7FZkfhIZJ2cdUBVLc647 ++RIwHQYDVR0OBBYEFGC1hexWZH4SGSdnHVAVS3OuO/kSMB0GCSqGSIb2fQdBAAQQMA4bCFY2LjA6 +NC4wAwIEkDANBgkqhkiG9w0BAQUFAAOCAQEACromJkbTc6gJ82sLMJn9iuFXehHTuJTXCRBuo7E4 +A9G28kNBKWKnctj7fAXmMXAnVBhOinxO5dHKjHiIzxvTkIvmI/gLDjNDfZziChmPyQE+dF10yYsc +A+UYyAFMP8uXBV2YcaaYb7Z8vTd/vuGTJW1v8AqtFxjhA7wHKcitJuj4YfD9IQl+mo6paH1IYnK9 +AOoBmbgGglGBTvH1tJFUuSN6AJqfXY3gPGS5GhKSKseCRHI53OI8xthV9RVOyAUO28bQYqbsFbS1 +AoLbrIyigfCbmTH1ICCoiGEKB5+U/NDXG8wuF/MEJ3Zn61SD/aSQfgY9BKNDLdr8C2LqL19iUw== +-----END CERTIFICATE----- + +UTN DATACorp SGC Root CA +======================== +-----BEGIN CERTIFICATE----- +MIIEXjCCA0agAwIBAgIQRL4Mi1AAIbQR0ypoBqmtaTANBgkqhkiG9w0BAQUFADCBkzELMAkGA1UE +BhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhl +IFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xGzAZ +BgNVBAMTElVUTiAtIERBVEFDb3JwIFNHQzAeFw05OTA2MjQxODU3MjFaFw0xOTA2MjQxOTA2MzBa +MIGTMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4w +HAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRy +dXN0LmNvbTEbMBkGA1UEAxMSVVROIC0gREFUQUNvcnAgU0dDMIIBIjANBgkqhkiG9w0BAQEFAAOC +AQ8AMIIBCgKCAQEA3+5YEKIrblXEjr8uRgnn4AgPLit6E5Qbvfa2gI5lBZMAHryv4g+OGQ0SR+ys +raP6LnD43m77VkIVni5c7yPeIbkFdicZD0/Ww5y0vpQZY/KmEQrrU0icvvIpOxboGqBMpsn0GFlo +wHDyUwDAXlCCpVZvNvlK4ESGoE1O1kduSUrLZ9emxAW5jh70/P/N5zbgnAVssjMiFdC04MwXwLLA +9P4yPykqlXvY8qdOD1R8oQ2AswkDwf9c3V6aPryuvEeKaq5xyh+xKrhfQgUL7EYw0XILyulWbfXv +33i+Ybqypa4ETLyorGkVl73v67SMvzX41MPRKA5cOp9wGDMgd8SirwIDAQABo4GrMIGoMAsGA1Ud +DwQEAwIBxjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRTMtGzz3/64PGgXYVOktKeRR20TzA9 +BgNVHR8ENjA0MDKgMKAuhixodHRwOi8vY3JsLnVzZXJ0cnVzdC5jb20vVVROLURBVEFDb3JwU0dD +LmNybDAqBgNVHSUEIzAhBggrBgEFBQcDAQYKKwYBBAGCNwoDAwYJYIZIAYb4QgQBMA0GCSqGSIb3 +DQEBBQUAA4IBAQAnNZcAiosovcYzMB4p/OL31ZjUQLtgyr+rFywJNn9Q+kHcrpY6CiM+iVnJowft +Gzet/Hy+UUla3joKVAgWRcKZsYfNjGjgaQPpxE6YsjuMFrMOoAyYUJuTqXAJyCyjj98C5OBxOvG0 +I3KgqgHf35g+FFCgMSa9KOlaMCZ1+XtgHI3zzVAmbQQnmt/VDUVHKWss5nbZqSl9Mt3JNjy9rjXx +EZ4du5A/EkdOjtd+D2JzHVImOBwYSf0wdJrE5SIv2MCN7ZF6TACPcn9d2t0bi0Vr591pl6jFVkwP +DPafepE39peC4N1xaf92P2BNPM/3mfnGV/TJVTl4uix5yaaIK/QI +-----END CERTIFICATE----- + +UTN USERFirst Email Root CA +=========================== +-----BEGIN CERTIFICATE----- +MIIEojCCA4qgAwIBAgIQRL4Mi1AAJLQR0zYlJWfJiTANBgkqhkiG9w0BAQUFADCBrjELMAkGA1UE +BhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhl +IFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xNjA0 +BgNVBAMTLVVUTi1VU0VSRmlyc3QtQ2xpZW50IEF1dGhlbnRpY2F0aW9uIGFuZCBFbWFpbDAeFw05 +OTA3MDkxNzI4NTBaFw0xOTA3MDkxNzM2NThaMIGuMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQx +FzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsx +ITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRydXN0LmNvbTE2MDQGA1UEAxMtVVROLVVTRVJGaXJz +dC1DbGllbnQgQXV0aGVudGljYXRpb24gYW5kIEVtYWlsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAsjmFpPJ9q0E7YkY3rs3BYHW8OWX5ShpHornMSMxqmNVNNRm5pELlzkniii8efNIx +B8dOtINknS4p1aJkxIW9hVE1eaROaJB7HHqkkqgX8pgV8pPMyaQylbsMTzC9mKALi+VuG6JG+ni8 +om+rWV6lL8/K2m2qL+usobNqqrcuZzWLeeEeaYji5kbNoKXqvgvOdjp6Dpvq/NonWz1zHyLmSGHG +TPNpsaguG7bUMSAsvIKKjqQOpdeJQ/wWWq8dcdcRWdq6hw2v+vPhwvCkxWeM1tZUOt4KpLoDd7Nl +yP0e03RiqhjKaJMeoYV+9Udly/hNVyh00jT/MLbu9mIwFIws6wIDAQABo4G5MIG2MAsGA1UdDwQE +AwIBxjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSJgmd9xJ0mcABLtFBIfN49rgRufTBYBgNV +HR8EUTBPME2gS6BJhkdodHRwOi8vY3JsLnVzZXJ0cnVzdC5jb20vVVROLVVTRVJGaXJzdC1DbGll +bnRBdXRoZW50aWNhdGlvbmFuZEVtYWlsLmNybDAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUH +AwQwDQYJKoZIhvcNAQEFBQADggEBALFtYV2mGn98q0rkMPxTbyUkxsrt4jFcKw7u7mFVbwQ+zzne +xRtJlOTrIEy05p5QLnLZjfWqo7NK2lYcYJeA3IKirUq9iiv/Cwm0xtcgBEXkzYABurorbs6q15L+ +5K/r9CYdFip/bDCVNy8zEqx/3cfREYxRmLLQo5HQrfafnoOTHh1CuEava2bwm3/q4wMC5QJRwarV +NZ1yQAOJujEdxRBoUp7fooXFXAimeOZTT7Hot9MUnpOmw2TjrH5xzbyf6QMbzPvprDHBr3wVdAKZ +w7JHpsIyYdfHb0gkUSeh1YdV8nuPmD0Wnu51tvjQjvLzxq4oW6fw8zYX/MMF08oDSlQ= +-----END CERTIFICATE----- + +UTN USERFirst Hardware Root CA +============================== +-----BEGIN CERTIFICATE----- +MIIEdDCCA1ygAwIBAgIQRL4Mi1AAJLQR0zYq/mUK/TANBgkqhkiG9w0BAQUFADCBlzELMAkGA1UE +BhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhl +IFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xHzAd +BgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdhcmUwHhcNOTkwNzA5MTgxMDQyWhcNMTkwNzA5MTgx +OTIyWjCBlzELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0 +eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVz +ZXJ0cnVzdC5jb20xHzAdBgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdhcmUwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQCx98M4P7Sof885glFn0G2f0v9Y8+efK+wNiVSZuTiZFvfgIXlI +wrthdBKWHTxqctU8EGc6Oe0rE81m65UJM6Rsl7HoxuzBdXmcRl6Nq9Bq/bkqVRcQVLMZ8Jr28bFd +tqdt++BxF2uiiPsA3/4aMXcMmgF6sTLjKwEHOG7DpV4jvEWbe1DByTCP2+UretNb+zNAHqDVmBe8 +i4fDidNdoI6yqqr2jmmIBsX6iSHzCJ1pLgkzmykNRg+MzEk0sGlRvfkGzWitZky8PqxhvQqIDsjf +Pe58BEydCl5rkdbux+0ojatNh4lz0G6k0B4WixThdkQDf2Os5M1JnMWS9KsyoUhbAgMBAAGjgbkw +gbYwCwYDVR0PBAQDAgHGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFKFyXyYbKJhDlV0HN9WF +lp1L0sNFMEQGA1UdHwQ9MDswOaA3oDWGM2h0dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9VVE4tVVNF +UkZpcnN0LUhhcmR3YXJlLmNybDAxBgNVHSUEKjAoBggrBgEFBQcDAQYIKwYBBQUHAwUGCCsGAQUF +BwMGBggrBgEFBQcDBzANBgkqhkiG9w0BAQUFAAOCAQEARxkP3nTGmZev/K0oXnWO6y1n7k57K9cM +//bey1WiCuFMVGWTYGufEpytXoMs61quwOQt9ABjHbjAbPLPSbtNk28GpgoiskliCE7/yMgUsogW +XecB5BKV5UU0s4tpvc+0hY91UZ59Ojg6FEgSxvunOxqNDYJAB+gECJChicsZUN/KHAG8HQQZexB2 +lzvukJDKxA4fFm517zP4029bHpbj4HR3dHuKom4t3XbWOTCC8KucUvIqx69JXn7HaOWCgchqJ/kn +iCrVWFCVH/A7HFe7fRQ5YiuayZSSKqMiDP+JJn1fIytH1xUdqWqeUQ0qUZ6B+dQ7XnASfxAynB67 +nfhmqA== +-----END CERTIFICATE----- + +UTN USERFirst Object Root CA +============================ +-----BEGIN CERTIFICATE----- +MIIEZjCCA06gAwIBAgIQRL4Mi1AAJLQR0zYt4LNfGzANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UE +BhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhl +IFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xHTAb +BgNVBAMTFFVUTi1VU0VSRmlyc3QtT2JqZWN0MB4XDTk5MDcwOTE4MzEyMFoXDTE5MDcwOTE4NDAz +NlowgZUxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJVVDEXMBUGA1UEBxMOU2FsdCBMYWtlIENpdHkx +HjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazEhMB8GA1UECxMYaHR0cDovL3d3dy51c2Vy +dHJ1c3QuY29tMR0wGwYDVQQDExRVVE4tVVNFUkZpcnN0LU9iamVjdDCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBAM6qgT+jo2F4qjEAVZURnicPHxzfOpuCaDDASmEd8S8O+r5596Uj71VR +loTN2+O5bj4x2AogZ8f02b+U60cEPgLOKqJdhwQJ9jCdGIqXsqoc/EHSoTbL+z2RuufZcDX65OeQ +w5ujm9M89RKZd7G3CeBo5hy485RjiGpq/gt2yb70IuRnuasaXnfBhQfdDWy/7gbHd2pBnqcP1/vu +lBe3/IW+pKvEHDHd17bR5PDv3xaPslKT16HUiaEHLr/hARJCHhrh2JU022R5KP+6LhHC5ehbkkj7 +RwvCbNqtMoNB86XlQXD9ZZBt+vpRxPm9lisZBCzTbafc8H9vg2XiaquHhnUCAwEAAaOBrzCBrDAL +BgNVHQ8EBAMCAcYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU2u1kdBScFDyr3ZmpvVsoTYs8 +ydgwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybC51c2VydHJ1c3QuY29tL1VUTi1VU0VSRmly +c3QtT2JqZWN0LmNybDApBgNVHSUEIjAgBggrBgEFBQcDAwYIKwYBBQUHAwgGCisGAQQBgjcKAwQw +DQYJKoZIhvcNAQEFBQADggEBAAgfUrE3RHjb/c652pWWmKpVZIC1WkDdIaXFwfNfLEzIR1pp6ujw +NTX00CXzyKakh0q9G7FzCL3Uw8q2NbtZhncxzaeAFK4T7/yxSPlrJSUtUbYsbUXBmMiKVl0+7kNO +PmsnjtA6S4ULX9Ptaqd1y9Fahy85dRNacrACgZ++8A+EVCBibGnU4U3GDZlDAQ0Slox4nb9QorFE +qmrPF3rPbw/U+CRVX/A0FklmPlBGyWNxODFiuGK581OtbLUrohKqGU8J2l7nk8aOFAj+8DCAGKCG +hU3IfdeLA/5u1fedFqySLKAj5ZyRUh+U3xeUc8OzwcFxBSAAeL0TUh2oPs0AH8g= +-----END CERTIFICATE----- + +Camerfirma Chambers of Commerce Root +==================================== +-----BEGIN CERTIFICATE----- +MIIEvTCCA6WgAwIBAgIBADANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJFVTEnMCUGA1UEChMe +QUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1i +ZXJzaWduLm9yZzEiMCAGA1UEAxMZQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdDAeFw0wMzA5MzAx +NjEzNDNaFw0zNzA5MzAxNjEzNDRaMH8xCzAJBgNVBAYTAkVVMScwJQYDVQQKEx5BQyBDYW1lcmZp +cm1hIFNBIENJRiBBODI3NDMyODcxIzAhBgNVBAsTGmh0dHA6Ly93d3cuY2hhbWJlcnNpZ24ub3Jn +MSIwIAYDVQQDExlDaGFtYmVycyBvZiBDb21tZXJjZSBSb290MIIBIDANBgkqhkiG9w0BAQEFAAOC +AQ0AMIIBCAKCAQEAtzZV5aVdGDDg2olUkfzIx1L4L1DZ77F1c2VHfRtbunXF/KGIJPov7coISjlU +xFF6tdpg6jg8gbLL8bvZkSM/SAFwdakFKq0fcfPJVD0dBmpAPrMMhe5cG3nCYsS4No41XQEMIwRH +NaqbYE6gZj3LJgqcQKH0XZi/caulAGgq7YN6D6IUtdQis4CwPAxaUWktWBiP7Zme8a7ileb2R6jW +DA+wWFjbw2Y3npuRVDM30pQcakjJyfKl2qUMI/cjDpwyVV5xnIQFUZot/eZOKjRa3spAN2cMVCFV +d9oKDMyXroDclDZK9D7ONhMeU+SsTjoF7Nuucpw4i9A5O4kKPnf+dQIBA6OCAUQwggFAMBIGA1Ud +EwEB/wQIMAYBAf8CAQwwPAYDVR0fBDUwMzAxoC+gLYYraHR0cDovL2NybC5jaGFtYmVyc2lnbi5v +cmcvY2hhbWJlcnNyb290LmNybDAdBgNVHQ4EFgQU45T1sU3p26EpW1eLTXYGduHRooowDgYDVR0P +AQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzAnBgNVHREEIDAegRxjaGFtYmVyc3Jvb3RAY2hh +bWJlcnNpZ24ub3JnMCcGA1UdEgQgMB6BHGNoYW1iZXJzcm9vdEBjaGFtYmVyc2lnbi5vcmcwWAYD +VR0gBFEwTzBNBgsrBgEEAYGHLgoDATA+MDwGCCsGAQUFBwIBFjBodHRwOi8vY3BzLmNoYW1iZXJz +aWduLm9yZy9jcHMvY2hhbWJlcnNyb290Lmh0bWwwDQYJKoZIhvcNAQEFBQADggEBAAxBl8IahsAi +fJ/7kPMa0QOx7xP5IV8EnNrJpY0nbJaHkb5BkAFyk+cefV/2icZdp0AJPaxJRUXcLo0waLIJuvvD +L8y6C98/d3tGfToSJI6WjzwFCm/SlCgdbQzALogi1djPHRPH8EjX1wWnz8dHnjs8NMiAT9QUu/wN +UPf6s+xCX6ndbcj0dc97wXImsQEcXCz9ek60AcUFV7nnPKoF2YjpB0ZBzu9Bga5Y34OirsrXdx/n +ADydb47kMgkdTXg0eDQ8lJsm7U9xxhl6vSAiSFr+S30Dt+dYvsYyTnQeaN2oaFuzPu5ifdmA6Ap1 +erfutGWaIZDgqtCYvDi1czyL+Nw= +-----END CERTIFICATE----- + +Camerfirma Global Chambersign Root +================================== +-----BEGIN CERTIFICATE----- +MIIExTCCA62gAwIBAgIBADANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJFVTEnMCUGA1UEChMe +QUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1i +ZXJzaWduLm9yZzEgMB4GA1UEAxMXR2xvYmFsIENoYW1iZXJzaWduIFJvb3QwHhcNMDMwOTMwMTYx +NDE4WhcNMzcwOTMwMTYxNDE4WjB9MQswCQYDVQQGEwJFVTEnMCUGA1UEChMeQUMgQ2FtZXJmaXJt +YSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEg +MB4GA1UEAxMXR2xvYmFsIENoYW1iZXJzaWduIFJvb3QwggEgMA0GCSqGSIb3DQEBAQUAA4IBDQAw +ggEIAoIBAQCicKLQn0KuWxfH2H3PFIP8T8mhtxOviteePgQKkotgVvq0Mi+ITaFgCPS3CU6gSS9J +1tPfnZdan5QEcOw/Wdm3zGaLmFIoCQLfxS+EjXqXd7/sQJ0lcqu1PzKY+7e3/HKE5TWH+VX6ox8O +by4o3Wmg2UIQxvi1RMLQQ3/bvOSiPGpVeAp3qdjqGTK3L/5cPxvusZjsyq16aUXjlg9V9ubtdepl +6DJWk0aJqCWKZQbua795B9Dxt6/tLE2Su8CoX6dnfQTyFQhwrJLWfQTSM/tMtgsL+xrJxI0DqX5c +8lCrEqWhz0hQpe/SyBoT+rB/sYIcd2oPX9wLlY/vQ37mRQklAgEDo4IBUDCCAUwwEgYDVR0TAQH/ +BAgwBgEB/wIBDDA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLmNoYW1iZXJzaWduLm9yZy9j +aGFtYmVyc2lnbnJvb3QuY3JsMB0GA1UdDgQWBBRDnDafsJ4wTcbOX60Qq+UDpfqpFDAOBgNVHQ8B +Af8EBAMCAQYwEQYJYIZIAYb4QgEBBAQDAgAHMCoGA1UdEQQjMCGBH2NoYW1iZXJzaWducm9vdEBj +aGFtYmVyc2lnbi5vcmcwKgYDVR0SBCMwIYEfY2hhbWJlcnNpZ25yb290QGNoYW1iZXJzaWduLm9y +ZzBbBgNVHSAEVDBSMFAGCysGAQQBgYcuCgEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly9jcHMuY2hh +bWJlcnNpZ24ub3JnL2Nwcy9jaGFtYmVyc2lnbnJvb3QuaHRtbDANBgkqhkiG9w0BAQUFAAOCAQEA +PDtwkfkEVCeR4e3t/mh/YV3lQWVPMvEYBZRqHN4fcNs+ezICNLUMbKGKfKX0j//U2K0X1S0E0T9Y +gOKBWYi+wONGkyT+kL0mojAt6JcmVzWJdJYY9hXiryQZVgICsroPFOrGimbBhkVVi76SvpykBMdJ +PJ7oKXqJ1/6v/2j1pReQvayZzKWGVwlnRtvWFsJG8eSpUPWP0ZIV018+xgBJOm5YstHRJw0lyDL4 +IBHNfTIzSJRUTN3cecQwn+uOuFW114hcxWokPbLTBQNRxgfvzBRydD1ucs4YKIxKoHflCStFREes +t2d/AYoFWpO+ocH/+OcOZ6RHSXZddZAa9SaP8A== +-----END CERTIFICATE----- + +NetLock Qualified (Class QA) Root +================================= +-----BEGIN CERTIFICATE----- +MIIG0TCCBbmgAwIBAgIBezANBgkqhkiG9w0BAQUFADCByTELMAkGA1UEBhMCSFUxETAPBgNVBAcT +CEJ1ZGFwZXN0MScwJQYDVQQKEx5OZXRMb2NrIEhhbG96YXRiaXp0b25zYWdpIEtmdC4xGjAYBgNV +BAsTEVRhbnVzaXR2YW55a2lhZG9rMUIwQAYDVQQDEzlOZXRMb2NrIE1pbm9zaXRldHQgS296amVn +eXpvaSAoQ2xhc3MgUUEpIFRhbnVzaXR2YW55a2lhZG8xHjAcBgkqhkiG9w0BCQEWD2luZm9AbmV0 +bG9jay5odTAeFw0wMzAzMzAwMTQ3MTFaFw0yMjEyMTUwMTQ3MTFaMIHJMQswCQYDVQQGEwJIVTER +MA8GA1UEBxMIQnVkYXBlc3QxJzAlBgNVBAoTHk5ldExvY2sgSGFsb3phdGJpenRvbnNhZ2kgS2Z0 +LjEaMBgGA1UECxMRVGFudXNpdHZhbnlraWFkb2sxQjBABgNVBAMTOU5ldExvY2sgTWlub3NpdGV0 +dCBLb3pqZWd5em9pIChDbGFzcyBRQSkgVGFudXNpdHZhbnlraWFkbzEeMBwGCSqGSIb3DQEJARYP +aW5mb0BuZXRsb2NrLmh1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx1Ilstg91IRV +CacbvWy5FPSKAtt2/GoqeKvld/Bu4IwjZ9ulZJm53QE+b+8tmjwi8F3JV6BVQX/yQ15YglMxZc4e +8ia6AFQer7C8HORSjKAyr7c3sVNnaHRnUPYtLmTeriZ539+Zhqurf4XsoPuAzPS4DB6TRWO53Lhb +m+1bOdRfYrCnjnxmOCyqsQhjF2d9zL2z8cM/z1A57dEZgxXbhxInlrfa6uWdvLrqOU+L73Sa58XQ +0uqGURzk/mQIKAR5BevKxXEOC++r6uwSEaEYBTJp0QwsGj0lmT+1fMptsK6ZmfoIYOcZwvK9UdPM +0wKswREMgM6r3JSda6M5UzrWhQIDAMV9o4ICwDCCArwwEgYDVR0TAQH/BAgwBgEB/wIBBDAOBgNV +HQ8BAf8EBAMCAQYwggJ1BglghkgBhvhCAQ0EggJmFoICYkZJR1lFTEVNISBFemVuIHRhbnVzaXR2 +YW55IGEgTmV0TG9jayBLZnQuIE1pbm9zaXRldHQgU3pvbGdhbHRhdGFzaSBTemFiYWx5emF0YWJh +biBsZWlydCBlbGphcmFzb2sgYWxhcGphbiBrZXN6dWx0LiBBIG1pbm9zaXRldHQgZWxla3Ryb25p +a3VzIGFsYWlyYXMgam9naGF0YXMgZXJ2ZW55ZXN1bGVzZW5laywgdmFsYW1pbnQgZWxmb2dhZGFz +YW5hayBmZWx0ZXRlbGUgYSBNaW5vc2l0ZXR0IFN6b2xnYWx0YXRhc2kgU3phYmFseXphdGJhbiwg +YXogQWx0YWxhbm9zIFN6ZXJ6b2Rlc2kgRmVsdGV0ZWxla2JlbiBlbG9pcnQgZWxsZW5vcnplc2kg +ZWxqYXJhcyBtZWd0ZXRlbGUuIEEgZG9rdW1lbnR1bW9rIG1lZ3RhbGFsaGF0b2sgYSBodHRwczov +L3d3dy5uZXRsb2NrLmh1L2RvY3MvIGNpbWVuIHZhZ3kga2VyaGV0b2sgYXogaW5mb0BuZXRsb2Nr +Lm5ldCBlLW1haWwgY2ltZW4uIFdBUk5JTkchIFRoZSBpc3N1YW5jZSBhbmQgdGhlIHVzZSBvZiB0 +aGlzIGNlcnRpZmljYXRlIGFyZSBzdWJqZWN0IHRvIHRoZSBOZXRMb2NrIFF1YWxpZmllZCBDUFMg +YXZhaWxhYmxlIGF0IGh0dHBzOi8vd3d3Lm5ldGxvY2suaHUvZG9jcy8gb3IgYnkgZS1tYWlsIGF0 +IGluZm9AbmV0bG9jay5uZXQwHQYDVR0OBBYEFAlqYhaSsFq7VQ7LdTI6MuWyIckoMA0GCSqGSIb3 +DQEBBQUAA4IBAQCRalCc23iBmz+LQuM7/KbD7kPgz/PigDVJRXYC4uMvBcXxKufAQTPGtpvQMznN +wNuhrWw3AkxYQTvyl5LGSKjN5Yo5iWH5Upfpvfb5lHTocQ68d4bDBsxafEp+NFAwLvt/MpqNPfMg +W/hqyobzMUwsWYACff44yTB1HLdV47yfuqhthCgFdbOLDcCRVCHnpgu0mfVRQdzNo0ci2ccBgcTc +R08m6h/t280NmPSjnLRzMkqWmf68f8glWPhY83ZmiVSkpj7EUFy6iRiCdUgh0k8T6GB+B3bbELVR +5qq5aKrN9p2QdRLqOBrKROi3macqaJVmlaut74nLYKkGEsaUR+ko +-----END CERTIFICATE----- + +NetLock Notary (Class A) Root +============================= +-----BEGIN CERTIFICATE----- +MIIGfTCCBWWgAwIBAgICAQMwDQYJKoZIhvcNAQEEBQAwga8xCzAJBgNVBAYTAkhVMRAwDgYDVQQI +EwdIdW5nYXJ5MREwDwYDVQQHEwhCdWRhcGVzdDEnMCUGA1UEChMeTmV0TG9jayBIYWxvemF0Yml6 +dG9uc2FnaSBLZnQuMRowGAYDVQQLExFUYW51c2l0dmFueWtpYWRvazE2MDQGA1UEAxMtTmV0TG9j +ayBLb3pqZWd5em9pIChDbGFzcyBBKSBUYW51c2l0dmFueWtpYWRvMB4XDTk5MDIyNDIzMTQ0N1oX +DTE5MDIxOTIzMTQ0N1owga8xCzAJBgNVBAYTAkhVMRAwDgYDVQQIEwdIdW5nYXJ5MREwDwYDVQQH +EwhCdWRhcGVzdDEnMCUGA1UEChMeTmV0TG9jayBIYWxvemF0Yml6dG9uc2FnaSBLZnQuMRowGAYD +VQQLExFUYW51c2l0dmFueWtpYWRvazE2MDQGA1UEAxMtTmV0TG9jayBLb3pqZWd5em9pIChDbGFz +cyBBKSBUYW51c2l0dmFueWtpYWRvMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvHSM +D7tM9DceqQWC2ObhbHDqeLVu0ThEDaiDzl3S1tWBxdRL51uUcCbbO51qTGL3cfNk1mE7PetzozfZ +z+qMkjvN9wfcZnSX9EUi3fRc4L9t875lM+QVOr/bmJBVOMTtplVjC7B4BPTjbsE/jvxReB+SnoPC +/tmwqcm8WgD/qaiYdPv2LD4VOQ22BFWoDpggQrOxJa1+mm9dU7GrDPzr4PN6s6iz/0b2Y6LYOph7 +tqyF/7AlT3Rj5xMHpQqPBffAZG9+pyeAlt7ULoZgx2srXnN7F+eRP2QM2EsiNCubMvJIH5+hCoR6 +4sKtlz2O1cH5VqNQ6ca0+pii7pXmKgOM3wIDAQABo4ICnzCCApswDgYDVR0PAQH/BAQDAgAGMBIG +A1UdEwEB/wQIMAYBAf8CAQQwEQYJYIZIAYb4QgEBBAQDAgAHMIICYAYJYIZIAYb4QgENBIICURaC +Ak1GSUdZRUxFTSEgRXplbiB0YW51c2l0dmFueSBhIE5ldExvY2sgS2Z0LiBBbHRhbGFub3MgU3pv +bGdhbHRhdGFzaSBGZWx0ZXRlbGVpYmVuIGxlaXJ0IGVsamFyYXNvayBhbGFwamFuIGtlc3p1bHQu +IEEgaGl0ZWxlc2l0ZXMgZm9seWFtYXRhdCBhIE5ldExvY2sgS2Z0LiB0ZXJtZWtmZWxlbG9zc2Vn +LWJpenRvc2l0YXNhIHZlZGkuIEEgZGlnaXRhbGlzIGFsYWlyYXMgZWxmb2dhZGFzYW5hayBmZWx0 +ZXRlbGUgYXogZWxvaXJ0IGVsbGVub3J6ZXNpIGVsamFyYXMgbWVndGV0ZWxlLiBBeiBlbGphcmFz +IGxlaXJhc2EgbWVndGFsYWxoYXRvIGEgTmV0TG9jayBLZnQuIEludGVybmV0IGhvbmxhcGphbiBh +IGh0dHBzOi8vd3d3Lm5ldGxvY2submV0L2RvY3MgY2ltZW4gdmFneSBrZXJoZXRvIGF6IGVsbGVu +b3J6ZXNAbmV0bG9jay5uZXQgZS1tYWlsIGNpbWVuLiBJTVBPUlRBTlQhIFRoZSBpc3N1YW5jZSBh +bmQgdGhlIHVzZSBvZiB0aGlzIGNlcnRpZmljYXRlIGlzIHN1YmplY3QgdG8gdGhlIE5ldExvY2sg +Q1BTIGF2YWlsYWJsZSBhdCBodHRwczovL3d3dy5uZXRsb2NrLm5ldC9kb2NzIG9yIGJ5IGUtbWFp +bCBhdCBjcHNAbmV0bG9jay5uZXQuMA0GCSqGSIb3DQEBBAUAA4IBAQBIJEb3ulZv+sgoA0BO5TE5 +ayZrU3/b39/zcT0mwBQOxmd7I6gMc90Bu8bKbjc5VdXHjFYgDigKDtIqpLBJUsY4B/6+CgmM0ZjP +ytoUMaFP0jn8DxEsQ8Pdq5PHVT5HfBgaANzze9jyf1JsIPQLX2lS9O74silg6+NJMSEN1rUQQeJB +CWziGppWS3cC9qCbmieH6FUpccKQn0V4GuEVZD3QDtigdp+uxdAu6tYPVuxkf1qbFFgBJ34TUMdr +KuZoPL9coAob4Q566eKAw+np9v1sEZ7Q5SgnK1QyQhSCdeZK8CtmdWOMovsEPoMOmzbwGOQmIMOM +8CgHrTwXZoi1/baI +-----END CERTIFICATE----- + +NetLock Business (Class B) Root +=============================== +-----BEGIN CERTIFICATE----- +MIIFSzCCBLSgAwIBAgIBaTANBgkqhkiG9w0BAQQFADCBmTELMAkGA1UEBhMCSFUxETAPBgNVBAcT +CEJ1ZGFwZXN0MScwJQYDVQQKEx5OZXRMb2NrIEhhbG96YXRiaXp0b25zYWdpIEtmdC4xGjAYBgNV +BAsTEVRhbnVzaXR2YW55a2lhZG9rMTIwMAYDVQQDEylOZXRMb2NrIFV6bGV0aSAoQ2xhc3MgQikg +VGFudXNpdHZhbnlraWFkbzAeFw05OTAyMjUxNDEwMjJaFw0xOTAyMjAxNDEwMjJaMIGZMQswCQYD +VQQGEwJIVTERMA8GA1UEBxMIQnVkYXBlc3QxJzAlBgNVBAoTHk5ldExvY2sgSGFsb3phdGJpenRv +bnNhZ2kgS2Z0LjEaMBgGA1UECxMRVGFudXNpdHZhbnlraWFkb2sxMjAwBgNVBAMTKU5ldExvY2sg +VXpsZXRpIChDbGFzcyBCKSBUYW51c2l0dmFueWtpYWRvMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCB +iQKBgQCx6gTsIKAjwo84YM/HRrPVG/77uZmeBNwcf4xKgZjupNTKihe5In+DCnVMm8Bp2GQ5o+2S +o/1bXHQawEfKOml2mrriRBf8TKPV/riXiK+IA4kfpPIEPsgHC+b5sy96YhQJRhTKZPWLgLViqNhr +1nGTLbO/CVRY7QbrqHvcQ7GhaQIDAQABo4ICnzCCApswEgYDVR0TAQH/BAgwBgEB/wIBBDAOBgNV +HQ8BAf8EBAMCAAYwEQYJYIZIAYb4QgEBBAQDAgAHMIICYAYJYIZIAYb4QgENBIICURaCAk1GSUdZ +RUxFTSEgRXplbiB0YW51c2l0dmFueSBhIE5ldExvY2sgS2Z0LiBBbHRhbGFub3MgU3pvbGdhbHRh +dGFzaSBGZWx0ZXRlbGVpYmVuIGxlaXJ0IGVsamFyYXNvayBhbGFwamFuIGtlc3p1bHQuIEEgaGl0 +ZWxlc2l0ZXMgZm9seWFtYXRhdCBhIE5ldExvY2sgS2Z0LiB0ZXJtZWtmZWxlbG9zc2VnLWJpenRv +c2l0YXNhIHZlZGkuIEEgZGlnaXRhbGlzIGFsYWlyYXMgZWxmb2dhZGFzYW5hayBmZWx0ZXRlbGUg +YXogZWxvaXJ0IGVsbGVub3J6ZXNpIGVsamFyYXMgbWVndGV0ZWxlLiBBeiBlbGphcmFzIGxlaXJh +c2EgbWVndGFsYWxoYXRvIGEgTmV0TG9jayBLZnQuIEludGVybmV0IGhvbmxhcGphbiBhIGh0dHBz +Oi8vd3d3Lm5ldGxvY2submV0L2RvY3MgY2ltZW4gdmFneSBrZXJoZXRvIGF6IGVsbGVub3J6ZXNA +bmV0bG9jay5uZXQgZS1tYWlsIGNpbWVuLiBJTVBPUlRBTlQhIFRoZSBpc3N1YW5jZSBhbmQgdGhl +IHVzZSBvZiB0aGlzIGNlcnRpZmljYXRlIGlzIHN1YmplY3QgdG8gdGhlIE5ldExvY2sgQ1BTIGF2 +YWlsYWJsZSBhdCBodHRwczovL3d3dy5uZXRsb2NrLm5ldC9kb2NzIG9yIGJ5IGUtbWFpbCBhdCBj +cHNAbmV0bG9jay5uZXQuMA0GCSqGSIb3DQEBBAUAA4GBAATbrowXr/gOkDFOzT4JwG06sPgzTEdM +43WIEJessDgVkcYplswhwG08pXTP2IKlOcNl40JwuyKQ433bNXbhoLXan3BukxowOR0w2y7jfLKR +stE3Kfq51hdcR0/jHTjrn9V7lagonhVK0dHQKwCXoOKSNitjrFgBazMpUIaD8QFI +-----END CERTIFICATE----- + +NetLock Express (Class C) Root +============================== +-----BEGIN CERTIFICATE----- +MIIFTzCCBLigAwIBAgIBaDANBgkqhkiG9w0BAQQFADCBmzELMAkGA1UEBhMCSFUxETAPBgNVBAcT +CEJ1ZGFwZXN0MScwJQYDVQQKEx5OZXRMb2NrIEhhbG96YXRiaXp0b25zYWdpIEtmdC4xGjAYBgNV +BAsTEVRhbnVzaXR2YW55a2lhZG9rMTQwMgYDVQQDEytOZXRMb2NrIEV4cHJlc3N6IChDbGFzcyBD +KSBUYW51c2l0dmFueWtpYWRvMB4XDTk5MDIyNTE0MDgxMVoXDTE5MDIyMDE0MDgxMVowgZsxCzAJ +BgNVBAYTAkhVMREwDwYDVQQHEwhCdWRhcGVzdDEnMCUGA1UEChMeTmV0TG9jayBIYWxvemF0Yml6 +dG9uc2FnaSBLZnQuMRowGAYDVQQLExFUYW51c2l0dmFueWtpYWRvazE0MDIGA1UEAxMrTmV0TG9j +ayBFeHByZXNzeiAoQ2xhc3MgQykgVGFudXNpdHZhbnlraWFkbzCBnzANBgkqhkiG9w0BAQEFAAOB +jQAwgYkCgYEA6+ywbGGKIyWvYCDj2Z/8kwvbXY2wobNAOoLO/XXgeDIDhlqGlZHtU/qdQPzm6N3Z +W3oDvV3zOwzDUXmbrVWg6dADEK8KuhRC2VImESLH0iDMgqSaqf64gXadarfSNnU+sYYJ9m5tfk63 +euyucYT2BDMIJTLrdKwWRMbkQJMdf60CAwEAAaOCAp8wggKbMBIGA1UdEwEB/wQIMAYBAf8CAQQw +DgYDVR0PAQH/BAQDAgAGMBEGCWCGSAGG+EIBAQQEAwIABzCCAmAGCWCGSAGG+EIBDQSCAlEWggJN +RklHWUVMRU0hIEV6ZW4gdGFudXNpdHZhbnkgYSBOZXRMb2NrIEtmdC4gQWx0YWxhbm9zIFN6b2xn +YWx0YXRhc2kgRmVsdGV0ZWxlaWJlbiBsZWlydCBlbGphcmFzb2sgYWxhcGphbiBrZXN6dWx0LiBB +IGhpdGVsZXNpdGVzIGZvbHlhbWF0YXQgYSBOZXRMb2NrIEtmdC4gdGVybWVrZmVsZWxvc3NlZy1i +aXp0b3NpdGFzYSB2ZWRpLiBBIGRpZ2l0YWxpcyBhbGFpcmFzIGVsZm9nYWRhc2FuYWsgZmVsdGV0 +ZWxlIGF6IGVsb2lydCBlbGxlbm9yemVzaSBlbGphcmFzIG1lZ3RldGVsZS4gQXogZWxqYXJhcyBs +ZWlyYXNhIG1lZ3RhbGFsaGF0byBhIE5ldExvY2sgS2Z0LiBJbnRlcm5ldCBob25sYXBqYW4gYSBo +dHRwczovL3d3dy5uZXRsb2NrLm5ldC9kb2NzIGNpbWVuIHZhZ3kga2VyaGV0byBheiBlbGxlbm9y +emVzQG5ldGxvY2submV0IGUtbWFpbCBjaW1lbi4gSU1QT1JUQU5UISBUaGUgaXNzdWFuY2UgYW5k +IHRoZSB1c2Ugb2YgdGhpcyBjZXJ0aWZpY2F0ZSBpcyBzdWJqZWN0IHRvIHRoZSBOZXRMb2NrIENQ +UyBhdmFpbGFibGUgYXQgaHR0cHM6Ly93d3cubmV0bG9jay5uZXQvZG9jcyBvciBieSBlLW1haWwg +YXQgY3BzQG5ldGxvY2submV0LjANBgkqhkiG9w0BAQQFAAOBgQAQrX/XDDKACtiG8XmYta3UzbM2 +xJZIwVzNmtkFLp++UOv0JhQQLdRmF/iewSf98e3ke0ugbLWrmldwpu2gpO0u9f38vf5NNwgMvOOW +gyL1SRt/Syu0VMGAfJlOHdCM7tCs5ZL6dVb+ZKATj7i4Fp1hBWeAyNDYpQcCNJgEjTME1A== +-----END CERTIFICATE----- + +XRamp Global CA Root +==================== +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCBgjELMAkGA1UE +BhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2Vj +dXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwHhcNMDQxMTAxMTcxNDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMx +HjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkg +U2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3Jp +dHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS638eMpSe2OAtp87ZOqCwu +IR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCPKZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMx +foArtYzAQDsRhtDLooY2YKTVMIJt2W7QDxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FE +zG+gSqmUsE3a56k0enI4qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqs +AxcZZPRaJSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNViPvry +xS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASsjVy16bYbMDYGA1UdHwQvMC0wK6Ap +oCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMC +AQEwDQYJKoZIhvcNAQEFBQADggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc +/Kh4ZzXxHfARvbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt +qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLaIR9NmXmd4c8n +nxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSyi6mx5O+aGtA9aZnuqCij4Tyz +8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQO+7ETPTsJ3xCwnR8gooJybQDJbw= +-----END CERTIFICATE----- + +Go Daddy Class 2 CA +=================== +-----BEGIN CERTIFICATE----- +MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMY +VGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkG +A1UEBhMCVVMxITAfBgNVBAoTGFRoZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28g +RGFkZHkgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQAD +ggENADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCAPVYYYwhv +2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6wwdhFJ2+qN1j3hybX2C32 +qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXiEqITLdiOr18SPaAIBQi2XKVlOARFmR6j +YGB0xUGlcmIbYsUfb18aQr4CUWWoriMYavx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmY +vLEHZ6IVDd2gWMZEewo+YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0O +BBYEFNLEsNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h/t2o +atTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMu +MTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwG +A1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wim +PQoZ+YeAEW5p5JYXMP80kWNyOO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKt +I3lpjbi2Tc7PTMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ +HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mERdEr/VxqHD3VI +Ls9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5CufReYNnyicsbkqWletNw+vHX/b +vZ8= +-----END CERTIFICATE----- + +Starfield Class 2 CA +==================== +-----BEGIN CERTIFICATE----- +MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzElMCMGA1UEChMc +U3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZpZWxkIENsYXNzIDIg +Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQwNjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBo +MQswCQYDVQQGEwJVUzElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAG +A1UECxMpU3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqG +SIb3DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf8MOh2tTY +bitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN+lq2cwQlZut3f+dZxkqZ +JRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVm +epsZGD3/cVE8MC5fvj13c7JdBmzDI1aaK4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSN +F4Azbl5KXZnJHoe0nRrA1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HF +MIHCMB0GA1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fRzt0f +hvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNo +bm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24g +QXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGs +afPzWdqbAYcaT1epoXkJKtv3L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLM +PUxA2IGvd56Deruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl +xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynpVSJYACPq4xJD +KVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEYWQPJIrSPnNVeKtelttQKbfi3 +QBFGmh95DmK/D5fs4C8fF5Q= +-----END CERTIFICATE----- + +StartCom Certification Authority +================================ +-----BEGIN CERTIFICATE----- +MIIHyTCCBbGgAwIBAgIBATANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN +U3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmlu +ZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0 +NjM2WhcNMzYwOTE3MTk0NjM2WjB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRk +LjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMg +U3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +ggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZkpMyONvg45iPwbm2xPN1y +o4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rfOQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/ +Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/CJi/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/d +eMotHweXMAEtcnn6RtYTKqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt +2PZE4XNiHzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMMAv+Z +6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w+2OqqGwaVLRcJXrJ +osmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/ +untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVc +UjyJthkqcwEKDwOzEmDyei+B26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT +37uMdBNSSwIDAQABo4ICUjCCAk4wDAYDVR0TBAUwAwEB/zALBgNVHQ8EBAMCAa4wHQYDVR0OBBYE +FE4L7xqkQFulF2mHMMo0aEPQQa7yMGQGA1UdHwRdMFswLKAqoCiGJmh0dHA6Ly9jZXJ0LnN0YXJ0 +Y29tLm9yZy9zZnNjYS1jcmwuY3JsMCugKaAnhiVodHRwOi8vY3JsLnN0YXJ0Y29tLm9yZy9zZnNj +YS1jcmwuY3JsMIIBXQYDVR0gBIIBVDCCAVAwggFMBgsrBgEEAYG1NwEBATCCATswLwYIKwYBBQUH +AgEWI2h0dHA6Ly9jZXJ0LnN0YXJ0Y29tLm9yZy9wb2xpY3kucGRmMDUGCCsGAQUFBwIBFilodHRw +Oi8vY2VydC5zdGFydGNvbS5vcmcvaW50ZXJtZWRpYXRlLnBkZjCB0AYIKwYBBQUHAgIwgcMwJxYg +U3RhcnQgQ29tbWVyY2lhbCAoU3RhcnRDb20pIEx0ZC4wAwIBARqBl0xpbWl0ZWQgTGlhYmlsaXR5 +LCByZWFkIHRoZSBzZWN0aW9uICpMZWdhbCBMaW1pdGF0aW9ucyogb2YgdGhlIFN0YXJ0Q29tIENl +cnRpZmljYXRpb24gQXV0aG9yaXR5IFBvbGljeSBhdmFpbGFibGUgYXQgaHR0cDovL2NlcnQuc3Rh +cnRjb20ub3JnL3BvbGljeS5wZGYwEQYJYIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilT +dGFydENvbSBGcmVlIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQUFAAOC +AgEAFmyZ9GYMNPXQhV59CuzaEE44HF7fpiUFS5Eyweg78T3dRAlbB0mKKctmArexmvclmAk8jhvh +3TaHK0u7aNM5Zj2gJsfyOZEdUauCe37Vzlrk4gNXcGmXCPleWKYK34wGmkUWFjgKXlf2Ysd6AgXm +vB618p70qSmD+LIU424oh0TDkBreOKk8rENNZEXO3SipXPJzewT4F+irsfMuXGRuczE6Eri8sxHk +fY+BUZo7jYn0TZNmezwD7dOaHZrzZVD1oNB1ny+v8OqCQ5j4aZyJecRDjkZy42Q2Eq/3JR44iZB3 +fsNrarnDy0RLrHiQi+fHLB5LEUTINFInzQpdn4XBidUaePKVEFMy3YCEZnXZtWgo+2EuvoSoOMCZ +EoalHmdkrQYuL6lwhceWD3yJZfWOQ1QOq92lgDmUYMA0yZZwLKMS9R9Ie70cfmu3nZD0Ijuu+Pwq +yvqCUqDvr0tVk+vBtfAii6w0TiYiBKGHLHVKt+V9E9e4DGTANtLJL4YSjCMJwRuCO3NJo2pXh5Tl +1njFmUNj403gdy3hZZlyaQQaRwnmDwFWJPsfvw55qVguucQJAX6Vum0ABj6y6koQOdjQK/W/7HW/ +lwLFCRsI3FU34oH7N4RDYiDK51ZLZer+bMEkkyShNOsF/5oirpt9P/FlUQqmMGqz9IgcgA38coro +g14= +-----END CERTIFICATE----- + +Taiwan GRCA +=========== +-----BEGIN CERTIFICATE----- +MIIFcjCCA1qgAwIBAgIQH51ZWtcvwgZEpYAIaeNe9jANBgkqhkiG9w0BAQUFADA/MQswCQYDVQQG +EwJUVzEwMC4GA1UECgwnR292ZXJubWVudCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4X +DTAyMTIwNTEzMjMzM1oXDTMyMTIwNTEzMjMzM1owPzELMAkGA1UEBhMCVFcxMDAuBgNVBAoMJ0dv +dmVybm1lbnQgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQAD +ggIPADCCAgoCggIBAJoluOzMonWoe/fOW1mKydGGEghU7Jzy50b2iPN86aXfTEc2pBsBHH8eV4qN +w8XRIePaJD9IK/ufLqGU5ywck9G/GwGHU5nOp/UKIXZ3/6m3xnOUT0b3EEk3+qhZSV1qgQdW8or5 +BtD3cCJNtLdBuTK4sfCxw5w/cP1T3YGq2GN49thTbqGsaoQkclSGxtKyyhwOeYHWtXBiCAEuTk8O +1RGvqa/lmr/czIdtJuTJV6L7lvnM4T9TjGxMfptTCAtsF/tnyMKtsc2AtJfcdgEWFelq16TheEfO +htX7MfP6Mb40qij7cEwdScevLJ1tZqa2jWR+tSBqnTuBto9AAGdLiYa4zGX+FVPpBMHWXx1E1wov +J5pGfaENda1UhhXcSTvxls4Pm6Dso3pdvtUqdULle96ltqqvKKyskKw4t9VoNSZ63Pc78/1Fm9G7 +Q3hub/FCVGqY8A2tl+lSXunVanLeavcbYBT0peS2cWeqH+riTcFCQP5nRhc4L0c/cZyu5SHKYS1t +B6iEfC3uUSXxY5Ce/eFXiGvviiNtsea9P63RPZYLhY3Naye7twWb7LuRqQoHEgKXTiCQ8P8NHuJB +O9NAOueNXdpm5AKwB1KYXA6OM5zCppX7VRluTI6uSw+9wThNXo+EHWbNxWCWtFJaBYmOlXqYwZE8 +lSOyDvR5tMl8wUohAgMBAAGjajBoMB0GA1UdDgQWBBTMzO/MKWCkO7GStjz6MmKPrCUVOzAMBgNV +HRMEBTADAQH/MDkGBGcqBwAEMTAvMC0CAQAwCQYFKw4DAhoFADAHBgVnKgMAAAQUA5vwIhP/lSg2 +09yewDL7MTqKUWUwDQYJKoZIhvcNAQEFBQADggIBAECASvomyc5eMN1PhnR2WPWus4MzeKR6dBcZ +TulStbngCnRiqmjKeKBMmo4sIy7VahIkv9Ro04rQ2JyftB8M3jh+Vzj8jeJPXgyfqzvS/3WXy6Tj +Zwj/5cAWtUgBfen5Cv8b5Wppv3ghqMKnI6mGq3ZW6A4M9hPdKmaKZEk9GhiHkASfQlK3T8v+R0F2 +Ne//AHY2RTKbxkaFXeIksB7jSJaYV0eUVXoPQbFEJPPB/hprv4j9wabak2BegUqZIJxIZhm1AHlU +D7gsL0u8qV1bYH+Mh6XgUmMqvtg7hUAV/h62ZT/FS9p+tXo1KaMuephgIqP0fSdOLeq0dDzpD6Qz +DxARvBMB1uUO07+1EqLhRSPAzAhuYbeJq4PjJB7mXQfnHyA+z2fI56wwbSdLaG5LKlwCCDTb+Hbk +Z6MmnD+iMsJKxYEYMRBWqoTvLQr/uB930r+lWKBi5NdLkXWNiYCYfm3LU05er/ayl4WXudpVBrkk +7tfGOB5jGxI7leFYrPLfhNVfmS8NVVvmONsuP3LpSIXLuykTjx44VbnzssQwmSNOXfJIoRIM3BKQ +CZBUkQM8R+XVyWXgt0t97EfTsws+rZ7QdAAO671RrcDeLMDDav7v3Aun+kbfYNucpllQdSNpc5Oy ++fwC00fmcc4QAu4njIT/rEUNE1yDMuAlpYYsfPQS +-----END CERTIFICATE----- + +Firmaprofesional Root CA +======================== +-----BEGIN CERTIFICATE----- +MIIEVzCCAz+gAwIBAgIBATANBgkqhkiG9w0BAQUFADCBnTELMAkGA1UEBhMCRVMxIjAgBgNVBAcT +GUMvIE11bnRhbmVyIDI0NCBCYXJjZWxvbmExQjBABgNVBAMTOUF1dG9yaWRhZCBkZSBDZXJ0aWZp +Y2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODEmMCQGCSqGSIb3DQEJARYXY2FA +ZmlybWFwcm9mZXNpb25hbC5jb20wHhcNMDExMDI0MjIwMDAwWhcNMTMxMDI0MjIwMDAwWjCBnTEL +MAkGA1UEBhMCRVMxIjAgBgNVBAcTGUMvIE11bnRhbmVyIDI0NCBCYXJjZWxvbmExQjBABgNVBAMT +OUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2 +ODEmMCQGCSqGSIb3DQEJARYXY2FAZmlybWFwcm9mZXNpb25hbC5jb20wggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQDnIwNvbyOlXnjOlSztlB5uCp4Bx+ow0Syd3Tfom5h5VtP8c9/Qit5V +j1H5WuretXDE7aTt/6MNbg9kUDGvASdYrv5sp0ovFy3Tc9UTHI9ZpTQsHVQERc1ouKDAA6XPhUJH +lShbz++AbOCQl4oBPB3zhxAwJkh91/zpnZFx/0GaqUC1N5wpIE8fUuOgfRNtVLcK3ulqTgesrBlf +3H5idPayBQC6haD9HThuy1q7hryUZzM1gywfI834yJFxzJeL764P3CkDG8A563DtwW4O2GcLiam8 +NeTvtjS0pbbELaW+0MOUJEjb35bTALVmGotmBQ/dPz/LP6pemkr4tErvlTcbAgMBAAGjgZ8wgZww +KgYDVR0RBCMwIYYfaHR0cDovL3d3dy5maXJtYXByb2Zlc2lvbmFsLmNvbTASBgNVHRMBAf8ECDAG +AQH/AgEBMCsGA1UdEAQkMCKADzIwMDExMDI0MjIwMDAwWoEPMjAxMzEwMjQyMjAwMDBaMA4GA1Ud +DwEB/wQEAwIBBjAdBgNVHQ4EFgQUMwugZtHq2s7eYpMEKFK1FH84aLcwDQYJKoZIhvcNAQEFBQAD +ggEBAEdz/o0nVPD11HecJ3lXV7cVVuzH2Fi3AQL0M+2TUIiefEaxvT8Ub/GzR0iLjJcG1+p+o1wq +u00vR+L4OQbJnC4xGgN49Lw4xiKLMzHwFgQEffl25EvXwOaD7FnMP97/T2u3Z36mhoEyIwOdyPdf +wUpgpZKpsaSgYMN4h7Mi8yrrW6ntBas3D7Hi05V2Y1Z0jFhyGzflZKG+TQyTmAyX9odtsz/ny4Cm +7YjHX1BiAuiZdBbQ5rQ58SfLyEDW44YQqSMSkuBpQWOnryULwMWSyx6Yo1q6xTMPoJcB3X/ge9YG +VM+h4k0460tQtcsm9MracEpqoeJ5quGnM/b9Sh/22WA= +-----END CERTIFICATE----- + +Wells Fargo Root CA +=================== +-----BEGIN CERTIFICATE----- +MIID5TCCAs2gAwIBAgIEOeSXnjANBgkqhkiG9w0BAQUFADCBgjELMAkGA1UEBhMCVVMxFDASBgNV +BAoTC1dlbGxzIEZhcmdvMSwwKgYDVQQLEyNXZWxscyBGYXJnbyBDZXJ0aWZpY2F0aW9uIEF1dGhv +cml0eTEvMC0GA1UEAxMmV2VsbHMgRmFyZ28gUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcN +MDAxMDExMTY0MTI4WhcNMjEwMTE0MTY0MTI4WjCBgjELMAkGA1UEBhMCVVMxFDASBgNVBAoTC1dl +bGxzIEZhcmdvMSwwKgYDVQQLEyNXZWxscyBGYXJnbyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEv +MC0GA1UEAxMmV2VsbHMgRmFyZ28gUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVqDM7Jvk0/82bfuUER84A4n135zHCLielTWi5MbqNQ1mX +x3Oqfz1cQJ4F5aHiidlMuD+b+Qy0yGIZLEWukR5zcUHESxP9cMIlrCL1dQu3U+SlK93OvRw6esP3 +E48mVJwWa2uv+9iWsWCaSOAlIiR5NM4OJgALTqv9i86C1y8IcGjBqAr5dE8Hq6T54oN+J3N0Prj5 +OEL8pahbSCOz6+MlsoCultQKnMJ4msZoGK43YjdeUXWoWGPAUe5AeH6orxqg4bB4nVCMe+ez/I4j +sNtlAHCEAQgAFG5Uhpq6zPk3EPbg3oQtnaSFN9OH4xXQwReQfhkhahKpdv0SAulPIV4XAgMBAAGj +YTBfMA8GA1UdEwEB/wQFMAMBAf8wTAYDVR0gBEUwQzBBBgtghkgBhvt7hwcBCzAyMDAGCCsGAQUF +BwIBFiRodHRwOi8vd3d3LndlbGxzZmFyZ28uY29tL2NlcnRwb2xpY3kwDQYJKoZIhvcNAQEFBQAD +ggEBANIn3ZwKdyu7IvICtUpKkfnRLb7kuxpo7w6kAOnu5+/u9vnldKTC2FJYxHT7zmu1Oyl5GFrv +m+0fazbuSCUlFLZWohDo7qd/0D+j0MNdJu4HzMPBJCGHHt8qElNvQRbn7a6U+oxy+hNH8Dx+rn0R +OhPs7fpvcmR7nX1/Jv16+yWt6j4pf0zjAFcysLPp7VMX2YuyFA4w6OXVE8Zkr8QA1dhYJPz1j+zx +x32l2w8n0cbyQIjmH/ZhqPRCyLk306m+LFZ4wnKbWV01QIroTmMatukgalHizqSQ33ZwmVxwQ023 +tqcZZE6St8WRPH9IFmV7Fv3L/PvZ1dZPIWU7Sn9Ho/s= +-----END CERTIFICATE----- + +Swisscom Root CA 1 +================== +-----BEGIN CERTIFICATE----- +MIIF2TCCA8GgAwIBAgIQXAuFXAvnWUHfV8w/f52oNjANBgkqhkiG9w0BAQUFADBkMQswCQYDVQQG +EwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0YWwgQ2VydGlmaWNhdGUgU2Vy +dmljZXMxGzAZBgNVBAMTElN3aXNzY29tIFJvb3QgQ0EgMTAeFw0wNTA4MTgxMjA2MjBaFw0yNTA4 +MTgyMjA2MjBaMGQxCzAJBgNVBAYTAmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGln +aXRhbCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAxMIIC +IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0LmwqAzZuz8h+BvVM5OAFmUgdbI9m2BtRsiM +MW8Xw/qabFbtPMWRV8PNq5ZJkCoZSx6jbVfd8StiKHVFXqrWW/oLJdihFvkcxC7mlSpnzNApbjyF +NDhhSbEAn9Y6cV9Nbc5fuankiX9qUvrKm/LcqfmdmUc/TilftKaNXXsLmREDA/7n29uj/x2lzZAe +AR81sH8A25Bvxn570e56eqeqDFdvpG3FEzuwpdntMhy0XmeLVNxzh+XTF3xmUHJd1BpYwdnP2IkC +b6dJtDZd0KTeByy2dbcokdaXvij1mB7qWybJvbCXc9qukSbraMH5ORXWZ0sKbU/Lz7DkQnGMU3nn +7uHbHaBuHYwadzVcFh4rUx80i9Fs/PJnB3r1re3WmquhsUvhzDdf/X/NTa64H5xD+SpYVUNFvJbN +cA78yeNmuk6NO4HLFWR7uZToXTNShXEuT46iBhFRyePLoW4xCGQMwtI89Tbo19AOeCMgkckkKmUp +WyL3Ic6DXqTz3kvTaI9GdVyDCW4pa8RwjPWd1yAv/0bSKzjCL3UcPX7ape8eYIVpQtPM+GP+HkM5 +haa2Y0EQs3MevNP6yn0WR+Kn1dCjigoIlmJWbjTb2QK5MHXjBNLnj8KwEUAKrNVxAmKLMb7dxiNY +MUJDLXT5xp6mig/p/r+D5kNXJLrvRjSq1xIBOO0CAwEAAaOBhjCBgzAOBgNVHQ8BAf8EBAMCAYYw +HQYDVR0hBBYwFDASBgdghXQBUwABBgdghXQBUwABMBIGA1UdEwEB/wQIMAYBAf8CAQcwHwYDVR0j +BBgwFoAUAyUv3m+CATpcLNwroWm1Z9SM0/0wHQYDVR0OBBYEFAMlL95vggE6XCzcK6FptWfUjNP9 +MA0GCSqGSIb3DQEBBQUAA4ICAQA1EMvspgQNDQ/NwNurqPKIlwzfky9NfEBWMXrrpA9gzXrzvsMn +jgM+pN0S734edAY8PzHyHHuRMSG08NBsl9Tpl7IkVh5WwzW9iAUPWxAaZOHHgjD5Mq2eUCzneAXQ +MbFamIp1TpBcahQq4FJHgmDmHtqBsfsUC1rxn9KVuj7QG9YVHaO+htXbD8BJZLsuUBlL0iT43R4H +VtA4oJVwIHaM190e3p9xxCPvgxNcoyQVTSlAPGrEqdi3pkSlDfTgnXceQHAm/NrZNuR55LU/vJtl +vrsRls/bxig5OgjOR1tTWsWZ/l2p3e9M1MalrQLmjAcSHm8D0W+go/MpvRLHUKKwf4ipmXeascCl +OS5cfGniLLDqN2qk4Vrh9VDlg++luyqI54zb/W1elxmofmZ1a3Hqv7HHb6D0jqTsNFFbjCYDcKF3 +1QESVwA12yPeDooomf2xEG9L/zgtYE4snOtnta1J7ksfrK/7DZBaZmBwXarNeNQk7shBoJMBkpxq +nvy5JMWzFYJ+vq6VK+uxwNrjAWALXmmshFZhvnEX/h0TD/7Gh0Xp/jKgGg0TpJRVcaUWi7rKibCy +x/yP2FS1k2Kdzs9Z+z0YzirLNRWCXf9UIltxUvu3yf5gmwBBZPCqKuy2QkPOiWaByIufOVQDJdMW +NY6E0F/6MBr1mmz0DlP5OlvRHA== +-----END CERTIFICATE----- + +DigiCert Assured ID Root CA +=========================== +-----BEGIN CERTIFICATE----- +MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw +IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzEx +MTEwMDAwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL +ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0Ew +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7cJpSIqvTO +9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYPmDI2dsze3Tyoou9q+yHy +UmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW +/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpy +oeb6pNnVFzF1roV9Iq4/AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whf +GHdPAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRF +66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYunpyGd823IDzANBgkq +hkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRCdWKuh+vy1dneVrOfzM4UKLkNl2Bc +EkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTffwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38Fn +SbNd67IJKusm7Xi+fT8r87cmNW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i +8b5QZ7dsvfPxH2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe ++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== +-----END CERTIFICATE----- + +DigiCert Global Root CA +======================= +-----BEGIN CERTIFICATE----- +MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw +HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw +MDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3 +dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq +hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn +TjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5 +BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H +4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y +7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB +o2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm +8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF +BQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr +EbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt +tep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886 +UAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk +CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= +-----END CERTIFICATE----- + +DigiCert High Assurance EV Root CA +================================== +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBsMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSsw +KQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAw +MFoXDTMxMTExMDAwMDAwMFowbDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZ +MBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFu +Y2UgRVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm+9S75S0t +Mqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTWPNt0OKRKzE0lgvdKpVMS +OO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEMxChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3 +MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFBIk5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQ +NAQTXKFx01p8VdteZOE3hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUe +h10aUAsgEsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMB +Af8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaAFLE+w2kD+L9HAdSY +JhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3NecnzyIZgYIVyHbIUf4KmeqvxgydkAQ +V8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6zeM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFp +myPInngiK3BD41VHMWEZ71jFhS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkK +mNEVX58Svnw2Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe +vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep+OkuE6N36B9K +-----END CERTIFICATE----- + +Certplus Class 2 Primary CA +=========================== +-----BEGIN CERTIFICATE----- +MIIDkjCCAnqgAwIBAgIRAIW9S/PY2uNp9pTXX8OlRCMwDQYJKoZIhvcNAQEFBQAwPTELMAkGA1UE +BhMCRlIxETAPBgNVBAoTCENlcnRwbHVzMRswGQYDVQQDExJDbGFzcyAyIFByaW1hcnkgQ0EwHhcN +OTkwNzA3MTcwNTAwWhcNMTkwNzA2MjM1OTU5WjA9MQswCQYDVQQGEwJGUjERMA8GA1UEChMIQ2Vy +dHBsdXMxGzAZBgNVBAMTEkNsYXNzIDIgUHJpbWFyeSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBANxQltAS+DXSCHh6tlJw/W/uz7kRy1134ezpfgSN1sxvc0NXYKwzCkTsA18cgCSR +5aiRVhKC9+Ar9NuuYS6JEI1rbLqzAr3VNsVINyPi8Fo3UjMXEuLRYE2+L0ER4/YXJQyLkcAbmXuZ +Vg2v7tK8R1fjeUl7NIknJITesezpWE7+Tt9avkGtrAjFGA7v0lPubNCdEgETjdyAYveVqUSISnFO +YFWe2yMZeVYHDD9jC1yw4r5+FfyUM1hBOHTE4Y+L3yasH7WLO7dDWWuwJKZtkIvEcupdM5i3y95e +e++U8Rs+yskhwcWYAqqi9lt3m/V+llU0HGdpwPFC40es/CgcZlUCAwEAAaOBjDCBiTAPBgNVHRME +CDAGAQH/AgEKMAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQU43Mt38sOKAze3bOkynm4jrvoMIkwEQYJ +YIZIAYb4QgEBBAQDAgEGMDcGA1UdHwQwMC4wLKAqoCiGJmh0dHA6Ly93d3cuY2VydHBsdXMuY29t +L0NSTC9jbGFzczIuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQCnVM+IRBnL39R/AN9WM2K191EBkOvD +P9GIROkkXe/nFL0gt5o8AP5tn9uQ3Nf0YtaLcF3n5QRIqWh8yfFC82x/xXp8HVGIutIKPidd3i1R +TtMTZGnkLuPT55sJmabglZvOGtd/vjzOUrMRFcEPF80Du5wlFbqidon8BvEY0JNLDnyCt6X09l/+ +7UCmnYR0ObncHoUW2ikbhiMAybuJfm6AiB4vFLQDJKgybwOaRywwvlbGp0ICcBvqQNi6BQNwB6SW +//1IMwrh3KWBkJtN3X3n57LNXMhqlfil9o3EXXgIvnsG1knPGTZQIy4I5p4FTUcY1Rbpsda2ENW7 +l7+ijrRU +-----END CERTIFICATE----- + +DST Root CA X3 +============== +-----BEGIN CERTIFICATE----- +MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/MSQwIgYDVQQK +ExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMTDkRTVCBSb290IENBIFgzMB4X +DTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVowPzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1 +cmUgVHJ1c3QgQ28uMRcwFQYDVQQDEw5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQAD +ggEPADCCAQoCggEBAN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmT +rE4Orz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEqOLl5CjH9 +UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9bxiqKqy69cK3FCxolkHRy +xXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40d +utolucbY38EVAjqr2m7xPi71XAicPNaDaeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQ +MA0GCSqGSIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69ikug +dB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXrAvHRAosZy5Q6XkjE +GB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZzR8srzJmwN0jP41ZL9c8PDHIyh8bw +RLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubS +fZGL+T0yjWW06XyxV3bqxbYoOb8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ +-----END CERTIFICATE----- + +DST ACES CA X6 +============== +-----BEGIN CERTIFICATE----- +MIIECTCCAvGgAwIBAgIQDV6ZCtadt3js2AdWO4YV2TANBgkqhkiG9w0BAQUFADBbMQswCQYDVQQG +EwJVUzEgMB4GA1UEChMXRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QxETAPBgNVBAsTCERTVCBBQ0VT +MRcwFQYDVQQDEw5EU1QgQUNFUyBDQSBYNjAeFw0wMzExMjAyMTE5NThaFw0xNzExMjAyMTE5NTha +MFsxCzAJBgNVBAYTAlVTMSAwHgYDVQQKExdEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdDERMA8GA1UE +CxMIRFNUIEFDRVMxFzAVBgNVBAMTDkRTVCBBQ0VTIENBIFg2MIIBIjANBgkqhkiG9w0BAQEFAAOC +AQ8AMIIBCgKCAQEAuT31LMmU3HWKlV1j6IR3dma5WZFcRt2SPp/5DgO0PWGSvSMmtWPuktKe1jzI +DZBfZIGxqAgNTNj50wUoUrQBJcWVHAx+PhCEdc/BGZFjz+iokYi5Q1K7gLFViYsx+tC3dr5BPTCa +pCIlF3PoHuLTrCq9Wzgh1SpL11V94zpVvddtawJXa+ZHfAjIgrrep4c9oW24MFbCswKBXy314pow +GCi4ZtPLAZZv6opFVdbgnf9nKxcCpk4aahELfrd755jWjHZvwTvbUJN+5dCOHze4vbrGn2zpfDPy +MjwmR/onJALJfh1biEITajV8fTXpLmaRcpPVMibEdPVTo7NdmvYJywIDAQABo4HIMIHFMA8GA1Ud +EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgHGMB8GA1UdEQQYMBaBFHBraS1vcHNAdHJ1c3Rkc3Qu +Y29tMGIGA1UdIARbMFkwVwYKYIZIAWUDAgEBATBJMEcGCCsGAQUFBwIBFjtodHRwOi8vd3d3LnRy +dXN0ZHN0LmNvbS9jZXJ0aWZpY2F0ZXMvcG9saWN5L0FDRVMtaW5kZXguaHRtbDAdBgNVHQ4EFgQU +CXIGThhDD+XWzMNqizF7eI+og7gwDQYJKoZIhvcNAQEFBQADggEBAKPYjtay284F5zLNAdMEA+V2 +5FYrnJmQ6AgwbN99Pe7lv7UkQIRJ4dEorsTCOlMwiPH1d25Ryvr/ma8kXxug/fKshMrfqfBfBC6t +Fr8hlxCBPeP/h40y3JTlR4peahPJlJU90u7INJXQgNStMgiAVDzgvVJT11J8smk/f3rPanTK+gQq +nExaBqXpIK1FZg9p8d2/6eMyi/rgwYZNcjwu2JN4Cir42NInPRmJX1p7ijvMDNpRrscL9yuwNwXs +vFcj4jjSm2jzVhKIT0J8uDHEtdvkyCE06UgRNe76x5JXxZ805Mf29w4LTJxoeHtxMcfrHuBnQfO3 +oKfN5XozNmr6mis= +-----END CERTIFICATE----- + +TURKTRUST Certificate Services Provider Root 1 +============================================== +-----BEGIN CERTIFICATE----- +MIID+zCCAuOgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBtzE/MD0GA1UEAww2VMOcUktUUlVTVCBF +bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGDAJUUjEP +MA0GA1UEBwwGQU5LQVJBMVYwVAYDVQQKDE0oYykgMjAwNSBUw5xSS1RSVVNUIEJpbGdpIMSwbGV0 +acWfaW0gdmUgQmlsacWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLjAeFw0wNTA1MTMx +MDI3MTdaFw0xNTAzMjIxMDI3MTdaMIG3MT8wPQYDVQQDDDZUw5xSS1RSVVNUIEVsZWt0cm9uaWsg +U2VydGlmaWthIEhpem1ldCBTYcSfbGF5xLFjxLFzxLExCzAJBgNVBAYMAlRSMQ8wDQYDVQQHDAZB +TktBUkExVjBUBgNVBAoMTShjKSAyMDA1IFTDnFJLVFJVU1QgQmlsZ2kgxLBsZXRpxZ9pbSB2ZSBC +aWxpxZ9pbSBHw7x2ZW5sacSfaSBIaXptZXRsZXJpIEEuxZ4uMIIBIjANBgkqhkiG9w0BAQEFAAOC +AQ8AMIIBCgKCAQEAylIF1mMD2Bxf3dJ7XfIMYGFbazt0K3gNfUW9InTojAPBxhEqPZW8qZSwu5GX +yGl8hMW0kWxsE2qkVa2kheiVfrMArwDCBRj1cJ02i67L5BuBf5OI+2pVu32Fks66WJ/bMsW9Xe8i +Si9BB35JYbOG7E6mQW6EvAPs9TscyB/C7qju6hJKjRTP8wrgUDn5CDX4EVmt5yLqS8oUBt5CurKZ +8y1UiBAG6uEaPj1nH/vO+3yC6BFdSsG5FOpU2WabfIl9BJpiyelSPJ6c79L1JuTm5Rh8i27fbMx4 +W09ysstcP4wFjdFMjK2Sx+F4f2VsSQZQLJ4ywtdKxnWKWU51b0dewQIDAQABoxAwDjAMBgNVHRME +BTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQAV9VX/N5aAWSGk/KEVTCD21F/aAyT8z5Aa9CEKmu46 +sWrv7/hg0Uw2ZkUd82YCdAR7kjCo3gp2D++Vbr3JN+YaDayJSFvMgzbC9UZcWYJWtNX+I7TYVBxE +q8Sn5RTOPEFhfEPmzcSBCYsk+1Ql1haolgxnB2+zUEfjHCQo3SqYpGH+2+oSN7wBGjSFvW5P55Fy +B0SFHljKVETd96y5y4khctuPwGkplyqjrhgjlxxBKot8KsF8kOipKMDTkcatKIdAaLX/7KfS0zgY +nNN9aV3wxqUeJBujR/xpB2jn5Jq07Q+hh4cCzofSSE7hvP/L8XKSRGQDJereW26fyfJOrN3H +-----END CERTIFICATE----- + +TURKTRUST Certificate Services Provider Root 2 +============================================== +-----BEGIN CERTIFICATE----- +MIIEPDCCAySgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBvjE/MD0GA1UEAww2VMOcUktUUlVTVCBF +bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGEwJUUjEP +MA0GA1UEBwwGQW5rYXJhMV0wWwYDVQQKDFRUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUg +QmlsacWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLiAoYykgS2FzxLFtIDIwMDUwHhcN +MDUxMTA3MTAwNzU3WhcNMTUwOTE2MTAwNzU3WjCBvjE/MD0GA1UEAww2VMOcUktUUlVTVCBFbGVr +dHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGEwJUUjEPMA0G +A1UEBwwGQW5rYXJhMV0wWwYDVQQKDFRUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmls +acWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLiAoYykgS2FzxLFtIDIwMDUwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCpNn7DkUNMwxmYCMjHWHtPFoylzkkBH3MOrHUTpvqe +LCDe2JAOCtFp0if7qnefJ1Il4std2NiDUBd9irWCPwSOtNXwSadktx4uXyCcUHVPr+G1QRT0mJKI +x+XlZEdhR3n9wFHxwZnn3M5q+6+1ATDcRhzviuyV79z/rxAc653YsKpqhRgNF8k+v/Gb0AmJQv2g +QrSdiVFVKc8bcLyEVK3BEx+Y9C52YItdP5qtygy/p1Zbj3e41Z55SZI/4PGXJHpsmxcPbe9TmJEr +5A++WXkHeLuXlfSfadRYhwqp48y2WBmfJiGxxFmNskF1wK1pzpwACPI2/z7woQ8arBT9pmAPAgMB +AAGjQzBBMB0GA1UdDgQWBBTZN7NOBf3Zz58SFq62iS/rJTqIHDAPBgNVHQ8BAf8EBQMDBwYAMA8G +A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAHJglrfJ3NgpXiOFX7KzLXb7iNcX/ntt +Rbj2hWyfIvwqECLsqrkw9qtY1jkQMZkpAL2JZkH7dN6RwRgLn7Vhy506vvWolKMiVW4XSf/SKfE4 +Jl3vpao6+XF75tpYHdN0wgH6PmlYX63LaL4ULptswLbcoCb6dxriJNoaN+BnrdFzgw2lGh1uEpJ+ +hGIAF728JRhX8tepb1mIvDS3LoV4nZbcFMMsilKbloxSZj2GFotHuFEJjOp9zYhys2AzsfAKRO8P +9Qk3iCQOLGsgOqL6EfJANZxEaGM7rDNvY7wsu/LSy3Z9fYjYHcgFHW68lKlmjHdxx/qR+i9Rnuk5 +UrbnBEI= +-----END CERTIFICATE----- + +SwissSign Platinum CA - G2 +========================== +-----BEGIN CERTIFICATE----- +MIIFwTCCA6mgAwIBAgIITrIAZwwDXU8wDQYJKoZIhvcNAQEFBQAwSTELMAkGA1UEBhMCQ0gxFTAT +BgNVBAoTDFN3aXNzU2lnbiBBRzEjMCEGA1UEAxMaU3dpc3NTaWduIFBsYXRpbnVtIENBIC0gRzIw +HhcNMDYxMDI1MDgzNjAwWhcNMzYxMDI1MDgzNjAwWjBJMQswCQYDVQQGEwJDSDEVMBMGA1UEChMM +U3dpc3NTaWduIEFHMSMwIQYDVQQDExpTd2lzc1NpZ24gUGxhdGludW0gQ0EgLSBHMjCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAMrfogLi2vj8Bxax3mCq3pZcZB/HL37PZ/pEQtZ2Y5Wu +669yIIpFR4ZieIbWIDkm9K6j/SPnpZy1IiEZtzeTIsBQnIJ71NUERFzLtMKfkr4k2HtnIuJpX+UF +eNSH2XFwMyVTtIc7KZAoNppVRDBopIOXfw0enHb/FZ1glwCNioUD7IC+6ixuEFGSzH7VozPY1kne +WCqv9hbrS3uQMpe5up1Y8fhXSQQeol0GcN1x2/ndi5objM89o03Oy3z2u5yg+gnOI2Ky6Q0f4nIo +j5+saCB9bzuohTEJfwvH6GXp43gOCWcwizSC+13gzJ2BbWLuCB4ELE6b7P6pT1/9aXjvCR+htL/6 +8++QHkwFix7qepF6w9fl+zC8bBsQWJj3Gl/QKTIDE0ZNYWqFTFJ0LwYfexHihJfGmfNtf9dng34T +aNhxKFrYzt3oEBSa/m0jh26OWnA81Y0JAKeqvLAxN23IhBQeW71FYyBrS3SMvds6DsHPWhaPpZjy +domyExI7C3d3rLvlPClKknLKYRorXkzig3R3+jVIeoVNjZpTxN94ypeRSCtFKwH3HBqi7Ri6Cr2D ++m+8jVeTO9TUps4e8aCxzqv9KyiaTxvXw3LbpMS/XUz13XuWae5ogObnmLo2t/5u7Su9IPhlGdpV +CX4l3P5hYnL5fhgC72O00Puv5TtjjGePAgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgEGMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFFCvzAeHFUdvOMW0ZdHelarp35zMMB8GA1UdIwQYMBaAFFCv +zAeHFUdvOMW0ZdHelarp35zMMEYGA1UdIAQ/MD0wOwYJYIV0AVkBAQEBMC4wLAYIKwYBBQUHAgEW +IGh0dHA6Ly9yZXBvc2l0b3J5LnN3aXNzc2lnbi5jb20vMA0GCSqGSIb3DQEBBQUAA4ICAQAIhab1 +Fgz8RBrBY+D5VUYI/HAcQiiWjrfFwUF1TglxeeVtlspLpYhg0DB0uMoI3LQwnkAHFmtllXcBrqS3 +NQuB2nEVqXQXOHtYyvkv+8Bldo1bAbl93oI9ZLi+FHSjClTTLJUYFzX1UWs/j6KWYTl4a0vlpqD4 +U99REJNi54Av4tHgvI42Rncz7Lj7jposiU0xEQ8mngS7twSNC/K5/FqdOxa3L8iYq/6KUFkuozv8 +KV2LwUvJ4ooTHbG/u0IdUt1O2BReEMYxB+9xJ/cbOQncguqLs5WGXv312l0xpuAxtpTmREl0xRbl +9x8DYSjFyMsSoEJL+WuICI20MhjzdZ/EfwBPBZWcoxcCw7NTm6ogOSkrZvqdr16zktK1puEa+S1B +aYEUtLS17Yk9zvupnTVCRLEcFHOBzyoBNZox1S2PbYTfgE1X4z/FhHXaicYwu+uPyyIIoK6q8QNs +OktNCaUOcsZWayFCTiMlFGiudgp8DAdwZPmaL/YFOSbGDI8Zf0NebvRbFS/bYV3mZy8/CJT5YLSY +Mdp08YSTcU1f+2BY0fvEwW2JorsgH51xkcsymxM9Pn2SUjWskpSi0xjCfMfqr3YFFt1nJ8J+HAci +IfNAChs0B0QTwoRqjt8ZWr9/6x3iGjjRXK9HkmuAtTClyY3YqzGBH9/CZjfTk6mFhnll0g== +-----END CERTIFICATE----- + +SwissSign Gold CA - G2 +====================== +-----BEGIN CERTIFICATE----- +MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkNIMRUw +EwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2lnbiBHb2xkIENBIC0gRzIwHhcN +MDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBFMQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dp +c3NTaWduIEFHMR8wHQYDVQQDExZTd2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUq +t2/876LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+bbqBHH5C +jCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c6bM8K8vzARO/Ws/BtQpg +vd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqEemA8atufK+ze3gE/bk3lUIbLtK/tREDF +ylqM2tIrfKjuvqblCqoOpd8FUrdVxyJdMmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvR +AiTysybUa9oEVeXBCsdtMDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuend +jIj3o02yMszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69yFGkO +peUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPiaG59je883WX0XaxR +7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxMgI93e2CaHt+28kgeDrpOVG2Y4OGi +GqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUWyV7lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64 +OfPAeGZe6Drn8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov +L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe645R88a7A3hfm +5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczOUYrHUDFu4Up+GC9pWbY9ZIEr +44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOf +Mke6UiI0HTJ6CVanfCU2qT1L2sCCbwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6m +Gu6uLftIdxf+u+yvGPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxp +mo/a77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCChdiDyyJk +vC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid392qgQmwLOM7XdVAyksLf +KzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEppLd6leNcG2mqeSz53OiATIgHQv2ieY2Br +NU0LbbqhPcCT4H8js1WtciVORvnSFu+wZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6Lqj +viOvrv1vA+ACOzB2+httQc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ +-----END CERTIFICATE----- + +SwissSign Silver CA - G2 +======================== +-----BEGIN CERTIFICATE----- +MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCQ0gxFTAT +BgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMB4X +DTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0NlowRzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3 +aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG +9w0BAQEFAAOCAg8AMIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644 +N0MvFz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7brYT7QbNHm ++/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieFnbAVlDLaYQ1HTWBCrpJH +6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH6ATK72oxh9TAtvmUcXtnZLi2kUpCe2Uu +MGoM9ZDulebyzYLs2aFK7PayS+VFheZteJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5h +qAaEuSh6XzjZG6k4sIN/c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5 +FZGkECwJMoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRHHTBs +ROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTfjNFusB3hB48IHpmc +celM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb65i/4z3GcRm25xBWNOHkDRUjvxF3X +CO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQUF6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRB +tjpbO8tFnb0cwpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0 +cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBAHPGgeAn0i0P +4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShpWJHckRE1qTodvBqlYJ7YH39F +kWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L +3XWgwF15kIwb4FDm3jH+mHtwX6WQ2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx +/uNncqCxv1yL5PqZIseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFa +DGi8aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2Xem1ZqSqP +e97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQRdAtq/gsD/KNVV4n+Ssuu +WxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJ +DIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ub +DgEj8Z+7fNzcbBGXJbLytGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u +-----END CERTIFICATE----- + +GeoTrust Primary Certification Authority +======================================== +-----BEGIN CERTIFICATE----- +MIIDfDCCAmSgAwIBAgIQGKy1av1pthU6Y2yv2vrEoTANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQG +EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjExMC8GA1UEAxMoR2VvVHJ1c3QgUHJpbWFyeSBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjExMjcwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMFgx +CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBQ +cmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEAvrgVe//UfH1nrYNke8hCUy3f9oQIIGHWAVlqnEQRr+92/ZV+zmEwu3qDXwK9AWbK7hWN +b6EwnL2hhZ6UOvNWiAAxz9juapYC2e0DjPt1befquFUWBRaa9OBesYjAZIVcFU2Ix7e64HXprQU9 +nceJSOC7KMgD4TCTZF5SwFlwIjVXiIrxlQqD17wxcwE07e9GceBrAqg1cmuXm2bgyxx5X9gaBGge +RwLmnWDiNpcB3841kt++Z8dtd1k7j53WkBWUvEI0EME5+bEnPn7WinXFsq+W06Lem+SYvn3h6YGt +tm/81w7a4DSwDRp35+MImO9Y+pyEtzavwt+s0vQQBnBxNQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQULNVQQZcVi/CPNmFbSvtr2ZnJM5IwDQYJKoZI +hvcNAQEFBQADggEBAFpwfyzdtzRP9YZRqSa+S7iq8XEN3GHHoOo0Hnp3DwQ16CePbJC/kRYkRj5K +Ts4rFtULUh38H2eiAkUxT87z+gOneZ1TatnaYzr4gNfTmeGl4b7UVXGYNTq+k+qurUKykG/g/CFN +NWMziUnWm07Kx+dOCQD32sfvmWKZd7aVIl6KoKv0uHiYyjgZmclynnjNS6yvGaBzEi38wkG6gZHa +Floxt/m0cYASSJlyc1pZU8FjUjPtp8nSOQJw+uCxQmYpqptR7TBUIhRf2asdweSU8Pj1K/fqynhG +1riR/aYNKxoUAT6A8EKglQdebc3MS6RFjasS6LPeWuWgfOgPIh1a6Vk= +-----END CERTIFICATE----- + +thawte Primary Root CA +====================== +-----BEGIN CERTIFICATE----- +MIIEIDCCAwigAwIBAgIQNE7VVyDV7exJ9C/ON9srbTANBgkqhkiG9w0BAQUFADCBqTELMAkGA1UE +BhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2 +aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhv +cml6ZWQgdXNlIG9ubHkxHzAdBgNVBAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwHhcNMDYxMTE3 +MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCBqTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwg +SW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMv +KGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxHzAdBgNVBAMT +FnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCs +oPD7gFnUnMekz52hWXMJEEUMDSxuaPFsW0hoSVk3/AszGcJ3f8wQLZU0HObrTQmnHNK4yZc2AreJ +1CRfBsDMRJSUjQJib+ta3RGNKJpchJAQeg29dGYvajig4tVUROsdB58Hum/u6f1OCyn1PoSgAfGc +q/gcfomk6KHYcWUNo1F77rzSImANuVud37r8UVsLr5iy6S7pBOhih94ryNdOwUxkHt3Ph1i6Sk/K +aAcdHJ1KxtUvkcx8cXIcxcBn6zL9yZJclNqFwJu/U30rCfSMnZEfl2pSy94JNqR32HuHUETVPm4p +afs5SSYeCaWAe0At6+gnhcn+Yf1+5nyXHdWdAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBR7W0XPr87Lev0xkhpqtvNG61dIUDANBgkqhkiG9w0BAQUF +AAOCAQEAeRHAS7ORtvzw6WfUDW5FvlXok9LOAz/t2iWwHVfLHjp2oEzsUHboZHIMpKnxuIvW1oeE +uzLlQRHAd9mzYJ3rG9XRbkREqaYB7FViHXe4XI5ISXycO1cRrK1zN44veFyQaEfZYGDm/Ac9IiAX +xPcW6cTYcvnIc3zfFi8VqT79aie2oetaupgf1eNNZAqdE8hhuvU5HIe6uL17In/2/qxAeeWsEG89 +jxt5dovEN7MhGITlNgDrYyCZuen+MwS7QcjBAvlEYyCegc5C09Y/LHbTY5xZ3Y+m4Q6gLkH3LpVH +z7z9M/P2C2F+fpErgUfCJzDupxBdN49cOSvkBPB7jVaMaA== +-----END CERTIFICATE----- + +VeriSign Class 3 Public Primary Certification Authority - G5 +============================================================ +-----BEGIN CERTIFICATE----- +MIIE0zCCA7ugAwIBAgIQGNrRniZ96LtKIVjNzGs7SjANBgkqhkiG9w0BAQUFADCByjELMAkGA1UE +BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO +ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk +IHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwHhcNMDYxMTA4MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCB +yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2ln +biBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBh +dXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmlt +YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw +ggEKAoIBAQCvJAgIKXo1nmAMqudLO07cfLw8RRy7K+D+KQL5VwijZIUVJ/XxrcgxiV0i6CqqpkKz +j/i5Vbext0uz/o9+B1fs70PbZmIVYc9gDaTY3vjgw2IIPVQT60nKWVSFJuUrjxuf6/WhkcIzSdhD +Y2pSS9KP6HBRTdGJaXvHcPaz3BJ023tdS1bTlr8Vd6Gw9KIl8q8ckmcY5fQGBO+QueQA5N06tRn/ +Arr0PO7gi+s3i+z016zy9vA9r911kTMZHRxAy3QkGSGT2RT+rCpSx4/VBEnkjWNHiDxpg8v+R70r +fk/Fla4OndTRQ8Bnc+MUCH7lP59zuDMKz10/NIeWiu5T6CUVAgMBAAGjgbIwga8wDwYDVR0TAQH/ +BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2Uv +Z2lmMCEwHzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVy +aXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFH/TZafC3ey78DAJ80M5+gKvMzEzMA0GCSqG +SIb3DQEBBQUAA4IBAQCTJEowX2LP2BqYLz3q3JktvXf2pXkiOOzEp6B4Eq1iDkVwZMXnl2YtmAl+ +X6/WzChl8gGqCBpH3vn5fJJaCGkgDdk+bW48DW7Y5gaRQBi5+MHt39tBquCWIMnNZBU4gcmU7qKE +KQsTb47bDN0lAtukixlE0kF6BWlKWE9gyn6CagsCqiUXObXbf+eEZSqVir2G3l6BFoMtEMze/aiC +Km0oHw0LxOXnGiYZ4fQRbxC1lfznQgUy286dUV4otp6F01vvpX1FQHKOtw5rDgb7MzVIcbidJ4vE +ZV8NhnacRHr2lVz2XTIIM6RUthg/aFzyQkqFOFSDX9HoLPKsEdao7WNq +-----END CERTIFICATE----- + +SecureTrust CA +============== +-----BEGIN CERTIFICATE----- +MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBIMQswCQYDVQQG +EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xFzAVBgNVBAMTDlNlY3VyZVRy +dXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIzMTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAe +BgNVBAoTF1NlY3VyZVRydXN0IENvcnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCC +ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQX +OZEzZum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO0gMdA+9t +DWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIaowW8xQmxSPmjL8xk037uH +GFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b +01k/unK8RCSc43Oz969XL0Imnal0ugBS8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmH +ursCAwEAAaOBnTCBmjATBgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCegJYYj +aHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ +KoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt36Z3q059c4EVlew3KW+JwULKUBRSu +SceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHf +mbx8IVQr5Fiiu1cprp6poxkmD5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZ +nMUFdAvnZyPSCPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR +3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= +-----END CERTIFICATE----- + +Secure Global CA +================ +-----BEGIN CERTIFICATE----- +MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBKMQswCQYDVQQG +EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBH +bG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkxMjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEg +MB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwg +Q0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jx +YDiJiQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa/FHtaMbQ +bqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJjnIFHovdRIWCQtBJwB1g +8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnIHmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYV +HDGA76oYa8J719rO+TMg1fW9ajMtgQT7sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi +0XPnj3pDAgMBAAGjgZ0wgZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCswKaAn +oCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsGAQQBgjcVAQQDAgEA +MA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0LURYD7xh8yOOvaliTFGCRsoTciE6+ +OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXOH0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cn +CDpOGR86p1hcF895P4vkp9MmI50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/5 +3CYNv6ZHdAbYiNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc +f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW +-----END CERTIFICATE----- + +COMODO Certification Authority +============================== +-----BEGIN CERTIFICATE----- +MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCBgTELMAkGA1UE +BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG +A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNVBAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1 +dGhvcml0eTAeFw0wNjEyMDEwMDAwMDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEb +MBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFD +T01PRE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3UcEbVASY06m/weaKXTuH ++7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI2GqGd0S7WWaXUF601CxwRM/aN5VCaTww +xHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV +4EajcNxo2f8ESIl33rXp+2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA +1KGzqSX+DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5OnKVI +rLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW/zAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6gPKA6hjhodHRwOi8vY3JsLmNvbW9k +b2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOC +AQEAPpiem/Yb6dc5t3iuHXIYSdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CP +OGEIqB6BCsAvIC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ +RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4zJVSk/BwJVmc +IGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5ddBA6+C4OmF4O5MBKgxTMVBbkN ++8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IBZQ== +-----END CERTIFICATE----- + +Network Solutions Certificate Authority +======================================= +-----BEGIN CERTIFICATE----- +MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQG +EwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydOZXR3b3Jr +IFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMx +MjM1OTU5WjBiMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu +MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwzc7MEL7xx +jOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPPOCwGJgl6cvf6UDL4wpPT +aaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rlmGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXT +crA/vGp97Eh/jcOrqnErU2lBUzS1sLnFBgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc +/Qzpf14Dl847ABSHJ3A4qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMB +AAGjgZcwgZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwubmV0c29sc3NsLmNv +bS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3JpdHkuY3JsMA0GCSqGSIb3DQEBBQUA +A4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc86fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q +4LqILPxFzBiwmZVRDuwduIj/h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/ +GGUsyfJj4akH/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv +wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHNpGxlaKFJdlxD +ydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey +-----END CERTIFICATE----- + +WellsSecure Public Root Certificate Authority +============================================= +-----BEGIN CERTIFICATE----- +MIIEvTCCA6WgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoM +F1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYw +NAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcN +MDcxMjEzMTcwNzU0WhcNMjIxMjE0MDAwNzU0WjCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dl +bGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYD +VQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDub7S9eeKPCCGeOARBJe+rWxxTkqxtnt3CxC5FlAM1 +iGd0V+PfjLindo8796jE2yljDpFoNoqXjopxaAkH5OjUDk/41itMpBb570OYj7OeUt9tkTmPOL13 +i0Nj67eT/DBMHAGTthP796EfvyXhdDcsHqRePGj4S78NuR4uNuip5Kf4D8uCdXw1LSLWwr8L87T8 +bJVhHlfXBIEyg1J55oNjz7fLY4sR4r1e6/aN7ZVyKLSsEmLpSjPmgzKuBXWVvYSV2ypcm44uDLiB +K0HmOFafSZtsdvqKXfcBeYF8wYNABf5x/Qw/zE5gCQ5lRxAvAcAFP4/4s0HvWkJ+We/SlwxlAgMB +AAGjggE0MIIBMDAPBgNVHRMBAf8EBTADAQH/MDkGA1UdHwQyMDAwLqAsoCqGKGh0dHA6Ly9jcmwu +cGtpLndlbGxzZmFyZ28uY29tL3dzcHJjYS5jcmwwDgYDVR0PAQH/BAQDAgHGMB0GA1UdDgQWBBQm +lRkQ2eihl5H/3BnZtQQ+0nMKajCBsgYDVR0jBIGqMIGngBQmlRkQ2eihl5H/3BnZtQQ+0nMKaqGB +i6SBiDCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRww +GgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMg +Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHmCAQEwDQYJKoZIhvcNAQEFBQADggEBALkVsUSRzCPI +K0134/iaeycNzXK7mQDKfGYZUMbVmO2rvwNa5U3lHshPcZeG1eMd/ZDJPHV3V3p9+N701NX3leZ0 +bh08rnyd2wIDBSxxSyU+B+NemvVmFymIGjifz6pBA4SXa5M4esowRBskRDPQ5NHcKDj0E0M1NSlj +qHyita04pO2t/caaH/+Xc/77szWnk4bGdpEA5qxRFsQnMlzbc9qlk1eOPm01JghZ1edE13YgY+es +E2fDbbFwRnzVlhE9iW9dqKHrjQrawx0zbKPqZxmamX9LPYNRKh3KL4YMon4QLSvUFpULB6ouFJJJ +tylv2G0xffX8oRAHh84vWdw+WNs= +-----END CERTIFICATE----- + +COMODO ECC Certification Authority +================================== +-----BEGIN CERTIFICATE----- +MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTELMAkGA1UEBhMC +R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE +ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwHhcNMDgwMzA2MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0Ix +GzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR +Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRo +b3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSRFtSrYpn1PlILBs5BAH+X +4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0JcfRK9ChQtP6IHG4/bC8vCVlbpVsLM5ni +wz2J+Wos77LTBumjQjBAMB0GA1UdDgQWBBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VG +FAkK+qDmfQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdvGDeA +U/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= +-----END CERTIFICATE----- + +IGC/A +===== +-----BEGIN CERTIFICATE----- +MIIEAjCCAuqgAwIBAgIFORFFEJQwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYTAkZSMQ8wDQYD +VQQIEwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVE +Q1NTSTEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZy +MB4XDTAyMTIxMzE0MjkyM1oXDTIwMTAxNzE0MjkyMlowgYUxCzAJBgNVBAYTAkZSMQ8wDQYDVQQI +EwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVEQ1NT +STEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZyMIIB +IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsh/R0GLFMzvABIaIs9z4iPf930Pfeo2aSVz2 +TqrMHLmh6yeJ8kbpO0px1R2OLc/mratjUMdUC24SyZA2xtgv2pGqaMVy/hcKshd+ebUyiHDKcMCW +So7kVc0dJ5S/znIq7Fz5cyD+vfcuiWe4u0dzEvfRNWk68gq5rv9GQkaiv6GFGvm/5P9JhfejcIYy +HF2fYPepraX/z9E0+X1bF8bc1g4oa8Ld8fUzaJ1O/Id8NhLWo4DoQw1VYZTqZDdH6nfK0LJYBcNd +frGoRpAxVs5wKpayMLh35nnAvSk7/ZR3TL0gzUEl4C7HG7vupARB0l2tEmqKm0f7yd1GQOGdPDPQ +tQIDAQABo3cwdTAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBRjAVBgNVHSAEDjAMMAoGCCqB +egF5AQEBMB0GA1UdDgQWBBSjBS8YYFDCiQrdKyFP/45OqDAxNjAfBgNVHSMEGDAWgBSjBS8YYFDC +iQrdKyFP/45OqDAxNjANBgkqhkiG9w0BAQUFAAOCAQEABdwm2Pp3FURo/C9mOnTgXeQp/wYHE4RK +q89toB9RlPhJy3Q2FLwV3duJL92PoF189RLrn544pEfMs5bZvpwlqwN+Mw+VgQ39FuCIvjfwbF3Q +MZsyK10XZZOYYLxuj7GoPB7ZHPOpJkL5ZB3C55L29B5aqhlSXa/oovdgoPaN8In1buAKBQGVyYsg +Crpa/JosPL3Dt8ldeCUFP1YUmwza+zpI/pdpXsoQhvdOlgQITeywvl3cO45Pwf2aNjSaTFR+FwNI +lQgRHAdvhQh+XU3Endv7rs6y0bO4g2wdsrN58dhwmX7wEwLOXt1R0982gaEbeC9xs/FZTEYYKKuF +0mBWWg== +-----END CERTIFICATE----- + +Security Communication EV RootCA1 +================================= +-----BEGIN CERTIFICATE----- +MIIDfTCCAmWgAwIBAgIBADANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJKUDElMCMGA1UEChMc +U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU2VjdXJpdHkgQ29tbXVuaWNh +dGlvbiBFViBSb290Q0ExMB4XDTA3MDYwNjAyMTIzMloXDTM3MDYwNjAyMTIzMlowYDELMAkGA1UE +BhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xKjAoBgNVBAsTIVNl +Y3VyaXR5IENvbW11bmljYXRpb24gRVYgUm9vdENBMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC +AQoCggEBALx/7FebJOD+nLpCeamIivqA4PUHKUPqjgo0No0c+qe1OXj/l3X3L+SqawSERMqm4miO +/VVQYg+kcQ7OBzgtQoVQrTyWb4vVog7P3kmJPdZkLjjlHmy1V4qe70gOzXppFodEtZDkBp2uoQSX +WHnvIEqCa4wiv+wfD+mEce3xDuS4GBPMVjZd0ZoeUWs5bmB2iDQL87PRsJ3KYeJkHcFGB7hj3R4z +ZbOOCVVSPbW9/wfrrWFVGCypaZhKqkDFMxRldAD5kd6vA0jFQFTcD4SQaCDFkpbcLuUCRarAX1T4 +bepJz11sS6/vmsJWXMY1VkJqMF/Cq/biPT+zyRGPMUzXn0kCAwEAAaNCMEAwHQYDVR0OBBYEFDVK +9U2vP9eCOKyrcWUXdYydVZPmMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqG +SIb3DQEBBQUAA4IBAQCoh+ns+EBnXcPBZsdAS5f8hxOQWsTvoMpfi7ent/HWtWS3irO4G8za+6xm +iEHO6Pzk2x6Ipu0nUBsCMCRGef4Eh3CXQHPRwMFXGZpppSeZq51ihPZRwSzJIxXYKLerJRO1RuGG +Av8mjMSIkh1W/hln8lXkgKNrnKt34VFxDSDbEJrbvXZ5B3eZKK2aXtqxT0QsNY6llsf9g/BYxnnW +mHyojf6GPgcWkuF75x3sM3Z+Qi5KhfmRiWiEA4Glm5q+4zfFVKtWOxgtQaQM+ELbmaDgcm+7XeEW +T1MKZPlO9L9OVL14bIjqv5wTJMJwaaJ/D8g8rQjJsJhAoyrniIPtd490 +-----END CERTIFICATE----- + +OISTE WISeKey Global Root GA CA +=============================== +-----BEGIN CERTIFICATE----- +MIID8TCCAtmgAwIBAgIQQT1yx/RrH4FDffHSKFTfmjANBgkqhkiG9w0BAQUFADCBijELMAkGA1UE +BhMCQ0gxEDAOBgNVBAoTB1dJU2VLZXkxGzAZBgNVBAsTEkNvcHlyaWdodCAoYykgMjAwNTEiMCAG +A1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBH +bG9iYWwgUm9vdCBHQSBDQTAeFw0wNTEyMTExNjAzNDRaFw0zNzEyMTExNjA5NTFaMIGKMQswCQYD +VQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEbMBkGA1UECxMSQ29weXJpZ2h0IChjKSAyMDA1MSIw +IAYDVQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5 +IEdsb2JhbCBSb290IEdBIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAy0+zAJs9 +Nt350UlqaxBJH+zYK7LG+DKBKUOVTJoZIyEVRd7jyBxRVVuuk+g3/ytr6dTqvirdqFEr12bDYVxg +Asj1znJ7O7jyTmUIms2kahnBAbtzptf2w93NvKSLtZlhuAGio9RN1AU9ka34tAhxZK9w8RxrfvbD +d50kc3vkDIzh2TbhmYsFmQvtRTEJysIA2/dyoJaqlYfQjse2YXMNdmaM3Bu0Y6Kff5MTMPGhJ9vZ +/yxViJGg4E8HsChWjBgbl0SOid3gF27nKu+POQoxhILYQBRJLnpB5Kf+42TMwVlxSywhp1t94B3R +LoGbw9ho972WG6xwsRYUC9tguSYBBQIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUswN+rja8sHnR3JQmthG+IbJphpQwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ +KoZIhvcNAQEFBQADggEBAEuh/wuHbrP5wUOxSPMowB0uyQlB+pQAHKSkq0lPjz0e701vvbyk9vIm +MMkQyh2I+3QZH4VFvbBsUfk2ftv1TDI6QU9bR8/oCy22xBmddMVHxjtqD6wU2zz0c5ypBd8A3HR4 ++vg1YFkCExh8vPtNsCBtQ7tgMHpnM1zFmdH4LTlSc/uMqpclXHLZCB6rTjzjgTGfA6b7wP4piFXa +hNVQA7bihKOmNqoROgHhGEvWRGizPflTdISzRpFGlgC3gCy24eMQ4tui5yiPAZZiFj4A4xylNoEY +okxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ/L7fCg0= +-----END CERTIFICATE----- + +S-TRUST Authentication and Encryption Root CA 2005 PN +===================================================== +-----BEGIN CERTIFICATE----- +MIIEezCCA2OgAwIBAgIQNxkY5lNUfBq1uMtZWts1tzANBgkqhkiG9w0BAQUFADCBrjELMAkGA1UE +BhMCREUxIDAeBgNVBAgTF0JhZGVuLVd1ZXJ0dGVtYmVyZyAoQlcpMRIwEAYDVQQHEwlTdHV0dGdh +cnQxKTAnBgNVBAoTIERldXRzY2hlciBTcGFya2Fzc2VuIFZlcmxhZyBHbWJIMT4wPAYDVQQDEzVT +LVRSVVNUIEF1dGhlbnRpY2F0aW9uIGFuZCBFbmNyeXB0aW9uIFJvb3QgQ0EgMjAwNTpQTjAeFw0w +NTA2MjIwMDAwMDBaFw0zMDA2MjEyMzU5NTlaMIGuMQswCQYDVQQGEwJERTEgMB4GA1UECBMXQmFk +ZW4tV3VlcnR0ZW1iZXJnIChCVykxEjAQBgNVBAcTCVN0dXR0Z2FydDEpMCcGA1UEChMgRGV1dHNj +aGVyIFNwYXJrYXNzZW4gVmVybGFnIEdtYkgxPjA8BgNVBAMTNVMtVFJVU1QgQXV0aGVudGljYXRp +b24gYW5kIEVuY3J5cHRpb24gUm9vdCBDQSAyMDA1OlBOMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEA2bVKwdMz6tNGs9HiTNL1toPQb9UY6ZOvJ44TzbUlNlA0EmQpoVXhOmCTnijJ4/Ob +4QSwI7+Vio5bG0F/WsPoTUzVJBY+h0jUJ67m91MduwwA7z5hca2/OnpYH5Q9XIHV1W/fuJvS9eXL +g3KSwlOyggLrra1fFi2SU3bxibYs9cEv4KdKb6AwajLrmnQDaHgTncovmwsdvs91DSaXm8f1Xgqf +eN+zvOyauu9VjxuapgdjKRdZYgkqeQd3peDRF2npW932kKvimAoA0SVtnteFhy+S8dF2g08LOlk3 +KC8zpxdQ1iALCvQm+Z845y2kuJuJja2tyWp9iRe79n+Ag3rm7QIDAQABo4GSMIGPMBIGA1UdEwEB +/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgEGMCkGA1UdEQQiMCCkHjAcMRowGAYDVQQDExFTVFJv +bmxpbmUxLTIwNDgtNTAdBgNVHQ4EFgQUD8oeXHngovMpttKFswtKtWXsa1IwHwYDVR0jBBgwFoAU +D8oeXHngovMpttKFswtKtWXsa1IwDQYJKoZIhvcNAQEFBQADggEBAK8B8O0ZPCjoTVy7pWMciDMD +pwCHpB8gq9Yc4wYfl35UvbfRssnV2oDsF9eK9XvCAPbpEW+EoFolMeKJ+aQAPzFoLtU96G7m1R08 +P7K9n3frndOMusDXtk3sU5wPBG7qNWdX4wple5A64U8+wwCSersFiXOMy6ZNwPv2AtawB6MDwidA +nwzkhYItr5pCHdDHjfhA7p0GVxzZotiAFP7hYy0yh9WUUpY6RsZxlj33mA6ykaqP2vROJAA5Veit +F7nTNCtKqUDMFypVZUF0Qn71wK/Ik63yGFs9iQzbRzkk+OBM8h+wPQrKBU6JIRrjKpms/H+h8Q8b +Hz2eBIPdltkdOpQ= +-----END CERTIFICATE----- + +Microsec e-Szigno Root CA +========================= +-----BEGIN CERTIFICATE----- +MIIHqDCCBpCgAwIBAgIRAMy4579OKRr9otxmpRwsDxEwDQYJKoZIhvcNAQEFBQAwcjELMAkGA1UE +BhMCSFUxETAPBgNVBAcTCEJ1ZGFwZXN0MRYwFAYDVQQKEw1NaWNyb3NlYyBMdGQuMRQwEgYDVQQL +EwtlLVN6aWdubyBDQTEiMCAGA1UEAxMZTWljcm9zZWMgZS1Temlnbm8gUm9vdCBDQTAeFw0wNTA0 +MDYxMjI4NDRaFw0xNzA0MDYxMjI4NDRaMHIxCzAJBgNVBAYTAkhVMREwDwYDVQQHEwhCdWRhcGVz +dDEWMBQGA1UEChMNTWljcm9zZWMgTHRkLjEUMBIGA1UECxMLZS1Temlnbm8gQ0ExIjAgBgNVBAMT +GU1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +AQDtyADVgXvNOABHzNuEwSFpLHSQDCHZU4ftPkNEU6+r+ICbPHiN1I2uuO/TEdyB5s87lozWbxXG +d36hL+BfkrYn13aaHUM86tnsL+4582pnS4uCzyL4ZVX+LMsvfUh6PXX5qqAnu3jCBspRwn5mS6/N +oqdNAoI/gqyFxuEPkEeZlApxcpMqyabAvjxWTHOSJ/FrtfX9/DAFYJLG65Z+AZHCabEeHXtTRbjc +QR/Ji3HWVBTji1R4P770Yjtb9aPs1ZJ04nQw7wHb4dSrmZsqa/i9phyGI0Jf7Enemotb9HI6QMVJ +PqW+jqpx62z69Rrkav17fVVA71hu5tnVvCSrwe+3AgMBAAGjggQ3MIIEMzBnBggrBgEFBQcBAQRb +MFkwKAYIKwYBBQUHMAGGHGh0dHBzOi8vcmNhLmUtc3ppZ25vLmh1L29jc3AwLQYIKwYBBQUHMAKG +IWh0dHA6Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNydDAPBgNVHRMBAf8EBTADAQH/MIIBcwYD +VR0gBIIBajCCAWYwggFiBgwrBgEEAYGoGAIBAQEwggFQMCgGCCsGAQUFBwIBFhxodHRwOi8vd3d3 +LmUtc3ppZ25vLmh1L1NaU1ovMIIBIgYIKwYBBQUHAgIwggEUHoIBEABBACAAdABhAG4A+gBzAO0A +dAB2AOEAbgB5ACAA6QByAHQAZQBsAG0AZQB6AOkAcwDpAGgAZQB6ACAA6QBzACAAZQBsAGYAbwBn +AGEAZADhAHMA4QBoAG8AegAgAGEAIABTAHoAbwBsAGcA4QBsAHQAYQB0APMAIABTAHoAbwBsAGcA +4QBsAHQAYQB0AOEAcwBpACAAUwB6AGEAYgDhAGwAeQB6AGEAdABhACAAcwB6AGUAcgBpAG4AdAAg +AGsAZQBsAGwAIABlAGwAagDhAHIAbgBpADoAIABoAHQAdABwADoALwAvAHcAdwB3AC4AZQAtAHMA +egBpAGcAbgBvAC4AaAB1AC8AUwBaAFMAWgAvMIHIBgNVHR8EgcAwgb0wgbqggbeggbSGIWh0dHA6 +Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNybIaBjmxkYXA6Ly9sZGFwLmUtc3ppZ25vLmh1L0NO +PU1pY3Jvc2VjJTIwZS1Temlnbm8lMjBSb290JTIwQ0EsT1U9ZS1Temlnbm8lMjBDQSxPPU1pY3Jv +c2VjJTIwTHRkLixMPUJ1ZGFwZXN0LEM9SFU/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdDtiaW5h +cnkwDgYDVR0PAQH/BAQDAgEGMIGWBgNVHREEgY4wgYuBEGluZm9AZS1zemlnbm8uaHWkdzB1MSMw +IQYDVQQDDBpNaWNyb3NlYyBlLVN6aWduw7MgUm9vdCBDQTEWMBQGA1UECwwNZS1TemlnbsOzIEhT +WjEWMBQGA1UEChMNTWljcm9zZWMgS2Z0LjERMA8GA1UEBxMIQnVkYXBlc3QxCzAJBgNVBAYTAkhV +MIGsBgNVHSMEgaQwgaGAFMegSXUWYYTbMUuE0vE3QJDvTtz3oXakdDByMQswCQYDVQQGEwJIVTER +MA8GA1UEBxMIQnVkYXBlc3QxFjAUBgNVBAoTDU1pY3Jvc2VjIEx0ZC4xFDASBgNVBAsTC2UtU3pp +Z25vIENBMSIwIAYDVQQDExlNaWNyb3NlYyBlLVN6aWdubyBSb290IENBghEAzLjnv04pGv2i3Gal +HCwPETAdBgNVHQ4EFgQUx6BJdRZhhNsxS4TS8TdAkO9O3PcwDQYJKoZIhvcNAQEFBQADggEBANMT +nGZjWS7KXHAM/IO8VbH0jgdsZifOwTsgqRy7RlRw7lrMoHfqaEQn6/Ip3Xep1fvj1KcExJW4C+FE +aGAHQzAxQmHl7tnlJNUb3+FKG6qfx1/4ehHqE5MAyopYse7tDk2016g2JnzgOsHVV4Lxdbb9iV/a +86g4nzUGCM4ilb7N1fy+W955a9x6qWVmvrElWl/tftOsRm1M9DKHtCAE4Gx4sHfRhUZLphK3dehK +yVZs15KrnfVJONJPU+NVkBHbmJbGSfI+9J8b4PeI3CVimUTYc78/MPMMNz7UwiiAc7EBt51alhQB +S6kRnSlqLtBdgcDPsiBDxwPgN05dCtxZICU= +-----END CERTIFICATE----- + +Certigna +======== +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNVBAYTAkZSMRIw +EAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4XDTA3MDYyOTE1MTMwNVoXDTI3 +MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwI +Q2VydGlnbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7q +XOEm7RFHYeGifBZ4QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyH +GxnygQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbwzBfsV1/p +ogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q130yGLMLLGq/jj8UEYkg +DncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKf +Irjxwo1p3Po6WAbfAgMBAAGjgbwwgbkwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQ +tCRZvgHyUtVF9lo53BEwZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJ +BgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzjAQ/J +SP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG9w0BAQUFAAOCAQEA +hQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8hbV6lUmPOEvjvKtpv6zf+EwLHyzs+ +ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFncfca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1klu +PBS1xp81HlDQwY9qcEQCYsuuHWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY +1gkIl2PlwS6wt0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw +WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== +-----END CERTIFICATE----- + +AC Ra\xC3\xADz Certic\xC3\xA1mara S.A. +====================================== +-----BEGIN CERTIFICATE----- +MIIGZjCCBE6gAwIBAgIPB35Sk3vgFeNX8GmMy+wMMA0GCSqGSIb3DQEBBQUAMHsxCzAJBgNVBAYT +AkNPMUcwRQYDVQQKDD5Tb2NpZWRhZCBDYW1lcmFsIGRlIENlcnRpZmljYWNpw7NuIERpZ2l0YWwg +LSBDZXJ0aWPDoW1hcmEgUy5BLjEjMCEGA1UEAwwaQUMgUmHDrXogQ2VydGljw6FtYXJhIFMuQS4w +HhcNMDYxMTI3MjA0NjI5WhcNMzAwNDAyMjE0MjAyWjB7MQswCQYDVQQGEwJDTzFHMEUGA1UECgw+ +U29jaWVkYWQgQ2FtZXJhbCBkZSBDZXJ0aWZpY2FjacOzbiBEaWdpdGFsIC0gQ2VydGljw6FtYXJh +IFMuQS4xIzAhBgNVBAMMGkFDIFJhw616IENlcnRpY8OhbWFyYSBTLkEuMIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEAq2uJo1PMSCMI+8PPUZYILrgIem08kBeGqentLhM0R7LQcNzJPNCN +yu5LF6vQhbCnIwTLqKL85XXbQMpiiY9QngE9JlsYhBzLfDe3fezTf3MZsGqy2IiKLUV0qPezuMDU +2s0iiXRNWhU5cxh0T7XrmafBHoi0wpOQY5fzp6cSsgkiBzPZkc0OnB8OIMfuuzONj8LSWKdf/WU3 +4ojC2I+GdV75LaeHM/J4Ny+LvB2GNzmxlPLYvEqcgxhaBvzz1NS6jBUJJfD5to0EfhcSM2tXSExP +2yYe68yQ54v5aHxwD6Mq0Do43zeX4lvegGHTgNiRg0JaTASJaBE8rF9ogEHMYELODVoqDA+bMMCm +8Ibbq0nXl21Ii/kDwFJnmxL3wvIumGVC2daa49AZMQyth9VXAnow6IYm+48jilSH5L887uvDdUhf +HjlvgWJsxS3EF1QZtzeNnDeRyPYL1epjb4OsOMLzP96a++EjYfDIJss2yKHzMI+ko6Kh3VOz3vCa +Mh+DkXkwwakfU5tTohVTP92dsxA7SH2JD/ztA/X7JWR1DhcZDY8AFmd5ekD8LVkH2ZD6mq093ICK +5lw1omdMEWux+IBkAC1vImHFrEsm5VoQgpukg3s0956JkSCXjrdCx2bD0Omk1vUgjcTDlaxECp1b +czwmPS9KvqfJpxAe+59QafMCAwEAAaOB5jCB4zAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE +AwIBBjAdBgNVHQ4EFgQU0QnQ6dfOeXRU+Tows/RtLAMDG2gwgaAGA1UdIASBmDCBlTCBkgYEVR0g +ADCBiTArBggrBgEFBQcCARYfaHR0cDovL3d3dy5jZXJ0aWNhbWFyYS5jb20vZHBjLzBaBggrBgEF +BQcCAjBOGkxMaW1pdGFjaW9uZXMgZGUgZ2FyYW507WFzIGRlIGVzdGUgY2VydGlmaWNhZG8gc2Ug +cHVlZGVuIGVuY29udHJhciBlbiBsYSBEUEMuMA0GCSqGSIb3DQEBBQUAA4ICAQBclLW4RZFNjmEf +AygPU3zmpFmps4p6xbD/CHwso3EcIRNnoZUSQDWDg4902zNc8El2CoFS3UnUmjIz75uny3XlesuX +EpBcunvFm9+7OSPI/5jOCk0iAUgHforA1SBClETvv3eiiWdIG0ADBaGJ7M9i4z0ldma/Jre7Ir5v +/zlXdLp6yQGVwZVR6Kss+LGGIOk/yzVb0hfpKv6DExdA7ohiZVvVO2Dpezy4ydV/NgIlqmjCMRW3 +MGXrfx1IebHPOeJCgBbT9ZMj/EyXyVo3bHwi2ErN0o42gzmRkBDI8ck1fj+404HGIGQatlDCIaR4 +3NAvO2STdPCWkPHv+wlaNECW8DYSwaN0jJN+Qd53i+yG2dIPPy3RzECiiWZIHiCznCNZc6lEc7wk +eZBWN7PGKX6jD/EpOe9+XCgycDWs2rjIdWb8m0w5R44bb5tNAlQiM+9hup4phO9OSzNHdpdqy35f +/RWmnkJDW2ZaiogN9xa5P1FlK2Zqi9E4UqLWRhH6/JocdJ6PlwsCT2TG9WjTSy3/pDceiz+/RL5h +RqGEPQgnTIEgd4kI6mdAXmwIUV80WoyWaM3X94nCHNMyAK9Sy9NgWyo6R35rMDOhYil/SrnhLecU +Iw4OGEfhefwVVdCx/CVxY3UzHCMrr1zZ7Ud3YA47Dx7SwNxkBYn8eNZcLCZDqQ== +-----END CERTIFICATE----- + +TC TrustCenter Class 2 CA II +============================ +-----BEGIN CERTIFICATE----- +MIIEqjCCA5KgAwIBAgIOLmoAAQACH9dSISwRXDswDQYJKoZIhvcNAQEFBQAwdjELMAkGA1UEBhMC +REUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxIjAgBgNVBAsTGVRDIFRydXN0Q2VudGVy +IENsYXNzIDIgQ0ExJTAjBgNVBAMTHFRDIFRydXN0Q2VudGVyIENsYXNzIDIgQ0EgSUkwHhcNMDYw +MTEyMTQzODQzWhcNMjUxMjMxMjI1OTU5WjB2MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMgVHJ1 +c3RDZW50ZXIgR21iSDEiMCAGA1UECxMZVEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMiBDQTElMCMGA1UE +AxMcVEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMiBDQSBJSTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC +AQoCggEBAKuAh5uO8MN8h9foJIIRszzdQ2Lu+MNF2ujhoF/RKrLqk2jftMjWQ+nEdVl//OEd+DFw +IxuInie5e/060smp6RQvkL4DUsFJzfb95AhmC1eKokKguNV/aVyQMrKXDcpK3EY+AlWJU+MaWss2 +xgdW94zPEfRMuzBwBJWl9jmM/XOBCH2JXjIeIqkiRUuwZi4wzJ9l/fzLganx4Duvo4bRierERXlQ +Xa7pIXSSTYtZgo+U4+lK8edJsBTj9WLL1XK9H7nSn6DNqPoByNkN39r8R52zyFTfSUrxIan+GE7u +SNQZu+995OKdy1u2bv/jzVrndIIFuoAlOMvkaZ6vQaoahPUCAwEAAaOCATQwggEwMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTjq1RMgKHbVkO3kUrL84J6E1wIqzCB +7QYDVR0fBIHlMIHiMIHfoIHcoIHZhjVodHRwOi8vd3d3LnRydXN0Y2VudGVyLmRlL2NybC92Mi90 +Y19jbGFzc18yX2NhX0lJLmNybIaBn2xkYXA6Ly93d3cudHJ1c3RjZW50ZXIuZGUvQ049VEMlMjBU +cnVzdENlbnRlciUyMENsYXNzJTIwMiUyMENBJTIwSUksTz1UQyUyMFRydXN0Q2VudGVyJTIwR21i +SCxPVT1yb290Y2VydHMsREM9dHJ1c3RjZW50ZXIsREM9ZGU/Y2VydGlmaWNhdGVSZXZvY2F0aW9u +TGlzdD9iYXNlPzANBgkqhkiG9w0BAQUFAAOCAQEAjNfffu4bgBCzg/XbEeprS6iSGNn3Bzn1LL4G +dXpoUxUc6krtXvwjshOg0wn/9vYua0Fxec3ibf2uWWuFHbhOIprtZjluS5TmVfwLG4t3wVMTZonZ +KNaL80VKY7f9ewthXbhtvsPcW3nS7Yblok2+XnR8au0WOB9/WIFaGusyiC2y8zl3gK9etmF1Kdsj +TYjKUCjLhdLTEKJZbtOTVAB6okaVhgWcqRmY5TFyDADiZ9lA4CQze28suVyrZZ0srHbqNZn1l7kP +JOzHdiEoZa5X6AeIdUpWoNIFOqTmjZKILPPy4cHGYdtBxceb9w4aUUXCYWvcZCcXjFq32nQozZfk +vQ== +-----END CERTIFICATE----- + +TC TrustCenter Class 3 CA II +============================ +-----BEGIN CERTIFICATE----- +MIIEqjCCA5KgAwIBAgIOSkcAAQAC5aBd1j8AUb8wDQYJKoZIhvcNAQEFBQAwdjELMAkGA1UEBhMC +REUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxIjAgBgNVBAsTGVRDIFRydXN0Q2VudGVy +IENsYXNzIDMgQ0ExJTAjBgNVBAMTHFRDIFRydXN0Q2VudGVyIENsYXNzIDMgQ0EgSUkwHhcNMDYw +MTEyMTQ0MTU3WhcNMjUxMjMxMjI1OTU5WjB2MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMgVHJ1 +c3RDZW50ZXIgR21iSDEiMCAGA1UECxMZVEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMyBDQTElMCMGA1UE +AxMcVEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMyBDQSBJSTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC +AQoCggEBALTgu1G7OVyLBMVMeRwjhjEQY0NVJz/GRcekPewJDRoeIMJWHt4bNwcwIi9v8Qbxq63W +yKthoy9DxLCyLfzDlml7forkzMA5EpBCYMnMNWju2l+QVl/NHE1bWEnrDgFPZPosPIlY2C8u4rBo +6SI7dYnWRBpl8huXJh0obazovVkdKyT21oQDZogkAHhg8fir/gKya/si+zXmFtGt9i4S5Po1auUZ +uV3bOx4a+9P/FRQI2AlqukWdFHlgfa9Aigdzs5OW03Q0jTo3Kd5c7PXuLjHCINy+8U9/I1LZW+Jk +2ZyqBwi1Rb3R0DHBq1SfqdLDYmAD8bs5SpJKPQq5ncWg/jcCAwEAAaOCATQwggEwMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTUovyfs8PYA9NXXAek0CSnwPIA1DCB +7QYDVR0fBIHlMIHiMIHfoIHcoIHZhjVodHRwOi8vd3d3LnRydXN0Y2VudGVyLmRlL2NybC92Mi90 +Y19jbGFzc18zX2NhX0lJLmNybIaBn2xkYXA6Ly93d3cudHJ1c3RjZW50ZXIuZGUvQ049VEMlMjBU +cnVzdENlbnRlciUyMENsYXNzJTIwMyUyMENBJTIwSUksTz1UQyUyMFRydXN0Q2VudGVyJTIwR21i +SCxPVT1yb290Y2VydHMsREM9dHJ1c3RjZW50ZXIsREM9ZGU/Y2VydGlmaWNhdGVSZXZvY2F0aW9u +TGlzdD9iYXNlPzANBgkqhkiG9w0BAQUFAAOCAQEANmDkcPcGIEPZIxpC8vijsrlNirTzwppVMXzE +O2eatN9NDoqTSheLG43KieHPOh6sHfGcMrSOWXaiQYUlN6AT0PV8TtXqluJucsG7Kv5sbviRmEb8 +yRtXW+rIGjs/sFGYPAfaLFkB2otE6OF0/ado3VS6g0bsyEa1+K+XwDsJHI/OcpY9M1ZwvJbL2NV9 +IJqDnxrcOfHFcqMRA/07QlIp2+gB95tejNaNhk4Z+rwcvsUhpYeeeC422wlxo3I0+GzjBgnyXlal +092Y+tTmBvTwtiBjS+opvaqCZh77gaqnN60TGOaSw4HBM7uIHqHn4rS9MWwOUT1v+5ZWgOI2F9Hc +5A== +-----END CERTIFICATE----- + +TC TrustCenter Universal CA I +============================= +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIOHaIAAQAC7LdggHiNtgYwDQYJKoZIhvcNAQEFBQAweTELMAkGA1UEBhMC +REUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxJDAiBgNVBAsTG1RDIFRydXN0Q2VudGVy +IFVuaXZlcnNhbCBDQTEmMCQGA1UEAxMdVEMgVHJ1c3RDZW50ZXIgVW5pdmVyc2FsIENBIEkwHhcN +MDYwMzIyMTU1NDI4WhcNMjUxMjMxMjI1OTU5WjB5MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMg +VHJ1c3RDZW50ZXIgR21iSDEkMCIGA1UECxMbVEMgVHJ1c3RDZW50ZXIgVW5pdmVyc2FsIENBMSYw +JAYDVQQDEx1UQyBUcnVzdENlbnRlciBVbml2ZXJzYWwgQ0EgSTCCASIwDQYJKoZIhvcNAQEBBQAD +ggEPADCCAQoCggEBAKR3I5ZEr5D0MacQ9CaHnPM42Q9e3s9B6DGtxnSRJJZ4Hgmgm5qVSkr1YnwC +qMqs+1oEdjneX/H5s7/zA1hV0qq34wQi0fiU2iIIAI3TfCZdzHd55yx4Oagmcw6iXSVphU9VDprv +xrlE4Vc93x9UIuVvZaozhDrzznq+VZeujRIPFDPiUHDDSYcTvFHe15gSWu86gzOSBnWLknwSaHtw +ag+1m7Z3W0hZneTvWq3zwZ7U10VOylY0Ibw+F1tvdwxIAUMpsN0/lm7mlaoMwCC2/T42J5zjXM9O +gdwZu5GQfezmlwQek8wiSdeXhrYTCjxDI3d+8NzmzSQfO4ObNDqDNOMCAwEAAaNjMGEwHwYDVR0j +BBgwFoAUkqR1LKSevoFE63n8isWVpesQdXMwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AYYwHQYDVR0OBBYEFJKkdSyknr6BROt5/IrFlaXrEHVzMA0GCSqGSIb3DQEBBQUAA4IBAQAo0uCG +1eb4e/CX3CJrO5UUVg8RMKWaTzqwOuAGy2X17caXJ/4l8lfmXpWMPmRgFVp/Lw0BxbFg/UU1z/Cy +vwbZ71q+s2IhtNerNXxTPqYn8aEt2hojnczd7Dwtnic0XQ/CNnm8yUpiLe1r2X1BQ3y2qsrtYbE3 +ghUJGooWMNjsydZHcnhLEEYUjl8Or+zHL6sQ17bxbuyGssLoDZJz3KL0Dzq/YSMQiZxIQG5wALPT +ujdEWBF6AmqI8Dc08BnprNRlc/ZpjGSUOnmFKbAWKwyCPwacx/0QK54PLLae4xW/2TYcuiUaUj0a +7CIMHOCkoj3w6DnPgcB77V0fb8XQC9eY +-----END CERTIFICATE----- + +Deutsche Telekom Root CA 2 +========================== +-----BEGIN CERTIFICATE----- +MIIDnzCCAoegAwIBAgIBJjANBgkqhkiG9w0BAQUFADBxMQswCQYDVQQGEwJERTEcMBoGA1UEChMT +RGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxlU2VjIFRydXN0IENlbnRlcjEjMCEG +A1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290IENBIDIwHhcNOTkwNzA5MTIxMTAwWhcNMTkwNzA5 +MjM1OTAwWjBxMQswCQYDVQQGEwJERTEcMBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0G +A1UECxMWVC1UZWxlU2VjIFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBS +b290IENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCrC6M14IspFLEUha88EOQ5 +bzVdSq7d6mGNlUn0b2SjGmBmpKlAIoTZ1KXleJMOaAGtuU1cOs7TuKhCQN/Po7qCWWqSG6wcmtoI +KyUn+WkjR/Hg6yx6m/UTAtB+NHzCnjwAWav12gz1MjwrrFDa1sPeg5TKqAyZMg4ISFZbavva4VhY +AUlfckE8FQYBjl2tqriTtM2e66foai1SNNs671x1Udrb8zH57nGYMsRUFUQM+ZtV7a3fGAigo4aK +Se5TBY8ZTNXeWHmb0mocQqvF1afPaA+W5OFhmHZhyJF81j4A4pFQh+GdCuatl9Idxjp9y7zaAzTV +jlsB9WoHtxa2bkp/AgMBAAGjQjBAMB0GA1UdDgQWBBQxw3kbuvVT1xfgiXotF2wKsyudMzAPBgNV +HRMECDAGAQH/AgEFMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAlGRZrTlk5ynr +E/5aw4sTV8gEJPB0d8Bg42f76Ymmg7+Wgnxu1MM9756AbrsptJh6sTtU6zkXR34ajgv8HzFZMQSy +zhfzLMdiNlXiItiJVbSYSKpk+tYcNthEeFpaIzpXl/V6ME+un2pMSyuOoAPjPuCp1NJ70rOo4nI8 +rZ7/gFnkm0W09juwzTkZmDLl6iFhkOQxIY40sfcvNUqFENrnijchvllj4PKFiDFT1FQUhXB59C4G +dyd1Lx+4ivn+xbrYNuSD7Odlt79jWvNGr4GUN9RBjNYj1h7P9WgbRGOiWrqnNVmh5XAFmw4jV5mU +Cm26OWMohpLzGITY+9HPBVZkVw== +-----END CERTIFICATE----- + +ComSign CA +========== +-----BEGIN CERTIFICATE----- +MIIDkzCCAnugAwIBAgIQFBOWgxRVjOp7Y+X8NId3RDANBgkqhkiG9w0BAQUFADA0MRMwEQYDVQQD +EwpDb21TaWduIENBMRAwDgYDVQQKEwdDb21TaWduMQswCQYDVQQGEwJJTDAeFw0wNDAzMjQxMTMy +MThaFw0yOTAzMTkxNTAyMThaMDQxEzARBgNVBAMTCkNvbVNpZ24gQ0ExEDAOBgNVBAoTB0NvbVNp +Z24xCzAJBgNVBAYTAklMMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8ORUaSvTx49q +ROR+WCf4C9DklBKK8Rs4OC8fMZwG1Cyn3gsqrhqg455qv588x26i+YtkbDqthVVRVKU4VbirgwTy +P2Q298CNQ0NqZtH3FyrV7zb6MBBC11PN+fozc0yz6YQgitZBJzXkOPqUm7h65HkfM/sb2CEJKHxN +GGleZIp6GZPKfuzzcuc3B1hZKKxC+cX/zT/npfo4sdAMx9lSGlPWgcxCejVb7Us6eva1jsz/D3zk +YDaHL63woSV9/9JLEYhwVKZBqGdTUkJe5DSe5L6j7KpiXd3DTKaCQeQzC6zJMw9kglcq/QytNuEM +rkvF7zuZ2SOzW120V+x0cAwqTwIDAQABo4GgMIGdMAwGA1UdEwQFMAMBAf8wPQYDVR0fBDYwNDAy +oDCgLoYsaHR0cDovL2ZlZGlyLmNvbXNpZ24uY28uaWwvY3JsL0NvbVNpZ25DQS5jcmwwDgYDVR0P +AQH/BAQDAgGGMB8GA1UdIwQYMBaAFEsBmz5WGmU2dst7l6qSBe4y5ygxMB0GA1UdDgQWBBRLAZs+ +VhplNnbLe5eqkgXuMucoMTANBgkqhkiG9w0BAQUFAAOCAQEA0Nmlfv4pYEWdfoPPbrxHbvUanlR2 +QnG0PFg/LUAlQvaBnPGJEMgOqnhPOAlXsDzACPw1jvFIUY0McXS6hMTXcpuEfDhOZAYnKuGntewI +mbQKDdSFc8gS4TXt8QUxHXOZDOuWyt3T5oWq8Ir7dcHyCTxlZWTzTNity4hp8+SDtwy9F1qWF8pb +/627HOkthIDYIb6FUtnUdLlphbpN7Sgy6/lhSuTENh4Z3G+EER+V9YMoGKgzkkMn3V0TBEVPh9VG +zT2ouvDzuFYkRes3x+F2T3I5GN9+dHLHcy056mDmrRGiVod7w2ia/viMcKjfZTL0pECMocJEAw6U +AGegcQCCSA== +-----END CERTIFICATE----- + +ComSign Secured CA +================== +-----BEGIN CERTIFICATE----- +MIIDqzCCApOgAwIBAgIRAMcoRwmzuGxFjB36JPU2TukwDQYJKoZIhvcNAQEFBQAwPDEbMBkGA1UE +AxMSQ29tU2lnbiBTZWN1cmVkIENBMRAwDgYDVQQKEwdDb21TaWduMQswCQYDVQQGEwJJTDAeFw0w +NDAzMjQxMTM3MjBaFw0yOTAzMTYxNTA0NTZaMDwxGzAZBgNVBAMTEkNvbVNpZ24gU2VjdXJlZCBD +QTEQMA4GA1UEChMHQ29tU2lnbjELMAkGA1UEBhMCSUwwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw +ggEKAoIBAQDGtWhfHZQVw6QIVS3joFd67+l0Kru5fFdJGhFeTymHDEjWaueP1H5XJLkGieQcPOqs +49ohgHMhCu95mGwfCP+hUH3ymBvJVG8+pSjsIQQPRbsHPaHA+iqYHU4Gk/v1iDurX8sWv+bznkqH +7Rnqwp9D5PGBpX8QTz7RSmKtUxvLg/8HZaWSLWapW7ha9B20IZFKF3ueMv5WJDmyVIRD9YTC2LxB +kMyd1mja6YJQqTtoz7VdApRgFrFD2UNd3V2Hbuq7s8lr9gOUCXDeFhF6K+h2j0kQmHe5Y1yLM5d1 +9guMsqtb3nQgJT/j8xH5h2iGNXHDHYwt6+UarA9z1YJZQIDTAgMBAAGjgacwgaQwDAYDVR0TBAUw +AwEB/zBEBgNVHR8EPTA7MDmgN6A1hjNodHRwOi8vZmVkaXIuY29tc2lnbi5jby5pbC9jcmwvQ29t +U2lnblNlY3VyZWRDQS5jcmwwDgYDVR0PAQH/BAQDAgGGMB8GA1UdIwQYMBaAFMFL7XC29z58ADsA +j8c+DkWfHl3sMB0GA1UdDgQWBBTBS+1wtvc+fAA7AI/HPg5Fnx5d7DANBgkqhkiG9w0BAQUFAAOC +AQEAFs/ukhNQq3sUnjO2QiBq1BW9Cav8cujvR3qQrFHBZE7piL1DRYHjZiM/EoZNGeQFsOY3wo3a +BijJD4mkU6l1P7CW+6tMM1X5eCZGbxs2mPtCdsGCuY7e+0X5YxtiOzkGynd6qDwJz2w2PQ8KRUtp +FhpFfTMDZflScZAmlaxMDPWLkz/MdXSFmLr/YnpNH4n+rr2UAJm/EaXc4HnFFgt9AmEd6oX5AhVP +51qJThRv4zdLhfXBPGHg/QVBspJ/wx2g0K5SZGBrGMYmnNj1ZOQ2GmKfig8+/21OGVZOIJFsnzQz +OjRXUDpvgV4GxvU+fE6OK85lBi5d0ipTdF7Tbieejw== +-----END CERTIFICATE----- + +Cybertrust Global Root +====================== +-----BEGIN CERTIFICATE----- +MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYGA1UEChMPQ3li +ZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBSb290MB4XDTA2MTIxNTA4 +MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQD +ExZDeWJlcnRydXN0IEdsb2JhbCBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA ++Mi8vRRQZhP/8NN57CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW +0ozSJ8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2yHLtgwEZL +AfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iPt3sMpTjr3kfb1V05/Iin +89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNzFtApD0mpSPCzqrdsxacwOUBdrsTiXSZT +8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAYXSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2 +MDSgMqAwhi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3JsMB8G +A1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUAA4IBAQBW7wojoFRO +lZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMjWqd8BfP9IjsO0QbE2zZMcwSO5bAi +5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUxXOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2 +hO0j9n0Hq0V+09+zv+mKts2oomcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+T +X3EJIrduPuocA06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW +WL1WMRJOEcgh4LMRkWXbtKaIOM5V +-----END CERTIFICATE----- + +ePKI Root Certification Authority +================================= +-----BEGIN CERTIFICATE----- +MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBeMQswCQYDVQQG +EwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0ZC4xKjAoBgNVBAsMIWVQS0kg +Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMx +MjdaMF4xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEq +MCgGA1UECwwhZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAHSyZbCUNs +IZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAhijHyl3SJCRImHJ7K2RKi +lTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3XDZoTM1PRYfl61dd4s5oz9wCGzh1NlDiv +qOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX +12ruOzjjK9SXDrkb5wdJfzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0O +WQqraffAsgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uUWH1+ +ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLSnT0IFaUQAS2zMnao +lQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pHdmX2Os+PYhcZewoozRrSgx4hxyy/ +vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJipNiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXi +Zo1jDiVN1Rmy5nk3pyKdVDECAwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/Qkqi +MAwGA1UdEwQFMAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH +ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGBuvl2ICO1J2B0 +1GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6YlPwZpVnPDimZI+ymBV3QGypzq +KOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkPJXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdV +xrsStZf0X4OFunHB2WyBEXYKCrC/gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEP +NXubrjlpC2JgQCA2j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+r +GNm65ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUBo2M3IUxE +xJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS/jQ6fbjpKdx2qcgw+BRx +gMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2zGp1iro2C6pSe3VkQw63d4k3jMdXH7Ojy +sP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTEW9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmOD +BCEIZ43ygknQW/2xzQ+DhNQ+IIX3Sj0rnP0qCglN6oH4EZw= +-----END CERTIFICATE----- + +T\xc3\x9c\x42\xC4\xB0TAK UEKAE K\xC3\xB6k Sertifika Hizmet Sa\xC4\x9Flay\xc4\xb1\x63\xc4\xb1s\xc4\xb1 - S\xC3\xBCr\xC3\xBCm 3 +============================================================================================================================= +-----BEGIN CERTIFICATE----- +MIIFFzCCA/+gAwIBAgIBETANBgkqhkiG9w0BAQUFADCCASsxCzAJBgNVBAYTAlRSMRgwFgYDVQQH +DA9HZWJ6ZSAtIEtvY2FlbGkxRzBFBgNVBAoMPlTDvHJraXllIEJpbGltc2VsIHZlIFRla25vbG9q +aWsgQXJhxZ90xLFybWEgS3VydW11IC0gVMOcQsSwVEFLMUgwRgYDVQQLDD9VbHVzYWwgRWxla3Ry +b25payB2ZSBLcmlwdG9sb2ppIEFyYcWfdMSxcm1hIEVuc3RpdMO8c8O8IC0gVUVLQUUxIzAhBgNV +BAsMGkthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppMUowSAYDVQQDDEFUw5xCxLBUQUsgVUVLQUUg +S8O2ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSAtIFPDvHLDvG0gMzAeFw0wNzA4 +MjQxMTM3MDdaFw0xNzA4MjExMTM3MDdaMIIBKzELMAkGA1UEBhMCVFIxGDAWBgNVBAcMD0dlYnpl +IC0gS29jYWVsaTFHMEUGA1UECgw+VMO8cmtpeWUgQmlsaW1zZWwgdmUgVGVrbm9sb2ppayBBcmHF +n3TEsXJtYSBLdXJ1bXUgLSBUw5xCxLBUQUsxSDBGBgNVBAsMP1VsdXNhbCBFbGVrdHJvbmlrIHZl +IEtyaXB0b2xvamkgQXJhxZ90xLFybWEgRW5zdGl0w7xzw7wgLSBVRUtBRTEjMCEGA1UECwwaS2Ft +dSBTZXJ0aWZpa2FzeW9uIE1lcmtlemkxSjBIBgNVBAMMQVTDnELEsFRBSyBVRUtBRSBLw7ZrIFNl +cnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIC0gU8O8csO8bSAzMIIBIjANBgkqhkiG9w0B +AQEFAAOCAQ8AMIIBCgKCAQEAim1L/xCIOsP2fpTo6iBkcK4hgb46ezzb8R1Sf1n68yJMlaCQvEhO +Eav7t7WNeoMojCZG2E6VQIdhn8WebYGHV2yKO7Rm6sxA/OOqbLLLAdsyv9Lrhc+hDVXDWzhXcLh1 +xnnRFDDtG1hba+818qEhTsXOfJlfbLm4IpNQp81McGq+agV/E5wrHur+R84EpW+sky58K5+eeROR +6Oqeyjh1jmKwlZMq5d/pXpduIF9fhHpEORlAHLpVK/swsoHvhOPc7Jg4OQOFCKlUAwUp8MmPi+oL +hmUZEdPpCSPeaJMDyTYcIW7OjGbxmTDY17PDHfiBLqi9ggtm/oLL4eAagsNAgQIDAQABo0IwQDAd +BgNVHQ4EFgQUvYiHyY/2pAoLquvF/pEjnatKijIwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF +MAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAB18+kmPNOm3JpIWmgV050vQbTlswyb2zrgxvMTfvCr4 +N5EY3ATIZJkrGG2AA1nJrvhY0D7twyOfaTyGOBye79oneNGEN3GKPEs5z35FBtYt2IpNeBLWrcLT +y9LQQfMmNkqblWwM7uXRQydmwYj3erMgbOqwaSvHIOgMA8RBBZniP+Rr+KCGgceExh/VS4ESshYh +LBOhgLJeDEoTniDYYkCrkOpkSi+sDQESeUWoL4cZaMjihccwsnX5OD+ywJO0a+IDRM5noN+J1q2M +dqMTw5RhK2vZbMEHCiIHhWyFJEapvj+LeISCfiQMnf2BN+MlqO02TpUsyZyQ2uypQjyttgI= +-----END CERTIFICATE----- + +Buypass Class 2 CA 1 +==================== +-----BEGIN CERTIFICATE----- +MIIDUzCCAjugAwIBAgIBATANBgkqhkiG9w0BAQUFADBLMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU +QnV5cGFzcyBBUy05ODMxNjMzMjcxHTAbBgNVBAMMFEJ1eXBhc3MgQ2xhc3MgMiBDQSAxMB4XDTA2 +MTAxMzEwMjUwOVoXDTE2MTAxMzEwMjUwOVowSzELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBh +c3MgQVMtOTgzMTYzMzI3MR0wGwYDVQQDDBRCdXlwYXNzIENsYXNzIDIgQ0EgMTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAIs8B0XY9t/mx8q6jUPFR42wWsE425KEHK8T1A9vNkYgxC7M +cXA0ojTTNy7Y3Tp3L8DrKehc0rWpkTSHIln+zNvnma+WwajHQN2lFYxuyHyXA8vmIPLXl18xoS83 +0r7uvqmtqEyeIWZDO6i88wmjONVZJMHCR3axiFyCO7srpgTXjAePzdVBHfCuuCkslFJgNJQ72uA4 +0Z0zPhX0kzLFANq1KWYOOngPIVJfAuWSeyXTkh4vFZ2B5J2O6O+JzhRMVB0cgRJNcKi+EAUXfh/R +uFdV7c27UsKwHnjCTTZoy1YmwVLBvXb3WNVyfh9EdrsAiR0WnVE1703CVu9r4Iw7DekCAwEAAaNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUP42aWYv8e3uco684sDntkHGA1sgwDgYDVR0P +AQH/BAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQAVGn4TirnoB6NLJzKyQJHyIdFkhb5jatLPgcIV +1Xp+DCmsNx4cfHZSldq1fyOhKXdlyTKdqC5Wq2B2zha0jX94wNWZUYN/Xtm+DKhQ7SLHrQVMdvvt +7h5HZPb3J31cKA9FxVxiXqaakZG3Uxcu3K1gnZZkOb1naLKuBctN518fV4bVIJwo+28TOPX2EZL2 +fZleHwzoq0QkKXJAPTZSr4xYkHPB7GEseaHsh7U/2k3ZIQAw3pDaDtMaSKk+hQsUi4y8QZ5q9w5w +wDX3OaJdZtB7WZ+oRxKaJyOkLY4ng5IgodcVf/EuGO70SH8vf/GhGLWhC5SgYiAynB321O+/TIho +-----END CERTIFICATE----- + +Buypass Class 3 CA 1 +==================== +-----BEGIN CERTIFICATE----- +MIIDUzCCAjugAwIBAgIBAjANBgkqhkiG9w0BAQUFADBLMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU +QnV5cGFzcyBBUy05ODMxNjMzMjcxHTAbBgNVBAMMFEJ1eXBhc3MgQ2xhc3MgMyBDQSAxMB4XDTA1 +MDUwOTE0MTMwM1oXDTE1MDUwOTE0MTMwM1owSzELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBh +c3MgQVMtOTgzMTYzMzI3MR0wGwYDVQQDDBRCdXlwYXNzIENsYXNzIDMgQ0EgMTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAKSO13TZKWTeXx+HgJHqTjnmGcZEC4DVC69TB4sSveZn8AKx +ifZgisRbsELRwCGoy+Gb72RRtqfPFfV0gGgEkKBYouZ0plNTVUhjP5JW3SROjvi6K//zNIqeKNc0 +n6wv1g/xpC+9UrJJhW05NfBEMJNGJPO251P7vGGvqaMU+8IXF4Rs4HyI+MkcVyzwPX6UvCWThOia +AJpFBUJXgPROztmuOfbIUxAMZTpHe2DC1vqRycZxbL2RhzyRhkmr8w+gbCZ2Xhysm3HljbybIR6c +1jh+JIAVMYKWsUnTYjdbiAwKYjT+p0h+mbEwi5A3lRyoH6UsjfRVyNvdWQrCrXig9IsCAwEAAaNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUOBTmyPCppAP0Tj4io1vy1uCtQHQwDgYDVR0P +AQH/BAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQABZ6OMySU9E2NdFm/soT4JXJEVKirZgCFPBdy7 +pYmrEzMqnji3jG8CcmPHc3ceCQa6Oyh7pEfJYWsICCD8igWKH7y6xsL+z27sEzNxZy5p+qksP2bA +EllNC1QCkoS72xLvg3BweMhT+t/Gxv/ciC8HwEmdMldg0/L2mSlf56oBzKwzqBwKu5HEA6BvtjT5 +htOzdlSY9EqBs1OdTUDs5XcTRa9bqh/YL0yCe/4qxFi7T/ye/QNlGioOw6UgFpRreaaiErS7GqQj +el/wroQk5PMr+4okoyeYZdowdXb8GZHo2+ubPzK/QJcHJrrM85SFSnonk8+QQtS4Wxam58tAA915 +-----END CERTIFICATE----- + +EBG Elektronik Sertifika Hizmet Sa\xC4\x9Flay\xc4\xb1\x63\xc4\xb1s\xc4\xb1 +========================================================================== +-----BEGIN CERTIFICATE----- +MIIF5zCCA8+gAwIBAgIITK9zQhyOdAIwDQYJKoZIhvcNAQEFBQAwgYAxODA2BgNVBAMML0VCRyBF +bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMTcwNQYDVQQKDC5FQkcg +QmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXptZXRsZXJpIEEuxZ4uMQswCQYDVQQGEwJUUjAe +Fw0wNjA4MTcwMDIxMDlaFw0xNjA4MTQwMDMxMDlaMIGAMTgwNgYDVQQDDC9FQkcgRWxla3Ryb25p +ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTE3MDUGA1UECgwuRUJHIEJpbGnFn2lt +IFRla25vbG9qaWxlcmkgdmUgSGl6bWV0bGVyaSBBLsWeLjELMAkGA1UEBhMCVFIwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQDuoIRh0DpqZhAy2DE4f6en5f2h4fuXd7hxlugTlkaDT7by +X3JWbhNgpQGR4lvFzVcfd2NR/y8927k/qqk153nQ9dAktiHq6yOU/im/+4mRDGSaBUorzAzu8T2b +gmmkTPiab+ci2hC6X5L8GCcKqKpE+i4stPtGmggDg3KriORqcsnlZR9uKg+ds+g75AxuetpX/dfr +eYteIAbTdgtsApWjluTLdlHRKJ2hGvxEok3MenaoDT2/F08iiFD9rrbskFBKW5+VQarKD7JK/oCZ +TqNGFav4c0JqwmZ2sQomFd2TkuzbqV9UIlKRcF0T6kjsbgNs2d1s/OsNA/+mgxKb8amTD8UmTDGy +Y5lhcucqZJnSuOl14nypqZoaqsNW2xCaPINStnuWt6yHd6i58mcLlEOzrz5z+kI2sSXFCjEmN1Zn +uqMLfdb3ic1nobc6HmZP9qBVFCVMLDMNpkGMvQQxahByCp0OLna9XvNRiYuoP1Vzv9s6xiQFlpJI +qkuNKgPlV5EQ9GooFW5Hd4RcUXSfGenmHmMWOeMRFeNYGkS9y8RsZteEBt8w9DeiQyJ50hBs37vm +ExH8nYQKE3vwO9D8owrXieqWfo1IhR5kX9tUoqzVegJ5a9KK8GfaZXINFHDk6Y54jzJ0fFfy1tb0 +Nokb+Clsi7n2l9GkLqq+CxnCRelwXQIDAJ3Zo2MwYTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB +/wQEAwIBBjAdBgNVHQ4EFgQU587GT/wWZ5b6SqMHwQSny2re2kcwHwYDVR0jBBgwFoAU587GT/wW +Z5b6SqMHwQSny2re2kcwDQYJKoZIhvcNAQEFBQADggIBAJuYml2+8ygjdsZs93/mQJ7ANtyVDR2t +FcU22NU57/IeIl6zgrRdu0waypIN30ckHrMk2pGI6YNw3ZPX6bqz3xZaPt7gyPvT/Wwp+BVGoGgm +zJNSroIBk5DKd8pNSe/iWtkqvTDOTLKBtjDOWU/aWR1qeqRFsIImgYZ29fUQALjuswnoT4cCB64k +XPBfrAowzIpAoHMEwfuJJPaaHFy3PApnNgUIMbOv2AFoKuB4j3TeuFGkjGwgPaL7s9QJ/XvCgKqT +bCmYIai7FvOpEl90tYeY8pUm3zTvilORiF0alKM/fCL414i6poyWqD1SNGKfAB5UVUJnxk1Gj7sU +RT0KlhaOEKGXmdXTMIXM3rRyt7yKPBgpaP3ccQfuJDlq+u2lrDgv+R4QDgZxGhBM/nV+/x5XOULK +1+EVoVZVWRvRo68R2E7DpSvvkL/A7IITW43WciyTTo9qKd+FPNMN4KIYEsxVL0e3p5sC/kH2iExt +2qkBR4NkJ2IQgtYSe14DHzSpyZH+r11thie3I6p1GMog57AP14kOpmciY/SDQSsGS7tY1dHXt7kQ +Y9iJSrSq3RZj9W6+YKH47ejWkE8axsWgKdOnIaj1Wjz3x0miIZpKlVIglnKaZsv30oZDfCK+lvm9 +AahH3eU7QPl1K5srRmSGjR70j/sHd9DqSaIcjVIUpgqT +-----END CERTIFICATE----- + +certSIGN ROOT CA +================ +-----BEGIN CERTIFICATE----- +MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYTAlJPMREwDwYD +VQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTAeFw0wNjA3MDQxNzIwMDRa +Fw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UE +CxMQY2VydFNJR04gUk9PVCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7I +JUqOtdu0KBuqV5Do0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHH +rfAQUySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5dRdY4zTW2 +ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQOA7+j0xbm0bqQfWwCHTD +0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwvJoIQ4uNllAoEwF73XVv4EOLQunpL+943 +AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B +Af8EBAMCAcYwHQYDVR0OBBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IB +AQA+0hyJLjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecYMnQ8 +SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ44gx+FkagQnIl6Z0 +x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6IJd1hJyMctTEHBDa0GpC9oHRxUIlt +vBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNwi/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7Nz +TogVZ96edhBiIL5VaZVDADlN9u6wWk5JRFRYX0KD +-----END CERTIFICATE----- + +CNNIC ROOT +========== +-----BEGIN CERTIFICATE----- +MIIDVTCCAj2gAwIBAgIESTMAATANBgkqhkiG9w0BAQUFADAyMQswCQYDVQQGEwJDTjEOMAwGA1UE +ChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1QwHhcNMDcwNDE2MDcwOTE0WhcNMjcwNDE2MDcw +OTE0WjAyMQswCQYDVQQGEwJDTjEOMAwGA1UEChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1Qw +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDTNfc/c3et6FtzF8LRb+1VvG7q6KR5smzD +o+/hn7E7SIX1mlwhIhAsxYLO2uOabjfhhyzcuQxauohV3/2q2x8x6gHx3zkBwRP9SFIhxFXf2tiz +VHa6dLG3fdfA6PZZxU3Iva0fFNrfWEQlMhkqx35+jq44sDB7R3IJMfAw28Mbdim7aXZOV/kbZKKT +VrdvmW7bCgScEeOAH8tjlBAKqeFkgjH5jCftppkA9nCTGPihNIaj3XrCGHn2emU1z5DrvTOTn1Or +czvmmzQgLx3vqR1jGqCA2wMv+SYahtKNu6m+UjqHZ0gNv7Sg2Ca+I19zN38m5pIEo3/PIKe38zrK +y5nLAgMBAAGjczBxMBEGCWCGSAGG+EIBAQQEAwIABzAfBgNVHSMEGDAWgBRl8jGtKvf33VKWCscC +wQ7vptU7ETAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIB/jAdBgNVHQ4EFgQUZfIxrSr3991S +lgrHAsEO76bVOxEwDQYJKoZIhvcNAQEFBQADggEBAEs17szkrr/Dbq2flTtLP1se31cpolnKOOK5 +Gv+e5m4y3R6u6jW39ZORTtpC4cMXYFDy0VwmuYK36m3knITnA3kXr5g9lNvHugDnuL8BV8F3RTIM +O/G0HAiw/VGgod2aHRM2mm23xzy54cXZF/qD1T0VoDy7HgviyJA/qIYM/PmLXoXLT1tLYhFHxUV8 +BS9BsZ4QaRuZluBVeftOhpm4lNqGOGqTo+fLbuXf6iFViZx9fX+Y9QCJ7uOEwFyWtcVG6kbghVW2 +G8kS1sHNzYDzAgE8yGnLRUhj2JTQ7IUOO04RZfSCjKY9ri4ilAnIXOo8gV0WKgOXFlUJ24pBgp5m +mxE= +-----END CERTIFICATE----- + +ApplicationCA - Japanese Government +=================================== +-----BEGIN CERTIFICATE----- +MIIDoDCCAoigAwIBAgIBMTANBgkqhkiG9w0BAQUFADBDMQswCQYDVQQGEwJKUDEcMBoGA1UEChMT +SmFwYW5lc2UgR292ZXJubWVudDEWMBQGA1UECxMNQXBwbGljYXRpb25DQTAeFw0wNzEyMTIxNTAw +MDBaFw0xNzEyMTIxNTAwMDBaMEMxCzAJBgNVBAYTAkpQMRwwGgYDVQQKExNKYXBhbmVzZSBHb3Zl +cm5tZW50MRYwFAYDVQQLEw1BcHBsaWNhdGlvbkNBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEAp23gdE6Hj6UG3mii24aZS2QNcfAKBZuOquHMLtJqO8F6tJdhjYq+xpqcBrSGUeQ3DnR4 +fl+Kf5Sk10cI/VBaVuRorChzoHvpfxiSQE8tnfWuREhzNgaeZCw7NCPbXCbkcXmP1G55IrmTwcrN +wVbtiGrXoDkhBFcsovW8R0FPXjQilbUfKW1eSvNNcr5BViCH/OlQR9cwFO5cjFW6WY2H/CPek9AE +jP3vbb3QesmlOmpyM8ZKDQUXKi17safY1vC+9D/qDihtQWEjdnjDuGWk81quzMKq2edY3rZ+nYVu +nyoKb58DKTCXKB28t89UKU5RMfkntigm/qJj5kEW8DOYRwIDAQABo4GeMIGbMB0GA1UdDgQWBBRU +WssmP3HMlEYNllPqa0jQk/5CdTAOBgNVHQ8BAf8EBAMCAQYwWQYDVR0RBFIwUKROMEwxCzAJBgNV +BAYTAkpQMRgwFgYDVQQKDA/ml6XmnKzlm73mlL/lupwxIzAhBgNVBAsMGuOCouODl+ODquOCseOD +vOOCt+ODp+ODs0NBMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADlqRHZ3ODrs +o2dGD/mLBqj7apAxzn7s2tGJfHrrLgy9mTLnsCTWw//1sogJhyzjVOGjprIIC8CFqMjSnHH2HZ9g +/DgzE+Ge3Atf2hZQKXsvcJEPmbo0NI2VdMV+eKlmXb3KIXdCEKxmJj3ekav9FfBv7WxfEPjzFvYD +io+nEhEMy/0/ecGc/WLuo89UDNErXxc+4z6/wCs+CZv+iKZ+tJIX/COUgb1up8WMwusRRdv4QcmW +dupwX3kSa+SjB1oF7ydJzyGfikwJcGapJsErEU4z0g781mzSDjJkaP+tBXhfAx2o45CsJOAPQKdL +rosot4LKGAfmt1t06SAZf7IbiVQ= +-----END CERTIFICATE----- + +GeoTrust Primary Certification Authority - G3 +============================================= +-----BEGIN CERTIFICATE----- +MIID/jCCAuagAwIBAgIQFaxulBmyeUtB9iepwxgPHzANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UE +BhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA4IEdlb1RydXN0 +IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFy +eSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEczMB4XDTA4MDQwMjAwMDAwMFoXDTM3MTIwMTIz +NTk1OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAo +YykgMjAwOCBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMT +LUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBANziXmJYHTNXOTIz+uvLh4yn1ErdBojqZI4xmKU4kB6Yzy5j +K/BGvESyiaHAKAxJcCGVn2TAppMSAmUmhsalifD614SgcK9PGpc/BkTVyetyEH3kMSj7HGHmKAdE +c5IiaacDiGydY8hS2pgn5whMcD60yRLBxWeDXTPzAxHsatBT4tG6NmCUgLthY2xbF37fQJQeqw3C +IShwiP/WJmxsYAQlTlV+fe+/lEjetx3dcI0FX4ilm/LC7urRQEFtYjgdVgbFA0dRIBn8exALDmKu +dlW/X3e+PkkBUz2YJQN2JFodtNuJ6nnltrM7P7pMKEF/BqxqjsHQ9gUdfeZChuOl1UcCAwEAAaNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMR5yo6hTgMdHNxr +2zFblD4/MH8tMA0GCSqGSIb3DQEBCwUAA4IBAQAtxRPPVoB7eni9n64smefv2t+UXglpp+duaIy9 +cr5HqQ6XErhK8WTTOd8lNNTBzU6B8A8ExCSzNJbGpqow32hhc9f5joWJ7w5elShKKiePEI4ufIbE +Ap7aDHdlDkQNkv39sxY2+hENHYwOB4lqKVb3cvTdFZx3NWZXqxNT2I7BQMXXExZacse3aQHEerGD +AWh9jUGhlBjBJVz88P6DAod8DQ3PLghcSkANPuyBYeYk28rgDi0Hsj5W3I31QYUHSJsMC8tJP33s +t/3LjWeJGqvtux6jAAgIFyqCXDFdRootD4abdNlF+9RAsXqqaC2Gspki4cErx5z481+oghLrGREt +-----END CERTIFICATE----- + +thawte Primary Root CA - G2 +=========================== +-----BEGIN CERTIFICATE----- +MIICiDCCAg2gAwIBAgIQNfwmXNmET8k9Jj1Xm67XVjAKBggqhkjOPQQDAzCBhDELMAkGA1UEBhMC +VVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjE4MDYGA1UECxMvKGMpIDIwMDcgdGhhd3RlLCBJbmMu +IC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAiBgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3Qg +Q0EgLSBHMjAeFw0wNzExMDUwMDAwMDBaFw0zODAxMTgyMzU5NTlaMIGEMQswCQYDVQQGEwJVUzEV +MBMGA1UEChMMdGhhd3RlLCBJbmMuMTgwNgYDVQQLEy8oYykgMjAwNyB0aGF3dGUsIEluYy4gLSBG +b3IgYXV0aG9yaXplZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAt +IEcyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEotWcgnuVnfFSeIf+iha/BebfowJPDQfGAFG6DAJS +LSKkQjnE/o/qycG+1E3/n3qe4rF8mq2nhglzh9HnmuN6papu+7qzcMBniKI11KOasf2twu8x+qi5 +8/sIxpHR+ymVo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU +mtgAMADna3+FGO6Lts6KDPgR4bswCgYIKoZIzj0EAwMDaQAwZgIxAN344FdHW6fmCsO99YCKlzUN +G4k8VIZ3KMqh9HneteY4sPBlcIx/AlTCv//YoT7ZzwIxAMSNlPzcU9LcnXgWHxUzI1NS41oxXZ3K +rr0TKUQNJ1uo52icEvdYPy5yAlejj6EULg== +-----END CERTIFICATE----- + +thawte Primary Root CA - G3 +=========================== +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIQYAGXt0an6rS0mtZLL/eQ+zANBgkqhkiG9w0BAQsFADCBrjELMAkGA1UE +BhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2 +aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIwMDggdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhv +cml6ZWQgdXNlIG9ubHkxJDAiBgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMzAeFw0w +ODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIGuMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhh +d3RlLCBJbmMuMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMTgwNgYD +VQQLEy8oYykgMjAwOCB0aGF3dGUsIEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTEkMCIG +A1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAtIEczMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAsr8nLPvb2FvdeHsbnndmgcs+vHyu86YnmjSjaDFxODNi5PNxZnmxqWWjpYvVj2At +P0LMqmsywCPLLEHd5N/8YZzic7IilRFDGF/Eth9XbAoFWCLINkw6fKXRz4aviKdEAhN0cXMKQlkC ++BsUa0Lfb1+6a4KinVvnSr0eAXLbS3ToO39/fR8EtCab4LRarEc9VbjXsCZSKAExQGbY2SS99irY +7CFJXJv2eul/VTV+lmuNk5Mny5K76qxAwJ/C+IDPXfRa3M50hqY+bAtTyr2SzhkGcuYMXDhpxwTW +vGzOW/b3aJzcJRVIiKHpqfiYnODz1TEoYRFsZ5aNOZnLwkUkOQIDAQABo0IwQDAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUrWyqlGCc7eT/+j4KdCtjA/e2Wb8wDQYJ +KoZIhvcNAQELBQADggEBABpA2JVlrAmSicY59BDlqQ5mU1143vokkbvnRFHfxhY0Cu9qRFHqKweK +A3rD6z8KLFIWoCtDuSWQP3CpMyVtRRooOyfPqsMpQhvfO0zAMzRbQYi/aytlryjvsvXDqmbOe1bu +t8jLZ8HJnBoYuMTDSQPxYA5QzUbF83d597YV4Djbxy8ooAw/dyZ02SUS2jHaGh7cKUGRIjxpp7sC +8rZcJwOJ9Abqm+RyguOhCcHpABnTPtRwa7pxpqpYrvS76Wy274fMm7v/OeZWYdMKp8RcTGB7BXcm +er/YB1IsYvdwY9k5vG8cwnncdimvzsUsZAReiDZuMdRAGmI0Nj81Aa6sY6A= +-----END CERTIFICATE----- + +GeoTrust Primary Certification Authority - G2 +============================================= +-----BEGIN CERTIFICATE----- +MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA3IEdlb1RydXN0IElu +Yy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1 +OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykg +MjAwNyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMTLUdl +b1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMjB2MBAGByqGSM49AgEG +BSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcLSo17VDs6bl8VAsBQps8lL33KSLjHUGMc +KiEIfJo22Av+0SbFWDEwKCXzXV2juLaltJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYD +VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+ +EVXVMAoGCCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGTqQ7m +ndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBuczrD6ogRLQy7rQkgu2 +npaqBA+K +-----END CERTIFICATE----- + +VeriSign Universal Root Certification Authority +=============================================== +-----BEGIN CERTIFICATE----- +MIIEuTCCA6GgAwIBAgIQQBrEZCGzEyEDDrvkEhrFHTANBgkqhkiG9w0BAQsFADCBvTELMAkGA1UE +BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO +ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwOCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk +IHVzZSBvbmx5MTgwNgYDVQQDEy9WZXJpU2lnbiBVbml2ZXJzYWwgUm9vdCBDZXJ0aWZpY2F0aW9u +IEF1dGhvcml0eTAeFw0wODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIG9MQswCQYDVQQGEwJV +UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv +cmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl +IG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNhbCBSb290IENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx2E3XrEBNNti1xWb/1hajCMj +1mCOkdeQmIN65lgZOIzF9uVkhbSicfvtvbnazU0AtMgtc6XHaXGVHzk8skQHnOgO+k1KxCHfKWGP +MiJhgsWHH26MfF8WIFFE0XBPV+rjHOPMee5Y2A7Cs0WTwCznmhcrewA3ekEzeOEz4vMQGn+HLL72 +9fdC4uW/h2KJXwBL38Xd5HVEMkE6HnFuacsLdUYI0crSK5XQz/u5QGtkjFdN/BMReYTtXlT2NJ8I +AfMQJQYXStrxHXpma5hgZqTZ79IugvHw7wnqRMkVauIDbjPTrJ9VAMf2CGqUuV/c4DPxhGD5WycR +tPwW8rtWaoAljQIDAQABo4GyMIGvMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMG0G +CCsGAQUFBwEMBGEwX6FdoFswWTBXMFUWCWltYWdlL2dpZjAhMB8wBwYFKw4DAhoEFI/l0xqGrI2O +a8PPgGrUSBgsexkuMCUWI2h0dHA6Ly9sb2dvLnZlcmlzaWduLmNvbS92c2xvZ28uZ2lmMB0GA1Ud +DgQWBBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG9w0BAQsFAAOCAQEASvj4sAPmLGd75JR3 +Y8xuTPl9Dg3cyLk1uXBPY/ok+myDjEedO2Pzmvl2MpWRsXe8rJq+seQxIcaBlVZaDrHC1LGmWazx +Y8u4TB1ZkErvkBYoH1quEPuBUDgMbMzxPcP1Y+Oz4yHJJDnp/RVmRvQbEdBNc6N9Rvk97ahfYtTx +P/jgdFcrGJ2BtMQo2pSXpXDrrB2+BxHw1dvd5Yzw1TKwg+ZX4o+/vqGqvz0dtdQ46tewXDpPaj+P +wGZsY6rp2aQW9IHRlRQOfc2VNNnSj3BzgXucfr2YYdhFh5iQxeuGMMY1v/D/w1WIg0vvBZIGcfK4 +mJO37M2CYfE45k+XmCpajQ== +-----END CERTIFICATE----- + +VeriSign Class 3 Public Primary Certification Authority - G4 +============================================================ +-----BEGIN CERTIFICATE----- +MIIDhDCCAwqgAwIBAgIQL4D+I4wOIg9IZxIokYesszAKBggqhkjOPQQDAzCByjELMAkGA1UEBhMC +VVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3 +b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVz +ZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5IC0gRzQwHhcNMDcxMTA1MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCByjEL +MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBU +cnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRo +b3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5 +IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAASnVnp8 +Utpkmw4tXNherJI9/gHmGUo9FANL+mAnINmDiWn6VMaaGF5VKmTeBvaNSjutEDxlPZCIBIngMGGz +rl0Bp3vefLK+ymVhAIau2o970ImtTR1ZmkGxvEeA3J5iw/mjgbIwga8wDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2UvZ2lmMCEw +HzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVyaXNpZ24u +Y29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFLMWkf3upm7ktS5Jj4d4gYDs5bG1MAoGCCqGSM49BAMD +A2gAMGUCMGYhDBgmYFo4e1ZC4Kf8NoRRkSAsdk1DPcQdhCPQrNZ8NQbOzWm9kA3bbEhCHQ6qQgIx +AJw9SDkjOVgaFRJZap7v1VmyHVIsmXHNxynfGyphe3HR3vPA5Q06Sqotp9iGKt0uEA== +-----END CERTIFICATE----- + +NetLock Arany (Class Gold) Főtanúsítvány +============================================ +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQGEwJIVTERMA8G +A1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610 +dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBB +cmFueSAoQ2xhc3MgR29sZCkgRsWRdGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgx +MjA2MTUwODIxWjCBpzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxO +ZXRMb2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlmaWNhdGlv +biBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNzIEdvbGQpIEbFkXRhbsO6 +c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxCRec75LbRTDofTjl5Bu +0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrTlF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw +/HpYzY6b7cNGbIRwXdrzAZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAk +H3B5r9s5VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRGILdw +fzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2BJtr+UBdADTHLpl1 +neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAGAQH/AgEEMA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2MU9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwW +qZw8UQCgwBEIBaeZ5m8BiFRhbvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTta +YtOUZcTh5m2C+C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC +bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2FuLjbvrW5Kfna +NwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2XjG4Kvte9nHfRCaexOYNkbQu +dZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= +-----END CERTIFICATE----- + +Staat der Nederlanden Root CA - G2 +================================== +-----BEGIN CERTIFICATE----- +MIIFyjCCA7KgAwIBAgIEAJiWjDANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJOTDEeMBwGA1UE +CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFhdCBkZXIgTmVkZXJsYW5kZW4g +Um9vdCBDQSAtIEcyMB4XDTA4MDMyNjExMTgxN1oXDTIwMDMyNTExMDMxMFowWjELMAkGA1UEBhMC +TkwxHjAcBgNVBAoMFVN0YWF0IGRlciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5l +ZGVybGFuZGVuIFJvb3QgQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMVZ +5291qj5LnLW4rJ4L5PnZyqtdj7U5EILXr1HgO+EASGrP2uEGQxGZqhQlEq0i6ABtQ8SpuOUfiUtn +vWFI7/3S4GCI5bkYYCjDdyutsDeqN95kWSpGV+RLufg3fNU254DBtvPUZ5uW6M7XxgpT0GtJlvOj +CwV3SPcl5XCsMBQgJeN/dVrlSPhOewMHBPqCYYdu8DvEpMfQ9XQ+pV0aCPKbJdL2rAQmPlU6Yiil +e7Iwr/g3wtG61jj99O9JMDeZJiFIhQGp5Rbn3JBV3w/oOM2ZNyFPXfUib2rFEhZgF1XyZWampzCR +OME4HYYEhLoaJXhena/MUGDWE4dS7WMfbWV9whUYdMrhfmQpjHLYFhN9C0lK8SgbIHRrxT3dsKpI +CT0ugpTNGmXZK4iambwYfp/ufWZ8Pr2UuIHOzZgweMFvZ9C+X+Bo7d7iscksWXiSqt8rYGPy5V65 +48r6f1CGPqI0GAwJaCgRHOThuVw+R7oyPxjMW4T182t0xHJ04eOLoEq9jWYv6q012iDTiIJh8BIi +trzQ1aTsr1SIJSQ8p22xcik/Plemf1WvbibG/ufMQFxRRIEKeN5KzlW/HdXZt1bv8Hb/C3m1r737 +qWmRRpdogBQ2HbN/uymYNqUg+oJgYjOk7Na6B6duxc8UpufWkjTYgfX8HV2qXB72o007uPc5AgMB +AAGjgZcwgZQwDwYDVR0TAQH/BAUwAwEB/zBSBgNVHSAESzBJMEcGBFUdIAAwPzA9BggrBgEFBQcC +ARYxaHR0cDovL3d3dy5wa2lvdmVyaGVpZC5ubC9wb2xpY2llcy9yb290LXBvbGljeS1HMjAOBgNV +HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJFoMocVHYnitfGsNig0jQt8YojrMA0GCSqGSIb3DQEBCwUA +A4ICAQCoQUpnKpKBglBu4dfYszk78wIVCVBR7y29JHuIhjv5tLySCZa59sCrI2AGeYwRTlHSeYAz ++51IvuxBQ4EffkdAHOV6CMqqi3WtFMTC6GY8ggen5ieCWxjmD27ZUD6KQhgpxrRW/FYQoAUXvQwj +f/ST7ZwaUb7dRUG/kSS0H4zpX897IZmflZ85OkYcbPnNe5yQzSipx6lVu6xiNGI1E0sUOlWDuYaN +kqbG9AclVMwWVxJKgnjIFNkXgiYtXSAfea7+1HAWFpWD2DU5/1JddRwWxRNVz0fMdWVSSt7wsKfk +CpYL+63C4iWEst3kvX5ZbJvw8NjnyvLplzh+ib7M+zkXYT9y2zqR2GUBGR2tUKRXCnxLvJxxcypF +URmFzI79R6d0lR2o0a9OF7FpJsKqeFdbxU2n5Z4FF5TKsl+gSRiNNOkmbEgeqmiSBeGCc1qb3Adb +CG19ndeNIdn8FCCqwkXfP+cAslHkwvgFuXkajDTznlvkN1trSt8sV4pAWja63XVECDdCcAz+3F4h +oKOKwJCcaNpQ5kUQR3i2TtJlycM33+FCY7BXN0Ute4qcvwXqZVUz9zkQxSgqIXobisQk+T8VyJoV +IPVVYpbtbZNQvOSqeK3Zywplh6ZmwcSBo3c6WB4L7oOLnR7SUqTMHW+wmG2UMbX4cQrcufx9MmDm +66+KAQ== +-----END CERTIFICATE----- + +CA Disig +======== +-----BEGIN CERTIFICATE----- +MIIEDzCCAvegAwIBAgIBATANBgkqhkiG9w0BAQUFADBKMQswCQYDVQQGEwJTSzETMBEGA1UEBxMK +QnJhdGlzbGF2YTETMBEGA1UEChMKRGlzaWcgYS5zLjERMA8GA1UEAxMIQ0EgRGlzaWcwHhcNMDYw +MzIyMDEzOTM0WhcNMTYwMzIyMDEzOTM0WjBKMQswCQYDVQQGEwJTSzETMBEGA1UEBxMKQnJhdGlz +bGF2YTETMBEGA1UEChMKRGlzaWcgYS5zLjERMA8GA1UEAxMIQ0EgRGlzaWcwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQCS9jHBfYj9mQGp2HvycXXxMcbzdWb6UShGhJd4NLxs/LxFWYgm +GErENx+hSkS943EE9UQX4j/8SFhvXJ56CbpRNyIjZkMhsDxkovhqFQ4/61HhVKndBpnXmjxUizkD +Pw/Fzsbrg3ICqB9x8y34dQjbYkzo+s7552oftms1grrijxaSfQUMbEYDXcDtab86wYqg6I7ZuUUo +hwjstMoVvoLdtUSLLa2GDGhibYVW8qwUYzrG0ZmsNHhWS8+2rT+MitcE5eN4TPWGqvWP+j1scaMt +ymfraHtuM6kMgiioTGohQBUgDCZbg8KpFhXAJIJdKxatymP2dACw30PEEGBWZ2NFAgMBAAGjgf8w +gfwwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUjbJJaJ1yCCW5wCf1UJNWSEZx+Y8wDgYDVR0P +AQH/BAQDAgEGMDYGA1UdEQQvMC2BE2Nhb3BlcmF0b3JAZGlzaWcuc2uGFmh0dHA6Ly93d3cuZGlz +aWcuc2svY2EwZgYDVR0fBF8wXTAtoCugKYYnaHR0cDovL3d3dy5kaXNpZy5zay9jYS9jcmwvY2Ff +ZGlzaWcuY3JsMCygKqAohiZodHRwOi8vY2EuZGlzaWcuc2svY2EvY3JsL2NhX2Rpc2lnLmNybDAa +BgNVHSAEEzARMA8GDSuBHpGT5goAAAABAQEwDQYJKoZIhvcNAQEFBQADggEBAF00dGFMrzvY/59t +WDYcPQuBDRIrRhCA/ec8J9B6yKm2fnQwM6M6int0wHl5QpNt/7EpFIKrIYwvF/k/Ji/1WcbvgAa3 +mkkp7M5+cTxqEEHA9tOasnxakZzArFvITV734VP/Q3f8nktnbNfzg9Gg4H8l37iYC5oyOGwwoPP/ +CBUz91BKez6jPiCp3C9WgArtQVCwyfTssuMmRAAOb54GvCKWU3BlxFAKRmukLyeBEicTXxChds6K +ezfqwzlhA5WYOudsiCUI/HloDYd9Yvi0X/vF2Ey9WLw/Q1vUHgFNPGO+I++MzVpQuGhU+QqZMxEA +4Z7CRneC9VkGjCFMhwnN5ag= +-----END CERTIFICATE----- + +Juur-SK +======= +-----BEGIN CERTIFICATE----- +MIIE5jCCA86gAwIBAgIEO45L/DANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lA +c2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAw +DgYDVQQDEwdKdXVyLVNLMB4XDTAxMDgzMDE0MjMwMVoXDTE2MDgyNjE0MjMwMVowXTEYMBYGCSqG +SIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVy +aW1pc2tlc2t1czEQMA4GA1UEAxMHSnV1ci1TSzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAIFxNj4zB9bjMI0TfncyRsvPGbJgMUaXhvSYRqTCZUXP00B841oiqBB4M8yIsdOBSvZiF3tf +TQou0M+LI+5PAk676w7KvRhj6IAcjeEcjT3g/1tf6mTll+g/mX8MCgkzABpTpyHhOEvWgxutr2TC ++Rx6jGZITWYfGAriPrsfB2WThbkasLnE+w0R9vXW+RvHLCu3GFH+4Hv2qEivbDtPL+/40UceJlfw +UR0zlv/vWT3aTdEVNMfqPxZIe5EcgEMPPbgFPtGzlc3Yyg/CQ2fbt5PgIoIuvvVoKIO5wTtpeyDa +Tpxt4brNj3pssAki14sL2xzVWiZbDcDq5WDQn/413z8CAwEAAaOCAawwggGoMA8GA1UdEwEB/wQF +MAMBAf8wggEWBgNVHSAEggENMIIBCTCCAQUGCisGAQQBzh8BAQEwgfYwgdAGCCsGAQUFBwICMIHD +HoHAAFMAZQBlACAAcwBlAHIAdABpAGYAaQBrAGEAYQB0ACAAbwBuACAAdgDkAGwAagBhAHMAdABh +AHQAdQBkACAAQQBTAC0AaQBzACAAUwBlAHIAdABpAGYAaQB0AHMAZQBlAHIAaQBtAGkAcwBrAGUA +cwBrAHUAcwAgAGEAbABhAG0ALQBTAEsAIABzAGUAcgB0AGkAZgBpAGsAYQBhAHQAaQBkAGUAIABr +AGkAbgBuAGkAdABhAG0AaQBzAGUAawBzMCEGCCsGAQUFBwIBFhVodHRwOi8vd3d3LnNrLmVlL2Nw +cy8wKwYDVR0fBCQwIjAgoB6gHIYaaHR0cDovL3d3dy5zay5lZS9qdXVyL2NybC8wHQYDVR0OBBYE +FASqekej5ImvGs8KQKcYP2/v6X2+MB8GA1UdIwQYMBaAFASqekej5ImvGs8KQKcYP2/v6X2+MA4G +A1UdDwEB/wQEAwIB5jANBgkqhkiG9w0BAQUFAAOCAQEAe8EYlFOiCfP+JmeaUOTDBS8rNXiRTHyo +ERF5TElZrMj3hWVcRrs7EKACr81Ptcw2Kuxd/u+gkcm2k298gFTsxwhwDY77guwqYHhpNjbRxZyL +abVAyJRld/JXIWY7zoVAtjNjGr95HvxcHdMdkxuLDF2FvZkwMhgJkVLpfKG6/2SSmuz+Ne6ML678 +IIbsSt4beDI3poHSna9aEhbKmVv8b20OxaAehsmR0FyYgl9jDIpaq9iVpszLita/ZEuOyoqysOkh +Mp6qqIWYNIE5ITuoOlIyPfZrN4YGWhWY3PARZv40ILcD9EEQfTmEeZZyY7aWAuVrua0ZTbvGRNs2 +yyqcjg== +-----END CERTIFICATE----- + +Hongkong Post Root CA 1 +======================= +-----BEGIN CERTIFICATE----- +MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoT +DUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMB4XDTAzMDUx +NTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25n +IFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1 +ApzQjVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEnPzlTCeqr +auh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjhZY4bXSNmO7ilMlHIhqqh +qZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9nnV0ttgCXjqQesBCNnLsak3c78QA3xMY +V18meMjWCnl3v/evt3a5pQuEF10Q6m/hq5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNV +HRMBAf8ECDAGAQH/AgEDMA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7i +h9legYsCmEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI37pio +l7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clBoiMBdDhViw+5Lmei +IAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJsEhTkYY2sEJCehFC78JZvRZ+K88ps +T/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpOfMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilT +c4afU9hDDl3WY4JxHYB0yvbiAmvZWg== +-----END CERTIFICATE----- + +SecureSign RootCA11 +=================== +-----BEGIN CERTIFICATE----- +MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDErMCkGA1UEChMi +SmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoGA1UEAxMTU2VjdXJlU2lnbiBS +b290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSsw +KQYDVQQKEyJKYXBhbiBDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1 +cmVTaWduIFJvb3RDQTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvL +TJszi1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8h9uuywGO +wvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOVMdrAG/LuYpmGYz+/3ZMq +g6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rP +O7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitA +bpSACW22s293bzUIUPsCh8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZX +t94wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAKCh +OBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xmKbabfSVSSUOrTC4r +bnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQX5Ucv+2rIrVls4W6ng+4reV6G4pQ +Oh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWrQbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01 +y8hSyn+B/tlr0/cR7SXf+Of5pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061 +lgeLKBObjBmNQSdJQO7e5iNEOdyhIta6A/I= +-----END CERTIFICATE----- + +ACEDICOM Root +============= +-----BEGIN CERTIFICATE----- +MIIFtTCCA52gAwIBAgIIYY3HhjsBggUwDQYJKoZIhvcNAQEFBQAwRDEWMBQGA1UEAwwNQUNFRElD +T00gUm9vdDEMMAoGA1UECwwDUEtJMQ8wDQYDVQQKDAZFRElDT00xCzAJBgNVBAYTAkVTMB4XDTA4 +MDQxODE2MjQyMloXDTI4MDQxMzE2MjQyMlowRDEWMBQGA1UEAwwNQUNFRElDT00gUm9vdDEMMAoG +A1UECwwDUEtJMQ8wDQYDVQQKDAZFRElDT00xCzAJBgNVBAYTAkVTMIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA/5KV4WgGdrQsyFhIyv2AVClVYyT/kGWbEHV7w2rbYgIB8hiGtXxaOLHk +WLn709gtn70yN78sFW2+tfQh0hOR2QetAQXW8713zl9CgQr5auODAKgrLlUTY4HKRxx7XBZXehuD +YAQ6PmXDzQHe3qTWDLqO3tkE7hdWIpuPY/1NFgu3e3eM+SW10W2ZEi5PGrjm6gSSrj0RuVFCPYew +MYWveVqc/udOXpJPQ/yrOq2lEiZmueIM15jO1FillUAKt0SdE3QrwqXrIhWYENiLxQSfHY9g5QYb +m8+5eaA9oiM/Qj9r+hwDezCNzmzAv+YbX79nuIQZ1RXve8uQNjFiybwCq0Zfm/4aaJQ0PZCOrfbk +HQl/Sog4P75n/TSW9R28MHTLOO7VbKvU/PQAtwBbhTIWdjPp2KOZnQUAqhbm84F9b32qhm2tFXTT +xKJxqvQUfecyuB+81fFOvW8XAjnXDpVCOscAPukmYxHqC9FK/xidstd7LzrZlvvoHpKuE1XI2Sf2 +3EgbsCTBheN3nZqk8wwRHQ3ItBTutYJXCb8gWH8vIiPYcMt5bMlL8qkqyPyHK9caUPgn6C9D4zq9 +2Fdx/c6mUlv53U3t5fZvie27k5x2IXXwkkwp9y+cAS7+UEaeZAwUswdbxcJzbPEHXEUkFDWug/Fq +TYl6+rPYLWbwNof1K1MCAwEAAaOBqjCBpzAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKaz +4SsrSbbXc6GqlPUB53NlTKxQMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUprPhKytJttdzoaqU +9QHnc2VMrFAwRAYDVR0gBD0wOzA5BgRVHSAAMDEwLwYIKwYBBQUHAgEWI2h0dHA6Ly9hY2VkaWNv +bS5lZGljb21ncm91cC5jb20vZG9jMA0GCSqGSIb3DQEBBQUAA4ICAQDOLAtSUWImfQwng4/F9tqg +aHtPkl7qpHMyEVNEskTLnewPeUKzEKbHDZ3Ltvo/Onzqv4hTGzz3gvoFNTPhNahXwOf9jU8/kzJP +eGYDdwdY6ZXIfj7QeQCM8htRM5u8lOk6e25SLTKeI6RF+7YuE7CLGLHdztUdp0J/Vb77W7tH1Pwk +zQSulgUV1qzOMPPKC8W64iLgpq0i5ALudBF/TP94HTXa5gI06xgSYXcGCRZj6hitoocf8seACQl1 +ThCojz2GuHURwCRiipZ7SkXp7FnFvmuD5uHorLUwHv4FB4D54SMNUI8FmP8sX+g7tq3PgbUhh8oI +KiMnMCArz+2UW6yyetLHKKGKC5tNSixthT8Jcjxn4tncB7rrZXtaAWPWkFtPF2Y9fwsZo5NjEFIq +nxQWWOLcpfShFosOkYuByptZ+thrkQdlVV9SH686+5DdaaVbnG0OLLb6zqylfDJKZ0DcMDQj3dcE +I2bw/FWAp/tmGYI1Z2JwOV5vx+qQQEQIHriy1tvuWacNGHk0vFQYXlPKNFHtRQrmjseCNj6nOGOp +MCwXEGCSn1WHElkQwg9naRHMTh5+Spqtr0CodaxWkHS4oJyleW/c6RrIaQXpuvoDs3zk4E7Czp3o +tkYNbn5XOmeUwssfnHdKZ05phkOTOPu220+DkdRgfks+KzgHVZhepA== +-----END CERTIFICATE----- + +Verisign Class 1 Public Primary Certification Authority +======================================================= +-----BEGIN CERTIFICATE----- +MIICPDCCAaUCED9pHoGc8JpK83P/uUii5N0wDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCVVMx +FzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAxIFB1YmxpYyBQcmltYXJ5 +IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2MDEyOTAwMDAwMFoXDTI4MDgwMjIzNTk1OVow +XzELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAx +IFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUA +A4GNADCBiQKBgQDlGb9to1ZhLZlIcfZn3rmN67eehoAKkQ76OCWvRoiC5XOooJskXQ0fzGVuDLDQ +VoQYh5oGmxChc9+0WDlrbsH2FdWoqD+qEgaNMax/sDTXjzRniAnNFBHiTkVWaR94AoDa3EeRKbs2 +yWNcxeDXLYd7obcysHswuiovMaruo2fa2wIDAQABMA0GCSqGSIb3DQEBBQUAA4GBAFgVKTk8d6Pa +XCUDfGD67gmZPCcQcMgMCeazh88K4hiWNWLMv5sneYlfycQJ9M61Hd8qveXbhpxoJeUwfLaJFf5n +0a3hUKw8fGJLj7qE1xIVGx/KXQ/BUpQqEZnae88MNhPVNdwQGVnqlMEAv3WP2fr9dgTbYruQagPZ +RjXZ+Hxb +-----END CERTIFICATE----- + +Verisign Class 3 Public Primary Certification Authority +======================================================= +-----BEGIN CERTIFICATE----- +MIICPDCCAaUCEDyRMcsf9tAbDpq40ES/Er4wDQYJKoZIhvcNAQEFBQAwXzELMAkGA1UEBhMCVVMx +FzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAzIFB1YmxpYyBQcmltYXJ5 +IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2MDEyOTAwMDAwMFoXDTI4MDgwMjIzNTk1OVow +XzELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAz +IFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUA +A4GNADCBiQKBgQDJXFme8huKARS0EN8EQNvjV69qRUCPhAwL0TPZ2RHP7gJYHyX3KqhEBarsAx94 +f56TuZoAqiN91qyFomNFx3InzPRMxnVx0jnvT0Lwdd8KkMaOIG+YD/isI19wKTakyYbnsZogy1Ol +hec9vn2a/iRFM9x2Fe0PonFkTGUugWhFpwIDAQABMA0GCSqGSIb3DQEBBQUAA4GBABByUqkFFBky +CEHwxWsKzH4PIRnN5GfcX6kb5sroc50i2JhucwNhkcV8sEVAbkSdjbCxlnRhLQ2pRdKkkirWmnWX +bj9T/UWZYB2oK0z5XqcJ2HUw19JlYD1n1khVdWk/kfVIC0dpImmClr7JyDiGSnoscxlIaU5rfGW/ +D/xwzoiQ +-----END CERTIFICATE----- + +Microsec e-Szigno Root CA 2009 +============================== +-----BEGIN CERTIFICATE----- +MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYDVQQGEwJIVTER +MA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jv +c2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o +dTAeFw0wOTA2MTYxMTMwMThaFw0yOTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UE +BwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUt +U3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvPkd6mJviZpWNwrZuuyjNA +fW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tccbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG +0IMZfcChEhyVbUr02MelTTMuhTlAdX4UfIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKA +pxn1ntxVUwOXewdI/5n7N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm +1HxdrtbCxkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1+rUC +AwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTLD8bf +QkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAbBgNVHREE +FDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqGSIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0o +lZMEyL/azXm4Q5DwpL7v8u8hmLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfX +I/OMn74dseGkddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 +tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c2Pm2G2JwCz02 +yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5tHMN1Rq41Bab2XD0h7lbwyYIi +LXpUq3DDfSJlgnCW +-----END CERTIFICATE----- + +E-Guven Kok Elektronik Sertifika Hizmet Saglayicisi +=================================================== +-----BEGIN CERTIFICATE----- +MIIDtjCCAp6gAwIBAgIQRJmNPMADJ72cdpW56tustTANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQG +EwJUUjEoMCYGA1UEChMfRWxla3Ryb25payBCaWxnaSBHdXZlbmxpZ2kgQS5TLjE8MDoGA1UEAxMz +ZS1HdXZlbiBLb2sgRWxla3Ryb25payBTZXJ0aWZpa2EgSGl6bWV0IFNhZ2xheWljaXNpMB4XDTA3 +MDEwNDExMzI0OFoXDTE3MDEwNDExMzI0OFowdTELMAkGA1UEBhMCVFIxKDAmBgNVBAoTH0VsZWt0 +cm9uaWsgQmlsZ2kgR3V2ZW5saWdpIEEuUy4xPDA6BgNVBAMTM2UtR3V2ZW4gS29rIEVsZWt0cm9u +aWsgU2VydGlmaWthIEhpem1ldCBTYWdsYXlpY2lzaTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC +AQoCggEBAMMSIJ6wXgBljU5Gu4Bc6SwGl9XzcslwuedLZYDBS75+PNdUMZTe1RK6UxYC6lhj71vY +8+0qGqpxSKPcEC1fX+tcS5yWCEIlKBHMilpiAVDV6wlTL/jDj/6z/P2douNffb7tC+Bg62nsM+3Y +jfsSSYMAyYuXjDtzKjKzEve5TfL0TW3H5tYmNwjy2f1rXKPlSFxYvEK+A1qBuhw1DADT9SN+cTAI +JjjcJRFHLfO6IxClv7wC90Nex/6wN1CZew+TzuZDLMN+DfIcQ2Zgy2ExR4ejT669VmxMvLz4Bcpk +9Ok0oSy1c+HCPujIyTQlCFzz7abHlJ+tiEMl1+E5YP6sOVkCAwEAAaNCMEAwDgYDVR0PAQH/BAQD +AgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFJ/uRLOU1fqRTy7ZVZoEVtstxNulMA0GCSqG +SIb3DQEBBQUAA4IBAQB/X7lTW2M9dTLn+sR0GstG30ZpHFLPqk/CaOv/gKlR6D1id4k9CnU58W5d +F4dvaAXBlGzZXd/aslnLpRCKysw5zZ/rTt5S/wzw9JKp8mxTq5vSR6AfdPebmvEvFZ96ZDAYBzwq +D2fK/A+JYZ1lpTzlvBNbCNvj/+27BrtqBrF6T2XGgv0enIu1De5Iu7i9qgi0+6N8y5/NkHZchpZ4 +Vwpm+Vganf2XKWDeEaaQHBkc7gGWIjQ0LpH5t8Qn0Xvmv/uARFoW5evg1Ao4vOSR49XrXMGs3xtq +fJ7lddK2l4fbzIcrQzqECK+rPNv3PGYxhrCdU3nt+CPeQuMtgvEP5fqX +-----END CERTIFICATE----- + +GlobalSign Root CA - R3 +======================= +-----BEGIN CERTIFICATE----- +MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xv +YmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh +bFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT +aWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln +bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWt +iHL8RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsTgHeMCOFJ +0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmmKPZpO/bLyCiR5Z2KYVc3 +rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zdQQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjl +OCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZXriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2 +xmmFghcCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE +FI/wS3+oLkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZURUm7 +lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMpjjM5RcOO5LlXbKr8 +EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK6fBdRoyV3XpYKBovHd7NADdBj+1E +bddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQXmcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18 +YIvDQVETI53O9zJrlAGomecsMx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7r +kpeDMdmztcpHWD9f +-----END CERTIFICATE----- + +TC TrustCenter Universal CA III +=============================== +-----BEGIN CERTIFICATE----- +MIID4TCCAsmgAwIBAgIOYyUAAQACFI0zFQLkbPQwDQYJKoZIhvcNAQEFBQAwezELMAkGA1UEBhMC +REUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxJDAiBgNVBAsTG1RDIFRydXN0Q2VudGVy +IFVuaXZlcnNhbCBDQTEoMCYGA1UEAxMfVEMgVHJ1c3RDZW50ZXIgVW5pdmVyc2FsIENBIElJSTAe +Fw0wOTA5MDkwODE1MjdaFw0yOTEyMzEyMzU5NTlaMHsxCzAJBgNVBAYTAkRFMRwwGgYDVQQKExNU +QyBUcnVzdENlbnRlciBHbWJIMSQwIgYDVQQLExtUQyBUcnVzdENlbnRlciBVbml2ZXJzYWwgQ0Ex +KDAmBgNVBAMTH1RDIFRydXN0Q2VudGVyIFVuaXZlcnNhbCBDQSBJSUkwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQDC2pxisLlxErALyBpXsq6DFJmzNEubkKLF5+cvAqBNLaT6hdqbJYUt +QCggbergvbFIgyIpRJ9Og+41URNzdNW88jBmlFPAQDYvDIRlzg9uwliT6CwLOunBjvvya8o84pxO +juT5fdMnnxvVZ3iHLX8LR7PH6MlIfK8vzArZQe+f/prhsq75U7Xl6UafYOPfjdN/+5Z+s7Vy+Eut +CHnNaYlAJ/Uqwa1D7KRTyGG299J5KmcYdkhtWyUB0SbFt1dpIxVbYYqt8Bst2a9c8SaQaanVDED1 +M4BDj5yjdipFtK+/fz6HP3bFzSreIMUWWMv5G/UPyw0RUmS40nZid4PxWJ//AgMBAAGjYzBhMB8G +A1UdIwQYMBaAFFbn4VslQ4Dg9ozhcbyO5YAvxEjiMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgEGMB0GA1UdDgQWBBRW5+FbJUOA4PaM4XG8juWAL8RI4jANBgkqhkiG9w0BAQUFAAOCAQEA +g8ev6n9NCjw5sWi+e22JLumzCecYV42FmhfzdkJQEw/HkG8zrcVJYCtsSVgZ1OK+t7+rSbyUyKu+ +KGwWaODIl0YgoGhnYIg5IFHYaAERzqf2EQf27OysGh+yZm5WZ2B6dF7AbZc2rrUNXWZzwCUyRdhK +BgePxLcHsU0GDeGl6/R1yrqc0L2z0zIkTO5+4nYES0lT2PLpVDP85XEfPRRclkvxOvIAu2y0+pZV +CIgJwcyRGSmwIC3/yzikQOEXvnlhgP8HA4ZMTnsGnxGGjYnuJ8Tb4rwZjgvDwxPHLQNjO9Po5KIq +woIIlBZU8O8fJ5AluA0OKBtHd0e9HKgl8ZS0Zg== +-----END CERTIFICATE----- + +Autoridad de Certificacion Firmaprofesional CIF A62634068 +========================================================= +-----BEGIN CERTIFICATE----- +MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UEBhMCRVMxQjBA +BgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2 +MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEyMzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIw +QAYDVQQDDDlBdXRvcmlkYWQgZGUgQ2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBB +NjI2MzQwNjgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDD +Utd9thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQMcas9UX4P +B99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefGL9ItWY16Ck6WaVICqjaY +7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15iNA9wBj4gGFrO93IbJWyTdBSTo3OxDqqH +ECNZXyAFGUftaI6SEspd/NYrspI8IM/hX68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyI +plD9amML9ZMWGxmPsu2bm8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctX +MbScyJCyZ/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirjaEbsX +LZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/TKI8xWVvTyQKmtFLK +bpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF6NkBiDkal4ZkQdU7hwxu+g/GvUgU +vzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVhOSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1Ud +EwEB/wQIMAYBAf8CAQEwDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNH +DhpkLzCBpgYDVR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp +cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBvACAAZABlACAA +bABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBlAGwAbwBuAGEAIAAwADgAMAAx +ADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx +51tkljYyGOylMnfX40S2wBEqgLk9am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qk +R71kMrv2JYSiJ0L1ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaP +T481PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS3a/DTg4f +Jl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5kSeTy36LssUzAKh3ntLFl +osS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF3dvd6qJ2gHN99ZwExEWN57kci57q13XR +crHedUTnQn3iV2t93Jm8PYMo6oCTjcVMZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoR +saS8I8nkvof/uZS2+F0gStRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTD +KCOM/iczQ0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQBjLMi +6Et8Vcad+qMUu2WFbm5PEn4KPJ2V +-----END CERTIFICATE----- + +Izenpe.com +========== +-----BEGIN CERTIFICATE----- +MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4MQswCQYDVQQG +EwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wHhcNMDcxMjEz +MTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMu +QS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ +03rKDx6sp4boFmVqscIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAK +ClaOxdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6HLmYRY2xU ++zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFXuaOKmMPsOzTFlUFpfnXC +PCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQDyCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxT +OTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbK +F7jJeodWLBoBHmy+E60QrLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK +0GqfvEyNBjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8Lhij+ +0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIBQFqNeb+Lz0vPqhbB +leStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+HMh3/1uaD7euBUbl8agW7EekFwID +AQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2luZm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+ +SVpFTlBFIFMuQS4gLSBDSUYgQTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBG +NjIgUzgxQzBBBgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx +MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0O +BBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUAA4ICAQB4pgwWSp9MiDrAyw6l +Fn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWblaQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbga +kEyrkgPH7UIBzg/YsfqikuFgba56awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8q +hT/AQKM6WfxZSzwoJNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Cs +g1lwLDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCTVyvehQP5 +aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGkLhObNA5me0mrZJfQRsN5 +nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJbUjWumDqtujWTI6cfSN01RpiyEGjkpTHC +ClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZo +Q0iy2+tzJOeRf1SktoA+naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1Z +WrOZyGlsQyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw== +-----END CERTIFICATE----- + +Chambers of Commerce Root - 2008 +================================ +-----BEGIN CERTIFICATE----- +MIIHTzCCBTegAwIBAgIJAKPaQn6ksa7aMA0GCSqGSIb3DQEBBQUAMIGuMQswCQYDVQQGEwJFVTFD +MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv +bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu +QS4xKTAnBgNVBAMTIENoYW1iZXJzIG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4MB4XDTA4MDgwMTEy +Mjk1MFoXDTM4MDczMTEyMjk1MFowga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNl +ZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQF +EwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJl +cnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQCvAMtwNyuAWko6bHiUfaN/Gh/2NdW928sNRHI+JrKQUrpjOyhYb6WzbZSm891kDFX29ufyIiKA +XuFixrYp4YFs8r/lfTJqVKAyGVn+H4vXPWCGhSRv4xGzdz4gljUha7MI2XAuZPeEklPWDrCQiorj +h40G072QDuKZoRuGDtqaCrsLYVAGUvGef3bsyw/QHg3PmTA9HMRFEFis1tPo1+XqxQEHd9ZR5gN/ +ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfLZEFHcpOrUMPrCXZk +NNI5t3YRCQ12RcSprj1qr7V9ZS+UWBDsXHyvfuK2GNnQm05aSd+pZgvMPMZ4fKecHePOjlO+Bd5g +D2vlGts/4+EhySnB8esHnFIbAURRPHsl18TlUlRdJQfKFiC4reRB7noI/plvg6aRArBsNlVq5331 +lubKgdaX8ZSD6e2wsWsSaR6s+12pxZjptFtYer49okQ6Y1nUCyXeG0+95QGezdIp1Z8XGQpvvwyQ +0wlf2eOKNcx5Wk0ZN5K3xMGtr/R5JJqyAQuxr1yW84Ay+1w9mPGgP0revq+ULtlVmhduYJ1jbLhj +ya6BXBg14JC7vjxPNyK5fuvPnnchpj04gftI2jE9K+OJ9dC1vX7gUMQSibMjmhAxhduub+84Mxh2 +EQIDAQABo4IBbDCCAWgwEgYDVR0TAQH/BAgwBgEB/wIBDDAdBgNVHQ4EFgQU+SSsD7K1+HnA+mCI +G8TZTQKeFxkwgeMGA1UdIwSB2zCB2IAU+SSsD7K1+HnA+mCIG8TZTQKeFxmhgbSkgbEwga4xCzAJ +BgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNlZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNh +bWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENh +bWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDiC +CQCj2kJ+pLGu2jAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUH +AgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAJASryI1 +wqM58C7e6bXpeHxIvj99RZJe6dqxGfwWPJ+0W2aeaufDuV2I6A+tzyMP3iU6XsxPpcG1Lawk0lgH +3qLPaYRgM+gQDROpI9CF5Y57pp49chNyM/WqfcZjHwj0/gF/JM8rLFQJ3uIrbZLGOU8W6jx+ekbU +RWpGqOt1glanq6B8aBMz9p0w8G8nOSQjKpD9kCk18pPfNKXG9/jvjA9iSnyu0/VU+I22mlaHFoI6 +M6taIgj3grrqLuBHmrS1RaMFO9ncLkVAO+rcf+g769HsJtg1pDDFOqxXnrN2pSB7+R5KBWIBpih1 +YJeSDW4+TTdDDZIVnBgizVGZoCkaPF+KMjNbMMeJL0eYD6MDxvbxrN8y8NmBGuScvfaAFPDRLLmF +9dijscilIeUcE5fuDr3fKanvNFNb0+RqE4QGtjICxFKuItLcsiFCGtpA8CnJ7AoMXOLQusxI0zcK +zBIKinmwPQN/aUv0NCB9szTqjktk9T79syNnFQ0EuPAtwQlRPLJsFfClI9eDdOTlLsn+mCdCxqvG +nrDQWzilm1DefhiYtUU79nm06PcaewaD+9CL2rvHvRirCG88gGtAPxkZumWK5r7VXNM21+9AUiRg +OGcEMeyP84LG3rlV8zsxkVrctQgVrXYlCg17LofiDKYGvCYQbTed7N14jHyAxfDZd0jQ +-----END CERTIFICATE----- + +Global Chambersign Root - 2008 +============================== +-----BEGIN CERTIFICATE----- +MIIHSTCCBTGgAwIBAgIJAMnN0+nVfSPOMA0GCSqGSIb3DQEBBQUAMIGsMQswCQYDVQQGEwJFVTFD +MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv +bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu +QS4xJzAlBgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwODAeFw0wODA4MDExMjMx +NDBaFw0zODA3MzExMjMxNDBaMIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUg +Y3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJ +QTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBD +aGFtYmVyc2lnbiBSb290IC0gMjAwODCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDf +VtPkOpt2RbQT2//BthmLN0EYlVJH6xedKYiONWwGMi5HYvNJBL99RDaxccy9Wglz1dmFRP+RVyXf +XjaOcNFccUMd2drvXNL7G706tcuto8xEpw2uIRU/uXpbknXYpBI4iRmKt4DS4jJvVpyR1ogQC7N0 +ZJJ0YPP2zxhPYLIj0Mc7zmFLmY/CDNBAspjcDahOo7kKrmCgrUVSY7pmvWjg+b4aqIG7HkF4ddPB +/gBVsIdU6CeQNR1MM62X/JcumIS/LMmjv9GYERTtY/jKmIhYF5ntRQOXfjyGHoiMvvKRhI9lNNgA +TH23MRdaKXoKGCQwoze1eqkBfSbW+Q6OWfH9GzO1KTsXO0G2Id3UwD2ln58fQ1DJu7xsepeY7s2M +H/ucUa6LcL0nn3HAa6x9kGbo1106DbDVwo3VyJ2dwW3Q0L9R5OP4wzg2rtandeavhENdk5IMagfe +Ox2YItaswTXbo6Al/3K1dh3ebeksZixShNBFks4c5eUzHdwHU1SjqoI7mjcv3N2gZOnm3b2u/GSF +HTynyQbehP9r6GsaPMWis0L7iwk+XwhSx2LE1AVxv8Rk5Pihg+g+EpuoHtQ2TS9x9o0o9oOpE9Jh +wZG7SMA0j0GMS0zbaRL/UJScIINZc+18ofLx/d33SdNDWKBWY8o9PeU1VlnpDsogzCtLkykPAgMB +AAGjggFqMIIBZjASBgNVHRMBAf8ECDAGAQH/AgEMMB0GA1UdDgQWBBS5CcqcHtvTbDprru1U8VuT +BjUuXjCB4QYDVR0jBIHZMIHWgBS5CcqcHtvTbDprru1U8VuTBjUuXqGBsqSBrzCBrDELMAkGA1UE +BhMCRVUxQzBBBgNVBAcTOk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJm +aXJtYS5jb20vYWRkcmVzcykxEjAQBgNVBAUTCUE4Mjc0MzI4NzEbMBkGA1UEChMSQUMgQ2FtZXJm +aXJtYSBTLkEuMScwJQYDVQQDEx5HbG9iYWwgQ2hhbWJlcnNpZ24gUm9vdCAtIDIwMDiCCQDJzdPp +1X0jzjAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0 +dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAICIf3DekijZBZRG +/5BXqfEv3xoNa/p8DhxJJHkn2EaqbylZUohwEurdPfWbU1Rv4WCiqAm57OtZfMY18dwY6fFn5a+6 +ReAJ3spED8IXDneRRXozX1+WLGiLwUePmJs9wOzL9dWCkoQ10b42OFZyMVtHLaoXpGNR6woBrX/s +dZ7LoR/xfxKxueRkf2fWIyr0uDldmOghp+G9PUIadJpwr2hsUF1Jz//7Dl3mLEfXgTpZALVza2Mg +9jFFCDkO9HB+QHBaP9BrQql0PSgvAm11cpUJjUhjxsYjV5KTXjXBjfkK9yydYhz2rXzdpjEetrHH +foUm+qRqtdpjMNHvkzeyZi99Bffnt0uYlDXA2TopwZ2yUDMdSqlapskD7+3056huirRXhOukP9Du +qqqHW2Pok+JrqNS4cnhrG+055F3Lm6qH1U9OAP7Zap88MQ8oAgF9mOinsKJknnn4SPIVqczmyETr +P3iZ8ntxPjzxmKfFGBI/5rsoM0LpRQp8bfKGeS/Fghl9CYl8slR2iK7ewfPM4W7bMdaTrpmg7yVq +c5iJWzouE4gev8CSlDQb4ye3ix5vQv/n6TebUB0tovkC7stYWDpxvGjjqsGvHCgfotwjZT+B6q6Z +09gwzxMNTxXJhLynSC34MCN32EZLeW32jO06f2ARePTpm67VVMB0gNELQp/B +-----END CERTIFICATE----- + +Go Daddy Root Certificate Authority - G2 +======================================== +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT +B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMu +MTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 +MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 +b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8G +A1UEAxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKDE6bFIEMBO4Tx5oVJnyfq +9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD ++qK+ihVqf94Lw7YZFAXK6sOoBJQ7RnwyDfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutd +fMh8+7ArU6SSYmlRJQVhGkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMl +NAJWJwGRtDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEAAaNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFDqahQcQZyi27/a9 +BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmXWWcDYfF+OwYxdS2hII5PZYe096ac +vNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r +5N9ss4UXnT3ZJE95kTXWXwTrgIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYV +N8Gb5DKj7Tjo2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO +LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI4uJEvlz36hz1 +-----END CERTIFICATE----- + +Starfield Root Certificate Authority - G2 +========================================= +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT +B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s +b2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVsZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0 +eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAw +DgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQg +VGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZpY2F0ZSBB +dXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3twQP89o/8ArFv +W59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMgnLRJdzIpVv257IzdIvpy3Cdhl+72WoTs +bhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNk +N3mSwOxGXn/hbVNMYq/NHwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7Nf +ZTD4p7dNdloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0HZbU +JtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0GCSqGSIb3DQEBCwUAA4IBAQARWfol +TwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjUsHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx +4mcujJUDJi5DnUox9g61DLu34jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUw +F5okxBDgBPfg8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K +pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1mMpYjn0q7pBZ +c2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 +-----END CERTIFICATE----- + +Starfield Services Root Certificate Authority - G2 +================================================== +-----BEGIN CERTIFICATE----- +MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgT +B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s +b2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRl +IEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNV +BAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxT +dGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMg +Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC +AQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2 +h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4Pa +hHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLP +LJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFB +rMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAwDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMA0GCSqG +SIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMIbw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPP +E95Dz+I0swSdHynVv/heyNXBve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTy +xQGjhdByPq1zqwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd +iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn0q23KXB56jza +YyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCNsSi6 +-----END CERTIFICATE----- + +AffirmTrust Commercial +====================== +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UEBhMCVVMxFDAS +BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMB4XDTEw +MDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly +bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6Eqdb +DuKPHx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yrba0F8PrV +C8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPALMeIrJmqbTFeurCA+ukV6 +BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1yHp52UKqK39c/s4mT6NmgTWvRLpUHhww +MmWd5jyTXlBOeuM61G7MGvv50jeuJCqrVwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNV +HQ4EFgQUnZPGU4teyq8/nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYGXUPG +hi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNjvbz4YYCanrHOQnDi +qX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivtZ8SOyUOyXGsViQK8YvxO8rUzqrJv +0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9gN53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0kh +sUlHRUe072o0EclNmsxZt9YCnlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= +-----END CERTIFICATE----- + +AffirmTrust Networking +====================== +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UEBhMCVVMxFDAS +BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMB4XDTEw +MDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly +bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SE +Hi3yYJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbuakCNrmreI +dIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRLQESxG9fhwoXA3hA/Pe24 +/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gb +h+0t+nvujArjqWaJGctB+d1ENmHP4ndGyH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNV +HQ4EFgQUBx/S55zawm6iQLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfOtDIu +UFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzuQY0x2+c06lkh1QF6 +12S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZLgo/bNjR9eUJtGxUAArgFU2HdW23 +WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4uolu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9 +/ZFvgrG+CJPbFEfxojfHRZ48x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= +-----END CERTIFICATE----- + +AffirmTrust Premium +=================== +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UEBhMCVVMxFDAS +BgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMB4XDTEwMDEy +OTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRy +dXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A +MIICCgKCAgEAxBLfqV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtn +BKAQJG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ+jjeRFcV +5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrSs8PhaJyJ+HoAVt70VZVs ++7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmd +GPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d770O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5R +p9EixAqnOEhss/n/fauGV+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NI +S+LI+H+SqHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S5u04 +6uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4IaC1nEWTJ3s7xgaVY5 +/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TXOwF0lkLgAOIua+rF7nKsu7/+6qqo ++Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYEFJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByv +MiPIs0laUZx2KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg +Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B8OWycvpEgjNC +6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQMKSOyARiqcTtNd56l+0OOF6S +L5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK ++4w1IX2COPKpVJEZNZOUbWo6xbLQu4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmV +BtWVyuEklut89pMFu+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFg +IxpHYoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8GKa1qF60 +g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaORtGdFNrHF+QFlozEJLUb +zxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6eKeC2uAloGRwYQw== +-----END CERTIFICATE----- + +AffirmTrust Premium ECC +======================= +-----BEGIN CERTIFICATE----- +MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMCVVMxFDASBgNV +BAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQcmVtaXVtIEVDQzAeFw0xMDAx +MjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJBgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1U +cnVzdDEgMB4GA1UEAwwXQWZmaXJtVHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAQNMF4bFZ0D0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQ +N8O9ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0GA1UdDgQW +BBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAK +BggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/VsaobgxCd05DhT1wV/GzTjxi+zygk8N53X +57hG8f2h4nECMEJZh0PUUd+60wkyWs6Iflc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKM +eQ== +-----END CERTIFICATE----- + +Certum Trusted Network CA +========================= +-----BEGIN CERTIFICATE----- +MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBMMSIwIAYDVQQK +ExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBUcnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIy +MTIwNzM3WhcNMjkxMjMxMTIwNzM3WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBU +ZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +MSIwIAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0BAQEFAAOC +AQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rHUV+rpDKmYYe2bg+G0jAC +l/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LMTXPb865Px1bVWqeWifrzq2jUI4ZZJ88J +J7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVUBBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4 +fOQtf/WsX+sWn7Et0brMkUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0 +cvW0QM8xAcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNVHRMB +Af8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNVHQ8BAf8EBAMCAQYw +DQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15ysHhE49wcrwn9I0j6vSrEuVUEtRCj +jSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfLI9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1 +mS1FhIrlQgnXdAIv94nYmem8J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5aj +Zt3hrvJBW8qYVoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI +03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= +-----END CERTIFICATE----- + +Certinomis - Autorité Racine +============================= +-----BEGIN CERTIFICATE----- +MIIFnDCCA4SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJGUjETMBEGA1UEChMK +Q2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxJjAkBgNVBAMMHUNlcnRpbm9taXMg +LSBBdXRvcml0w6kgUmFjaW5lMB4XDTA4MDkxNzA4Mjg1OVoXDTI4MDkxNzA4Mjg1OVowYzELMAkG +A1UEBhMCRlIxEzARBgNVBAoTCkNlcnRpbm9taXMxFzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMSYw +JAYDVQQDDB1DZXJ0aW5vbWlzIC0gQXV0b3JpdMOpIFJhY2luZTCCAiIwDQYJKoZIhvcNAQEBBQAD +ggIPADCCAgoCggIBAJ2Fn4bT46/HsmtuM+Cet0I0VZ35gb5j2CN2DpdUzZlMGvE5x4jYF1AMnmHa +wE5V3udauHpOd4cN5bjr+p5eex7Ezyh0x5P1FMYiKAT5kcOrJ3NqDi5N8y4oH3DfVS9O7cdxbwly +Lu3VMpfQ8Vh30WC8Tl7bmoT2R2FFK/ZQpn9qcSdIhDWerP5pqZ56XjUl+rSnSTV3lqc2W+HN3yNw +2F1MpQiD8aYkOBOo7C+ooWfHpi2GR+6K/OybDnT0K0kCe5B1jPyZOQE51kqJ5Z52qz6WKDgmi92N +jMD2AR5vpTESOH2VwnHu7XSu5DaiQ3XV8QCb4uTXzEIDS3h65X27uK4uIJPT5GHfceF2Z5c/tt9q +c1pkIuVC28+BA5PY9OMQ4HL2AHCs8MF6DwV/zzRpRbWT5BnbUhYjBYkOjUjkJW+zeL9i9Qf6lSTC +lrLooyPCXQP8w9PlfMl1I9f09bze5N/NgL+RiH2nE7Q5uiy6vdFrzPOlKO1Enn1So2+WLhl+HPNb +xxaOu2B9d2ZHVIIAEWBsMsGoOBvrbpgT1u449fCfDu/+MYHB0iSVL1N6aaLwD4ZFjliCK0wi1F6g +530mJ0jfJUaNSih8hp75mxpZuWW/Bd22Ql095gBIgl4g9xGC3srYn+Y3RyYe63j3YcNBZFgCQfna +4NH4+ej9Uji29YnfAgMBAAGjWzBZMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBQNjLZh2kS40RR9w759XkjwzspqsDAXBgNVHSAEEDAOMAwGCiqBegFWAgIAAQEwDQYJ +KoZIhvcNAQEFBQADggIBACQ+YAZ+He86PtvqrxyaLAEL9MW12Ukx9F1BjYkMTv9sov3/4gbIOZ/x +WqndIlgVqIrTseYyCYIDbNc/CMf4uboAbbnW/FIyXaR/pDGUu7ZMOH8oMDX/nyNTt7buFHAAQCva +R6s0fl6nVjBhK4tDrP22iCj1a7Y+YEq6QpA0Z43q619FVDsXrIvkxmUP7tCMXWY5zjKn2BCXwH40 +nJ+U8/aGH88bc62UeYdocMMzpXDn2NU4lG9jeeu/Cg4I58UvD0KgKxRA/yHgBcUn4YQRE7rWhh1B +CxMjidPJC+iKunqjo3M3NYB9Ergzd0A4wPpeMNLytqOx1qKVl4GbUu1pTP+A5FPbVFsDbVRfsbjv +JL1vnxHDx2TCDyhihWZeGnuyt++uNckZM6i4J9szVb9o4XVIRFb7zdNIu0eJOqxp9YDG5ERQL1TE +qkPFMTFYvZbF6nVsmnWxTfj3l/+WFvKXTej28xH5On2KOG4Ey+HTRRWqpdEdnV1j6CTmNhTih60b +WfVEm/vXd3wfAXBioSAaosUaKPQhA+4u2cGA6rnZgtZbdsLLO7XSAPCjDuGtbkD326C00EauFddE +wk01+dIL8hf2rGbVJLJP0RyZwG71fet0BLj5TXcJ17TPBzAJ8bgAVtkXFhYKK4bfjwEZGuW7gmP/ +vgt2Fl43N+bYdJeimUV5 +-----END CERTIFICATE----- + +Root CA Generalitat Valenciana +============================== +-----BEGIN CERTIFICATE----- +MIIGizCCBXOgAwIBAgIEO0XlaDANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJFUzEfMB0GA1UE +ChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290 +IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwHhcNMDEwNzA2MTYyMjQ3WhcNMjEwNzAxMTUyMjQ3 +WjBoMQswCQYDVQQGEwJFUzEfMB0GA1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UE +CxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGKqtXETcvIorKA3Qdyu0togu8M1JAJke+WmmmO3I2 +F0zo37i7L3bhQEZ0ZQKQUgi0/6iMweDHiVYQOTPvaLRfX9ptI6GJXiKjSgbwJ/BXufjpTjJ3Cj9B +ZPPrZe52/lSqfR0grvPXdMIKX/UIKFIIzFVd0g/bmoGlu6GzwZTNVOAydTGRGmKy3nXiz0+J2ZGQ +D0EbtFpKd71ng+CT516nDOeB0/RSrFOyA8dEJvt55cs0YFAQexvba9dHq198aMpunUEDEO5rmXte +JajCq+TA81yc477OMUxkHl6AovWDfgzWyoxVjr7gvkkHD6MkQXpYHYTqWBLI4bft75PelAgxAgMB +AAGjggM7MIIDNzAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAGGFmh0dHA6Ly9vY3NwLnBraS5n +dmEuZXMwEgYDVR0TAQH/BAgwBgEB/wIBAjCCAjQGA1UdIASCAiswggInMIICIwYKKwYBBAG/VQIB +ADCCAhMwggHoBggrBgEFBQcCAjCCAdoeggHWAEEAdQB0AG8AcgBpAGQAYQBkACAAZABlACAAQwBl +AHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAFIAYQDtAHoAIABkAGUAIABsAGEAIABHAGUAbgBlAHIA +YQBsAGkAdABhAHQAIABWAGEAbABlAG4AYwBpAGEAbgBhAC4ADQAKAEwAYQAgAEQAZQBjAGwAYQBy +AGEAYwBpAPMAbgAgAGQAZQAgAFAAcgDhAGMAdABpAGMAYQBzACAAZABlACAAQwBlAHIAdABpAGYA +aQBjAGEAYwBpAPMAbgAgAHEAdQBlACAAcgBpAGcAZQAgAGUAbAAgAGYAdQBuAGMAaQBvAG4AYQBt +AGkAZQBuAHQAbwAgAGQAZQAgAGwAYQAgAHAAcgBlAHMAZQBuAHQAZQAgAEEAdQB0AG8AcgBpAGQA +YQBkACAAZABlACAAQwBlAHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAHMAZQAgAGUAbgBjAHUAZQBu +AHQAcgBhACAAZQBuACAAbABhACAAZABpAHIAZQBjAGMAaQDzAG4AIAB3AGUAYgAgAGgAdAB0AHAA +OgAvAC8AdwB3AHcALgBwAGsAaQAuAGcAdgBhAC4AZQBzAC8AYwBwAHMwJQYIKwYBBQUHAgEWGWh0 +dHA6Ly93d3cucGtpLmd2YS5lcy9jcHMwHQYDVR0OBBYEFHs100DSHHgZZu90ECjcPk+yeAT8MIGV +BgNVHSMEgY0wgYqAFHs100DSHHgZZu90ECjcPk+yeAT8oWykajBoMQswCQYDVQQGEwJFUzEfMB0G +A1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScwJQYDVQQDEx5S +b290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmGCBDtF5WgwDQYJKoZIhvcNAQEFBQADggEBACRh +TvW1yEICKrNcda3FbcrnlD+laJWIwVTAEGmiEi8YPyVQqHxK6sYJ2fR1xkDar1CdPaUWu20xxsdz +Ckj+IHLtb8zog2EWRpABlUt9jppSCS/2bxzkoXHPjCpaF3ODR00PNvsETUlR4hTJZGH71BTg9J63 +NI8KJr2XXPR5OkowGcytT6CYirQxlyric21+eLj4iIlPsSKRZEv1UN4D2+XFducTZnV+ZfsBn5OH +iJ35Rld8TWCvmHMTI6QgkYH60GFmuH3Rr9ZvHmw96RH9qfmCIoaZM3Fa6hlXPZHNqcCjbgcTpsnt ++GijnsNacgmHKNHEc8RzGF9QdRYxn7fofMM= +-----END CERTIFICATE----- + +A-Trust-nQual-03 +================ +-----BEGIN CERTIFICATE----- +MIIDzzCCAregAwIBAgIDAWweMA0GCSqGSIb3DQEBBQUAMIGNMQswCQYDVQQGEwJBVDFIMEYGA1UE +Cgw/QS1UcnVzdCBHZXMuIGYuIFNpY2hlcmhlaXRzc3lzdGVtZSBpbSBlbGVrdHIuIERhdGVudmVy +a2VociBHbWJIMRkwFwYDVQQLDBBBLVRydXN0LW5RdWFsLTAzMRkwFwYDVQQDDBBBLVRydXN0LW5R +dWFsLTAzMB4XDTA1MDgxNzIyMDAwMFoXDTE1MDgxNzIyMDAwMFowgY0xCzAJBgNVBAYTAkFUMUgw +RgYDVQQKDD9BLVRydXN0IEdlcy4gZi4gU2ljaGVyaGVpdHNzeXN0ZW1lIGltIGVsZWt0ci4gRGF0 +ZW52ZXJrZWhyIEdtYkgxGTAXBgNVBAsMEEEtVHJ1c3QtblF1YWwtMDMxGTAXBgNVBAMMEEEtVHJ1 +c3QtblF1YWwtMDMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtPWFuA/OQO8BBC4SA +zewqo51ru27CQoT3URThoKgtUaNR8t4j8DRE/5TrzAUjlUC5B3ilJfYKvUWG6Nm9wASOhURh73+n +yfrBJcyFLGM/BWBzSQXgYHiVEEvc+RFZznF/QJuKqiTfC0Li21a8StKlDJu3Qz7dg9MmEALP6iPE +SU7l0+m0iKsMrmKS1GWH2WrX9IWf5DMiJaXlyDO6w8dB3F/GaswADm0yqLaHNgBid5seHzTLkDx4 +iHQF63n1k3Flyp3HaxgtPVxO59X4PzF9j4fsCiIvI+n+u33J4PTs63zEsMMtYrWacdaxaujs2e3V +cuy+VwHOBVWf3tFgiBCzAgMBAAGjNjA0MA8GA1UdEwEB/wQFMAMBAf8wEQYDVR0OBAoECERqlWdV +eRFPMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAVdRU0VlIXLOThaq/Yy/kgM40 +ozRiPvbY7meIMQQDbwvUB/tOdQ/TLtPAF8fGKOwGDREkDg6lXb+MshOWcdzUzg4NCmgybLlBMRmr +sQd7TZjTXLDR8KdCoLXEjq/+8T/0709GAHbrAvv5ndJAlseIOrifEXnzgGWovR/TeIGgUUw3tKZd +JXDRZslo+S4RFGjxVJgIrCaSD96JntT6s3kr0qN51OyLrIdTaEJMUVF0HhsnLuP1Hyl0Te2v9+GS +mYHovjrHF1D2t8b8m7CKa9aIA5GPBnc6hQLdmNVDeD/GMBWsm2vLV7eJUYs66MmEDNuxUCAKGkq6 +ahq97BvIxYSazQ== +-----END CERTIFICATE----- + +TWCA Root Certification Authority +================================= +-----BEGIN CERTIFICATE----- +MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJ +VEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMzWhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQG +EwJUVzESMBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NB +IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFEAcK0HMMx +QhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HHK3XLfJ+utdGdIzdjp9xC +oi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeXRfwZVzsrb+RH9JlF/h3x+JejiB03HFyP +4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/zrX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1r +y+UPizgN7gr8/g+YnzAx3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIB +BjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkqhkiG +9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeCMErJk/9q56YAf4lC +mtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdlsXebQ79NqZp4VKIV66IIArB6nCWlW +QtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62Dlhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVY +T0bf+215WfKEIlKuD8z7fDvnaspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocny +Yh0igzyXxfkZYiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== +-----END CERTIFICATE----- + +Security Communication RootCA2 +============================== +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc +U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMeU2VjdXJpdHkgQ29tbXVuaWNh +dGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoXDTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMC +SlAxJTAjBgNVBAoTHFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3Vy +aXR5IENvbW11bmljYXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +ANAVOVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGrzbl+dp++ ++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVMVAX3NuRFg3sUZdbcDE3R +3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQhNBqyjoGADdH5H5XTz+L62e4iKrFvlNV +spHEfbmwhRkGeC7bYRr6hfVKkaHnFtWOojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1K +EOtOghY6rCcMU/Gt1SSwawNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8 +QIH4D5csOPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEB +CwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpFcoJxDjrSzG+ntKEj +u/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXcokgfGT+Ok+vx+hfuzU7jBBJV1uXk +3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6q +tnRGEmyR7jTV7JqR50S+kDFy1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29 +mvVXIwAHIRc/SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 +-----END CERTIFICATE----- + +EC-ACC +====== +-----BEGIN CERTIFICATE----- +MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB8zELMAkGA1UE +BhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2VydGlmaWNhY2lvIChOSUYgUS0w +ODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYD +VQQLEyxWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UE +CxMsSmVyYXJxdWlhIEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMT +BkVDLUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQGEwJFUzE7 +MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5JRiBRLTA4MDExNzYt +SSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZl +Z2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJh +cnF1aWEgRW50aXRhdHMgZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUND +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R85iK +w5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm4CgPukLjbo73FCeT +ae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaVHMf5NLWUhdWZXqBIoH7nF2W4onW4 +HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNdQlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0a +E9jD2z3Il3rucO2n5nzbcc8tlGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw +0JDnJwIDAQABo4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4opvpXY0wfwYD +VR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBodHRwczovL3d3dy5jYXRjZXJ0 +Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5l +dC92ZXJhcnJlbCAwDQYJKoZIhvcNAQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJ +lF7W2u++AVtd0x7Y/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNa +Al6kSBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhyRp/7SNVe +l+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOSAgu+TGbrIP65y7WZf+a2 +E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xlnJ2lYJU6Un/10asIbvPuW/mIPX64b24D +5EI= +-----END CERTIFICATE----- + +Actalis Authentication Root CA +============================== +-----BEGIN CERTIFICATE----- +MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UEBhMCSVQxDjAM +BgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UE +AwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDky +MjExMjIwMlowazELMAkGA1UEBhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlz +IFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 +IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNvUTufClrJ +wkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX4ay8IMKx4INRimlNAJZa +by/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9KK3giq0itFZljoZUj5NDKd45RnijMCO6 +zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1f +YVEiVRvjRuPjPdA1YprbrxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2 +oxgkg4YQ51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2Fbe8l +EfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxeKF+w6D9Fz8+vm2/7 +hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4Fv6MGn8i1zeQf1xcGDXqVdFUNaBr8 +EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbnfpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5 +jF66CyCU3nuDuP/jVo23Eek7jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLY +iDrIn3hm7YnzezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt +ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQALe3KHwGCmSUyI +WOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70jsNjLiNmsGe+b7bAEzlgqqI0 +JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDzWochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKx +K3JCaKygvU5a2hi/a5iB0P2avl4VSM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+ +Xlff1ANATIGk0k9jpwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC +4yyXX04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+OkfcvHlXHo +2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7RK4X9p2jIugErsWx0Hbhz +lefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btUZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXem +OR/qnuOf0GZvBeyqdn6/axag67XH/JJULysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9 +vwGYT7JZVEc+NHt4bVaTLnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== +-----END CERTIFICATE----- + +Trustis FPS Root CA +=================== +-----BEGIN CERTIFICATE----- +MIIDZzCCAk+gAwIBAgIQGx+ttiD5JNM2a/fH8YygWTANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQG +EwJHQjEYMBYGA1UEChMPVHJ1c3RpcyBMaW1pdGVkMRwwGgYDVQQLExNUcnVzdGlzIEZQUyBSb290 +IENBMB4XDTAzMTIyMzEyMTQwNloXDTI0MDEyMTExMzY1NFowRTELMAkGA1UEBhMCR0IxGDAWBgNV +BAoTD1RydXN0aXMgTGltaXRlZDEcMBoGA1UECxMTVHJ1c3RpcyBGUFMgUm9vdCBDQTCCASIwDQYJ +KoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVQe547NdDfxIzNjpvto8A2mfRC6qc+gIMPpqdZh8mQ +RUN+AOqGeSoDvT03mYlmt+WKVoaTnGhLaASMk5MCPjDSNzoiYYkchU59j9WvezX2fihHiTHcDnlk +H5nSW7r+f2C/revnPDgpai/lkQtV/+xvWNUtyd5MZnGPDNcE2gfmHhjjvSkCqPoc4Vu5g6hBSLwa +cY3nYuUtsuvffM/bq1rKMfFMIvMFE/eC+XN5DL7XSxzA0RU8k0Fk0ea+IxciAIleH2ulrG6nS4zt +o3Lmr2NNL4XSFDWaLk6M6jKYKIahkQlBOrTh4/L68MkKokHdqeMDx4gVOxzUGpTXn2RZEm0CAwEA +AaNTMFEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBS6+nEleYtXQSUhhgtx67JkDoshZzAd +BgNVHQ4EFgQUuvpxJXmLV0ElIYYLceuyZA6LIWcwDQYJKoZIhvcNAQEFBQADggEBAH5Y//01GX2c +GE+esCu8jowU/yyg2kdbw++BLa8F6nRIW/M+TgfHbcWzk88iNVy2P3UnXwmWzaD+vkAMXBJV+JOC +yinpXj9WV4s4NvdFGkwozZ5BuO1WTISkQMi4sKUraXAEasP41BIy+Q7DsdwyhEQsb8tGD+pmQQ9P +8Vilpg0ND2HepZ5dfWWhPBfnqFVO76DH7cZEf1T1o+CP8HxVIo8ptoGj4W1OLBuAZ+ytIJ8MYmHV +l/9D7S3B2l0pKoU/rGXuhg8FjZBf3+6f9L/uHfuY5H+QK4R4EA5sSVPvFVtlRkpdr7r7OnIdzfYl +iB6XzCGcKQENZetX2fNXlrtIzYE= +-----END CERTIFICATE----- + +StartCom Certification Authority +================================ +-----BEGIN CERTIFICATE----- +MIIHhzCCBW+gAwIBAgIBLTANBgkqhkiG9w0BAQsFADB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN +U3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmlu +ZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0 +NjM3WhcNMzYwOTE3MTk0NjM2WjB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRk +LjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMg +U3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +ggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZkpMyONvg45iPwbm2xPN1y +o4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rfOQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/ +Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/CJi/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/d +eMotHweXMAEtcnn6RtYTKqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt +2PZE4XNiHzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMMAv+Z +6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w+2OqqGwaVLRcJXrJ +osmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/ +untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVc +UjyJthkqcwEKDwOzEmDyei+B26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT +37uMdBNSSwIDAQABo4ICEDCCAgwwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFE4L7xqkQFulF2mHMMo0aEPQQa7yMB8GA1UdIwQYMBaAFE4L7xqkQFulF2mHMMo0aEPQ +Qa7yMIIBWgYDVR0gBIIBUTCCAU0wggFJBgsrBgEEAYG1NwEBATCCATgwLgYIKwYBBQUHAgEWImh0 +dHA6Ly93d3cuc3RhcnRzc2wuY29tL3BvbGljeS5wZGYwNAYIKwYBBQUHAgEWKGh0dHA6Ly93d3cu +c3RhcnRzc2wuY29tL2ludGVybWVkaWF0ZS5wZGYwgc8GCCsGAQUFBwICMIHCMCcWIFN0YXJ0IENv +bW1lcmNpYWwgKFN0YXJ0Q29tKSBMdGQuMAMCAQEagZZMaW1pdGVkIExpYWJpbGl0eSwgcmVhZCB0 +aGUgc2VjdGlvbiAqTGVnYWwgTGltaXRhdGlvbnMqIG9mIHRoZSBTdGFydENvbSBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eSBQb2xpY3kgYXZhaWxhYmxlIGF0IGh0dHA6Ly93d3cuc3RhcnRzc2wuY29t +L3BvbGljeS5wZGYwEQYJYIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilTdGFydENvbSBG +cmVlIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQsFAAOCAgEAjo/n3JR5 +fPGFf59Jb2vKXfuM/gTFwWLRfUKKvFO3lANmMD+x5wqnUCBVJX92ehQN6wQOQOY+2IirByeDqXWm +N3PH/UvSTa0XQMhGvjt/UfzDtgUx3M2FIk5xt/JxXrAaxrqTi3iSSoX4eA+D/i+tLPfkpLst0OcN +Org+zvZ49q5HJMqjNTbOx8aHmNrs++myziebiMMEofYLWWivydsQD032ZGNcpRJvkrKTlMeIFw6T +tn5ii5B/q06f/ON1FE8qMt9bDeD1e5MNq6HPh+GlBEXoPBKlCcWw0bdT82AUuoVpaiF8H3VhFyAX +e2w7QSlc4axa0c2Mm+tgHRns9+Ww2vl5GKVFP0lDV9LdJNUso/2RjSe15esUBppMeyG7Oq0wBhjA +2MFrLH9ZXF2RsXAiV+uKa0hK1Q8p7MZAwC+ITGgBF3f0JBlPvfrhsiAhS90a2Cl9qrjeVOwhVYBs +HvUwyKMQ5bLmKhQxw4UtjJixhlpPiVktucf3HMiKf8CdBUrmQk9io20ppB+Fq9vlgcitKj1MXVuE +JnHEhV5xJMqlG2zYYdMa4FTbzrqpMrUi9nNBCV24F10OD5mQ1kfabwo6YigUZ4LZ8dCAWZvLMdib +D4x3TrVoivJs9iQOLWxwxXPR3hTQcY+203sC9uO41Alua551hDnmfyWl8kgAwKQB2j8= +-----END CERTIFICATE----- + +StartCom Certification Authority G2 +=================================== +-----BEGIN CERTIFICATE----- +MIIFYzCCA0ugAwIBAgIBOzANBgkqhkiG9w0BAQsFADBTMQswCQYDVQQGEwJJTDEWMBQGA1UEChMN +U3RhcnRDb20gTHRkLjEsMCoGA1UEAxMjU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg +RzIwHhcNMTAwMTAxMDEwMDAxWhcNMzkxMjMxMjM1OTAxWjBTMQswCQYDVQQGEwJJTDEWMBQGA1UE +ChMNU3RhcnRDb20gTHRkLjEsMCoGA1UEAxMjU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3Jp +dHkgRzIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2iTZbB7cgNr2Cu+EWIAOVeq8O +o1XJJZlKxdBWQYeQTSFgpBSHO839sj60ZwNq7eEPS8CRhXBF4EKe3ikj1AENoBB5uNsDvfOpL9HG +4A/LnooUCri99lZi8cVytjIl2bLzvWXFDSxu1ZJvGIsAQRSCb0AgJnooD/Uefyf3lLE3PbfHkffi +Aez9lInhzG7TNtYKGXmu1zSCZf98Qru23QumNK9LYP5/Q0kGi4xDuFby2X8hQxfqp0iVAXV16iul +Q5XqFYSdCI0mblWbq9zSOdIxHWDirMxWRST1HFSr7obdljKF+ExP6JV2tgXdNiNnvP8V4so75qbs +O+wmETRIjfaAKxojAuuKHDp2KntWFhxyKrOq42ClAJ8Em+JvHhRYW6Vsi1g8w7pOOlz34ZYrPu8H +vKTlXcxNnw3h3Kq74W4a7I/htkxNeXJdFzULHdfBR9qWJODQcqhaX2YtENwvKhOuJv4KHBnM0D4L +nMgJLvlblnpHnOl68wVQdJVznjAJ85eCXuaPOQgeWeU1FEIT/wCc976qUM/iUUjXuG+v+E5+M5iS +FGI6dWPPe/regjupuznixL0sAA7IF6wT700ljtizkC+p2il9Ha90OrInwMEePnWjFqmveiJdnxMa +z6eg6+OGCtP95paV1yPIN93EfKo2rJgaErHgTuixO/XWb/Ew1wIDAQABo0IwQDAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUS8W0QGutHLOlHGVuRjaJhwUMDrYwDQYJ +KoZIhvcNAQELBQADggIBAHNXPyzVlTJ+N9uWkusZXn5T50HsEbZH77Xe7XRcxfGOSeD8bpkTzZ+K +2s06Ctg6Wgk/XzTQLwPSZh0avZyQN8gMjgdalEVGKua+etqhqaRpEpKwfTbURIfXUfEpY9Z1zRbk +J4kd+MIySP3bmdCPX1R0zKxnNBFi2QwKN4fRoxdIjtIXHfbX/dtl6/2o1PXWT6RbdejF0mCy2wl+ +JYt7ulKSnj7oxXehPOBKc2thz4bcQ///If4jXSRK9dNtD2IEBVeC2m6kMyV5Sy5UGYvMLD0w6dEG +/+gyRr61M3Z3qAFdlsHB1b6uJcDJHgoJIIihDsnzb02CVAAgp9KP5DlUFy6NHrgbuxu9mk47EDTc +nIhT76IxW1hPkWLIwpqazRVdOKnWvvgTtZ8SafJQYqz7Fzf07rh1Z2AQ+4NQ+US1dZxAF7L+/Xld +blhYXzD8AK6vM8EOTmy6p6ahfzLbOOCxchcKK5HsamMm7YnUeMx0HgX4a/6ManY5Ka5lIxKVCCIc +l85bBu4M4ru8H0ST9tg4RQUh7eStqxK2A6RCLi3ECToDZ2mEmuFZkIoohdVddLHRDiBYmxOlsGOm +7XtH/UVVMKTumtTm4ofvmMkyghEpIrwACjFeLQ/Ajulrso8uBtjRkcfGEvRM/TAXw8HaOFvjqerm +obp573PYtlNXLfbQ4ddI +-----END CERTIFICATE----- + +Buypass Class 2 Root CA +======================= +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU +QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMiBSb290IENBMB4X +DTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1owTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1 +eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIw +DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1 +g1Lr6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPVL4O2fuPn +9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC911K2GScuVr1QGbNgGE41b +/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHxMlAQTn/0hpPshNOOvEu/XAFOBz3cFIqU +CqTqc/sLUegTBxj6DvEr0VQVfTzh97QZQmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeff +awrbD02TTqigzXsu8lkBarcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgI +zRFo1clrUs3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLiFRhn +Bkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRSP/TizPJhk9H9Z2vX +Uq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN9SG9dKpN6nIDSdvHXx1iY8f93ZHs +M+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxPAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD +VR0OBBYEFMmAd+BikoL1RpzzuvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF +AAOCAgEAU18h9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s +A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3tOluwlN5E40EI +osHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo+fsicdl9sz1Gv7SEr5AcD48S +aq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYd +DnkM/crqJIByw5c/8nerQyIKx+u2DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWD +LfJ6v9r9jv6ly0UsH8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0 +oyLQI+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK75t98biGC +wWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h3PFaTWwyI0PurKju7koS +CTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPzY11aWOIv4x3kqdbQCtCev9eBCfHJxyYN +rJgWVqA= +-----END CERTIFICATE----- + +Buypass Class 3 Root CA +======================= +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU +QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMyBSb290IENBMB4X +DTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFowTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1 +eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIw +DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRH +sJ8YZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3EN3coTRiR +5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9tznDDgFHmV0ST9tD+leh +7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX0DJq1l1sDPGzbjniazEuOQAnFN44wOwZ +ZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH +2xc519woe2v1n/MuwU8XKhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV +/afmiSTYzIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvSO1UQ +RwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D34xFMFbG02SrZvPA +Xpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgPK9Dx2hzLabjKSWJtyNBjYt1gD1iq +j6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD +VR0OBBYEFEe4zf/lb+74suwvTg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF +AAOCAgEAACAjQTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV +cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXSIGrs/CIBKM+G +uIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2HJLw5QY33KbmkJs4j1xrG0aG +Q0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsaO5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8 +ZORK15FTAaggiG6cX0S5y2CBNOxv033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2 +KSb12tjE8nVhz36udmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz +6MkEkbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg413OEMXbug +UZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvDu79leNKGef9JOxqDDPDe +eOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq4/g7u9xN12TyUb7mqqta6THuBrxzvxNi +Cp/HuZc= +-----END CERTIFICATE----- diff --git a/packages/jquery/plugins/jquery.validate.js b/packages/jquery/plugins/jquery.validate.js index 9854efff2..deb962e74 100644 --- a/packages/jquery/plugins/jquery.validate.js +++ b/packages/jquery/plugins/jquery.validate.js @@ -301,6 +301,8 @@ $.extend($.validator, { function delegate(event) { var validator = $.data(this[0].form, "validator"), eventType = "on" + event.type.replace(/^validate/, ""); + if (!validator) + return; validator.settings[eventType] && validator.settings[eventType].call(validator, this[0] ); } $(this.currentForm) diff --git a/packages/kcfinder/integration/civicrm.php b/packages/kcfinder/integration/civicrm.php index bb074a8c3..d6b7a4241 100644 --- a/packages/kcfinder/integration/civicrm.php +++ b/packages/kcfinder/integration/civicrm.php @@ -36,32 +36,104 @@ * */ -function CheckAuthentication() { - - static $authenticated; - if ( !isset( $authenticated ) ) { - $current_cwd = getcwd(); - $civicrm_root = dirname(dirname(getcwd())); - $authenticated = true; - require_once "{$civicrm_root}/civicrm.config.php"; - require_once 'CRM/Core/Config.php'; - - $config = CRM_Core_Config::singleton(); - - if ( !isset($_SESSION['KCFINDER'] ) ) { - $_SESSION['KCFINDER'] = array(); - } - - $_SESSION['KCFINDER']['disabled'] = false; - $_SESSION['KCFINDER']['uploadURL'] = $config->imageUploadURL; - $_SESSION['KCFINDER']['uploadDir'] = $config->imageUploadDir; - - chdir( $current_cwd ); - return true; +function checkAuthentication() { + static $authenticated; + if ( !isset( $authenticated ) ) { + $current_cwd = getcwd(); + $civicrm_root = dirname(dirname(getcwd())); + $authenticated = false; + require_once "{$civicrm_root}/civicrm.config.php"; + require_once 'CRM/Core/Config.php'; + + $config = CRM_Core_Config::singleton(); + + if ( !isset($_SESSION['KCFINDER'] ) ) { + $_SESSION['KCFINDER'] = array(); + } + + $auth_function = null; + switch ($config->userFramework) { + case 'Drupal': + case 'Drupal6': + $auth_function = 'authenticate_drupal'; + break; + case 'Joomla': + $auth_function = 'authenticate_joomla'; + break; + case 'WordPress': + $auth_function = 'authenticate_wordpress'; + break; + } + if(!$auth_function($config)) { + CRM_Core_Error::fatal(ts("You must be logged in with proper permissions to edit, add, or delete uploaded images.")); } + + $_SESSION['KCFINDER']['disabled'] = false; + $_SESSION['KCFINDER']['uploadURL'] = $config->imageUploadURL; + $_SESSION['KCFINDER']['uploadDir'] = $config->imageUploadDir; + + $authenticated = true; + chdir( $current_cwd ); + } +} + +/** + * If the user is already logged into Drupal, bootstrap + * drupal with this user's permissions. Thanks to integrate/drupal.php + * script for hints on how to do this. + **/ +function authenticate_drupal($config) { + global $base_url; + $base_root = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http'; + $base_url = $base_root .= '://'. preg_replace('/[^a-z0-9-:._]/i', '', $_SERVER['HTTP_HOST']); + + if ($dir = trim(dirname($_SERVER['SCRIPT_NAME']), '\,/')) { + $base_path = "/$dir"; + $base_url .= $base_path; + } + + // correct base_url so it points to Drupal root + $pos = strpos($base_url, '/sites/'); + $base_url = substr($base_url, 0, $pos); // drupal root absolute url + + CRM_Utils_System::loadBootStrap(CRM_Core_DAO::$_nullArray,true,false); + + // check if user has access permission... + if (CRM_Core_Permission::check('access CiviCRM')) { + return true; + } + return false; +} + +function authenticate_wordpress($config) { + // make sure user has access to civicrm + CRM_Utils_System::loadBootStrap(); + if (CRM_Core_Permission::check('access CiviCRM')) { + return true; + } + return false; +} + +function authenticate_joomla($config) { + // make sure only logged in user can see upload / view images + $joomlaBase = dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__)))))))); + + define( '_JEXEC', 1 ); + define('JPATH_BASE', $joomlaBase); + define( 'DS', DIRECTORY_SEPARATOR ); + require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' ); + require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' ); + + $mainframe =& JFactory::getApplication('administrator'); + $mainframe->initialise(); + + if (JFactory::getUser()->id == 0) { + return false; + } + return true; } -CheckAuthentication( ); +checkAuthentication( ); spl_autoload_register('__autoload'); diff --git a/sql/civicrm.mysql b/sql/civicrm.mysql index 0cde79ad0..96ef030cc 100644 --- a/sql/civicrm.mysql +++ b/sql/civicrm.mysql @@ -187,6 +187,7 @@ DROP TABLE IF EXISTS `civicrm_payment_processor`; DROP TABLE IF EXISTS `civicrm_option_group`; DROP TABLE IF EXISTS `civicrm_navigation`; DROP TABLE IF EXISTS `civicrm_mapping`; +DROP TABLE IF EXISTS `civicrm_managed`; DROP TABLE IF EXISTS `civicrm_mail_settings`; DROP TABLE IF EXISTS `civicrm_location_type`; DROP TABLE IF EXISTS `civicrm_job_log`; @@ -487,6 +488,36 @@ CREATE TABLE `civicrm_mail_settings` ( +) ENGINE=InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ; + +-- /******************************************************* +-- * +-- * civicrm_managed +-- * +-- * List of declaratively managed objects +-- * +-- *******************************************************/ +CREATE TABLE `civicrm_managed` ( + + + `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Surrogate Key', + `module` varchar(127) NOT NULL COMMENT 'Name of the module which declared this object', + `name` varchar(127) COMMENT 'Symbolic name used by the module to identify the object', + `entity_type` varchar(64) NOT NULL COMMENT 'API entity type', + `entity_id` int unsigned NOT NULL COMMENT 'Foreign key to the referenced item.' +, + PRIMARY KEY ( `id` ) + + , INDEX `UI_managed_module_name`( + `module` + , `name` + ) + , INDEX `UI_managed_entity`( + `entity_type` + , `entity_id` + ) + + ) ENGINE=InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ; -- /******************************************************* diff --git a/sql/civicrm_data.mysql b/sql/civicrm_data.mysql index 6d5b77deb..62fbbc783 100644 --- a/sql/civicrm_data.mysql +++ b/sql/civicrm_data.mysql @@ -4621,7 +4621,7 @@ VALUES (@option_group_id_act, 'Canvass', 29, 'Canvass', NULL,0, 0, 28, '', 0, 1, 1, @campaignCompId, NULL), (@option_group_id_act, 'PhoneBank', 30, 'PhoneBank', NULL,0, 0, 29, '', 0, 1, 1, @campaignCompId, NULL), (@option_group_id_act, 'WalkList', 31, 'WalkList', NULL,0, 0, 30, '', 0, 1, 1, @campaignCompId, NULL), - (@option_group_id_act, 'Petition', 32, 'Petition', NULL,0, 0, 31, '', 0, 1, 1, @campaignCompId, NULL), + (@option_group_id_act, 'Petition Signature', 32, 'Petition', NULL,0, 0, 31, '', 0, 1, 1, @campaignCompId, NULL), (@option_group_id_act, 'BULK SMS', 34, 'BULK SMS', NULL, 1, NULL, 34, 'BULK SMS', 0, 1, 1, NULL, NULL), -- Activity Types for CiviCampaign CiviCase @@ -4856,12 +4856,9 @@ VALUES (@option_group_id_report, '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, @campaignCompId, NULL), (@option_group_id_report, '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, @contributeCompId, NULL), (@option_group_id_report , '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, @pledgeCompId, NULL), - (@option_group_id_report , 'Contribution History By Relationship Report', '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, @contributeCompId, NULL), + (@option_group_id_report , 'Contribution History By Relationship Report', '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, @contributeCompId, NULL), (@option_group_id_report, '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, @mailCompId, NULL), (@option_group_id_report, '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, @memberCompId, NULL), - (@option_group_id_report, 'Price Set Line Item report', 'price/lineitem', 'CRM_Report_Form_Price_Lineitem', NULL, 0, NULL, 49, 'Price Set Line Item report', 0, 0, 1, @contributeCompId, NULL), - (@option_group_id_report, 'Contribution Report with Price Set detail', 'price/contributionbased', 'CRM_Report_Form_Price_Contributionbased', NULL, 0, NULL, 50, 'Contribution Report with Price Set detail', 0, 0, 1, @contributeCompId, NULL), - (@option_group_id_report, 'Participant Report with Price Set detail', 'price/lineitemparticipant', 'CRM_Report_Form_Price_Lineitemparticipant', NULL, 0, NULL, 51, 'Participant Report with Price Set detail', 0, 0, 1, @eventCompId, NULL), (@option_group_id_acs, 'Scheduled', 1, 'Scheduled', NULL, 0, 1, 1, NULL, 0, 1, 1, NULL, NULL), (@option_group_id_acs, 'Completed', 2, 'Completed', NULL, 0, NULL, 2, NULL, 0, 1, 1, NULL, NULL), @@ -5758,11 +5755,11 @@ VALUES INSERT INTO civicrm_uf_field ( uf_group_id, field_name, is_required, is_reserved, weight, visibility, in_selector, is_searchable, location_type_id, label, field_type, help_post, phone_type_id ) VALUES ( 1, 'first_name', 1, 0, 1, 'User and User Admin Only', 0, 0, NULL, 'First Name', 'Individual', NULL, NULL), - ( 1, 'last_name', 1, 0, 2, 'User and User Admin Only', 0, 0, NULL, 'Last Name', 'Individual', 'First and last name will be shared with other visitors to the site.', NULL), + ( 1, 'last_name', 1, 0, 2, 'User and User Admin Only', 0, 0, NULL, 'Last Name', 'Individual', NULL, NULL), ( 1, 'street_address', 0, 0, 3, 'User and User Admin Only', 0, 0, 1, 'Street Address (Home)', 'Contact', NULL, NULL), ( 1, 'city', 0, 0, 4, 'User and User Admin Only', 0, 0, 1, 'City (Home)', 'Contact', NULL, NULL), ( 1, 'postal_code', 0, 0, 5, 'User and User Admin Only', 0, 0, 1, 'Postal Code (Home)', 'Contact', NULL, NULL), - ( 1, 'country', 0, 0, 6, 'User and User Admin Only', 0, 0, 1, 'Country (Home)', 'Contact', 'Your state/province and country of residence will be shared with others so folks can find others in their community.', NULL), + ( 1, 'country', 0, 0, 6, 'User and User Admin Only', 0, 0, 1, 'Country (Home)', 'Contact', NULL, NULL), ( 1, 'state_province', 0, 0, 7, 'User and User Admin Only', 0, 0, 1, 'State (Home)', 'Contact', NULL, NULL), ( 2, 'first_name', 1, 0, 1, 'User and User Admin Only', 0, 0, NULL, 'First Name', 'Individual', NULL, NULL), ( 2, 'last_name', 1, 0, 2, 'User and User Admin Only', 0, 0, NULL, 'Last Name', 'Individual', NULL, NULL), @@ -18490,7 +18487,7 @@ INSERT INTO civicrm_setting ( domain_id, contact_id, is_domain, group_name, name, value ) VALUES ( @domainID, NULL, 1, 'CiviCRM Preferences', 'contact_view_options', 's:28:"123456789101113";' ), - ( @domainID, NULL, 1, 'CiviCRM Preferences', 'contact_edit_options', 's:25:"1234567891011";' ), + ( @domainID, NULL, 1, 'CiviCRM Preferences', 'contact_edit_options', 's:22:"12345678911";' ), ( @domainID, NULL, 1, 'CiviCRM Preferences', 'advanced_search_options', 's:46:"123456789101112131516171819";' ), ( @domainID, NULL, 1, 'CiviCRM Preferences', 'user_dashboard_options', 's:15:"1234578";' ), ( @domainID, NULL, 1, 'CiviCRM Preferences', 'address_options', 's:23:"123456891011";' ), @@ -18538,7 +18535,8 @@ VALUES ( @domainID, NULL, 1, 'Directory Preferences', 'extensionsDir' , NULL ), ( @domainID, NULL, 1, 'URL Preferences', 'userFrameworkResourceURL' , NULL ), ( @domainID, NULL, 1, 'URL Preferences', 'imageUploadURL' , NULL ), - ( @domainID, NULL, 1, 'URL Preferences', 'customCSSURL' , NULL ); + ( @domainID, NULL, 1, 'URL Preferences', 'customCSSURL' , NULL ), + ( @domainID, NULL, 1, 'URL Preferences', 'extensionsURL' , NULL ); -- mail settings @@ -19447,4 +19445,4 @@ INSERT INTO civicrm_navigation VALUES ( @domainID, CONCAT('civicrm/report/instance/', @instanceID,'&reset=1'), 'Mailing Detail Report', 'Mailing Detail Report', 'administer CiviMail', 'OR', @reportlastID, '1', NULL, @instanceID+2 ); UPDATE civicrm_report_instance SET navigation_id = LAST_INSERT_ID() WHERE id = @instanceID; - UPDATE civicrm_domain SET version = '4.2.beta4'; \ No newline at end of file + UPDATE civicrm_domain SET version = '4.2.0'; \ No newline at end of file diff --git a/sql/civicrm_drop.mysql b/sql/civicrm_drop.mysql index 1c0060a7d..dc9469f8d 100644 --- a/sql/civicrm_drop.mysql +++ b/sql/civicrm_drop.mysql @@ -162,6 +162,7 @@ DROP TABLE IF EXISTS `civicrm_payment_processor`; DROP TABLE IF EXISTS `civicrm_option_group`; DROP TABLE IF EXISTS `civicrm_navigation`; DROP TABLE IF EXISTS `civicrm_mapping`; +DROP TABLE IF EXISTS `civicrm_managed`; DROP TABLE IF EXISTS `civicrm_mail_settings`; DROP TABLE IF EXISTS `civicrm_location_type`; DROP TABLE IF EXISTS `civicrm_job_log`; diff --git a/sql/civicrm_generated.mysql b/sql/civicrm_generated.mysql index e467b919d..5f4ed335e 100644 --- a/sql/civicrm_generated.mysql +++ b/sql/civicrm_generated.mysql @@ -1,8 +1,8 @@ --- MySQL dump 10.13 Distrib 5.1.60, for apple-darwin11.2.0 (i386) +-- MySQL dump 10.13 Distrib 5.1.63, for apple-darwin11.4.0 (i386) -- -- Host: localhost Database: civicrm -- ------------------------------------------------------ --- Server version 5.1.60 +-- Server version 5.1.63-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; @@ -87,7 +87,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_activity` WRITE; /*!40000 ALTER TABLE `civicrm_activity` DISABLE KEYS */; -INSERT INTO `civicrm_activity` (`id`, `source_contact_id`, `source_record_id`, `activity_type_id`, `subject`, `activity_date_time`, `duration`, `location`, `phone_id`, `phone_number`, `details`, `status_id`, `priority_id`, `parent_id`, `is_test`, `medium_id`, `is_auto`, `relationship_id`, `is_current_revision`, `original_id`, `result`, `is_deleted`, `campaign_id`, `engagement_level`, `weight`) VALUES (1,50,NULL,8,'Subject for Membership Renewal','2011-10-25 08:55:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(2,50,NULL,8,'Subject for Membership Renewal','2012-04-15 04:31:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(3,50,NULL,9,'Subject for Tell a Friend','2012-02-10 03:43:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(4,50,NULL,9,'Subject for Tell a Friend','2012-06-10 04:24:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(5,50,NULL,7,'Subject for Membership Signup','2012-05-08 07:40:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(6,50,NULL,7,'Subject for Membership Signup','2011-12-03 10:08:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(7,50,NULL,10,'Subject for Pledge Acknowledgment','2012-07-12 08:53:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(8,50,NULL,8,'Subject for Membership Renewal','2011-10-05 11:18:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(9,50,NULL,8,'Subject for Membership Renewal','2012-06-14 08:45:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(10,50,NULL,7,'Subject for Membership Signup','2011-10-20 08:00:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(11,50,NULL,8,'Subject for Membership Renewal','2011-08-31 02:39:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(12,50,NULL,7,'Subject for Membership Signup','2012-01-03 07:27:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(13,50,NULL,8,'Subject for Membership Renewal','2012-06-28 08:49:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(14,50,NULL,10,'Subject for Pledge Acknowledgment','2011-08-04 06:00:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(15,50,NULL,7,'Subject for Membership Signup','2012-03-14 01:01:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(16,50,NULL,10,'Subject for Pledge Acknowledgment','2012-05-01 10:34:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(17,50,NULL,9,'Subject for Tell a Friend','2011-11-19 12:04:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(18,50,NULL,10,'Subject for Pledge Acknowledgment','2012-06-20 09:27:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(19,50,NULL,9,'Subject for Tell a Friend','2011-10-11 04:41:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(20,50,NULL,8,'Subject for Membership Renewal','2012-05-24 05:09:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(21,50,NULL,7,'Subject for Membership Signup','2011-08-06 06:55:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(22,50,NULL,10,'Subject for Pledge Acknowledgment','2011-12-08 12:35:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(23,50,NULL,7,'Subject for Membership Signup','2012-03-29 11:49:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(24,50,NULL,10,'Subject for Pledge Acknowledgment','2011-10-19 04:54:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(25,50,NULL,9,'Subject for Tell a Friend','2012-03-10 08:33:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(26,50,NULL,7,'Subject for Membership Signup','2012-02-11 10:28:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(27,50,NULL,9,'Subject for Tell a Friend','2012-01-26 02:44:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(28,50,NULL,7,'Subject for Membership Signup','2012-05-30 07:50:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(29,50,NULL,7,'Subject for Membership Signup','2011-12-02 06:33:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(30,50,NULL,7,'Subject for Membership Signup','2012-02-09 09:45:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(31,50,NULL,10,'Subject for Pledge Acknowledgment','2011-07-23 10:43:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(32,50,NULL,9,'Subject for Tell a Friend','2011-11-07 05:52:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(33,50,NULL,7,'Subject for Membership Signup','2012-07-11 03:41:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(34,50,NULL,7,'Subject for Membership Signup','2012-02-14 05:26:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(35,50,NULL,7,'Subject for Membership Signup','2012-03-07 12:55:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(36,50,NULL,10,'Subject for Pledge Acknowledgment','2011-11-01 11:41:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(37,50,NULL,7,'Subject for Membership Signup','2012-03-09 10:15:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(38,50,NULL,9,'Subject for Tell a Friend','2011-07-22 05:35:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(39,50,NULL,8,'Subject for Membership Renewal','2012-01-09 04:04:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(40,50,NULL,8,'Subject for Membership Renewal','2011-07-27 04:35:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(41,50,NULL,7,'Subject for Membership Signup','2011-10-04 11:43:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(42,50,NULL,8,'Subject for Membership Renewal','2011-09-04 02:06:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(43,50,NULL,7,'Subject for Membership Signup','2011-10-16 05:55:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(44,50,NULL,10,'Subject for Pledge Acknowledgment','2011-08-08 06:35:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(45,50,NULL,9,'Subject for Tell a Friend','2011-12-04 02:17:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(46,50,NULL,9,'Subject for Tell a Friend','2011-07-30 06:47:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(47,50,NULL,10,'Subject for Pledge Acknowledgment','2012-03-05 08:26:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(48,50,NULL,8,'Subject for Membership Renewal','2012-06-07 11:59:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(49,50,NULL,10,'Subject for Pledge Acknowledgment','2011-12-19 02:53:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(50,50,NULL,8,'Subject for Membership Renewal','2012-06-05 10:28:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(51,50,NULL,10,'Subject for Pledge Acknowledgment','2012-05-26 06:01:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(52,50,NULL,10,'Subject for Pledge Acknowledgment','2012-02-19 06:48:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(53,50,NULL,7,'Subject for Membership Signup','2012-02-23 05:04:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(54,50,NULL,10,'Subject for Pledge Acknowledgment','2012-03-29 12:25:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(55,50,NULL,7,'Subject for Membership Signup','2011-08-28 03:44:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(56,50,NULL,8,'Subject for Membership Renewal','2011-11-15 10:59:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(57,50,NULL,10,'Subject for Pledge Acknowledgment','2011-09-26 05:22:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(58,50,NULL,9,'Subject for Tell a Friend','2012-03-18 04:07:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(59,50,NULL,7,'Subject for Membership Signup','2012-07-18 04:15:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(60,50,NULL,10,'Subject for Pledge Acknowledgment','2011-10-13 08:42:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(61,50,NULL,7,'Subject for Membership Signup','2011-09-08 01:21:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(62,50,NULL,9,'Subject for Tell a Friend','2012-02-03 08:24:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(63,50,NULL,10,'Subject for Pledge Acknowledgment','2012-03-13 06:46:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(64,50,NULL,8,'Subject for Membership Renewal','2012-06-05 09:05:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(65,50,NULL,8,'Subject for Membership Renewal','2011-12-25 04:01:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(66,50,NULL,7,'Subject for Membership Signup','2011-09-01 10:29:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(67,50,NULL,8,'Subject for Membership Renewal','2011-09-04 01:29:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(68,50,NULL,9,'Subject for Tell a Friend','2012-06-25 10:32:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(69,50,NULL,9,'Subject for Tell a Friend','2012-01-06 12:24:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(70,50,NULL,7,'Subject for Membership Signup','2011-08-14 02:33:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(71,50,NULL,10,'Subject for Pledge Acknowledgment','2012-05-31 10:05:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(72,50,NULL,9,'Subject for Tell a Friend','2012-04-07 04:53:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(73,50,NULL,10,'Subject for Pledge Acknowledgment','2011-09-12 05:45:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(74,50,NULL,8,'Subject for Membership Renewal','2011-08-11 03:08:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(75,50,NULL,7,'Subject for Membership Signup','2011-08-13 08:43:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(76,50,NULL,8,'Subject for Membership Renewal','2011-11-29 04:47:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(77,50,NULL,10,'Subject for Pledge Acknowledgment','2012-07-07 10:59:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(78,50,NULL,9,'Subject for Tell a Friend','2012-06-06 07:47:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(79,50,NULL,8,'Subject for Membership Renewal','2011-12-15 09:20:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(80,50,NULL,9,'Subject for Tell a Friend','2011-11-20 06:45:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(81,50,NULL,7,'Subject for Membership Signup','2011-09-04 09:39:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(82,50,NULL,10,'Subject for Pledge Acknowledgment','2011-10-31 02:00:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(83,50,NULL,7,'Subject for Membership Signup','2011-09-10 04:33:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(84,50,NULL,10,'Subject for Pledge Acknowledgment','2012-04-18 07:53:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(85,50,NULL,9,'Subject for Tell a Friend','2012-02-17 06:03:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(86,50,NULL,8,'Subject for Membership Renewal','2011-09-01 10:50:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(87,50,NULL,9,'Subject for Tell a Friend','2011-11-04 02:46:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(88,50,NULL,7,'Subject for Membership Signup','2011-10-11 09:11:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(89,50,NULL,7,'Subject for Membership Signup','2011-11-30 11:04:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(90,50,NULL,7,'Subject for Membership Signup','2012-01-18 08:21:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(91,50,NULL,10,'Subject for Pledge Acknowledgment','2012-04-16 06:15:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(92,50,NULL,8,'Subject for Membership Renewal','2012-02-15 07:27:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(93,50,NULL,8,'Subject for Membership Renewal','2012-02-15 01:53:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(94,50,NULL,8,'Subject for Membership Renewal','2012-01-19 08:38:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(95,50,NULL,9,'Subject for Tell a Friend','2011-08-05 04:52:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(96,50,NULL,10,'Subject for Pledge Acknowledgment','2012-01-05 05:36:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(97,50,NULL,7,'Subject for Membership Signup','2012-02-03 07:17:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(98,50,NULL,7,'Subject for Membership Signup','2012-05-30 10:15:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(99,50,NULL,9,'Subject for Tell a Friend','2011-10-06 05:34:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(100,50,NULL,7,'Subject for Membership Signup','2011-12-25 08:04:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(101,50,NULL,8,'Subject for Membership Renewal','2012-03-06 01:06:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(102,50,NULL,9,'Subject for Tell a Friend','2011-09-10 05:04:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(103,50,NULL,7,'Subject for Membership Signup','2012-01-19 12:36:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(104,50,NULL,7,'Subject for Membership Signup','2011-08-17 09:48:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(105,50,NULL,10,'Subject for Pledge Acknowledgment','2012-05-06 02:26:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(106,50,NULL,8,'Subject for Membership Renewal','2012-05-30 10:25:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(107,50,NULL,10,'Subject for Pledge Acknowledgment','2012-03-03 09:24:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(108,50,NULL,10,'Subject for Pledge Acknowledgment','2011-11-27 09:27:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(109,50,NULL,8,'Subject for Membership Renewal','2012-02-06 11:21:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(110,50,NULL,10,'Subject for Pledge Acknowledgment','2012-03-31 10:47:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(111,50,NULL,9,'Subject for Tell a Friend','2011-07-24 10:25:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(112,50,NULL,8,'Subject for Membership Renewal','2011-11-23 10:15:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(113,50,NULL,8,'Subject for Membership Renewal','2011-10-04 01:50:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(114,50,NULL,9,'Subject for Tell a Friend','2011-08-07 02:43:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(115,50,NULL,7,'Subject for Membership Signup','2011-10-04 04:25:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(116,50,NULL,10,'Subject for Pledge Acknowledgment','2011-08-18 05:43:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(117,50,NULL,7,'Subject for Membership Signup','2011-08-06 06:32:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(118,50,NULL,9,'Subject for Tell a Friend','2011-07-24 09:16:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(119,50,NULL,10,'Subject for Pledge Acknowledgment','2011-10-12 06:43:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(120,50,NULL,8,'Subject for Membership Renewal','2012-01-13 02:57:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(121,50,NULL,7,'Subject for Membership Signup','2011-08-03 05:08:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(122,50,NULL,7,'Subject for Membership Signup','2011-08-25 06:24:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(123,50,NULL,7,'Subject for Membership Signup','2012-05-03 02:12:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(124,50,NULL,7,'Subject for Membership Signup','2012-02-08 03:14:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(125,50,NULL,9,'Subject for Tell a Friend','2012-04-15 01:18:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(126,50,NULL,7,'Subject for Membership Signup','2011-08-06 06:07:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(127,50,NULL,7,'Subject for Membership Signup','2011-09-29 06:07:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(128,50,NULL,10,'Subject for Pledge Acknowledgment','2012-01-17 08:52:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(129,50,NULL,7,'Subject for Membership Signup','2012-03-24 12:51:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(130,50,NULL,9,'Subject for Tell a Friend','2011-10-02 12:36:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(131,50,NULL,9,'Subject for Tell a Friend','2012-06-24 01:26:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(132,50,NULL,8,'Subject for Membership Renewal','2012-07-09 08:53:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(133,50,NULL,8,'Subject for Membership Renewal','2011-10-13 11:23:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(134,50,NULL,8,'Subject for Membership Renewal','2012-03-18 11:32:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(135,50,NULL,10,'Subject for Pledge Acknowledgment','2011-09-25 12:48:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(136,50,NULL,9,'Subject for Tell a Friend','2012-01-07 08:50:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(137,50,NULL,10,'Subject for Pledge Acknowledgment','2011-10-05 12:49:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(138,50,NULL,9,'Subject for Tell a Friend','2011-12-02 06:36:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(139,50,NULL,10,'Subject for Pledge Acknowledgment','2012-04-25 02:31:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(140,50,NULL,7,'Subject for Membership Signup','2012-01-17 11:52:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(141,50,NULL,7,'Subject for Membership Signup','2012-01-25 03:24:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(142,50,NULL,8,'Subject for Membership Renewal','2011-11-17 09:11:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(143,50,NULL,8,'Subject for Membership Renewal','2012-03-04 09:10:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(144,50,NULL,10,'Subject for Pledge Acknowledgment','2012-04-14 10:52:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(145,50,NULL,10,'Subject for Pledge Acknowledgment','2012-06-21 05:45:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(146,50,NULL,7,'Subject for Membership Signup','2012-01-04 02:44:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(147,50,NULL,7,'Subject for Membership Signup','2011-10-04 04:30:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(148,50,NULL,7,'Subject for Membership Signup','2011-10-23 07:02:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(149,50,NULL,10,'Subject for Pledge Acknowledgment','2011-10-18 03:38:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(150,50,NULL,9,'Subject for Tell a Friend','2012-01-03 09:42:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(151,21,NULL,9,'Subject for Tell a Friend','2012-03-01 10:14:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(152,21,NULL,10,'Subject for Pledge Acknowledgment','2011-08-19 07:35:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(153,21,NULL,10,'Subject for Pledge Acknowledgment','2012-01-23 12:21:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(154,21,NULL,8,'Subject for Membership Renewal','2012-02-06 11:19:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(155,21,NULL,9,'Subject for Tell a Friend','2012-01-02 12:22:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(156,21,NULL,8,'Subject for Membership Renewal','2012-01-13 06:11:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(157,21,NULL,7,'Subject for Membership Signup','2011-12-22 09:57:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(158,21,NULL,9,'Subject for Tell a Friend','2012-03-17 05:15:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(159,21,NULL,8,'Subject for Membership Renewal','2011-08-08 07:48:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(160,21,NULL,10,'Subject for Pledge Acknowledgment','2011-12-15 05:43:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(161,21,NULL,7,'Subject for Membership Signup','2012-03-18 06:04:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(162,21,NULL,10,'Subject for Pledge Acknowledgment','2012-07-04 04:20:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(163,21,NULL,7,'Subject for Membership Signup','2012-01-28 01:19:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(164,21,NULL,10,'Subject for Pledge Acknowledgment','2012-01-23 04:44:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(165,21,NULL,10,'Subject for Pledge Acknowledgment','2011-07-21 08:25:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(166,21,NULL,7,'Subject for Membership Signup','2012-05-24 11:34:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(167,21,NULL,8,'Subject for Membership Renewal','2012-06-18 11:02:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(168,21,NULL,9,'Subject for Tell a Friend','2012-07-16 07:33:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(169,21,NULL,8,'Subject for Membership Renewal','2011-11-29 05:36:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(170,21,NULL,9,'Subject for Tell a Friend','2012-03-21 06:02:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(171,21,NULL,8,'Subject for Membership Renewal','2012-05-14 06:15:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(172,21,NULL,7,'Subject for Membership Signup','2011-12-08 03:01:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(173,21,NULL,10,'Subject for Pledge Acknowledgment','2012-01-12 08:30:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(174,21,NULL,10,'Subject for Pledge Acknowledgment','2011-10-14 01:30:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(175,21,NULL,9,'Subject for Tell a Friend','2012-04-12 08:28:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(176,21,NULL,8,'Subject for Membership Renewal','2011-11-04 10:27:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(177,21,NULL,9,'Subject for Tell a Friend','2012-07-12 06:07:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(178,21,NULL,9,'Subject for Tell a Friend','2012-04-04 07:05:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(179,21,NULL,9,'Subject for Tell a Friend','2011-07-24 07:41:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(180,21,NULL,8,'Subject for Membership Renewal','2012-07-02 03:26:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(181,21,NULL,8,'Subject for Membership Renewal','2011-11-09 09:54:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(182,21,NULL,7,'Subject for Membership Signup','2011-10-18 01:14:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(183,21,NULL,7,'Subject for Membership Signup','2011-11-05 06:44:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(184,21,NULL,8,'Subject for Membership Renewal','2011-07-31 11:31:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(185,21,NULL,8,'Subject for Membership Renewal','2012-07-18 10:17:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(186,21,NULL,8,'Subject for Membership Renewal','2012-03-03 07:58:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(187,21,NULL,10,'Subject for Pledge Acknowledgment','2012-06-02 04:43:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(188,21,NULL,7,'Subject for Membership Signup','2012-03-15 12:43:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(189,21,NULL,9,'Subject for Tell a Friend','2011-07-29 05:50:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(190,21,NULL,7,'Subject for Membership Signup','2011-11-23 05:17:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(191,21,NULL,8,'Subject for Membership Renewal','2012-06-02 02:43:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(192,21,NULL,8,'Subject for Membership Renewal','2012-01-05 04:38:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(193,21,NULL,8,'Subject for Membership Renewal','2012-06-04 04:04:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(194,21,NULL,9,'Subject for Tell a Friend','2012-03-31 09:31:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(195,21,NULL,9,'Subject for Tell a Friend','2011-12-22 10:00:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(196,21,NULL,10,'Subject for Pledge Acknowledgment','2012-02-02 02:55:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(197,21,NULL,8,'Subject for Membership Renewal','2011-07-27 10:45:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(198,21,NULL,8,'Subject for Membership Renewal','2012-03-14 07:38:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(199,21,NULL,10,'Subject for Pledge Acknowledgment','2011-12-24 08:06:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(200,21,NULL,8,'Subject for Membership Renewal','2012-06-22 06:08:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(201,21,NULL,7,'Subject for Membership Signup','2011-12-17 10:52:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(202,21,NULL,7,'Subject for Membership Signup','2012-06-25 11:25:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(203,21,NULL,9,'Subject for Tell a Friend','2012-03-26 07:40:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(204,21,NULL,10,'Subject for Pledge Acknowledgment','2012-06-08 05:26:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(205,21,NULL,8,'Subject for Membership Renewal','2012-03-17 12:40:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(206,21,NULL,7,'Subject for Membership Signup','2012-03-27 05:18:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(207,21,NULL,9,'Subject for Tell a Friend','2011-08-22 03:32:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(208,21,NULL,8,'Subject for Membership Renewal','2011-11-25 03:43:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(209,21,NULL,9,'Subject for Tell a Friend','2012-04-27 04:01:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(210,21,NULL,7,'Subject for Membership Signup','2011-08-14 03:02:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(211,21,NULL,9,'Subject for Tell a Friend','2012-03-25 03:45:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(212,21,NULL,10,'Subject for Pledge Acknowledgment','2011-09-22 04:46:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(213,21,NULL,7,'Subject for Membership Signup','2012-03-03 04:30:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(214,21,NULL,10,'Subject for Pledge Acknowledgment','2011-11-18 07:58:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(215,21,NULL,10,'Subject for Pledge Acknowledgment','2011-12-23 01:12:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(216,21,NULL,8,'Subject for Membership Renewal','2012-02-03 08:39:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(217,21,NULL,10,'Subject for Pledge Acknowledgment','2012-03-24 07:39:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(218,21,NULL,7,'Subject for Membership Signup','2011-09-18 07:55:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(219,21,NULL,7,'Subject for Membership Signup','2011-12-06 10:58:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(220,21,NULL,10,'Subject for Pledge Acknowledgment','2011-09-14 03:18:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(221,21,NULL,7,'Subject for Membership Signup','2012-06-30 06:04:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(222,21,NULL,10,'Subject for Pledge Acknowledgment','2011-12-23 06:58:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(223,21,NULL,8,'Subject for Membership Renewal','2012-05-01 03:58:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(224,21,NULL,8,'Subject for Membership Renewal','2012-03-30 09:58:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(225,21,NULL,8,'Subject for Membership Renewal','2012-06-07 12:51:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(226,21,NULL,9,'Subject for Tell a Friend','2011-08-30 07:59:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(227,21,NULL,8,'Subject for Membership Renewal','2011-12-23 08:34:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(228,21,NULL,7,'Subject for Membership Signup','2011-10-04 11:30:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(229,21,NULL,8,'Subject for Membership Renewal','2011-07-23 12:39:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(230,21,NULL,8,'Subject for Membership Renewal','2012-02-22 01:03:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(231,21,NULL,8,'Subject for Membership Renewal','2012-02-19 10:32:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(232,21,NULL,8,'Subject for Membership Renewal','2012-05-08 01:46:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(233,21,NULL,10,'Subject for Pledge Acknowledgment','2011-10-22 01:41:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(234,21,NULL,8,'Subject for Membership Renewal','2011-09-03 10:36:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(235,21,NULL,10,'Subject for Pledge Acknowledgment','2012-02-03 05:44:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(236,21,NULL,10,'Subject for Pledge Acknowledgment','2012-02-04 09:58:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(237,21,NULL,9,'Subject for Tell a Friend','2011-10-21 04:17:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(238,21,NULL,8,'Subject for Membership Renewal','2012-06-17 01:35:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(239,21,NULL,9,'Subject for Tell a Friend','2012-06-14 12:08:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(240,21,NULL,10,'Subject for Pledge Acknowledgment','2011-08-09 02:54:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(241,21,NULL,8,'Subject for Membership Renewal','2012-01-03 04:26:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(242,21,NULL,7,'Subject for Membership Signup','2011-12-18 02:06:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(243,21,NULL,7,'Subject for Membership Signup','2011-08-24 04:46:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(244,21,NULL,9,'Subject for Tell a Friend','2012-01-12 08:32:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(245,21,NULL,7,'Subject for Membership Signup','2012-03-04 04:08:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(246,21,NULL,8,'Subject for Membership Renewal','2012-04-23 12:13:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(247,21,NULL,10,'Subject for Pledge Acknowledgment','2012-01-14 08:32:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(248,21,NULL,8,'Subject for Membership Renewal','2012-03-01 12:49:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(249,21,NULL,10,'Subject for Pledge Acknowledgment','2012-03-16 02:10:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(250,21,NULL,9,'Subject for Tell a Friend','2012-01-26 04:51:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(251,21,NULL,8,'Subject for Membership Renewal','2011-11-22 01:58:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(252,21,NULL,10,'Subject for Pledge Acknowledgment','2012-05-11 09:07:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(253,21,NULL,10,'Subject for Pledge Acknowledgment','2012-06-05 12:35:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(254,21,NULL,10,'Subject for Pledge Acknowledgment','2012-02-28 02:25:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(255,21,NULL,9,'Subject for Tell a Friend','2012-01-07 11:49:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(256,21,NULL,10,'Subject for Pledge Acknowledgment','2012-01-21 06:02:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(257,21,NULL,7,'Subject for Membership Signup','2011-11-24 07:07:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(258,21,NULL,10,'Subject for Pledge Acknowledgment','2012-03-19 02:46:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(259,21,NULL,8,'Subject for Membership Renewal','2011-10-19 08:04:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(260,21,NULL,7,'Subject for Membership Signup','2011-09-30 07:16:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(261,21,NULL,7,'Subject for Membership Signup','2012-01-04 05:36:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(262,21,NULL,7,'Subject for Membership Signup','2012-03-14 05:38:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(263,21,NULL,9,'Subject for Tell a Friend','2012-03-16 11:31:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(264,21,NULL,9,'Subject for Tell a Friend','2012-02-23 12:46:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(265,21,NULL,8,'Subject for Membership Renewal','2012-04-27 08:43:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(266,21,NULL,7,'Subject for Membership Signup','2012-05-02 07:53:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(267,21,NULL,10,'Subject for Pledge Acknowledgment','2011-11-13 12:18:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(268,21,NULL,9,'Subject for Tell a Friend','2012-04-02 07:46:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(269,21,NULL,10,'Subject for Pledge Acknowledgment','2011-12-10 05:35:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(270,21,NULL,9,'Subject for Tell a Friend','2012-02-22 02:00:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(271,21,NULL,9,'Subject for Tell a Friend','2011-08-22 09:38:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(272,21,NULL,7,'Subject for Membership Signup','2012-04-26 08:59:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(273,21,NULL,9,'Subject for Tell a Friend','2012-06-02 02:06:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(274,21,NULL,10,'Subject for Pledge Acknowledgment','2012-03-08 09:42:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(275,21,NULL,8,'Subject for Membership Renewal','2012-03-29 05:50:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(276,21,NULL,10,'Subject for Pledge Acknowledgment','2011-12-30 08:20:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(277,21,NULL,7,'Subject for Membership Signup','2011-12-16 06:50:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(278,21,NULL,8,'Subject for Membership Renewal','2011-10-19 02:01:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(279,21,NULL,7,'Subject for Membership Signup','2012-07-09 05:50:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(280,21,NULL,9,'Subject for Tell a Friend','2011-11-13 10:26:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(281,21,NULL,8,'Subject for Membership Renewal','2012-02-09 03:48:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(282,21,NULL,8,'Subject for Membership Renewal','2012-04-19 05:55:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(283,21,NULL,8,'Subject for Membership Renewal','2011-11-13 01:50:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(284,21,NULL,9,'Subject for Tell a Friend','2011-12-18 04:37:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(285,21,NULL,7,'Subject for Membership Signup','2012-07-02 12:25:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(286,21,NULL,7,'Subject for Membership Signup','2012-03-05 11:02:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(287,21,NULL,8,'Subject for Membership Renewal','2011-08-21 09:20:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(288,21,NULL,10,'Subject for Pledge Acknowledgment','2012-01-27 10:21:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(289,21,NULL,9,'Subject for Tell a Friend','2012-06-20 07:07:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(290,21,NULL,7,'Subject for Membership Signup','2011-11-30 09:37:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(291,21,NULL,10,'Subject for Pledge Acknowledgment','2011-11-03 07:51:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(292,21,NULL,7,'Subject for Membership Signup','2011-10-24 09:09:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(293,21,NULL,9,'Subject for Tell a Friend','2011-09-04 01:44:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(294,21,NULL,9,'Subject for Tell a Friend','2011-08-08 08:50:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(295,21,NULL,10,'Subject for Pledge Acknowledgment','2012-02-16 06:27:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(296,21,NULL,9,'Subject for Tell a Friend','2011-11-02 03:04:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(297,21,NULL,9,'Subject for Tell a Friend','2012-07-09 04:51:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(298,21,NULL,10,'Subject for Pledge Acknowledgment','2011-08-01 06:01:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(299,21,NULL,10,'Subject for Pledge Acknowledgment','2011-12-29 02:22:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(300,21,NULL,9,'Subject for Tell a Friend','2011-10-05 11:57:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(301,35,NULL,9,'Subject for Tell a Friend','2012-07-02 02:24:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(302,35,NULL,9,'Subject for Tell a Friend','2012-01-20 08:45:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(303,35,NULL,10,'Subject for Pledge Acknowledgment','2012-02-28 06:00:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(304,35,NULL,8,'Subject for Membership Renewal','2012-02-02 01:06:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(305,35,NULL,7,'Subject for Membership Signup','2011-10-17 05:01:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(306,35,NULL,7,'Subject for Membership Signup','2012-07-01 09:21:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(307,35,NULL,10,'Subject for Pledge Acknowledgment','2011-07-23 02:51:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(308,35,NULL,10,'Subject for Pledge Acknowledgment','2012-03-31 05:02:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(309,35,NULL,9,'Subject for Tell a Friend','2011-09-09 11:10:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(310,35,NULL,9,'Subject for Tell a Friend','2011-10-18 04:02:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(311,35,NULL,9,'Subject for Tell a Friend','2011-11-12 09:43:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(312,35,NULL,9,'Subject for Tell a Friend','2011-12-01 10:04:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(313,35,NULL,7,'Subject for Membership Signup','2012-05-02 03:42:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(314,35,NULL,8,'Subject for Membership Renewal','2012-02-16 07:36:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(315,35,NULL,10,'Subject for Pledge Acknowledgment','2011-12-14 02:53:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(316,35,NULL,7,'Subject for Membership Signup','2012-04-02 06:14:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(317,35,NULL,7,'Subject for Membership Signup','2011-11-30 09:43:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(318,35,NULL,8,'Subject for Membership Renewal','2011-11-12 03:43:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(319,35,NULL,10,'Subject for Pledge Acknowledgment','2012-07-15 06:05:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(320,35,NULL,10,'Subject for Pledge Acknowledgment','2012-07-09 05:36:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(321,35,NULL,9,'Subject for Tell a Friend','2012-02-10 05:34:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(322,35,NULL,10,'Subject for Pledge Acknowledgment','2011-10-05 12:09:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(323,35,NULL,9,'Subject for Tell a Friend','2012-06-15 08:37:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(324,35,NULL,10,'Subject for Pledge Acknowledgment','2011-08-28 07:34:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(325,35,NULL,8,'Subject for Membership Renewal','2012-02-24 04:06:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(326,35,NULL,7,'Subject for Membership Signup','2011-11-06 07:57:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(327,35,NULL,10,'Subject for Pledge Acknowledgment','2012-07-12 11:14:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(328,35,NULL,8,'Subject for Membership Renewal','2011-10-02 03:32:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(329,35,NULL,7,'Subject for Membership Signup','2012-06-17 10:42:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(330,35,NULL,10,'Subject for Pledge Acknowledgment','2012-04-07 06:27:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(331,35,NULL,8,'Subject for Membership Renewal','2011-12-03 12:19:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(332,35,NULL,8,'Subject for Membership Renewal','2011-08-06 02:36:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(333,35,NULL,10,'Subject for Pledge Acknowledgment','2011-12-22 12:44:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(334,35,NULL,7,'Subject for Membership Signup','2011-12-19 04:41:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(335,35,NULL,8,'Subject for Membership Renewal','2012-05-29 08:41:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(336,35,NULL,9,'Subject for Tell a Friend','2011-10-02 11:27:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(337,35,NULL,7,'Subject for Membership Signup','2011-08-05 02:46:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(338,35,NULL,8,'Subject for Membership Renewal','2011-09-01 05:24:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(339,35,NULL,9,'Subject for Tell a Friend','2012-05-21 11:42:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(340,35,NULL,8,'Subject for Membership Renewal','2011-08-06 02:19:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(341,35,NULL,7,'Subject for Membership Signup','2011-11-07 11:00:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(342,35,NULL,8,'Subject for Membership Renewal','2012-06-09 02:13:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(343,35,NULL,7,'Subject for Membership Signup','2011-12-29 02:23:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(344,35,NULL,9,'Subject for Tell a Friend','2012-06-06 10:24:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(345,35,NULL,8,'Subject for Membership Renewal','2011-07-31 09:56:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(346,35,NULL,9,'Subject for Tell a Friend','2012-06-18 09:51:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(347,35,NULL,9,'Subject for Tell a Friend','2012-01-13 01:22:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(348,35,NULL,7,'Subject for Membership Signup','2012-04-06 02:32:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(349,35,NULL,7,'Subject for Membership Signup','2011-08-19 09:26:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(350,35,NULL,8,'Subject for Membership Renewal','2011-09-25 08:41:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(351,35,NULL,7,'Subject for Membership Signup','2012-03-14 07:41:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(352,35,NULL,10,'Subject for Pledge Acknowledgment','2011-10-31 06:36:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(353,35,NULL,9,'Subject for Tell a Friend','2011-12-22 09:07:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(354,35,NULL,10,'Subject for Pledge Acknowledgment','2012-03-08 07:51:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(355,35,NULL,8,'Subject for Membership Renewal','2012-02-06 01:38:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(356,35,NULL,10,'Subject for Pledge Acknowledgment','2012-05-14 08:50:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(357,35,NULL,10,'Subject for Pledge Acknowledgment','2012-05-31 03:28:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(358,35,NULL,8,'Subject for Membership Renewal','2012-05-15 03:56:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(359,35,NULL,9,'Subject for Tell a Friend','2012-06-15 07:33:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(360,35,NULL,8,'Subject for Membership Renewal','2011-10-18 08:25:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(361,35,NULL,7,'Subject for Membership Signup','2011-08-16 04:12:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(362,35,NULL,7,'Subject for Membership Signup','2012-04-21 07:01:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(363,35,NULL,8,'Subject for Membership Renewal','2012-03-12 12:17:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(364,35,NULL,9,'Subject for Tell a Friend','2012-04-26 08:51:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(365,35,NULL,9,'Subject for Tell a Friend','2012-06-12 03:15:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(366,35,NULL,7,'Subject for Membership Signup','2012-05-03 09:29:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(367,35,NULL,9,'Subject for Tell a Friend','2012-02-19 03:57:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(368,35,NULL,7,'Subject for Membership Signup','2012-05-03 07:45:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(369,35,NULL,10,'Subject for Pledge Acknowledgment','2011-08-04 03:52:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(370,35,NULL,7,'Subject for Membership Signup','2011-09-26 08:26:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(371,35,NULL,7,'Subject for Membership Signup','2011-08-20 12:01:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(372,35,NULL,7,'Subject for Membership Signup','2012-04-10 07:21:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(373,35,NULL,7,'Subject for Membership Signup','2012-01-08 11:54:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(374,35,NULL,10,'Subject for Pledge Acknowledgment','2012-06-23 09:29:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(375,35,NULL,9,'Subject for Tell a Friend','2012-06-20 01:34:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(376,35,NULL,8,'Subject for Membership Renewal','2011-12-08 05:16:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(377,35,NULL,8,'Subject for Membership Renewal','2012-03-07 06:21:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(378,35,NULL,10,'Subject for Pledge Acknowledgment','2012-01-30 03:02:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(379,35,NULL,8,'Subject for Membership Renewal','2011-12-11 08:54:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(380,35,NULL,7,'Subject for Membership Signup','2012-07-04 10:17:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(381,35,NULL,9,'Subject for Tell a Friend','2012-01-24 09:29:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(382,35,NULL,7,'Subject for Membership Signup','2011-11-08 03:08:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(383,35,NULL,10,'Subject for Pledge Acknowledgment','2011-09-15 07:47:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(384,35,NULL,8,'Subject for Membership Renewal','2012-03-12 03:02:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(385,35,NULL,7,'Subject for Membership Signup','2011-09-17 12:07:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(386,35,NULL,9,'Subject for Tell a Friend','2011-10-26 02:13:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(387,35,NULL,10,'Subject for Pledge Acknowledgment','2012-06-06 11:39:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(388,35,NULL,10,'Subject for Pledge Acknowledgment','2012-01-23 10:22:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(389,35,NULL,9,'Subject for Tell a Friend','2012-01-15 02:36:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(390,35,NULL,10,'Subject for Pledge Acknowledgment','2012-01-30 12:45:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(391,35,NULL,9,'Subject for Tell a Friend','2012-04-16 12:53:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(392,35,NULL,10,'Subject for Pledge Acknowledgment','2012-01-08 12:33:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(393,35,NULL,9,'Subject for Tell a Friend','2011-09-24 05:57:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(394,35,NULL,7,'Subject for Membership Signup','2012-06-08 12:06:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(395,35,NULL,9,'Subject for Tell a Friend','2011-09-25 08:52:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(396,35,NULL,7,'Subject for Membership Signup','2012-05-31 10:35:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(397,35,NULL,8,'Subject for Membership Renewal','2012-07-04 08:04:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(398,35,NULL,10,'Subject for Pledge Acknowledgment','2011-09-28 09:36:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(399,35,NULL,8,'Subject for Membership Renewal','2012-01-07 07:54:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(400,35,NULL,10,'Subject for Pledge Acknowledgment','2012-03-22 06:20:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(401,35,NULL,7,'Subject for Membership Signup','2012-05-12 11:28:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(402,35,NULL,10,'Subject for Pledge Acknowledgment','2011-11-30 06:01:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(403,35,NULL,10,'Subject for Pledge Acknowledgment','2012-03-02 04:02:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(404,35,NULL,7,'Subject for Membership Signup','2011-10-26 10:01:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(405,35,NULL,8,'Subject for Membership Renewal','2012-05-04 07:02:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(406,35,NULL,9,'Subject for Tell a Friend','2012-04-17 10:24:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(407,35,NULL,7,'Subject for Membership Signup','2012-06-04 12:44:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(408,35,NULL,9,'Subject for Tell a Friend','2012-06-04 07:09:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(409,35,NULL,7,'Subject for Membership Signup','2012-02-19 09:59:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(410,35,NULL,9,'Subject for Tell a Friend','2012-02-02 02:51:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(411,35,NULL,10,'Subject for Pledge Acknowledgment','2012-05-27 09:55:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(412,35,NULL,9,'Subject for Tell a Friend','2012-05-03 01:50:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(413,35,NULL,10,'Subject for Pledge Acknowledgment','2011-10-03 04:25:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(414,35,NULL,10,'Subject for Pledge Acknowledgment','2011-09-06 11:13:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(415,35,NULL,8,'Subject for Membership Renewal','2011-11-21 07:34:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(416,35,NULL,10,'Subject for Pledge Acknowledgment','2012-05-28 01:24:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(417,35,NULL,8,'Subject for Membership Renewal','2012-03-19 12:11:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(418,35,NULL,8,'Subject for Membership Renewal','2012-05-24 02:55:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(419,35,NULL,10,'Subject for Pledge Acknowledgment','2012-03-21 07:13:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(420,35,NULL,9,'Subject for Tell a Friend','2011-10-09 10:56:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(421,35,NULL,9,'Subject for Tell a Friend','2011-08-10 08:43:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(422,35,NULL,9,'Subject for Tell a Friend','2012-07-05 01:51:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(423,35,NULL,10,'Subject for Pledge Acknowledgment','2012-07-12 04:28:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(424,35,NULL,10,'Subject for Pledge Acknowledgment','2012-02-08 12:37:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(425,35,NULL,7,'Subject for Membership Signup','2011-07-25 11:27:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(426,35,NULL,10,'Subject for Pledge Acknowledgment','2012-07-14 01:17:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(427,35,NULL,7,'Subject for Membership Signup','2011-12-17 11:10:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(428,35,NULL,9,'Subject for Tell a Friend','2011-07-30 07:52:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(429,35,NULL,8,'Subject for Membership Renewal','2011-08-01 10:53:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(430,35,NULL,9,'Subject for Tell a Friend','2012-07-18 09:55:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(431,35,NULL,10,'Subject for Pledge Acknowledgment','2011-08-22 11:59:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(432,35,NULL,8,'Subject for Membership Renewal','2011-12-29 03:48:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(433,35,NULL,10,'Subject for Pledge Acknowledgment','2011-08-20 02:49:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(434,35,NULL,10,'Subject for Pledge Acknowledgment','2011-09-17 06:52:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(435,35,NULL,10,'Subject for Pledge Acknowledgment','2012-02-13 05:59:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(436,35,NULL,8,'Subject for Membership Renewal','2011-10-11 02:16:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(437,35,NULL,7,'Subject for Membership Signup','2012-01-15 04:37:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(438,35,NULL,7,'Subject for Membership Signup','2011-10-04 05:50:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(439,35,NULL,9,'Subject for Tell a Friend','2011-12-03 01:59:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(440,35,NULL,9,'Subject for Tell a Friend','2011-07-29 03:33:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(441,35,NULL,9,'Subject for Tell a Friend','2011-12-15 09:27:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(442,35,NULL,10,'Subject for Pledge Acknowledgment','2012-01-20 10:17:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(443,35,NULL,10,'Subject for Pledge Acknowledgment','2011-08-04 05:01:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(444,35,NULL,9,'Subject for Tell a Friend','2011-10-10 03:06:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(445,35,NULL,8,'Subject for Membership Renewal','2012-02-11 06:59:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(446,35,NULL,9,'Subject for Tell a Friend','2012-06-24 02:55:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(447,35,NULL,10,'Subject for Pledge Acknowledgment','2012-06-15 01:51:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(448,35,NULL,9,'Subject for Tell a Friend','2011-10-15 02:26:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(449,35,NULL,9,'Subject for Tell a Friend','2012-05-08 09:02:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(450,35,NULL,9,'Subject for Tell a Friend','2011-09-04 02:47:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(451,93,1,7,'General','2012-07-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(452,50,2,7,'Student','2012-07-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(453,85,3,7,'General','2012-07-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(454,66,4,7,'Student','2012-07-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(455,99,5,7,'Student','2011-07-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(456,12,6,7,'Student','2012-07-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(457,53,7,7,'General','2012-07-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(458,33,8,7,'Student','2012-07-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(459,10,9,7,'General','2012-07-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(460,16,10,7,'General','2010-05-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(461,71,11,7,'Lifetime','2012-07-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(462,28,12,7,'Student','2012-07-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(463,62,13,7,'General','2012-07-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(464,25,14,7,'Student','2012-07-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(465,21,15,7,'General','2010-03-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(466,59,16,7,'Student','2012-07-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(467,54,17,7,'General','2012-07-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(468,32,18,7,'Student','2012-07-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(469,55,19,7,'General','2012-07-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(470,41,20,7,'General','2010-02-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(471,4,21,7,'General','2012-06-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(472,100,22,7,'Lifetime','2012-06-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(473,43,23,7,'General','2012-06-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(474,30,24,7,'Student','2012-06-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(475,61,25,7,'General','2010-01-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(476,40,26,7,'Student','2012-06-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(477,42,27,7,'General','2012-06-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(478,22,28,7,'Student','2012-06-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(479,67,29,7,'General','2012-06-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(480,36,30,7,'General','2009-11-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(481,42,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),(482,28,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),(483,1,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),(484,39,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),(485,97,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),(486,84,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),(487,79,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),(488,95,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),(489,8,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),(490,87,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),(491,35,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),(492,10,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),(493,12,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),(494,9,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),(495,93,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),(496,32,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),(497,43,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),(498,2,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),(499,63,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),(500,69,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),(501,76,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),(502,3,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),(503,7,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),(504,6,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),(505,19,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),(506,100,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),(507,92,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),(508,73,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),(509,27,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),(510,91,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),(511,48,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),(512,38,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),(513,86,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),(514,75,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),(515,62,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),(516,96,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),(517,80,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),(518,88,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),(519,77,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),(520,70,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),(521,57,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),(522,71,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),(523,53,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),(524,29,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),(525,5,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),(526,30,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),(527,90,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),(528,82,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),(529,15,49,5,'NULL','2009-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(530,61,50,5,'NULL','2009-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(531,2,1,6,'$ 125.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(532,4,2,6,'$ 50.00-Online: Save the Penguins','2010-03-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(533,6,3,6,'$ 25.00-Apr 2007 Mailer 1','2010-04-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(534,8,4,6,'$ 50.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(535,16,5,6,'$ 500.00-Apr 2007 Mailer 1','2010-04-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(536,19,6,6,'$ 175.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(537,82,7,6,'$ 50.00-Online: Save the Penguins','2010-03-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(538,92,8,6,'$ 10.00-Online: Save the Penguins','2010-03-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(539,34,9,6,'$ 250.00-Online: Save the Penguins','2010-04-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(540,71,10,6,NULL,'2009-07-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(541,43,11,6,NULL,'2009-07-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(542,32,12,6,NULL,'2009-10-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(543,32,13,6,NULL,'2009-12-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO `civicrm_activity` (`id`, `source_contact_id`, `source_record_id`, `activity_type_id`, `subject`, `activity_date_time`, `duration`, `location`, `phone_id`, `phone_number`, `details`, `status_id`, `priority_id`, `parent_id`, `is_test`, `medium_id`, `is_auto`, `relationship_id`, `is_current_revision`, `original_id`, `result`, `is_deleted`, `campaign_id`, `engagement_level`, `weight`) VALUES (1,28,NULL,10,'Subject for Pledge Acknowledgment','2012-06-07 01:13:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(2,28,NULL,7,'Subject for Membership Signup','2012-08-05 01:49:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(3,28,NULL,10,'Subject for Pledge Acknowledgment','2012-05-15 11:21:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(4,28,NULL,8,'Subject for Membership Renewal','2012-07-27 04:42:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(5,28,NULL,7,'Subject for Membership Signup','2012-06-16 06:01:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(6,28,NULL,7,'Subject for Membership Signup','2012-06-15 01:30:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(7,28,NULL,9,'Subject for Tell a Friend','2012-05-11 02:22:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(8,28,NULL,8,'Subject for Membership Renewal','2012-03-24 05:38:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(9,28,NULL,10,'Subject for Pledge Acknowledgment','2011-09-15 11:13:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(10,28,NULL,8,'Subject for Membership Renewal','2011-10-08 07:43:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(11,28,NULL,10,'Subject for Pledge Acknowledgment','2011-09-23 02:35:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(12,28,NULL,7,'Subject for Membership Signup','2011-08-31 08:47:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(13,28,NULL,9,'Subject for Tell a Friend','2012-07-05 11:03:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(14,28,NULL,8,'Subject for Membership Renewal','2012-04-24 02:31:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(15,28,NULL,8,'Subject for Membership Renewal','2011-12-07 02:07:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(16,28,NULL,7,'Subject for Membership Signup','2012-06-28 10:15:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(17,28,NULL,10,'Subject for Pledge Acknowledgment','2011-12-18 05:39:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(18,28,NULL,8,'Subject for Membership Renewal','2012-07-05 04:51:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(19,28,NULL,8,'Subject for Membership Renewal','2012-04-20 04:22:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(20,28,NULL,8,'Subject for Membership Renewal','2012-02-18 08:25:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(21,28,NULL,10,'Subject for Pledge Acknowledgment','2012-04-25 07:35:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(22,28,NULL,10,'Subject for Pledge Acknowledgment','2012-03-23 09:07:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(23,28,NULL,9,'Subject for Tell a Friend','2011-09-04 11:31:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(24,28,NULL,9,'Subject for Tell a Friend','2011-09-03 09:32:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(25,28,NULL,10,'Subject for Pledge Acknowledgment','2011-12-07 03:50:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(26,28,NULL,10,'Subject for Pledge Acknowledgment','2011-11-28 04:27:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(27,28,NULL,10,'Subject for Pledge Acknowledgment','2011-10-28 07:40:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(28,28,NULL,10,'Subject for Pledge Acknowledgment','2011-12-26 10:58:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(29,28,NULL,10,'Subject for Pledge Acknowledgment','2012-04-10 11:44:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(30,28,NULL,7,'Subject for Membership Signup','2011-12-13 06:30:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(31,28,NULL,8,'Subject for Membership Renewal','2011-09-16 07:24:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(32,28,NULL,7,'Subject for Membership Signup','2012-07-05 01:06:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(33,28,NULL,10,'Subject for Pledge Acknowledgment','2012-06-16 01:21:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(34,28,NULL,10,'Subject for Pledge Acknowledgment','2012-03-10 11:19:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(35,28,NULL,10,'Subject for Pledge Acknowledgment','2012-01-07 11:14:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(36,28,NULL,10,'Subject for Pledge Acknowledgment','2012-05-13 04:23:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(37,28,NULL,9,'Subject for Tell a Friend','2011-12-22 02:08:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(38,28,NULL,7,'Subject for Membership Signup','2011-09-22 02:36:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(39,28,NULL,8,'Subject for Membership Renewal','2011-11-15 02:51:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(40,28,NULL,7,'Subject for Membership Signup','2012-03-23 04:11:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(41,28,NULL,10,'Subject for Pledge Acknowledgment','2012-02-24 07:37:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(42,28,NULL,10,'Subject for Pledge Acknowledgment','2012-06-01 11:09:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(43,28,NULL,10,'Subject for Pledge Acknowledgment','2011-10-25 03:50:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(44,28,NULL,10,'Subject for Pledge Acknowledgment','2012-08-16 08:22:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(45,28,NULL,10,'Subject for Pledge Acknowledgment','2011-12-26 02:05:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(46,28,NULL,10,'Subject for Pledge Acknowledgment','2012-07-25 03:34:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(47,28,NULL,7,'Subject for Membership Signup','2011-09-15 12:01:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(48,28,NULL,8,'Subject for Membership Renewal','2012-06-26 08:39:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(49,28,NULL,10,'Subject for Pledge Acknowledgment','2012-03-29 11:23:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(50,28,NULL,8,'Subject for Membership Renewal','2011-10-16 04:19:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(51,28,NULL,7,'Subject for Membership Signup','2012-04-18 12:06:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(52,28,NULL,10,'Subject for Pledge Acknowledgment','2011-10-18 09:20:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(53,28,NULL,8,'Subject for Membership Renewal','2011-12-22 04:59:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(54,28,NULL,9,'Subject for Tell a Friend','2012-02-15 02:35:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(55,28,NULL,7,'Subject for Membership Signup','2012-03-02 08:57:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(56,28,NULL,9,'Subject for Tell a Friend','2012-01-01 08:34:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(57,28,NULL,9,'Subject for Tell a Friend','2011-12-03 12:03:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(58,28,NULL,7,'Subject for Membership Signup','2011-10-10 04:08:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(59,28,NULL,10,'Subject for Pledge Acknowledgment','2011-12-27 06:15:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(60,28,NULL,7,'Subject for Membership Signup','2012-07-21 05:45:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(61,28,NULL,8,'Subject for Membership Renewal','2011-09-24 05:19:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(62,28,NULL,10,'Subject for Pledge Acknowledgment','2011-10-26 09:13:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(63,28,NULL,7,'Subject for Membership Signup','2012-03-19 12:32:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(64,28,NULL,9,'Subject for Tell a Friend','2011-09-28 09:24:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(65,28,NULL,10,'Subject for Pledge Acknowledgment','2011-08-26 01:31:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(66,28,NULL,10,'Subject for Pledge Acknowledgment','2012-06-25 01:58:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(67,28,NULL,7,'Subject for Membership Signup','2012-01-31 09:30:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(68,28,NULL,9,'Subject for Tell a Friend','2011-10-26 05:19:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(69,28,NULL,10,'Subject for Pledge Acknowledgment','2011-08-25 08:08:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(70,28,NULL,9,'Subject for Tell a Friend','2012-02-24 04:37:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(71,28,NULL,8,'Subject for Membership Renewal','2011-10-31 04:14:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(72,28,NULL,9,'Subject for Tell a Friend','2011-12-19 02:35:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(73,28,NULL,10,'Subject for Pledge Acknowledgment','2011-11-11 05:45:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(74,28,NULL,9,'Subject for Tell a Friend','2011-10-18 08:39:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(75,28,NULL,7,'Subject for Membership Signup','2012-04-27 09:37:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(76,28,NULL,9,'Subject for Tell a Friend','2011-12-30 11:47:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(77,28,NULL,7,'Subject for Membership Signup','2012-02-03 04:40:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(78,28,NULL,10,'Subject for Pledge Acknowledgment','2012-07-01 10:47:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(79,28,NULL,10,'Subject for Pledge Acknowledgment','2012-02-12 10:03:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(80,28,NULL,8,'Subject for Membership Renewal','2012-02-06 10:02:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(81,28,NULL,8,'Subject for Membership Renewal','2011-09-28 05:58:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(82,28,NULL,10,'Subject for Pledge Acknowledgment','2012-04-24 01:20:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(83,28,NULL,8,'Subject for Membership Renewal','2011-08-29 03:18:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(84,28,NULL,9,'Subject for Tell a Friend','2011-11-22 05:51:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(85,28,NULL,7,'Subject for Membership Signup','2012-03-20 01:17:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(86,28,NULL,7,'Subject for Membership Signup','2011-10-02 11:49:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(87,28,NULL,9,'Subject for Tell a Friend','2012-01-21 04:33:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(88,28,NULL,10,'Subject for Pledge Acknowledgment','2011-09-14 01:36:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(89,28,NULL,8,'Subject for Membership Renewal','2012-03-02 07:51:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(90,28,NULL,9,'Subject for Tell a Friend','2012-01-01 04:31:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(91,28,NULL,8,'Subject for Membership Renewal','2012-03-15 05:20:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(92,28,NULL,8,'Subject for Membership Renewal','2012-04-02 11:44:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(93,28,NULL,7,'Subject for Membership Signup','2011-11-25 06:54:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(94,28,NULL,10,'Subject for Pledge Acknowledgment','2011-09-21 03:55:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(95,28,NULL,8,'Subject for Membership Renewal','2012-02-22 05:34:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(96,28,NULL,7,'Subject for Membership Signup','2011-09-25 04:29:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(97,28,NULL,8,'Subject for Membership Renewal','2011-12-11 06:33:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(98,28,NULL,7,'Subject for Membership Signup','2012-08-02 10:47:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(99,28,NULL,8,'Subject for Membership Renewal','2012-06-24 05:29:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(100,28,NULL,9,'Subject for Tell a Friend','2012-07-12 02:22:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(101,28,NULL,8,'Subject for Membership Renewal','2011-09-29 06:17:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(102,28,NULL,9,'Subject for Tell a Friend','2011-11-26 02:38:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(103,28,NULL,10,'Subject for Pledge Acknowledgment','2012-02-29 11:52:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(104,28,NULL,9,'Subject for Tell a Friend','2012-06-02 10:48:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(105,28,NULL,10,'Subject for Pledge Acknowledgment','2012-06-23 01:50:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(106,28,NULL,9,'Subject for Tell a Friend','2012-02-04 09:35:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(107,28,NULL,7,'Subject for Membership Signup','2011-09-11 07:01:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(108,28,NULL,8,'Subject for Membership Renewal','2012-01-17 07:09:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(109,28,NULL,10,'Subject for Pledge Acknowledgment','2011-12-20 07:41:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(110,28,NULL,8,'Subject for Membership Renewal','2011-12-28 08:54:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(111,28,NULL,10,'Subject for Pledge Acknowledgment','2012-04-09 06:55:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(112,28,NULL,7,'Subject for Membership Signup','2011-10-07 03:52:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(113,28,NULL,7,'Subject for Membership Signup','2011-10-15 01:29:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(114,28,NULL,7,'Subject for Membership Signup','2012-04-15 06:53:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(115,28,NULL,9,'Subject for Tell a Friend','2012-04-27 09:03:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(116,28,NULL,10,'Subject for Pledge Acknowledgment','2012-02-12 03:47:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(117,28,NULL,10,'Subject for Pledge Acknowledgment','2012-01-02 02:36:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(118,28,NULL,10,'Subject for Pledge Acknowledgment','2012-05-23 04:52:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(119,28,NULL,7,'Subject for Membership Signup','2012-04-22 10:23:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(120,28,NULL,10,'Subject for Pledge Acknowledgment','2012-08-17 03:53:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(121,28,NULL,9,'Subject for Tell a Friend','2012-03-21 06:29:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(122,28,NULL,7,'Subject for Membership Signup','2011-10-25 06:15:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(123,28,NULL,9,'Subject for Tell a Friend','2012-08-05 07:09:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(124,28,NULL,9,'Subject for Tell a Friend','2011-10-03 08:17:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(125,28,NULL,9,'Subject for Tell a Friend','2012-01-19 09:27:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(126,28,NULL,8,'Subject for Membership Renewal','2012-08-05 11:55:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(127,28,NULL,10,'Subject for Pledge Acknowledgment','2011-11-07 07:18:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(128,28,NULL,8,'Subject for Membership Renewal','2012-02-22 11:44:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(129,28,NULL,10,'Subject for Pledge Acknowledgment','2012-04-26 12:34:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(130,28,NULL,10,'Subject for Pledge Acknowledgment','2011-08-23 10:04:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(131,28,NULL,8,'Subject for Membership Renewal','2012-01-14 10:23:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(132,28,NULL,9,'Subject for Tell a Friend','2012-04-25 04:06:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(133,28,NULL,8,'Subject for Membership Renewal','2011-12-26 02:57:52',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(134,28,NULL,9,'Subject for Tell a Friend','2011-11-03 02:16:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(135,28,NULL,10,'Subject for Pledge Acknowledgment','2012-04-02 08:13:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(136,28,NULL,10,'Subject for Pledge Acknowledgment','2012-04-20 06:32:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(137,28,NULL,10,'Subject for Pledge Acknowledgment','2011-12-04 10:19:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(138,28,NULL,10,'Subject for Pledge Acknowledgment','2012-02-29 10:22:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(139,28,NULL,8,'Subject for Membership Renewal','2011-10-21 10:16:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(140,28,NULL,9,'Subject for Tell a Friend','2012-08-14 04:19:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(141,28,NULL,9,'Subject for Tell a Friend','2011-11-06 05:29:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(142,28,NULL,9,'Subject for Tell a Friend','2011-09-27 01:14:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(143,28,NULL,7,'Subject for Membership Signup','2012-07-14 07:21:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(144,28,NULL,8,'Subject for Membership Renewal','2012-05-31 01:36:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(145,28,NULL,8,'Subject for Membership Renewal','2012-08-10 07:22:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(146,28,NULL,9,'Subject for Tell a Friend','2011-11-25 02:21:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(147,28,NULL,9,'Subject for Tell a Friend','2011-12-07 08:18:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(148,28,NULL,8,'Subject for Membership Renewal','2011-08-26 03:29:52',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(149,28,NULL,8,'Subject for Membership Renewal','2012-05-31 06:13:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(150,28,NULL,7,'Subject for Membership Signup','2011-12-01 03:48:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(151,89,NULL,9,'Subject for Tell a Friend','2012-01-23 10:20:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(152,89,NULL,8,'Subject for Membership Renewal','2011-12-23 07:09:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(153,89,NULL,10,'Subject for Pledge Acknowledgment','2012-06-27 01:13:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(154,89,NULL,10,'Subject for Pledge Acknowledgment','2012-08-02 01:49:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(155,89,NULL,8,'Subject for Membership Renewal','2011-11-10 02:42:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(156,89,NULL,9,'Subject for Tell a Friend','2012-06-02 07:47:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(157,89,NULL,9,'Subject for Tell a Friend','2012-04-08 11:22:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(158,89,NULL,9,'Subject for Tell a Friend','2012-05-11 12:42:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(159,89,NULL,9,'Subject for Tell a Friend','2012-06-06 06:05:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(160,89,NULL,9,'Subject for Tell a Friend','2011-08-24 09:03:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(161,89,NULL,9,'Subject for Tell a Friend','2012-06-06 02:17:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(162,89,NULL,10,'Subject for Pledge Acknowledgment','2012-05-08 09:41:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(163,89,NULL,9,'Subject for Tell a Friend','2011-12-25 09:14:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(164,89,NULL,8,'Subject for Membership Renewal','2012-04-19 02:48:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(165,89,NULL,7,'Subject for Membership Signup','2012-07-05 07:01:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(166,89,NULL,10,'Subject for Pledge Acknowledgment','2012-05-18 10:47:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(167,89,NULL,7,'Subject for Membership Signup','2012-03-12 09:30:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(168,89,NULL,9,'Subject for Tell a Friend','2011-10-10 09:00:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(169,89,NULL,7,'Subject for Membership Signup','2012-01-11 05:32:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(170,89,NULL,9,'Subject for Tell a Friend','2011-09-06 07:06:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(171,89,NULL,9,'Subject for Tell a Friend','2012-05-29 12:58:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(172,89,NULL,9,'Subject for Tell a Friend','2012-02-20 01:18:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(173,89,NULL,7,'Subject for Membership Signup','2012-08-16 04:51:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(174,89,NULL,10,'Subject for Pledge Acknowledgment','2012-07-09 03:49:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(175,89,NULL,10,'Subject for Pledge Acknowledgment','2012-02-18 08:02:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(176,89,NULL,7,'Subject for Membership Signup','2011-10-25 09:39:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(177,89,NULL,9,'Subject for Tell a Friend','2012-04-15 09:26:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(178,89,NULL,10,'Subject for Pledge Acknowledgment','2012-06-13 06:16:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(179,89,NULL,10,'Subject for Pledge Acknowledgment','2012-06-14 08:31:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(180,89,NULL,8,'Subject for Membership Renewal','2011-09-11 04:20:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(181,89,NULL,9,'Subject for Tell a Friend','2011-11-23 05:49:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(182,89,NULL,7,'Subject for Membership Signup','2011-12-06 09:11:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(183,89,NULL,7,'Subject for Membership Signup','2012-03-04 05:59:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(184,89,NULL,9,'Subject for Tell a Friend','2012-01-02 05:09:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(185,89,NULL,10,'Subject for Pledge Acknowledgment','2012-01-24 10:08:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(186,89,NULL,10,'Subject for Pledge Acknowledgment','2012-02-01 04:50:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(187,89,NULL,10,'Subject for Pledge Acknowledgment','2012-06-12 02:50:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(188,89,NULL,8,'Subject for Membership Renewal','2012-01-09 12:01:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(189,89,NULL,7,'Subject for Membership Signup','2012-03-31 06:34:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(190,89,NULL,7,'Subject for Membership Signup','2012-05-19 05:14:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(191,89,NULL,8,'Subject for Membership Renewal','2012-08-15 01:27:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(192,89,NULL,10,'Subject for Pledge Acknowledgment','2012-04-21 03:15:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(193,89,NULL,9,'Subject for Tell a Friend','2012-05-04 05:31:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(194,89,NULL,10,'Subject for Pledge Acknowledgment','2012-05-02 10:12:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(195,89,NULL,7,'Subject for Membership Signup','2011-11-19 03:32:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(196,89,NULL,10,'Subject for Pledge Acknowledgment','2012-02-27 05:06:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(197,89,NULL,7,'Subject for Membership Signup','2012-07-22 05:58:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(198,89,NULL,9,'Subject for Tell a Friend','2012-01-27 06:49:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(199,89,NULL,8,'Subject for Membership Renewal','2011-12-14 10:14:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(200,89,NULL,9,'Subject for Tell a Friend','2012-03-22 03:22:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(201,89,NULL,7,'Subject for Membership Signup','2011-09-21 11:38:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(202,89,NULL,8,'Subject for Membership Renewal','2011-09-09 10:28:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(203,89,NULL,10,'Subject for Pledge Acknowledgment','2012-06-29 11:57:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(204,89,NULL,7,'Subject for Membership Signup','2012-03-02 04:01:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(205,89,NULL,9,'Subject for Tell a Friend','2011-11-18 04:53:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(206,89,NULL,8,'Subject for Membership Renewal','2012-03-24 05:53:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(207,89,NULL,7,'Subject for Membership Signup','2012-04-22 04:27:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(208,89,NULL,9,'Subject for Tell a Friend','2012-05-05 11:19:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(209,89,NULL,8,'Subject for Membership Renewal','2012-01-28 12:17:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(210,89,NULL,7,'Subject for Membership Signup','2011-10-16 12:56:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(211,89,NULL,10,'Subject for Pledge Acknowledgment','2011-11-07 10:16:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(212,89,NULL,7,'Subject for Membership Signup','2012-01-10 02:26:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(213,89,NULL,10,'Subject for Pledge Acknowledgment','2012-02-06 02:33:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(214,89,NULL,7,'Subject for Membership Signup','2011-12-24 02:46:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(215,89,NULL,9,'Subject for Tell a Friend','2011-12-02 10:00:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(216,89,NULL,9,'Subject for Tell a Friend','2012-01-19 07:37:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(217,89,NULL,8,'Subject for Membership Renewal','2011-09-24 03:29:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(218,89,NULL,9,'Subject for Tell a Friend','2011-11-09 04:51:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(219,89,NULL,8,'Subject for Membership Renewal','2012-07-01 09:30:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(220,89,NULL,7,'Subject for Membership Signup','2012-01-29 08:29:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(221,89,NULL,10,'Subject for Pledge Acknowledgment','2012-05-12 01:29:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(222,89,NULL,10,'Subject for Pledge Acknowledgment','2011-08-30 06:24:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(223,89,NULL,7,'Subject for Membership Signup','2012-02-18 11:40:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(224,89,NULL,10,'Subject for Pledge Acknowledgment','2012-04-15 09:10:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(225,89,NULL,9,'Subject for Tell a Friend','2012-07-02 05:54:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(226,89,NULL,7,'Subject for Membership Signup','2012-05-18 10:52:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(227,89,NULL,10,'Subject for Pledge Acknowledgment','2012-02-06 09:53:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(228,89,NULL,10,'Subject for Pledge Acknowledgment','2012-07-27 02:15:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(229,89,NULL,10,'Subject for Pledge Acknowledgment','2011-10-04 08:05:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(230,89,NULL,10,'Subject for Pledge Acknowledgment','2012-01-05 01:25:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(231,89,NULL,8,'Subject for Membership Renewal','2012-06-19 11:07:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(232,89,NULL,7,'Subject for Membership Signup','2011-11-15 02:42:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(233,89,NULL,7,'Subject for Membership Signup','2012-06-13 09:55:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(234,89,NULL,10,'Subject for Pledge Acknowledgment','2011-12-30 07:23:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(235,89,NULL,7,'Subject for Membership Signup','2011-12-17 04:10:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(236,89,NULL,10,'Subject for Pledge Acknowledgment','2012-07-15 01:41:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(237,89,NULL,7,'Subject for Membership Signup','2011-10-04 11:19:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(238,89,NULL,9,'Subject for Tell a Friend','2012-02-21 02:06:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(239,89,NULL,10,'Subject for Pledge Acknowledgment','2012-04-04 05:19:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(240,89,NULL,10,'Subject for Pledge Acknowledgment','2012-05-31 09:11:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(241,89,NULL,9,'Subject for Tell a Friend','2011-10-30 08:44:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(242,89,NULL,8,'Subject for Membership Renewal','2012-04-10 11:55:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(243,89,NULL,8,'Subject for Membership Renewal','2012-02-25 11:05:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(244,89,NULL,7,'Subject for Membership Signup','2011-12-04 10:56:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(245,89,NULL,9,'Subject for Tell a Friend','2011-11-12 09:40:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(246,89,NULL,7,'Subject for Membership Signup','2012-07-21 06:38:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(247,89,NULL,9,'Subject for Tell a Friend','2011-09-07 08:14:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(248,89,NULL,9,'Subject for Tell a Friend','2012-01-09 06:07:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(249,89,NULL,8,'Subject for Membership Renewal','2012-03-14 06:37:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(250,89,NULL,10,'Subject for Pledge Acknowledgment','2011-12-26 08:50:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(251,89,NULL,7,'Subject for Membership Signup','2011-12-28 03:02:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(252,89,NULL,8,'Subject for Membership Renewal','2012-02-29 05:19:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(253,89,NULL,7,'Subject for Membership Signup','2012-08-02 09:24:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(254,89,NULL,7,'Subject for Membership Signup','2011-10-27 02:44:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(255,89,NULL,10,'Subject for Pledge Acknowledgment','2012-07-01 11:08:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(256,89,NULL,8,'Subject for Membership Renewal','2012-01-19 03:34:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(257,89,NULL,10,'Subject for Pledge Acknowledgment','2011-10-19 12:31:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(258,89,NULL,8,'Subject for Membership Renewal','2012-04-24 04:02:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(259,89,NULL,10,'Subject for Pledge Acknowledgment','2011-09-15 07:50:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(260,89,NULL,8,'Subject for Membership Renewal','2012-02-23 12:14:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(261,89,NULL,8,'Subject for Membership Renewal','2012-06-15 04:02:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(262,89,NULL,8,'Subject for Membership Renewal','2012-03-20 03:56:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(263,89,NULL,9,'Subject for Tell a Friend','2011-09-19 10:14:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(264,89,NULL,9,'Subject for Tell a Friend','2012-06-25 03:50:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(265,89,NULL,7,'Subject for Membership Signup','2011-11-07 12:09:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(266,89,NULL,7,'Subject for Membership Signup','2012-07-17 01:56:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(267,89,NULL,7,'Subject for Membership Signup','2012-08-15 10:40:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(268,89,NULL,9,'Subject for Tell a Friend','2012-06-08 03:00:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(269,89,NULL,8,'Subject for Membership Renewal','2012-01-19 03:43:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(270,89,NULL,8,'Subject for Membership Renewal','2012-08-04 10:14:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(271,89,NULL,7,'Subject for Membership Signup','2012-04-26 02:24:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(272,89,NULL,9,'Subject for Tell a Friend','2012-03-25 03:49:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(273,89,NULL,10,'Subject for Pledge Acknowledgment','2011-09-23 05:29:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(274,89,NULL,9,'Subject for Tell a Friend','2012-07-15 03:07:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(275,89,NULL,10,'Subject for Pledge Acknowledgment','2011-12-07 09:01:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(276,89,NULL,8,'Subject for Membership Renewal','2012-05-08 03:03:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(277,89,NULL,9,'Subject for Tell a Friend','2012-07-17 05:53:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(278,89,NULL,9,'Subject for Tell a Friend','2012-02-02 09:08:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(279,89,NULL,8,'Subject for Membership Renewal','2012-03-23 04:03:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(280,89,NULL,10,'Subject for Pledge Acknowledgment','2012-06-10 12:32:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(281,89,NULL,10,'Subject for Pledge Acknowledgment','2012-01-21 01:14:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(282,89,NULL,7,'Subject for Membership Signup','2012-05-04 05:32:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(283,89,NULL,8,'Subject for Membership Renewal','2012-05-23 09:14:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(284,89,NULL,9,'Subject for Tell a Friend','2012-07-14 10:17:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(285,89,NULL,8,'Subject for Membership Renewal','2012-06-13 11:32:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(286,89,NULL,8,'Subject for Membership Renewal','2011-12-16 07:06:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(287,89,NULL,10,'Subject for Pledge Acknowledgment','2011-11-11 06:15:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(288,89,NULL,10,'Subject for Pledge Acknowledgment','2012-04-08 03:09:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(289,89,NULL,8,'Subject for Membership Renewal','2012-05-18 08:42:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(290,89,NULL,9,'Subject for Tell a Friend','2012-06-14 05:44:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(291,89,NULL,9,'Subject for Tell a Friend','2012-02-15 02:24:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(292,89,NULL,9,'Subject for Tell a Friend','2012-01-25 11:04:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(293,89,NULL,8,'Subject for Membership Renewal','2012-07-04 02:08:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(294,89,NULL,9,'Subject for Tell a Friend','2012-04-16 07:12:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(295,89,NULL,10,'Subject for Pledge Acknowledgment','2012-07-10 06:50:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(296,89,NULL,10,'Subject for Pledge Acknowledgment','2011-08-28 10:49:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(297,89,NULL,8,'Subject for Membership Renewal','2012-04-07 01:26:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(298,89,NULL,9,'Subject for Tell a Friend','2012-06-30 03:13:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(299,89,NULL,10,'Subject for Pledge Acknowledgment','2011-11-02 03:05:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(300,89,NULL,8,'Subject for Membership Renewal','2012-06-25 10:23:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(301,48,NULL,9,'Subject for Tell a Friend','2012-01-25 10:25:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(302,48,NULL,8,'Subject for Membership Renewal','2011-11-05 01:29:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(303,48,NULL,10,'Subject for Pledge Acknowledgment','2012-05-07 09:44:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(304,48,NULL,8,'Subject for Membership Renewal','2011-11-12 05:00:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(305,48,NULL,7,'Subject for Membership Signup','2012-05-23 05:42:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(306,48,NULL,10,'Subject for Pledge Acknowledgment','2012-05-12 01:58:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(307,48,NULL,8,'Subject for Membership Renewal','2012-01-14 12:59:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(308,48,NULL,8,'Subject for Membership Renewal','2012-04-14 11:03:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(309,48,NULL,10,'Subject for Pledge Acknowledgment','2012-03-08 10:44:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(310,48,NULL,10,'Subject for Pledge Acknowledgment','2012-01-14 02:24:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(311,48,NULL,7,'Subject for Membership Signup','2012-02-13 03:00:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(312,48,NULL,10,'Subject for Pledge Acknowledgment','2011-08-31 02:20:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(313,48,NULL,8,'Subject for Membership Renewal','2011-10-30 08:59:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(314,48,NULL,9,'Subject for Tell a Friend','2012-05-23 10:53:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(315,48,NULL,8,'Subject for Membership Renewal','2012-01-05 06:28:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(316,48,NULL,7,'Subject for Membership Signup','2012-05-27 06:08:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(317,48,NULL,9,'Subject for Tell a Friend','2011-11-17 03:26:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(318,48,NULL,10,'Subject for Pledge Acknowledgment','2012-07-09 12:06:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(319,48,NULL,9,'Subject for Tell a Friend','2012-05-22 03:26:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(320,48,NULL,7,'Subject for Membership Signup','2011-11-20 04:16:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(321,48,NULL,9,'Subject for Tell a Friend','2012-04-02 07:53:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(322,48,NULL,9,'Subject for Tell a Friend','2012-06-23 01:54:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(323,48,NULL,7,'Subject for Membership Signup','2011-11-26 07:41:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(324,48,NULL,9,'Subject for Tell a Friend','2011-10-25 02:49:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(325,48,NULL,7,'Subject for Membership Signup','2012-01-30 04:27:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(326,48,NULL,8,'Subject for Membership Renewal','2012-01-26 11:21:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(327,48,NULL,9,'Subject for Tell a Friend','2012-06-29 06:15:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(328,48,NULL,7,'Subject for Membership Signup','2011-08-31 05:23:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(329,48,NULL,8,'Subject for Membership Renewal','2011-12-30 09:27:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(330,48,NULL,10,'Subject for Pledge Acknowledgment','2011-10-22 10:17:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(331,48,NULL,10,'Subject for Pledge Acknowledgment','2012-06-15 10:13:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(332,48,NULL,10,'Subject for Pledge Acknowledgment','2012-04-29 05:34:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(333,48,NULL,9,'Subject for Tell a Friend','2011-11-07 11:59:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(334,48,NULL,7,'Subject for Membership Signup','2011-10-02 03:36:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(335,48,NULL,10,'Subject for Pledge Acknowledgment','2012-01-01 08:20:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(336,48,NULL,7,'Subject for Membership Signup','2012-01-22 07:23:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(337,48,NULL,7,'Subject for Membership Signup','2012-06-02 09:05:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(338,48,NULL,9,'Subject for Tell a Friend','2011-10-21 06:48:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(339,48,NULL,9,'Subject for Tell a Friend','2012-08-11 12:15:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(340,48,NULL,9,'Subject for Tell a Friend','2011-09-05 10:54:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(341,48,NULL,7,'Subject for Membership Signup','2012-06-06 04:14:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(342,48,NULL,10,'Subject for Pledge Acknowledgment','2011-09-13 07:13:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(343,48,NULL,7,'Subject for Membership Signup','2012-08-18 01:29:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(344,48,NULL,9,'Subject for Tell a Friend','2012-05-21 02:44:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(345,48,NULL,7,'Subject for Membership Signup','2011-12-11 10:15:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(346,48,NULL,9,'Subject for Tell a Friend','2012-04-22 09:06:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(347,48,NULL,8,'Subject for Membership Renewal','2012-01-27 04:14:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(348,48,NULL,10,'Subject for Pledge Acknowledgment','2012-03-25 05:06:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(349,48,NULL,9,'Subject for Tell a Friend','2012-07-06 12:51:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(350,48,NULL,10,'Subject for Pledge Acknowledgment','2012-02-22 11:27:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(351,48,NULL,7,'Subject for Membership Signup','2012-05-30 01:47:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(352,48,NULL,8,'Subject for Membership Renewal','2011-10-01 11:53:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(353,48,NULL,10,'Subject for Pledge Acknowledgment','2012-05-21 11:53:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(354,48,NULL,9,'Subject for Tell a Friend','2012-01-26 04:17:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(355,48,NULL,9,'Subject for Tell a Friend','2012-03-23 08:06:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(356,48,NULL,7,'Subject for Membership Signup','2011-11-26 12:41:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(357,48,NULL,7,'Subject for Membership Signup','2012-04-18 02:27:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(358,48,NULL,10,'Subject for Pledge Acknowledgment','2011-10-27 03:13:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(359,48,NULL,8,'Subject for Membership Renewal','2011-10-23 09:42:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(360,48,NULL,10,'Subject for Pledge Acknowledgment','2012-02-08 11:43:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(361,48,NULL,9,'Subject for Tell a Friend','2012-08-17 09:16:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(362,48,NULL,9,'Subject for Tell a Friend','2012-06-25 06:48:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(363,48,NULL,10,'Subject for Pledge Acknowledgment','2011-11-18 03:36:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(364,48,NULL,8,'Subject for Membership Renewal','2012-07-14 01:43:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(365,48,NULL,9,'Subject for Tell a Friend','2011-12-15 04:00:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(366,48,NULL,9,'Subject for Tell a Friend','2012-06-02 11:14:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(367,48,NULL,8,'Subject for Membership Renewal','2012-06-17 08:53:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(368,48,NULL,9,'Subject for Tell a Friend','2012-01-07 09:37:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(369,48,NULL,9,'Subject for Tell a Friend','2012-06-28 05:12:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(370,48,NULL,8,'Subject for Membership Renewal','2012-07-18 12:22:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(371,48,NULL,10,'Subject for Pledge Acknowledgment','2011-11-29 04:55:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(372,48,NULL,9,'Subject for Tell a Friend','2011-10-12 09:24:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(373,48,NULL,10,'Subject for Pledge Acknowledgment','2012-01-12 10:11:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(374,48,NULL,8,'Subject for Membership Renewal','2012-02-11 01:42:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(375,48,NULL,7,'Subject for Membership Signup','2012-03-10 12:29:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(376,48,NULL,7,'Subject for Membership Signup','2011-11-15 12:16:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(377,48,NULL,8,'Subject for Membership Renewal','2011-11-14 02:55:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(378,48,NULL,7,'Subject for Membership Signup','2011-12-14 07:49:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(379,48,NULL,9,'Subject for Tell a Friend','2012-04-19 03:05:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(380,48,NULL,7,'Subject for Membership Signup','2012-03-08 08:32:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(381,48,NULL,7,'Subject for Membership Signup','2011-09-21 12:46:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(382,48,NULL,10,'Subject for Pledge Acknowledgment','2012-06-09 10:32:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(383,48,NULL,8,'Subject for Membership Renewal','2012-06-10 03:10:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(384,48,NULL,7,'Subject for Membership Signup','2011-11-06 07:27:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(385,48,NULL,8,'Subject for Membership Renewal','2011-12-22 03:46:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(386,48,NULL,7,'Subject for Membership Signup','2012-05-12 04:28:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(387,48,NULL,7,'Subject for Membership Signup','2012-01-24 11:31:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(388,48,NULL,10,'Subject for Pledge Acknowledgment','2011-10-19 10:57:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(389,48,NULL,9,'Subject for Tell a Friend','2012-02-28 09:23:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(390,48,NULL,9,'Subject for Tell a Friend','2011-09-13 12:37:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(391,48,NULL,9,'Subject for Tell a Friend','2012-01-31 12:21:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(392,48,NULL,10,'Subject for Pledge Acknowledgment','2011-11-23 12:16:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(393,48,NULL,8,'Subject for Membership Renewal','2012-03-30 04:50:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(394,48,NULL,10,'Subject for Pledge Acknowledgment','2012-07-07 07:36:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(395,48,NULL,10,'Subject for Pledge Acknowledgment','2012-04-19 07:36:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(396,48,NULL,10,'Subject for Pledge Acknowledgment','2012-06-29 10:41:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(397,48,NULL,8,'Subject for Membership Renewal','2012-04-19 01:37:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(398,48,NULL,7,'Subject for Membership Signup','2012-04-10 10:20:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(399,48,NULL,10,'Subject for Pledge Acknowledgment','2012-06-13 01:28:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(400,48,NULL,9,'Subject for Tell a Friend','2012-01-09 06:07:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(401,48,NULL,10,'Subject for Pledge Acknowledgment','2012-07-05 09:16:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(402,48,NULL,10,'Subject for Pledge Acknowledgment','2011-10-05 12:59:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(403,48,NULL,8,'Subject for Membership Renewal','2012-04-12 02:58:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(404,48,NULL,7,'Subject for Membership Signup','2012-06-11 07:20:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(405,48,NULL,8,'Subject for Membership Renewal','2012-02-05 11:16:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(406,48,NULL,10,'Subject for Pledge Acknowledgment','2012-07-18 05:43:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(407,48,NULL,8,'Subject for Membership Renewal','2012-03-04 06:03:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(408,48,NULL,7,'Subject for Membership Signup','2011-08-22 03:16:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(409,48,NULL,7,'Subject for Membership Signup','2012-02-13 07:55:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(410,48,NULL,7,'Subject for Membership Signup','2012-07-21 05:14:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(411,48,NULL,8,'Subject for Membership Renewal','2012-05-19 10:25:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(412,48,NULL,8,'Subject for Membership Renewal','2012-05-26 08:32:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(413,48,NULL,9,'Subject for Tell a Friend','2012-05-21 12:50:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(414,48,NULL,8,'Subject for Membership Renewal','2012-01-31 12:32:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(415,48,NULL,7,'Subject for Membership Signup','2012-01-29 12:23:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(416,48,NULL,10,'Subject for Pledge Acknowledgment','2011-12-22 01:08:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(417,48,NULL,9,'Subject for Tell a Friend','2012-06-17 12:44:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(418,48,NULL,8,'Subject for Membership Renewal','2012-07-17 10:59:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(419,48,NULL,8,'Subject for Membership Renewal','2011-10-26 12:17:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(420,48,NULL,8,'Subject for Membership Renewal','2012-08-07 12:17:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(421,48,NULL,10,'Subject for Pledge Acknowledgment','2011-11-11 04:42:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(422,48,NULL,9,'Subject for Tell a Friend','2012-01-23 02:47:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(423,48,NULL,9,'Subject for Tell a Friend','2012-03-19 12:27:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(424,48,NULL,7,'Subject for Membership Signup','2012-06-18 11:55:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(425,48,NULL,8,'Subject for Membership Renewal','2012-01-23 04:03:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(426,48,NULL,9,'Subject for Tell a Friend','2012-06-24 01:25:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(427,48,NULL,10,'Subject for Pledge Acknowledgment','2012-05-09 01:08:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(428,48,NULL,7,'Subject for Membership Signup','2012-03-20 04:09:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(429,48,NULL,7,'Subject for Membership Signup','2012-07-21 02:34:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(430,48,NULL,9,'Subject for Tell a Friend','2012-04-12 08:21:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(431,48,NULL,8,'Subject for Membership Renewal','2012-06-11 02:33:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(432,48,NULL,8,'Subject for Membership Renewal','2012-04-09 08:45:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(433,48,NULL,8,'Subject for Membership Renewal','2011-12-17 07:48:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(434,48,NULL,7,'Subject for Membership Signup','2012-04-09 11:12:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(435,48,NULL,8,'Subject for Membership Renewal','2011-12-14 11:11:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(436,48,NULL,8,'Subject for Membership Renewal','2011-12-07 08:01:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(437,48,NULL,7,'Subject for Membership Signup','2011-11-24 07:08:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(438,48,NULL,7,'Subject for Membership Signup','2012-02-12 06:27:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(439,48,NULL,10,'Subject for Pledge Acknowledgment','2012-03-09 02:03:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(440,48,NULL,9,'Subject for Tell a Friend','2012-01-19 05:47:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(441,48,NULL,10,'Subject for Pledge Acknowledgment','2011-11-11 02:15:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(442,48,NULL,7,'Subject for Membership Signup','2012-04-09 04:00:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(443,48,NULL,7,'Subject for Membership Signup','2011-12-30 06:37:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(444,48,NULL,9,'Subject for Tell a Friend','2012-05-04 07:10:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(445,48,NULL,10,'Subject for Pledge Acknowledgment','2012-07-28 01:43:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(446,48,NULL,9,'Subject for Tell a Friend','2012-06-27 05:50:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(447,48,NULL,9,'Subject for Tell a Friend','2011-12-19 07:58:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(448,48,NULL,9,'Subject for Tell a Friend','2011-12-16 08:11:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(449,48,NULL,8,'Subject for Membership Renewal','2011-12-03 02:16:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(450,48,NULL,10,'Subject for Pledge Acknowledgment','2012-05-01 06:24:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(451,70,1,7,'General','2012-08-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(452,51,2,7,'Student','2012-08-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(453,81,3,7,'General','2012-08-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(454,35,4,7,'Student','2012-08-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(455,62,5,7,'Student','2011-08-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(456,5,6,7,'Student','2012-08-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(457,28,7,7,'General','2012-08-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(458,74,8,7,'Student','2012-08-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(459,3,9,7,'General','2012-08-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(460,48,10,7,'General','2010-06-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(461,2,11,7,'Lifetime','2012-08-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(462,85,12,7,'Student','2012-08-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(463,65,13,7,'General','2012-08-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(464,15,14,7,'Student','2012-08-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(465,8,15,7,'Student','2011-08-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(466,25,16,7,'Student','2012-08-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(467,38,17,7,'General','2012-08-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(468,56,18,7,'Student','2012-08-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(469,9,19,7,'General','2012-08-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(470,59,20,7,'Student','2011-08-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(471,34,21,7,'General','2012-07-31 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(472,20,22,7,'Lifetime','2012-07-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(473,73,23,7,'General','2012-07-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(474,94,24,7,'Student','2012-07-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(475,61,25,7,'Student','2011-07-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(476,60,26,7,'Student','2012-07-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(477,67,27,7,'General','2012-07-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(478,100,28,7,'Student','2012-07-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(479,97,29,7,'General','2012-07-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(480,31,30,7,'Student','2011-07-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(481,32,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),(482,53,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),(483,26,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),(484,35,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),(485,97,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),(486,29,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),(487,16,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),(488,88,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),(489,64,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),(490,44,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),(491,7,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),(492,100,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),(493,62,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),(494,51,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),(495,24,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),(496,52,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),(497,54,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),(498,6,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),(499,76,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),(500,66,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),(501,80,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),(502,13,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),(503,19,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),(504,8,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),(505,99,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),(506,11,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),(507,20,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),(508,60,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),(509,79,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),(510,33,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),(511,92,31,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(512,84,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),(513,38,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),(514,3,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),(515,81,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),(516,93,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),(517,57,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),(518,21,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),(519,47,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),(520,71,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),(521,89,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),(522,73,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),(523,2,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),(524,85,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),(525,82,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),(526,34,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),(527,101,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),(528,18,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),(529,42,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),(530,39,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),(531,2,1,6,'$ 125.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(532,4,2,6,'$ 50.00-Online: Save the Penguins','2010-03-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(533,6,3,6,'$ 25.00-Apr 2007 Mailer 1','2010-04-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(534,8,4,6,'$ 50.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(535,16,5,6,'$ 500.00-Apr 2007 Mailer 1','2010-04-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(536,19,6,6,'$ 175.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(537,82,7,6,'$ 50.00-Online: Save the Penguins','2010-03-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(538,92,8,6,'$ 10.00-Online: Save the Penguins','2010-03-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(539,34,9,6,'$ 250.00-Online: Save the Penguins','2010-04-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(540,71,10,6,NULL,'2009-07-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(541,43,11,6,NULL,'2009-07-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(542,32,12,6,NULL,'2009-10-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(543,32,13,6,NULL,'2009-12-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_activity` ENABLE KEYS */; UNLOCK TABLES; @@ -97,7 +97,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_activity_assignment` WRITE; /*!40000 ALTER TABLE `civicrm_activity_assignment` DISABLE KEYS */; -INSERT INTO `civicrm_activity_assignment` (`id`, `activity_id`, `assignee_contact_id`) VALUES (14,35,3),(39,123,3),(115,437,4),(30,97,6),(12,33,8),(22,66,8),(54,182,8),(5,15,9),(11,30,10),(56,188,10),(65,221,10),(19,55,11),(92,343,11),(25,81,12),(28,89,12),(42,127,13),(2,6,14),(94,349,14),(66,228,15),(78,285,15),(89,334,15),(73,262,16),(31,98,18),(34,104,18),(46,146,18),(77,279,18),(51,163,20),(67,242,20),(84,313,21),(104,380,21),(3,10,22),(103,373,22),(114,427,22),(71,260,23),(112,409,23),(63,218,25),(24,75,26),(20,59,27),(74,266,28),(97,362,28),(107,394,28),(44,140,29),(88,329,29),(108,396,29),(110,404,30),(40,124,34),(6,21,36),(15,37,36),(55,183,36),(95,351,36),(111,407,36),(76,277,37),(90,337,37),(93,348,37),(16,41,38),(102,372,38),(18,53,40),(79,286,41),(38,122,42),(50,161,44),(8,26,45),(109,401,45),(80,290,46),(99,368,48),(10,29,49),(106,385,49),(13,34,50),(9,28,51),(52,166,52),(86,317,52),(83,306,53),(98,366,54),(27,88,55),(21,61,56),(59,202,56),(64,219,59),(26,83,60),(81,292,61),(23,70,62),(68,243,64),(49,157,65),(36,117,66),(72,261,66),(105,382,66),(47,147,67),(57,190,68),(75,272,68),(58,201,72),(101,371,73),(35,115,74),(29,90,75),(53,172,75),(7,23,76),(91,341,76),(60,206,81),(113,425,81),(87,326,84),(4,12,86),(48,148,87),(1,5,89),(37,121,89),(82,305,89),(32,100,90),(41,126,90),(45,141,90),(70,257,92),(116,438,92),(33,103,93),(100,370,94),(43,129,96),(85,316,96),(17,43,97),(69,245,97),(61,210,100),(62,213,100),(96,361,100); +INSERT INTO `civicrm_activity_assignment` (`id`, `activity_id`, `assignee_contact_id`) VALUES (9,40,2),(26,113,2),(49,220,3),(23,98,4),(35,173,4),(58,251,7),(76,341,7),(69,320,8),(90,398,8),(103,443,9),(78,345,12),(16,67,13),(84,378,13),(15,63,15),(87,384,16),(36,176,17),(25,112,19),(72,328,19),(92,408,19),(5,16,20),(10,47,20),(30,143,20),(46,210,20),(13,58,22),(42,197,22),(100,437,22),(32,165,23),(86,381,27),(50,223,28),(67,311,29),(79,351,29),(101,438,29),(3,6,31),(74,336,32),(60,254,34),(44,204,37),(45,207,37),(88,386,38),(83,376,39),(102,442,43),(29,122,44),(99,434,44),(20,86,46),(47,212,46),(53,233,48),(24,107,49),(81,357,49),(4,12,51),(19,85,51),(33,167,52),(73,334,52),(75,337,52),(77,343,52),(11,51,53),(48,214,54),(2,5,55),(57,246,55),(71,325,55),(41,195,58),(96,424,58),(91,404,59),(8,38,60),(95,415,60),(37,182,62),(38,183,62),(62,266,64),(66,305,65),(80,356,65),(28,119,66),(51,226,66),(1,2,67),(68,316,69),(21,93,70),(89,387,70),(97,428,71),(52,232,73),(17,75,74),(63,267,74),(22,96,75),(82,375,78),(43,201,81),(54,235,81),(7,32,83),(40,190,83),(61,265,83),(64,271,83),(14,60,84),(56,244,84),(70,323,84),(98,429,84),(12,55,85),(85,380,88),(34,169,90),(65,282,90),(93,409,91),(27,114,93),(59,253,93),(18,77,94),(31,150,94),(94,410,94),(55,237,95),(39,189,99),(6,30,101); /*!40000 ALTER TABLE `civicrm_activity_assignment` ENABLE KEYS */; UNLOCK TABLES; @@ -107,7 +107,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_activity_target` WRITE; /*!40000 ALTER TABLE `civicrm_activity_target` DISABLE KEYS */; -INSERT INTO `civicrm_activity_target` (`id`, `activity_id`, `target_contact_id`) VALUES (57,270,3),(42,194,4),(83,364,5),(90,391,5),(97,420,5),(55,264,6),(60,280,7),(58,271,11),(72,311,11),(12,62,12),(21,99,12),(101,430,12),(35,168,13),(19,87,14),(73,312,14),(76,336,16),(68,301,17),(33,155,18),(74,321,18),(36,170,20),(40,179,20),(99,422,22),(109,450,22),(20,95,23),(79,346,24),(87,381,24),(15,72,25),(37,175,26),(70,309,26),(96,412,27),(107,448,27),(14,69,28),(28,131,28),(64,294,28),(69,302,28),(34,158,32),(38,177,32),(53,255,32),(92,395,32),(65,296,36),(95,410,36),(25,118,37),(45,207,38),(46,209,38),(82,359,38),(77,339,39),(11,58,41),(61,284,41),(22,102,42),(81,353,42),(7,32,43),(13,68,44),(44,203,45),(89,389,49),(10,46,50),(50,239,50),(98,421,50),(32,151,51),(80,347,52),(59,273,53),(78,344,56),(9,45,58),(43,195,58),(2,4,60),(66,297,62),(103,440,62),(47,211,64),(88,386,64),(18,85,65),(29,136,65),(39,178,66),(62,289,67),(8,38,68),(31,150,68),(86,375,68),(94,408,68),(26,125,72),(84,365,72),(5,25,73),(102,439,73),(51,244,75),(17,80,77),(54,263,77),(75,323,77),(23,111,78),(27,130,83),(91,393,83),(106,446,84),(105,444,85),(1,3,86),(48,226,86),(67,300,87),(6,27,88),(52,250,88),(63,293,88),(100,428,89),(4,19,93),(85,367,93),(16,78,94),(93,406,94),(24,114,95),(56,268,96),(71,310,96),(49,237,97),(30,138,98),(104,441,98),(3,17,99),(108,449,100),(41,189,101); +INSERT INTO `civicrm_activity_target` (`id`, `activity_id`, `target_contact_id`) VALUES (2,13,1),(92,355,1),(26,125,2),(68,277,3),(108,423,3),(74,294,5),(88,344,5),(90,349,5),(15,84,6),(109,426,7),(101,389,8),(30,141,12),(55,216,12),(85,338,14),(104,400,16),(71,290,18),(1,7,19),(89,346,19),(100,379,19),(111,440,19),(98,369,20),(114,447,21),(10,68,22),(63,263,22),(18,100,23),(67,274,23),(82,324,23),(11,70,24),(83,327,24),(105,413,30),(13,74,32),(39,160,32),(51,200,32),(12,72,33),(44,171,33),(33,147,34),(57,225,34),(38,159,35),(4,24,36),(115,448,36),(96,366,37),(70,284,38),(3,23,39),(59,241,39),(94,362,39),(45,172,41),(65,268,41),(78,317,41),(29,140,43),(93,361,43),(23,121,44),(35,156,44),(48,184,44),(61,247,44),(84,333,44),(43,170,45),(47,181,46),(62,248,46),(16,87,48),(17,90,48),(112,444,49),(58,238,50),(24,123,52),(8,57,53),(40,161,53),(66,272,53),(80,321,53),(28,134,58),(73,292,60),(9,64,61),(37,158,61),(75,298,61),(22,115,63),(52,205,63),(5,37,66),(31,142,67),(54,215,67),(6,54,68),(81,322,71),(87,340,71),(113,446,72),(49,193,74),(99,372,76),(41,163,77),(46,177,77),(110,430,77),(21,106,79),(25,124,79),(53,208,79),(77,314,81),(79,319,83),(97,368,83),(34,151,87),(42,168,88),(64,264,88),(76,301,88),(91,354,88),(107,422,88),(19,102,89),(72,291,89),(32,146,91),(56,218,91),(50,198,92),(106,417,92),(27,132,93),(7,56,94),(102,390,94),(20,104,95),(69,278,98),(103,391,98),(36,157,99),(60,245,99),(86,339,99),(95,365,99),(14,76,101); /*!40000 ALTER TABLE `civicrm_activity_target` ENABLE KEYS */; UNLOCK TABLES; @@ -117,7 +117,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_address` WRITE; /*!40000 ALTER TABLE `civicrm_address` DISABLE KEYS */; -INSERT INTO `civicrm_address` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `street_address`, `street_number`, `street_number_suffix`, `street_number_predirectional`, `street_name`, `street_type`, `street_number_postdirectional`, `street_unit`, `supplemental_address_1`, `supplemental_address_2`, `supplemental_address_3`, `city`, `county_id`, `state_province_id`, `postal_code_suffix`, `postal_code`, `usps_adc`, `country_id`, `geo_code_1`, `geo_code_2`, `timezone`, `name`, `master_id`) VALUES (1,NULL,1,1,1,'15S 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,NULL,NULL,NULL),(2,27,1,1,0,'561F Green Way W',561,'F','SW','Green','Way','W',NULL,'Editorial Dept',NULL,NULL,'Canistota',1,1040,NULL,'57012',NULL,1228,43.608442,-97.25757,NULL,NULL,NULL),(3,49,1,1,0,'68J Caulder Ln E',68,'J','SE','Caulder','Ln','E',NULL,'C/o OPDC',NULL,NULL,'Kirby',1,1034,NULL,'43330',NULL,1228,40.813023,-83.419606,NULL,NULL,NULL),(4,35,1,1,0,'364T Main Pl SE',364,'T','SE','Main','Pl','SE',NULL,'Payables Dept.',NULL,NULL,'Newark Valley',1,1031,NULL,'13811',NULL,1228,42.222777,-76.17822,NULL,NULL,NULL),(5,72,1,1,0,'838U Green St NW',838,'U','SW','Green','St','NW',NULL,'Community Relations',NULL,NULL,'War',1,1047,NULL,'24892',NULL,1228,37.309666,-81.69546,NULL,NULL,NULL),(6,54,1,1,0,'703E Dowlen Way NE',703,'E','E','Dowlen','Way','NE',NULL,'Community Relations',NULL,NULL,'Wichita',1,1015,NULL,'67215',NULL,1228,37.626676,-97.42398,NULL,NULL,NULL),(7,21,1,1,0,'889G Beech Way SE',889,'G','SW','Beech','Way','SE',NULL,'Donor Relations',NULL,NULL,'Seattle',1,1046,NULL,'98121',NULL,1228,47.61487,-122.34578,NULL,NULL,NULL),(8,42,1,1,0,'434K Maple Way NW',434,'K','SE','Maple','Way','NW',NULL,'Mailstop 101',NULL,NULL,'Hillister',1,1042,NULL,'77624',NULL,1228,30.664543,-94.30391,NULL,NULL,NULL),(9,99,1,1,0,'303C Martin Luther King Pl E',303,'C','S','Martin Luther King','Pl','E',NULL,'Community Relations',NULL,NULL,'Latham',1,1034,NULL,'45646',NULL,1228,39.086218,-83.31764,NULL,NULL,NULL),(10,53,1,1,0,'846P Woodbridge Dr SE',846,'P','W','Woodbridge','Dr','SE',NULL,'Receiving',NULL,NULL,'Newport',1,1028,NULL,'03733',NULL,1228,43.38807,-72.243666,NULL,NULL,NULL),(11,101,1,1,0,'802D Cadell St S',802,'D','SE','Cadell','St','S',NULL,'Attn: Development',NULL,NULL,'San Diego',1,1042,NULL,'78384',NULL,1228,27.683506,-98.38142,NULL,NULL,NULL),(12,12,1,1,0,'958V Bay St E',958,'V','NW','Bay','St','E',NULL,'Donor Relations',NULL,NULL,'West Palm Beach',1,1008,NULL,'33401',NULL,1228,26.711192,-80.06043,NULL,NULL,NULL),(13,95,1,1,0,'850K Caulder Ln W',850,'K','NW','Caulder','Ln','W',NULL,'Disbursements',NULL,NULL,'Strandburg',1,1040,NULL,'57265',NULL,1228,45.014788,-96.78889,NULL,NULL,NULL),(14,63,1,1,0,'381S Caulder St E',381,'S','NW','Caulder','St','E',NULL,'Receiving',NULL,NULL,'Jacksonville',1,1024,NULL,'65260',NULL,1228,39.580455,-92.41023,NULL,NULL,NULL),(15,62,1,1,0,'546V Green Way NW',546,'V','E','Green','Way','NW',NULL,'Disbursements',NULL,NULL,'Ryan',1,1014,NULL,'52330',NULL,1228,42.338694,-91.49604,NULL,NULL,NULL),(16,91,1,1,0,'330C El Camino Ln W',330,'C','NW','El Camino','Ln','W',NULL,'Community Relations',NULL,NULL,'El Paso',1,1042,NULL,'88548',NULL,1228,31.694842,-106.299987,NULL,NULL,NULL),(17,8,1,1,0,'930O Pine Ln E',930,'O','W','Pine','Ln','E',NULL,'Donor Relations',NULL,NULL,'Mount Pleasant Mills',1,1037,NULL,'17853',NULL,1228,40.694161,-77.00629,NULL,NULL,NULL),(18,34,1,1,0,'957P Green Ln SE',957,'P','NW','Green','Ln','SE',NULL,'Receiving',NULL,NULL,'New York',1,1031,NULL,'10250',NULL,1228,40.709387,-74.016529,NULL,NULL,NULL),(19,77,1,1,0,'314L Maple Blvd S',314,'L','NE','Maple','Blvd','S',NULL,'Editorial Dept',NULL,NULL,'Ojo Caliente',1,1030,NULL,'87549',NULL,1228,36.362617,-106.02523,NULL,NULL,NULL),(20,84,1,1,0,'858F Green Blvd E',858,'F','SE','Green','Blvd','E',NULL,'Donor Relations',NULL,NULL,'Sanford',1,1008,NULL,'32771',NULL,1228,28.803979,-81.28761,NULL,NULL,NULL),(21,74,1,1,0,'342E El Camino St SW',342,'E','SW','El Camino','St','SW',NULL,'Donor Relations',NULL,NULL,'Harvest',1,1000,NULL,'35749',NULL,1228,34.815817,-86.76003,NULL,NULL,NULL),(22,58,1,1,0,'288T Woodbridge Blvd SW',288,'T','NE','Woodbridge','Blvd','SW',NULL,'Churchgate',NULL,NULL,'Coventry',1,1006,NULL,'06238',NULL,1228,41.778651,-72.33137,NULL,NULL,NULL),(23,73,1,1,0,'603Y College Path SW',603,'Y','NW','College','Path','SW',NULL,'Community Relations',NULL,NULL,'Portland',1,1018,NULL,'04101',NULL,1228,43.660525,-70.25862,NULL,NULL,NULL),(24,64,1,1,0,'386Y Van Ness Path NW',386,'Y','NE','Van Ness','Path','NW',NULL,'Churchgate',NULL,NULL,'Greenville',1,1039,NULL,'29614',NULL,1228,34.872423,-82.362585,NULL,NULL,NULL),(25,87,1,1,0,'492A Jackson Pl S',492,'A','W','Jackson','Pl','S',NULL,'Receiving',NULL,NULL,'New Orleans',1,1017,NULL,'70146',NULL,1228,30.032997,-89.882564,NULL,NULL,NULL),(26,11,1,1,0,'99Z Main St NW',99,'Z','S','Main','St','NW',NULL,'Mailstop 101',NULL,NULL,'Sandoval',1,1012,NULL,'62882',NULL,1228,38.60823,-89.11963,NULL,NULL,NULL),(27,38,1,1,0,'836O Cadell Blvd NE',836,'O','W','Cadell','Blvd','NE',NULL,'Payables Dept.',NULL,NULL,'El Paso',1,1042,NULL,'88572',NULL,1228,31.694842,-106.299987,NULL,NULL,NULL),(28,18,1,1,0,'398C Jackson Ave E',398,'C','SW','Jackson','Ave','E',NULL,'Editorial Dept',NULL,NULL,'Huntsville',1,1000,NULL,'35802',NULL,1228,34.666041,-86.55929,NULL,NULL,NULL),(29,15,1,1,0,'86N El Camino Blvd W',86,'N','E','El Camino','Blvd','W',NULL,'Subscriptions Dept',NULL,NULL,'Lexington',1,1016,NULL,'40515',NULL,1228,37.952113,-84.45347,NULL,NULL,NULL),(30,24,1,1,0,'966Q Northpoint Blvd SE',966,'Q','SW','Northpoint','Blvd','SE',NULL,'Community Relations',NULL,NULL,'Fairburn',1,1009,NULL,'30213',NULL,1228,33.565662,-84.59321,NULL,NULL,NULL),(31,44,1,1,0,'111I El Camino Ln S',111,'I','S','El Camino','Ln','S',NULL,'Churchgate',NULL,NULL,'Carlyle',1,1012,NULL,'62231',NULL,1228,38.623384,-89.36368,NULL,NULL,NULL),(32,76,3,1,0,'700L Main Blvd E',700,'L','NW','Main','Blvd','E',NULL,'C/o PO Plus',NULL,NULL,'Bynum',1,1042,NULL,'76631',NULL,1228,31.978157,-96.9725,NULL,NULL,NULL),(33,69,3,1,0,'373P Lincoln Pl SW',373,'P','NE','Lincoln','Pl','SW',NULL,'Donor Relations',NULL,NULL,'Welcome',1,1022,NULL,'56181',NULL,1228,43.672105,-94.61716,NULL,NULL,NULL),(34,13,3,1,0,'214F States St S',214,'F','NW','States','St','S',NULL,'Disbursements',NULL,NULL,'Washington',1,1050,NULL,'20460',NULL,1228,38.876362,-77.018798,NULL,NULL,NULL),(35,78,3,1,0,'753Q Lincoln Dr NE',753,'Q','NW','Lincoln','Dr','NE',NULL,'Cuffe Parade',NULL,NULL,'Evans Mills',1,1031,NULL,'13637',NULL,1228,44.091494,-75.82694,NULL,NULL,NULL),(36,2,3,1,0,'629X States Dr E',629,'X','S','States','Dr','E',NULL,'Attn: Development',NULL,NULL,'Granger',1,1013,NULL,'46530',NULL,1228,41.741872,-86.13717,NULL,NULL,NULL),(37,79,3,1,0,'254Y Van Ness Ave SE',254,'Y','NE','Van Ness','Ave','SE',NULL,'Payables Dept.',NULL,NULL,'Mobile',1,1000,NULL,'36602',NULL,1228,30.693389,-88.04416,NULL,NULL,NULL),(38,48,3,1,0,'834M Cadell Ave W',834,'M','W','Cadell','Ave','W',NULL,'Editorial Dept',NULL,NULL,'Cassandra',1,1037,NULL,'15925',NULL,1228,40.408989,-78.64104,NULL,NULL,NULL),(39,5,3,1,0,'593I Woodbridge Way E',593,'I','NE','Woodbridge','Way','E',NULL,'Disbursements',NULL,NULL,'San Ysidro',1,1004,NULL,'92143',NULL,1228,33.016928,-116.846046,NULL,NULL,NULL),(40,75,3,1,0,'602T Bay Path W',602,'T','NW','Bay','Path','W',NULL,'Receiving',NULL,NULL,'Lehigh Valley',1,1037,NULL,'18003',NULL,1228,40.693376,-75.471156,NULL,NULL,NULL),(41,14,3,1,0,'70B Dowlen St E',70,'B','W','Dowlen','St','E',NULL,'Churchgate',NULL,NULL,'Albion',1,1014,NULL,'50005',NULL,1228,42.116477,-93.00357,NULL,NULL,NULL),(42,85,1,1,0,'988G Main Dr NE',988,'G','W','Main','Dr','NE',NULL,'Attn: Development',NULL,NULL,'Clothier',1,1047,NULL,'25047',NULL,1228,37.950033,-81.78924,NULL,NULL,NULL),(43,28,1,1,0,'938R Green Path W',938,'R','NW','Green','Path','W',NULL,'Subscriptions Dept',NULL,NULL,'Jordanville',1,1031,NULL,'13361',NULL,1228,42.902922,-74.89149,NULL,NULL,NULL),(44,41,1,1,0,'142I Martin Luther King St SW',142,'I','E','Martin Luther King','St','SW',NULL,'Mailstop 101',NULL,NULL,'Converse',1,1013,NULL,'46919',NULL,1228,40.580773,-85.86648,NULL,NULL,NULL),(45,40,1,1,0,'697Y Main St NW',697,'Y','NE','Main','St','NW',NULL,'Payables Dept.',NULL,NULL,'Aspen',1,1005,NULL,'81611',NULL,1228,39.196857,-106.8191,NULL,NULL,NULL),(46,52,1,1,0,'654D Cadell Ln NW',654,'D','NW','Cadell','Ln','NW',NULL,'Subscriptions Dept',NULL,NULL,'Whitesburg',1,1016,NULL,'41858',NULL,1228,37.130559,-82.83185,NULL,NULL,NULL),(47,20,1,1,0,'574G Pine Way NE',574,'G','W','Pine','Way','NE',NULL,'Attn: Development',NULL,NULL,'Grand Lake',1,1005,NULL,'80447',NULL,1228,40.23832,-105.84688,NULL,NULL,NULL),(48,45,1,1,0,'16S College Dr NW',16,'S','E','College','Dr','NW',NULL,'Editorial Dept',NULL,NULL,'Carbonado',1,1046,NULL,'98323',NULL,1228,47.035525,-121.951,NULL,NULL,NULL),(49,7,1,1,0,'958U College Blvd E',958,'U','W','College','Blvd','E',NULL,'Mailstop 101',NULL,NULL,'Madison',1,1048,NULL,'53710',NULL,1228,43.06956,-89.423861,NULL,NULL,NULL),(50,36,1,1,0,'841W Martin Luther King Dr SE',841,'W','S','Martin Luther King','Dr','SE',NULL,'Subscriptions Dept',NULL,NULL,'Crane',1,1025,NULL,'59217',NULL,1228,47.577478,-104.25806,NULL,NULL,NULL),(51,3,1,1,0,'555W States Dr W',555,'W','E','States','Dr','W',NULL,'Payables Dept.',NULL,NULL,'Ceres',1,1045,NULL,'24318',NULL,1228,36.982193,-81.38945,NULL,NULL,NULL),(52,67,1,1,0,'195A Woodbridge Ave NE',195,'A','E','Woodbridge','Ave','NE',NULL,'Editorial Dept',NULL,NULL,'Raymond',1,1026,NULL,'68428',NULL,1228,40.969816,-96.82364,NULL,NULL,NULL),(53,97,1,1,0,'66F College Path NW',66,'F','SE','College','Path','NW',NULL,'Urgent',NULL,NULL,'Bloomingdale',1,1012,NULL,'60117',NULL,1228,41.839679,-88.088716,NULL,NULL,NULL),(54,26,1,1,0,'818R Jackson St W',818,'R','SE','Jackson','St','W',NULL,'Churchgate',NULL,NULL,'Byers',1,1005,NULL,'80103',NULL,1228,39.746563,-104.17162,NULL,NULL,NULL),(55,23,1,1,0,'927M Van Ness Path NW',927,'M','SE','Van Ness','Path','NW',NULL,'Disbursements',NULL,NULL,'Glen Saint Mary',1,1008,NULL,'32040',NULL,1228,30.272356,-82.21351,NULL,NULL,NULL),(56,9,1,1,0,'993M El Camino Pl SW',993,'M','SE','El Camino','Pl','SW',NULL,'Donor Relations',NULL,NULL,'Galatia',1,1012,NULL,'62935',NULL,1228,37.836537,-88.62298,NULL,NULL,NULL),(57,30,1,1,0,'457S Martin Luther King Ln SW',457,'S','SW','Martin Luther King','Ln','SW',NULL,'Subscriptions Dept',NULL,NULL,'Lincoln',1,1015,NULL,'66356',NULL,1228,37.57189,-94.654599,NULL,NULL,NULL),(58,90,1,1,0,'892P Martin Luther King Path NE',892,'P','NE','Martin Luther King','Path','NE',NULL,'Mailstop 101',NULL,NULL,'Van',1,1042,NULL,'75790',NULL,1228,32.533765,-95.63493,NULL,NULL,NULL),(59,17,1,1,0,'517E Martin Luther King Path W',517,'E','NE','Martin Luther King','Path','W',NULL,'Churchgate',NULL,NULL,'Brookshire',1,1042,NULL,'77423',NULL,1228,29.80038,-95.98452,NULL,NULL,NULL),(60,51,1,1,0,'889N Martin Luther King St S',889,'N','W','Martin Luther King','St','S',NULL,'Attn: Development',NULL,NULL,'Talihina',1,1035,NULL,'74571',NULL,1228,34.729815,-95.03625,NULL,NULL,NULL),(61,37,1,1,0,'409M Martin Luther King Pl SE',409,'M','NW','Martin Luther King','Pl','SE',NULL,'Cuffe Parade',NULL,NULL,'Des Moines',1,1014,NULL,'50309',NULL,1228,41.585939,-93.62004,NULL,NULL,NULL),(62,55,1,1,0,'57S Cadell Ln SW',57,'S','NE','Cadell','Ln','SW',NULL,'Subscriptions Dept',NULL,NULL,'Catharpin',1,1045,NULL,'20143',NULL,1228,38.858613,-77.56391,NULL,NULL,NULL),(63,93,1,1,0,'65F States Ln W',65,'F','S','States','Ln','W',NULL,'Community Relations',NULL,NULL,'Islesboro',1,1018,NULL,'04848',NULL,1228,44.305981,-68.90883,NULL,NULL,NULL),(64,46,1,1,0,'6F Cadell Ave SW',6,'F','SW','Cadell','Ave','SW',NULL,'Donor Relations',NULL,NULL,'Douglasville',1,1009,NULL,'30134',NULL,1228,33.769636,-84.74967,NULL,NULL,NULL),(65,19,1,1,0,'825H Maple Dr SE',825,'H','W','Maple','Dr','SE',NULL,'Urgent',NULL,NULL,'Vestaburg',1,1037,NULL,'15368',NULL,1228,40.015501,-79.99019,NULL,NULL,NULL),(66,43,1,1,0,'523L Jackson Dr W',523,'L','SE','Jackson','Dr','W',NULL,'C/o PO Plus',NULL,NULL,'El Cajon',1,1004,NULL,'92021',NULL,1228,32.8201,-116.91234,NULL,NULL,NULL),(67,50,1,1,0,'212I El Camino Way NE',212,'I','SW','El Camino','Way','NE',NULL,'Payables Dept.',NULL,NULL,'Evangeline',1,1017,NULL,'70537',NULL,1228,30.261809,-92.5677,NULL,NULL,NULL),(68,22,1,1,0,'192H Caulder Pl NE',192,'H','SE','Caulder','Pl','NE',NULL,'Subscriptions Dept',NULL,NULL,'Carrizozo',1,1030,NULL,'88301',NULL,1228,33.710312,-105.88218,NULL,NULL,NULL),(69,31,1,1,0,'609V Dowlen Blvd SE',609,'V','S','Dowlen','Blvd','SE',NULL,'Disbursements',NULL,NULL,'Concord',1,1032,NULL,'28025',NULL,1228,35.400407,-80.56574,NULL,NULL,NULL),(70,100,1,1,0,'183P States Blvd S',183,'P','NW','States','Blvd','S',NULL,'Mailstop 101',NULL,NULL,'Atlanta',1,1009,NULL,'30379',NULL,1228,33.844371,-84.47405,NULL,NULL,NULL),(71,61,1,1,0,'586S El Camino Dr S',586,'S','E','El Camino','Dr','S',NULL,'C/o OPDC',NULL,NULL,'Chandler',1,1022,NULL,'56122',NULL,1228,43.89707,-95.95855,NULL,NULL,NULL),(72,56,1,1,0,'902X Jackson Path W',902,'X','SE','Jackson','Path','W',NULL,'Cuffe Parade',NULL,NULL,'Newburgh',1,1031,NULL,'12552',NULL,1228,41.387822,-74.354699,NULL,NULL,NULL),(73,83,1,1,0,'53A Main Path SW',53,'A','E','Main','Path','SW',NULL,'Payables Dept.',NULL,NULL,'Edwardsburg',1,1021,NULL,'49112',NULL,1228,41.797792,-86.02616,NULL,NULL,NULL),(74,98,1,1,0,'760X Caulder Ln NW',760,'X','SW','Caulder','Ln','NW',NULL,'Disbursements',NULL,NULL,'Ridgely',1,1019,NULL,'21686',NULL,1228,38.88927,-75.861191,NULL,NULL,NULL),(75,92,1,1,0,'393C Van Ness Ave W',393,'C','NW','Van Ness','Ave','W',NULL,'Community Relations',NULL,NULL,'Nashwauk',1,1022,NULL,'55769',NULL,1228,47.406731,-93.1645,NULL,NULL,NULL),(76,80,1,1,0,'876Q Van Ness Path SE',876,'Q','W','Van Ness','Path','SE',NULL,'Payables Dept.',NULL,NULL,'Incline Village',1,1027,NULL,'89451',NULL,1228,39.245257,-119.95204,NULL,NULL,NULL),(77,57,1,1,0,'169D Jackson Blvd SE',169,'D','SE','Jackson','Blvd','SE',NULL,'Community Relations',NULL,NULL,'Cadott',1,1048,NULL,'54727',NULL,1228,44.963809,-91.16181,NULL,NULL,NULL),(78,86,1,1,0,'716G Main Blvd NE',716,'G','NW','Main','Blvd','NE',NULL,'Community Relations',NULL,NULL,'Creston',1,1014,NULL,'50801',NULL,1228,41.070905,-94.38448,NULL,NULL,NULL),(79,81,1,1,0,'887P Cadell Way S',887,'P','NW','Cadell','Way','S',NULL,'Urgent',NULL,NULL,'Martinsville',1,1029,NULL,'08836',NULL,1228,40.595552,-74.55174,NULL,NULL,NULL),(80,88,1,1,0,'167A Martin Luther King Pl NE',167,'A','NW','Martin Luther King','Pl','NE',NULL,'Churchgate',NULL,NULL,'Stockton',1,1000,NULL,'36579',NULL,1228,31.126122,-87.80317,NULL,NULL,NULL),(81,71,1,1,0,'843R Van Ness St W',843,'R','W','Van Ness','St','W',NULL,'Mailstop 101',NULL,NULL,'Whittier',1,1004,NULL,'90604',NULL,1228,33.929163,-118.009,NULL,NULL,NULL),(82,10,1,1,0,'260O Jackson Dr NE',260,'O','S','Jackson','Dr','NE',NULL,'Receiving',NULL,NULL,'Otoe',1,1026,NULL,'68417',NULL,1228,40.728493,-96.09516,NULL,NULL,NULL),(83,94,1,1,0,'186I Maple Ln W',186,'I','E','Maple','Ln','W',NULL,'Disbursements',NULL,NULL,'New Lothrop',1,1021,NULL,'48460',NULL,1228,43.131102,-83.98443,NULL,NULL,NULL),(84,65,1,1,0,'934I Main Dr SE',934,'I','E','Main','Dr','SE',NULL,'Attn: Development',NULL,NULL,'Holts Summit',1,1024,NULL,'65043',NULL,1228,38.632055,-92.11831,NULL,NULL,NULL),(85,82,1,1,0,'544Z Beech Blvd E',544,'Z','NW','Beech','Blvd','E',NULL,'C/o PO Plus',NULL,NULL,'Arp',1,1042,NULL,'75750',NULL,1228,32.254414,-95.06517,NULL,NULL,NULL),(86,4,1,1,0,'468Y Maple Ln NE',468,'Y','SW','Maple','Ln','NE',NULL,'Churchgate',NULL,NULL,'Bella Vista',1,1004,NULL,'96008',NULL,1228,40.732501,-122.11264,NULL,NULL,NULL),(87,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,NULL,NULL,NULL),(88,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,NULL,NULL,NULL),(89,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,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`, `timezone`, `name`, `master_id`) VALUES (1,NULL,1,1,1,'15S 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,NULL,NULL,NULL),(2,30,1,1,0,'890U Woodbridge Ln SW',890,'U','E','Woodbridge','Ln','SW',NULL,'Cuffe Parade',NULL,NULL,'Mount Union',1,1014,NULL,'52644',NULL,1228,41.038005,-91.39992,NULL,NULL,NULL),(3,32,1,1,0,'726K Van Ness Path W',726,'K','E','Van Ness','Path','W',NULL,'Mailstop 101',NULL,NULL,'Magdalena',1,1030,NULL,'87825',NULL,1228,34.139451,-107.36816,NULL,NULL,NULL),(4,74,1,1,0,'762M Woodbridge St SW',762,'M','SW','Woodbridge','St','SW',NULL,'Editorial Dept',NULL,NULL,'New York',1,1031,NULL,'10278',NULL,1228,40.715721,-74.00395,NULL,NULL,NULL),(5,42,1,1,0,'524G Woodbridge Pl S',524,'G','NE','Woodbridge','Pl','S',NULL,'Urgent',NULL,NULL,'Conroe',1,1042,NULL,'77385',NULL,1228,30.18771,-95.43893,NULL,NULL,NULL),(6,57,1,1,0,'558R Woodbridge Ave S',558,'R','SE','Woodbridge','Ave','S',NULL,'Urgent',NULL,NULL,'Rockingham',1,1032,NULL,'28379',NULL,1228,34.937078,-79.7605,NULL,NULL,NULL),(7,64,1,1,0,'718P Pine Dr S',718,'P','SW','Pine','Dr','S',NULL,'Community Relations',NULL,NULL,'Hartville',1,1034,NULL,'44632',NULL,1228,40.96289,-81.32814,NULL,NULL,NULL),(8,53,1,1,0,'409Z Caulder St SE',409,'Z','SE','Caulder','St','SE',NULL,'Subscriptions Dept',NULL,NULL,'Somerset',1,1045,NULL,'22972',NULL,1228,38.214023,-78.21596,NULL,NULL,NULL),(9,35,1,1,0,'234O Main Blvd NW',234,'O','SE','Main','Blvd','NW',NULL,'Disbursements',NULL,NULL,'Palmetto',1,1009,NULL,'30268',NULL,1228,33.527793,-84.69453,NULL,NULL,NULL),(10,13,1,1,0,'367H Pine Way NE',367,'H','W','Pine','Way','NE',NULL,'C/o PO Plus',NULL,NULL,'Chinle',1,1002,NULL,'86503',NULL,1228,36.165779,-109.61956,NULL,NULL,NULL),(11,6,1,1,0,'950Z Martin Luther King Dr S',950,'Z','SE','Martin Luther King','Dr','S',NULL,'Mailstop 101',NULL,NULL,'Heath',1,1034,NULL,'43056',NULL,1228,40.017096,-82.34322,NULL,NULL,NULL),(12,59,1,1,0,'181B Van Ness St NW',181,'B','S','Van Ness','St','NW',NULL,'Editorial Dept',NULL,NULL,'Fairmont',1,1035,NULL,'73736',NULL,1228,36.347664,-97.69316,NULL,NULL,NULL),(13,20,1,1,0,'699C Cadell Ln SW',699,'C','SW','Cadell','Ln','SW',NULL,'Attn: Development',NULL,NULL,'Rock Point',1,1002,NULL,'86545',NULL,1228,36.662243,-109.59931,NULL,NULL,NULL),(14,90,1,1,0,'406I Jackson Pl NW',406,'I','E','Jackson','Pl','NW',NULL,'C/o PO Plus',NULL,NULL,'Woodward',1,1014,NULL,'50276',NULL,1228,41.855315,-93.92795,NULL,NULL,NULL),(15,25,1,1,0,'571C El Camino Ln NW',571,'C','SE','El Camino','Ln','NW',NULL,'Mailstop 101',NULL,NULL,'Mount Vernon',1,1024,NULL,'65712',NULL,1228,37.101742,-93.80738,NULL,NULL,NULL),(16,48,1,1,0,'957I El Camino Blvd S',957,'I','SW','El Camino','Blvd','S',NULL,'Cuffe Parade',NULL,NULL,'Florissant',1,1024,NULL,'63034',NULL,1228,38.832863,-90.29051,NULL,NULL,NULL),(17,41,1,1,0,'564Z Pine Path NW',564,'Z','NW','Pine','Path','NW',NULL,'Cuffe Parade',NULL,NULL,'Glenwood',1,1012,NULL,'60425',NULL,1228,41.544584,-87.61289,NULL,NULL,NULL),(18,43,1,1,0,'718D Pine Blvd SW',718,'D','E','Pine','Blvd','SW',NULL,'Community Relations',NULL,NULL,'La Mesa',1,1004,NULL,'91942',NULL,1228,32.785,-117.0186,NULL,NULL,NULL),(19,18,1,1,0,'218L El Camino Blvd NE',218,'L','NE','El Camino','Blvd','NE',NULL,'Receiving',NULL,NULL,'Springfield',1,1020,NULL,'01138',NULL,1228,42.170731,-72.604842,NULL,NULL,NULL),(20,101,1,1,0,'321D Pine Blvd NW',321,'D','S','Pine','Blvd','NW',NULL,'Cuffe Parade',NULL,NULL,'Battle Ground',1,1046,NULL,'98604',NULL,1228,45.791345,-122.51789,NULL,NULL,NULL),(21,47,1,1,0,'1000G States Way E',1000,'G','NE','States','Way','E',NULL,'Cuffe Parade',NULL,NULL,'Bogota',1,1041,NULL,'38007',NULL,1228,36.158668,-89.437684,NULL,NULL,NULL),(22,44,1,1,0,'486M Maple Way NE',486,'M','SW','Maple','Way','NE',NULL,'Community Relations',NULL,NULL,'Blue Eye',1,1024,NULL,'65611',NULL,1228,36.54602,-93.34364,NULL,NULL,NULL),(23,92,1,1,0,'843K Lincoln Pl NW',843,'K','NW','Lincoln','Pl','NW',NULL,'C/o OPDC',NULL,NULL,'Aurora',1,1005,NULL,'80046',NULL,1228,39.738752,-104.408349,NULL,NULL,NULL),(24,54,1,1,0,'557B Northpoint Ave E',557,'B','NW','Northpoint','Ave','E',NULL,'Churchgate',NULL,NULL,'San Mateo',1,1004,NULL,'94405',NULL,1228,37.381144,-122.334825,NULL,NULL,NULL),(25,84,1,1,0,'436K Dowlen Pl NE',436,'K','SW','Dowlen','Pl','NE',NULL,'C/o PO Plus',NULL,NULL,'Perry',1,1021,NULL,'48872',NULL,1228,42.807435,-84.22291,NULL,NULL,NULL),(26,11,1,1,0,'784Z Beech Dr SE',784,'Z','NE','Beech','Dr','SE',NULL,'Receiving',NULL,NULL,'Stevenson',1,1046,NULL,'98648',NULL,1228,45.669604,-121.91332,NULL,NULL,NULL),(27,52,1,1,0,'899B Beech Blvd NW',899,'B','SE','Beech','Blvd','NW',NULL,'Attn: Development',NULL,NULL,'Nanty Glo',1,1037,NULL,'15943',NULL,1228,40.474488,-78.84402,NULL,NULL,NULL),(28,83,1,1,0,'918A Martin Luther King Ave SW',918,'A','S','Martin Luther King','Ave','SW',NULL,'Donor Relations',NULL,NULL,'Benton',1,1017,NULL,'71006',NULL,1228,32.697056,-93.6991,NULL,NULL,NULL),(29,88,1,1,0,'660P Martin Luther King Path SE',660,'P','W','Martin Luther King','Path','SE',NULL,'Subscriptions Dept',NULL,NULL,'New Edinburg',1,1003,NULL,'71660',NULL,1228,33.736301,-92.18447,NULL,NULL,NULL),(30,23,1,1,0,'126O Green Path NE',126,'O','NW','Green','Path','NE',NULL,'Payables Dept.',NULL,NULL,'West Covina',1,1004,NULL,'91793',NULL,1228,33.786594,-118.298662,NULL,NULL,NULL),(31,10,1,1,0,'419K Northpoint Path SE',419,'K','E','Northpoint','Path','SE',NULL,'Attn: Development',NULL,NULL,'Erie',1,1037,NULL,'16538',NULL,1228,42.182748,-80.064915,NULL,NULL,NULL),(32,95,3,1,0,'964A Maple Path NE',964,'A','S','Maple','Path','NE',NULL,'C/o OPDC',NULL,NULL,'Simi Valley',1,1004,NULL,'93065',NULL,1228,34.265003,-118.77177,NULL,NULL,NULL),(33,12,3,1,0,'166W Caulder Way E',166,'W','NW','Caulder','Way','E',NULL,'Payables Dept.',NULL,NULL,'Port Charlotte',1,1008,NULL,'33980',NULL,1228,26.983094,-82.05972,NULL,NULL,NULL),(34,45,3,1,0,'634B College Pl SW',634,'B','NE','College','Pl','SW',NULL,'Receiving',NULL,NULL,'West Palm Beach',1,1008,NULL,'33401',NULL,1228,26.711192,-80.06043,NULL,NULL,NULL),(35,22,3,1,0,'880Y Bay St E',880,'Y','NW','Bay','St','E',NULL,'Mailstop 101',NULL,NULL,'Bazine',1,1015,NULL,'67516',NULL,1228,38.400425,-99.68699,NULL,NULL,NULL),(36,72,3,1,0,'529X Caulder Path NE',529,'X','NE','Caulder','Path','NE',NULL,'Payables Dept.',NULL,NULL,'Griswold',1,1014,NULL,'51535',NULL,1228,41.232047,-95.13871,NULL,NULL,NULL),(37,77,3,1,0,'498B Jackson Path W',498,'B','S','Jackson','Path','W',NULL,'Urgent',NULL,NULL,'Frenchtown',1,1025,NULL,'59834',NULL,1228,47.049623,-114.25074,NULL,NULL,NULL),(38,26,3,1,0,'117T Martin Luther King Way NW',117,'T','NW','Martin Luther King','Way','NW',NULL,'Payables Dept.',NULL,NULL,'Fincastle',1,1045,NULL,'24090',NULL,1228,37.512912,-79.87046,NULL,NULL,NULL),(39,16,3,1,0,'383V Northpoint Path W',383,'V','S','Northpoint','Path','W',NULL,'C/o PO Plus',NULL,NULL,'Sciota',1,1037,NULL,'18354',NULL,1228,40.922005,-75.32185,NULL,NULL,NULL),(40,17,3,1,0,'565Z Martin Luther King Ave NW',565,'Z','NW','Martin Luther King','Ave','NW',NULL,'Disbursements',NULL,NULL,'Three Bridges',1,1029,NULL,'08887',NULL,1228,40.525361,-74.79632,NULL,NULL,NULL),(41,19,3,1,0,'863G College Pl S',863,'G','S','College','Pl','S',NULL,'Churchgate',NULL,NULL,'Saint Paul',1,1022,NULL,'55170',NULL,1228,45.005902,-93.105869,NULL,NULL,NULL),(42,37,1,1,0,'30D Lincoln Path S',30,'D','S','Lincoln','Path','S',NULL,'Attn: Development',NULL,NULL,'Silver Creek',1,1009,NULL,'30173',NULL,1228,34.145931,-85.14342,NULL,NULL,NULL),(43,9,1,1,0,'989F El Camino Path E',989,'F','W','El Camino','Path','E',NULL,'Attn: Development',NULL,NULL,'Lowndesville',1,1039,NULL,'29659',NULL,1228,34.210243,-82.63239,NULL,NULL,NULL),(44,76,1,1,0,'710O Beech Dr W',710,'O','NW','Beech','Dr','W',NULL,'Cuffe Parade',NULL,NULL,'Patten',1,1018,NULL,'04765',NULL,1228,46.024219,-68.49241,NULL,NULL,NULL),(45,29,1,1,0,'197F Van Ness Dr W',197,'F','SE','Van Ness','Dr','W',NULL,'Attn: Development',NULL,NULL,'Iron Ridge',1,1048,NULL,'53035',NULL,1228,43.395861,-88.53606,NULL,NULL,NULL),(46,66,1,1,0,'323P Cadell Ln NE',323,'P','S','Cadell','Ln','NE',NULL,'Disbursements',NULL,NULL,'Chacon',1,1030,NULL,'87713',NULL,1228,36.14795,-105.37302,NULL,NULL,NULL),(47,56,1,1,0,'957E Lincoln Dr SE',957,'E','SE','Lincoln','Dr','SE',NULL,'C/o PO Plus',NULL,NULL,'Milton',1,1012,NULL,'60127',NULL,1228,41.878878,-88.134469,NULL,NULL,NULL),(48,86,1,1,0,'909S Main Ave SE',909,'S','NW','Main','Ave','SE',NULL,'Cuffe Parade',NULL,NULL,'Searsport',1,1018,NULL,'04974',NULL,1228,44.500622,-68.92829,NULL,NULL,NULL),(49,80,1,1,0,'436K El Camino Blvd W',436,'K','SW','El Camino','Blvd','W',NULL,'Editorial Dept',NULL,NULL,'Kamrar',1,1014,NULL,'50132',NULL,1228,42.393155,-93.70867,NULL,NULL,NULL),(50,98,1,1,0,'103G Pine Pl NW',103,'G','NW','Pine','Pl','NW',NULL,'Donor Relations',NULL,NULL,'Tracy',1,1004,NULL,'95377',NULL,1228,37.72374,-121.447131,NULL,NULL,NULL),(51,8,1,1,0,'989Z Maple St SW',989,'Z','NW','Maple','St','SW',NULL,'C/o PO Plus',NULL,NULL,'Browder',1,1016,NULL,'42326',NULL,1228,37.198074,-87.01403,NULL,NULL,NULL),(52,34,1,1,0,'427C Green Ave E',427,'C','SE','Green','Ave','E',NULL,'Subscriptions Dept',NULL,NULL,'Patch Grove',1,1048,NULL,'53817',NULL,1228,42.941786,-90.97564,NULL,NULL,NULL),(53,60,1,1,0,'273U Caulder Ln E',273,'U','NW','Caulder','Ln','E',NULL,'Subscriptions Dept',NULL,NULL,'Amberg',1,1048,NULL,'54102',NULL,1228,45.503625,-88.08108,NULL,NULL,NULL),(54,97,1,1,0,'893W Jackson Ave NE',893,'W','S','Jackson','Ave','NE',NULL,'Editorial Dept',NULL,NULL,'Vero Beach',1,1008,NULL,'32964',NULL,1228,27.709049,-80.572557,NULL,NULL,NULL),(55,28,1,1,0,'746I Van Ness Path S',746,'I','NE','Van Ness','Path','S',NULL,'Payables Dept.',NULL,NULL,'Fort Lauderdale',1,1008,NULL,'33359',NULL,1228,26.145724,-80.448254,NULL,NULL,NULL),(56,99,1,1,0,'356Y Woodbridge Blvd NE',356,'Y','SE','Woodbridge','Blvd','NE',NULL,'Urgent',NULL,NULL,'Beaverton',1,1036,NULL,'97077',NULL,1228,45.548616,-123.114725,NULL,NULL,NULL),(57,27,1,1,0,'953G Martin Luther King Path SE',953,'G','W','Martin Luther King','Path','SE',NULL,'Community Relations',NULL,NULL,'Gainesville',1,1008,NULL,'32613',NULL,1228,29.681312,-82.353862,NULL,NULL,NULL),(58,75,1,1,0,'301B States Blvd E',301,'B','E','States','Blvd','E',NULL,'Mailstop 101',NULL,NULL,'San Juan',1,1056,NULL,'00915',NULL,1228,18.436995,-66.04888,NULL,NULL,NULL),(59,89,1,1,0,'781A Main Pl E',781,'A','SE','Main','Pl','E',NULL,'C/o PO Plus',NULL,NULL,'Detroit Lakes',1,1022,NULL,'56502',NULL,1228,46.933961,-95.678375,NULL,NULL,NULL),(60,65,1,1,0,'594N Pine Blvd SE',594,'N','S','Pine','Blvd','SE',NULL,'Disbursements',NULL,NULL,'Oxford',1,1020,NULL,'01540',NULL,1228,42.117527,-71.8657,NULL,NULL,NULL),(61,87,1,1,0,'757A College Ln SW',757,'A','W','College','Ln','SW',NULL,'Disbursements',NULL,NULL,'Deputy',1,1013,NULL,'47230',NULL,1228,38.802781,-85.62922,NULL,NULL,NULL),(62,46,1,1,0,'617Y Lincoln Way E',617,'Y','S','Lincoln','Way','E',NULL,'Receiving',NULL,NULL,'Houston',1,1042,NULL,'77270',NULL,1228,29.83399,-95.434241,NULL,NULL,NULL),(63,38,1,1,0,'462H College Way NW',462,'H','NW','College','Way','NW',NULL,'Disbursements',NULL,NULL,'Deerfield Beach',1,1008,NULL,'33441',NULL,1228,26.309657,-80.09541,NULL,NULL,NULL),(64,40,1,1,0,'284K Northpoint Blvd SW',284,'K','S','Northpoint','Blvd','SW',NULL,'Donor Relations',NULL,NULL,'Gloverville',1,1039,NULL,'29828',NULL,1228,33.523241,-81.82785,NULL,NULL,NULL),(65,58,1,1,0,'711H College Dr S',711,'H','S','College','Dr','S',NULL,'Attn: Development',NULL,NULL,'Okmulgee',1,1035,NULL,'74447',NULL,1228,35.628612,-95.9734,NULL,NULL,NULL),(66,4,1,1,0,'267O Cadell Dr SW',267,'O','NE','Cadell','Dr','SW',NULL,'Disbursements',NULL,NULL,'Thornburg',1,1014,NULL,'50255',NULL,1228,41.336267,-92.178366,NULL,NULL,NULL),(67,67,1,1,0,'495D El Camino Ln E',495,'D','SW','El Camino','Ln','E',NULL,'Donor Relations',NULL,NULL,'Crystal Lake',1,1012,NULL,'60012',NULL,1228,42.265643,-88.31664,NULL,NULL,NULL),(68,3,1,1,0,'485H Cadell Pl W',485,'H','E','Cadell','Pl','W',NULL,'Receiving',NULL,NULL,'Walker Valley',1,1031,NULL,'12588',NULL,1228,41.878801,-74.345684,NULL,NULL,NULL),(69,15,1,1,0,'105J Beech Blvd NW',105,'J','NE','Beech','Blvd','NW',NULL,'Mailstop 101',NULL,NULL,'Hillsdale',1,1035,NULL,'73743',NULL,1228,36.563732,-97.99385,NULL,NULL,NULL),(70,33,1,1,0,'946J College Blvd SW',946,'J','S','College','Blvd','SW',NULL,'C/o OPDC',NULL,NULL,'Taylor',1,1017,NULL,'71080',NULL,1228,32.366002,-93.101086,NULL,NULL,NULL),(71,50,1,1,0,'504Y Main Ave E',504,'Y','E','Main','Ave','E',NULL,'Subscriptions Dept',NULL,NULL,'Montour',1,1014,NULL,'50173',NULL,1228,41.980296,-92.711,NULL,NULL,NULL),(72,21,1,1,0,'447I Beech Path NE',447,'I','SE','Beech','Path','NE',NULL,'Community Relations',NULL,NULL,'Surprise',1,1002,NULL,'85378',NULL,1228,33.276539,-112.18717,NULL,NULL,NULL),(73,82,1,1,0,'507L Martin Luther King Dr S',507,'L','NE','Martin Luther King','Dr','S',NULL,'Disbursements',NULL,NULL,'Akron',1,1034,NULL,'44312',NULL,1228,41.034156,-81.43944,NULL,NULL,NULL),(74,24,1,1,0,'174J Beech Ave E',174,'J','S','Beech','Ave','E',NULL,'Urgent',NULL,NULL,'Beaver Dams',1,1031,NULL,'14812',NULL,1228,42.286649,-76.9766,NULL,NULL,NULL),(75,94,1,1,0,'264V Beech St S',264,'V','SW','Beech','St','S',NULL,'Community Relations',NULL,NULL,'Rockwood',1,1041,NULL,'37854',NULL,1228,35.861763,-84.70042,NULL,NULL,NULL),(76,36,1,1,0,'435A Northpoint Dr SW',435,'A','SW','Northpoint','Dr','SW',NULL,'Receiving',NULL,NULL,'Conway',1,1046,NULL,'98238',NULL,1228,48.337796,-122.34517,NULL,NULL,NULL),(77,70,1,1,0,'289H Caulder Dr NE',289,'H','S','Caulder','Dr','NE',NULL,'Editorial Dept',NULL,NULL,'Hilton Head Island',1,1039,NULL,'29926',NULL,1228,32.226713,-80.74325,NULL,NULL,NULL),(78,79,1,1,0,'920C Dowlen Ln W',920,'C','SE','Dowlen','Ln','W',NULL,'C/o PO Plus',NULL,NULL,'Macon',1,1009,NULL,'31206',NULL,1228,32.79904,-83.67216,NULL,NULL,NULL),(79,91,1,1,0,'518C Lincoln Way SW',518,'C','SW','Lincoln','Way','SW',NULL,'Mailstop 101',NULL,NULL,'Benton',1,1023,NULL,'39039',NULL,1228,32.832943,-90.21951,NULL,NULL,NULL),(80,71,1,1,0,'639D Dowlen St E',639,'D','NW','Dowlen','St','E',NULL,'Attn: Development',NULL,NULL,'Hohenwald',1,1041,NULL,'38462',NULL,1228,35.535397,-87.54905,NULL,NULL,NULL),(81,39,1,1,0,'598N Northpoint St SW',598,'N','SW','Northpoint','St','SW',NULL,'Donor Relations',NULL,NULL,'Bronx',1,1031,NULL,'10467',NULL,1228,40.872265,-73.86937,NULL,NULL,NULL),(82,69,1,1,0,'832M Van Ness St E',832,'M','NE','Van Ness','St','E',NULL,'C/o OPDC',NULL,NULL,'Crucible',1,1037,NULL,'15325',NULL,1228,39.94821,-79.96653,NULL,NULL,NULL),(83,51,1,1,0,'595O Lincoln Ln E',595,'O','S','Lincoln','Ln','E',NULL,'C/o PO Plus',NULL,NULL,'Chesnee',1,1039,NULL,'29323',NULL,1228,35.131971,-81.88553,NULL,NULL,NULL),(84,7,1,1,0,'549G Bay Dr W',549,'G','S','Bay','Dr','W',NULL,'Editorial Dept',NULL,NULL,'Brainardsville',1,1031,NULL,'12915',NULL,1228,44.552725,-74.317958,NULL,NULL,NULL),(85,100,1,1,0,'723A Martin Luther King St W',723,'A','S','Martin Luther King','St','W',NULL,'Disbursements',NULL,NULL,'Peach Springs',1,1002,NULL,'86434',NULL,1228,35.482227,-113.5121,NULL,NULL,NULL),(86,96,1,1,0,'369K Bay Pl SW',369,'K','W','Bay','Pl','SW',NULL,'Attn: Development',NULL,NULL,'Colorado Springs',1,1005,NULL,'80913',NULL,1228,38.743871,-104.76387,NULL,NULL,NULL),(87,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,NULL,NULL,NULL),(88,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,NULL,NULL,NULL),(89,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,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_address` ENABLE KEYS */; UNLOCK TABLES; @@ -209,7 +209,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contact` WRITE; /*!40000 ALTER TABLE `civicrm_contact` DISABLE KEYS */; -INSERT INTO `civicrm_contact` (`id`, `contact_type`, `contact_sub_type`, `do_not_email`, `do_not_phone`, `do_not_mail`, `do_not_sms`, `do_not_trade`, `is_opt_out`, `legal_identifier`, `external_identifier`, `sort_name`, `display_name`, `nick_name`, `legal_name`, `image_URL`, `preferred_communication_method`, `preferred_language`, `preferred_mail_format`, `hash`, `api_key`, `source`, `first_name`, `middle_name`, `last_name`, `prefix_id`, `suffix_id`, `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`) VALUES (1,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Inner City Arts','Inner City Arts',NULL,NULL,NULL,'4',NULL,'Both','1902067651',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'Inner City Arts',NULL,NULL,NULL,0),(2,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Social Source Foundation ','Social Source Foundation ',NULL,NULL,NULL,'2',NULL,'Both','2066676426',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Social Source Foundation ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Social Source Foundation ',NULL,NULL,NULL,0),(3,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Smith, Walter','Ms Walter O Smith Jr',NULL,NULL,NULL,'2',NULL,'Both','1853747658',NULL,NULL,'Walter','O','Smith',2,1,1,NULL,'Dear Walter',1,NULL,'Dear Walter',1,NULL,'Ms Walter O Smith Jr',NULL,1,'1978-10-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(4,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Roberts, Walter','Ms Walter V Roberts Sr',NULL,NULL,NULL,'2',NULL,'Both','892143524',NULL,NULL,'Walter','V','Roberts',2,2,1,NULL,'Dear Walter',1,NULL,'Dear Walter',1,NULL,'Ms Walter V Roberts Sr',NULL,1,'1981-10-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(5,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Compasspoint ','Compasspoint ',NULL,NULL,NULL,'5',NULL,'Both','4293435888',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Compasspoint ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Compasspoint ',NULL,NULL,NULL,0),(6,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Monica','Dr Monica D Jones Sr',NULL,NULL,NULL,'2',NULL,'Both','259547634',NULL,NULL,'Monica','D','Jones',4,2,1,NULL,'Dear Monica',1,NULL,'Dear Monica',1,NULL,'Dr Monica D Jones Sr',NULL,1,'1972-03-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(7,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jones, Michelle','Mrs Michelle U Jones Jr',NULL,NULL,NULL,'3',NULL,'Both','1726725585',NULL,NULL,'Michelle','U','Jones',1,1,1,NULL,'Dear Michelle',1,NULL,'Dear Michelle',1,NULL,'Mrs Michelle U Jones Jr',NULL,1,'2007-08-20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(8,'Household',NULL,1,1,0,0,1,0,NULL,NULL,'Greg Zope\'s home','Greg Zope\'s home','Zope\'s home',NULL,NULL,'3',NULL,'Both','914619327',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Greg Zope\'s home',5,NULL,'Dear Greg Zope\'s home',2,NULL,'Greg Zope\'s home',NULL,NULL,NULL,0,NULL,'Greg Zope\'s home',NULL,NULL,NULL,NULL,NULL,0),(9,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Tony','Mrs Tony K Yadav Jr',NULL,NULL,NULL,'2',NULL,'Both','2697714063',NULL,NULL,'Tony','K','Yadav',1,1,1,NULL,'Dear Tony',1,NULL,'Dear Tony',1,NULL,'Mrs Tony K Yadav Jr',NULL,1,'1981-06-26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(10,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Paula','Ms Paula L Zope Jr',NULL,NULL,NULL,'2',NULL,'Both','2888683542',NULL,NULL,'Paula','L','Zope',2,1,1,NULL,'Dear Paula',1,NULL,'Dear Paula',1,NULL,'Ms Paula L Zope Jr',NULL,2,'1981-07-17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(11,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Monica Smith\'s home','Monica Smith\'s home','Smith\'s home',NULL,NULL,'2',NULL,'Both','3546427050',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Monica Smith\'s home',5,NULL,'Dear Monica Smith\'s home',2,NULL,'Monica Smith\'s home',NULL,NULL,NULL,0,NULL,'Monica Smith\'s home',NULL,NULL,NULL,NULL,NULL,0),(12,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Smith, Peter','Mrs Peter Q Smith Sr',NULL,NULL,NULL,'5',NULL,'Both','3873456795',NULL,NULL,'Peter','Q','Smith',1,2,1,NULL,'Dear Peter',1,NULL,'Dear Peter',1,NULL,'Mrs Peter Q Smith Sr',NULL,2,'1973-03-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(13,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Project Open Hand ','Project Open Hand ',NULL,NULL,NULL,'2',NULL,'Both','22493331',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Project Open Hand ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Project Open Hand ',NULL,NULL,NULL,0),(14,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Conservation Corp ','Conservation Corp ',NULL,NULL,NULL,'2',NULL,'Both','1902067651',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Conservation Corp ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Conservation Corp ',NULL,NULL,NULL,0),(15,'Household',NULL,1,1,0,0,1,0,NULL,NULL,'Chris Yadav\'s home','Chris Yadav\'s home','Yadav\'s home',NULL,NULL,'2',NULL,'Both','876832616',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Chris Yadav\'s home',5,NULL,'Dear Chris Yadav\'s home',2,NULL,'Chris Yadav\'s home',NULL,NULL,NULL,0,NULL,'Chris Yadav\'s home',NULL,NULL,NULL,NULL,NULL,0),(16,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Łąchowski, Alice','Dr Alice O Łąchowski Jr',NULL,NULL,NULL,'3',NULL,'Both','2067570275',NULL,NULL,'Alice','O','Łąchowski',4,1,1,NULL,'Dear Alice',1,NULL,'Dear Alice',1,NULL,'Dr Alice O Łąchowski Jr',NULL,2,'1971-07-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(17,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Roberts, Richard','Ms Richard I Roberts Jr',NULL,NULL,NULL,'4',NULL,'Both','1756265178',NULL,NULL,'Richard','I','Roberts',2,1,1,NULL,'Dear Richard',1,NULL,'Dear Richard',1,NULL,'Ms Richard I Roberts Jr',NULL,2,'1992-07-14',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(18,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Walter Roberts\'s home','Walter Roberts\'s home','Roberts\'s home',NULL,NULL,'4',NULL,'Both','2727809258',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Walter Roberts\'s home',5,NULL,'Dear Walter Roberts\'s home',2,NULL,'Walter Roberts\'s home',NULL,NULL,NULL,0,NULL,'Walter Roberts\'s home',NULL,NULL,NULL,NULL,NULL,0),(19,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Michelle','Ms Michelle J Łąchowski Sr',NULL,NULL,NULL,'2',NULL,'Both','335338660',NULL,NULL,'Michelle','J','Łąchowski',2,2,1,NULL,'Dear Michelle',1,NULL,'Dear Michelle',1,NULL,'Ms Michelle J Łąchowski Sr',NULL,2,'1972-08-13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(20,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Zope, Paula','Mrs Paula Y Zope Jr',NULL,NULL,NULL,'4',NULL,'Both','2888683542',NULL,NULL,'Paula','Y','Zope',1,1,1,NULL,'Dear Paula',1,NULL,'Dear Paula',1,NULL,'Mrs Paula Y Zope Jr',NULL,2,'1990-05-22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(21,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Franklin','Dr Franklin L Adams Sr',NULL,NULL,NULL,'4',NULL,'Both','639260990',NULL,NULL,'Franklin','L','Adams',4,2,1,NULL,'Dear Franklin',1,NULL,'Dear Franklin',1,NULL,'Dr Franklin L Adams Sr',NULL,1,'1987-06-11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(22,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Grant, Henry','Ms Henry U Grant Jr',NULL,NULL,NULL,'5',NULL,'Both','112045969',NULL,NULL,'Henry','U','Grant',2,1,1,NULL,'Dear Henry',1,NULL,'Dear Henry',1,NULL,'Ms Henry U Grant Jr',NULL,1,'1988-06-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(23,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Yadav, Henry','Dr Henry Y Yadav Jr',NULL,NULL,NULL,'3',NULL,'Both','2938450001',NULL,NULL,'Henry','Y','Yadav',4,1,1,NULL,'Dear Henry',1,NULL,'Dear Henry',1,NULL,'Dr Henry Y Yadav Jr',NULL,2,'2001-08-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(24,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Jane Yadav\'s home','Jane Yadav\'s home','Yadav\'s home',NULL,NULL,'3',NULL,'Both','4206732299',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jane Yadav\'s home',5,NULL,'Dear Jane Yadav\'s home',2,NULL,'Jane Yadav\'s home',NULL,NULL,NULL,0,NULL,'Jane Yadav\'s home',NULL,NULL,NULL,NULL,NULL,0),(25,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jones, Melinda','Ms Melinda B Jones Sr',NULL,NULL,NULL,'5',NULL,'Both','369050114',NULL,NULL,'Melinda','B','Jones',2,2,1,NULL,'Dear Melinda',1,NULL,'Dear Melinda',1,NULL,'Ms Melinda B Jones Sr',NULL,2,'2006-05-22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(26,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Roberts, Monica','Mrs Monica B Roberts Jr',NULL,NULL,NULL,'3',NULL,'Both','1145276104',NULL,NULL,'Monica','B','Roberts',1,1,1,NULL,'Dear Monica',1,NULL,'Dear Monica',1,NULL,'Mrs Monica B Roberts Jr',NULL,2,'1980-08-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(27,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Bernard','Dr Bernard A Zope Jr',NULL,NULL,NULL,'2',NULL,'Both','4290624654',NULL,NULL,'Bernard','A','Zope',4,1,1,NULL,'Dear Bernard',1,NULL,'Dear Bernard',1,NULL,'Dr Bernard A Zope Jr',NULL,2,'1990-05-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(28,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Smith, Bruce','Dr Bruce L Smith Sr',NULL,NULL,NULL,'5',NULL,'Both','3846545705',NULL,NULL,'Bruce','L','Smith',4,2,1,NULL,'Dear Bruce',1,NULL,'Dear Bruce',1,NULL,'Dr Bruce L Smith Sr',NULL,1,'1989-04-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(29,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Patel, Sheila','Mrs Sheila R Patel Jr',NULL,NULL,NULL,'5',NULL,'Both','2354333642',NULL,NULL,'Sheila','R','Patel',1,1,1,NULL,'Dear Sheila',1,NULL,'Dear Sheila',1,NULL,'Mrs Sheila R Patel Jr',NULL,2,'2005-11-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(30,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Reynolds, John','Ms John P Reynolds Jr',NULL,NULL,NULL,'3',NULL,'Both','2910462886',NULL,NULL,'John','P','Reynolds',2,1,1,NULL,'Dear John',1,NULL,'Dear John',1,NULL,'Ms John P Reynolds Jr',NULL,2,'1997-01-25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(31,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Yadav, Dan','Mr Dan O Yadav Sr',NULL,NULL,NULL,'4',NULL,'Both','1291061569',NULL,NULL,'Dan','O','Yadav',3,2,1,NULL,'Dear Dan',1,NULL,'Dear Dan',1,NULL,'Mr Dan O Yadav Sr',NULL,1,'2001-07-30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(32,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Jason','Ms Jason K Zope Sr',NULL,NULL,NULL,'4',NULL,'Both','962751957',NULL,NULL,'Jason','K','Zope',2,2,1,NULL,'Dear Jason',1,NULL,'Dear Jason',1,NULL,'Ms Jason K Zope Sr',NULL,1,'1984-11-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(33,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Dan','Ms Dan F Yadav Sr',NULL,NULL,NULL,'3',NULL,'Both','1291061569',NULL,NULL,'Dan','F','Yadav',2,2,1,NULL,'Dear Dan',1,NULL,'Dear Dan',1,NULL,'Ms Dan F Yadav Sr',NULL,1,'2004-04-20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(34,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Bill Grant\'s home','Bill Grant\'s home','Grant\'s home',NULL,NULL,'4',NULL,'Both','3236341195',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Bill Grant\'s home',5,NULL,'Dear Bill Grant\'s home',2,NULL,'Bill Grant\'s home',NULL,NULL,NULL,0,NULL,'Bill Grant\'s home',NULL,NULL,NULL,NULL,NULL,0),(35,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Adams, Purvi','Mrs Purvi J Adams Jr',NULL,NULL,NULL,'5',NULL,'Both','4042601869',NULL,NULL,'Purvi','J','Adams',1,1,1,NULL,'Dear Purvi',1,NULL,'Dear Purvi',1,NULL,'Mrs Purvi J Adams Jr',NULL,2,'1981-07-22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(36,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Reynolds, Peter','Ms Peter E Reynolds Sr',NULL,NULL,NULL,'5',NULL,'Both','3761532923',NULL,NULL,'Peter','E','Reynolds',2,2,1,NULL,'Dear Peter',1,NULL,'Dear Peter',1,NULL,'Ms Peter E Reynolds Sr',NULL,1,'2008-07-01',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(37,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Jones, Sam','Mrs Sam I Jones Sr',NULL,NULL,NULL,'2',NULL,'Both','4253918495',NULL,NULL,'Sam','I','Jones',1,2,1,NULL,'Dear Sam',1,NULL,'Dear Sam',1,NULL,'Mrs Sam I Jones Sr',NULL,2,'1973-12-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(38,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Paula Zope\'s home','Paula Zope\'s home','Zope\'s home',NULL,NULL,'5',NULL,'Both','2296152256',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Paula Zope\'s home',5,NULL,'Dear Paula Zope\'s home',2,NULL,'Paula Zope\'s home',NULL,NULL,NULL,0,NULL,'Paula Zope\'s home',NULL,NULL,NULL,NULL,NULL,0),(39,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav, Jane','Dr Jane G Yadav Sr',NULL,NULL,NULL,'4',NULL,'Both','244484198',NULL,NULL,'Jane','G','Yadav',4,2,1,NULL,'Dear Jane',1,NULL,'Dear Jane',1,NULL,'Dr Jane G Yadav Sr',NULL,1,'2007-03-06',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(40,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Parker, Michael','Dr Michael N Parker Sr',NULL,NULL,NULL,'3',NULL,'Both','3133177761',NULL,NULL,'Michael','N','Parker',4,2,1,NULL,'Dear Michael',1,NULL,'Dear Michael',1,NULL,'Dr Michael N Parker Sr',NULL,2,'1971-12-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(41,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Justin','Mrs Justin A Smith Sr',NULL,NULL,NULL,'4',NULL,'Both','4103832903',NULL,NULL,'Justin','A','Smith',1,2,1,NULL,'Dear Justin',1,NULL,'Dear Justin',1,NULL,'Mrs Justin A Smith Sr',NULL,1,'1984-09-17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(42,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Zope, Andrew','Ms Andrew B Zope Sr',NULL,NULL,NULL,'2',NULL,'Both','951103224',NULL,NULL,'Andrew','B','Zope',2,2,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Ms Andrew B Zope Sr',NULL,2,'2012-07-04',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(43,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Jake','Dr Jake J Roberts Sr',NULL,NULL,NULL,'2',NULL,'Both','2669657407',NULL,NULL,'Jake','J','Roberts',4,2,1,NULL,'Dear Jake',1,NULL,'Dear Jake',1,NULL,'Dr Jake J Roberts Sr',NULL,2,'1974-01-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(44,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Jake Smith\'s home','Jake Smith\'s home','Smith\'s home',NULL,NULL,'4',NULL,'Both','1401933745',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jake Smith\'s home',5,NULL,'Dear Jake Smith\'s home',2,NULL,'Jake Smith\'s home',NULL,NULL,NULL,0,NULL,'Jake Smith\'s home',NULL,NULL,NULL,NULL,NULL,0),(45,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Jennifer','Ms Jennifer M Smith Jr',NULL,NULL,NULL,'2',NULL,'Both','963089643',NULL,NULL,'Jennifer','M','Smith',2,1,1,NULL,'Dear Jennifer',1,NULL,'Dear Jennifer',1,NULL,'Ms Jennifer M Smith Jr',NULL,1,'1996-10-16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(46,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav, Bill','Dr Bill Y Yadav Jr',NULL,NULL,NULL,'3',NULL,'Both','2396990231',NULL,NULL,'Bill','Y','Yadav',4,1,1,NULL,'Dear Bill',1,NULL,'Dear Bill',1,NULL,'Dr Bill Y Yadav Jr',NULL,1,'1970-01-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(47,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Grant, Melinda','Ms Melinda Y Grant Jr',NULL,NULL,NULL,'3',NULL,'Both','3796367281',NULL,NULL,'Melinda','Y','Grant',2,1,1,NULL,'Dear Melinda',1,NULL,'Dear Melinda',1,NULL,'Ms Melinda Y Grant Jr',NULL,2,'1977-09-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(48,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Social Source Foundation ','Social Source Foundation ',NULL,NULL,NULL,'2',NULL,'Both','2066676426',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Social Source Foundation ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Social Source Foundation ',NULL,NULL,NULL,0),(49,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jameson, Richard','Ms Richard A Jameson Sr',NULL,NULL,NULL,'2',NULL,'Both','2187293232',NULL,NULL,'Richard','A','Jameson',2,2,1,NULL,'Dear Richard',1,NULL,'Dear Richard',1,NULL,'Ms Richard A Jameson Sr',NULL,1,'2001-02-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(50,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Adams, Fraddie','Ms Fraddie X Adams Sr',NULL,NULL,NULL,'4',NULL,'Both','3693346127',NULL,NULL,'Fraddie','X','Adams',2,2,1,NULL,'Dear Fraddie',1,NULL,'Dear Fraddie',1,NULL,'Ms Fraddie X Adams Sr',NULL,1,'1999-02-23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(51,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jones, Justin','Mr Justin K Jones Jr',NULL,NULL,NULL,'2',NULL,'Both','3840971795',NULL,NULL,'Justin','K','Jones',3,1,1,NULL,'Dear Justin',1,NULL,'Dear Justin',1,NULL,'Mr Justin K Jones Jr',NULL,1,'2006-06-21',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(52,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Bill','Ms Bill T Grant Jr',NULL,NULL,NULL,'3',NULL,'Both','3136207099',NULL,NULL,'Bill','T','Grant',2,1,1,NULL,'Dear Bill',1,NULL,'Dear Bill',1,NULL,'Ms Bill T Grant Jr',NULL,1,'2007-08-25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(53,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Jones, Raymond','Dr Raymond D Jones Jr',NULL,NULL,NULL,'4',NULL,'Both','3017610660',NULL,NULL,'Raymond','D','Jones',4,1,1,NULL,'Dear Raymond',1,NULL,'Dear Raymond',1,NULL,'Dr Raymond D Jones Jr',NULL,2,'2000-10-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(54,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Grant, Pat','Mr Pat H Grant Jr',NULL,NULL,NULL,'3',NULL,'Both','4126403582',NULL,NULL,'Pat','H','Grant',3,1,1,NULL,'Dear Pat',1,NULL,'Dear Pat',1,NULL,'Mr Pat H Grant Jr',NULL,1,'1985-04-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(55,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Jones, Bill','Mrs Bill S Jones Jr',NULL,NULL,NULL,'5',NULL,'Both','3831370413',NULL,NULL,'Bill','S','Jones',1,1,1,NULL,'Dear Bill',1,NULL,'Dear Bill',1,NULL,'Mrs Bill S Jones Jr',NULL,1,'2008-01-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(56,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Greg','Ms Greg Y Smith Jr',NULL,NULL,NULL,'2',NULL,'Both','3842274036',NULL,NULL,'Greg','Y','Smith',2,1,1,NULL,'Dear Greg',1,NULL,'Dear Greg',1,NULL,'Ms Greg Y Smith Jr',NULL,1,'1991-04-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(57,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Smith, Jake','Mr Jake A Smith Sr',NULL,NULL,NULL,'3',NULL,'Both','2038692770',NULL,NULL,'Jake','A','Smith',3,2,1,NULL,'Dear Jake',1,NULL,'Dear Jake',1,NULL,'Mr Jake A Smith Sr',NULL,2,'1976-10-30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(58,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Bill Jones\'s home','Bill Jones\'s home','Jones\'s home',NULL,NULL,'5',NULL,'Both','1118888352',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Bill Jones\'s home',5,NULL,'Dear Bill Jones\'s home',2,NULL,'Bill Jones\'s home',NULL,NULL,NULL,0,NULL,'Bill Jones\'s home',NULL,NULL,NULL,NULL,NULL,0),(59,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Yadav, Peter','Dr Peter E Yadav Sr',NULL,NULL,NULL,'5',NULL,'Both','2085984170',NULL,NULL,'Peter','E','Yadav',4,2,1,NULL,'Dear Peter',1,NULL,'Dear Peter',1,NULL,'Dr Peter E Yadav Sr',NULL,2,'1979-11-14',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(60,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Smith, Jake','Dr Jake F Smith Jr',NULL,NULL,NULL,'5',NULL,'Both','2038692770',NULL,NULL,'Jake','F','Smith',4,1,1,NULL,'Dear Jake',1,NULL,'Dear Jake',1,NULL,'Dr Jake F Smith Jr',NULL,2,'1992-04-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(61,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav, Michael','Dr Michael A Yadav Sr',NULL,NULL,NULL,'4',NULL,'Both','1758805420',NULL,NULL,'Michael','A','Yadav',4,2,1,NULL,'Dear Michael',1,NULL,'Dear Michael',1,NULL,'Dr Michael A Yadav Sr',NULL,2,'1988-10-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(62,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Roberts, Sandy','Mr Sandy A Roberts Sr',NULL,NULL,NULL,'2',NULL,'Both','1057100492',NULL,NULL,'Sandy','A','Roberts',3,2,1,NULL,'Dear Sandy',1,NULL,'Dear Sandy',1,NULL,'Mr Sandy A Roberts Sr',NULL,1,'1998-08-29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(63,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Smith, Jason','Mr Jason C Smith Jr',NULL,NULL,NULL,'5',NULL,'Both','2826172591',NULL,NULL,'Jason','C','Smith',3,1,1,NULL,'Dear Jason',1,NULL,'Dear Jason',1,NULL,'Mr Jason C Smith Jr',NULL,2,'2009-07-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(64,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Henry Łąchowski\'s home','Henry Łąchowski\'s home','Łąchowski\'s home',NULL,NULL,'4',NULL,'Both','3129262907',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Henry Łąchowski\'s home',5,NULL,'Dear Henry Łąchowski\'s home',2,NULL,'Henry Łąchowski\'s home',NULL,NULL,NULL,0,NULL,'Henry Łąchowski\'s home',NULL,NULL,NULL,NULL,NULL,0),(65,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Yadav, Jennifer','Ms Jennifer E Yadav Sr',NULL,NULL,NULL,'4',NULL,'Both','1535798671',NULL,NULL,'Jennifer','E','Yadav',2,2,1,NULL,'Dear Jennifer',1,NULL,'Dear Jennifer',1,NULL,'Ms Jennifer E Yadav Sr',NULL,2,'1971-01-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(66,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav, Walter','Ms Walter C Yadav Sr',NULL,NULL,NULL,'4',NULL,'Both','1060717605',NULL,NULL,'Walter','C','Yadav',2,2,1,NULL,'Dear Walter',1,NULL,'Dear Walter',1,NULL,'Ms Walter C Yadav Sr',NULL,2,'1991-11-25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(67,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Jameson, Tony','Ms Tony A Jameson Jr',NULL,NULL,NULL,'4',NULL,'Both','3898576588',NULL,NULL,'Tony','A','Jameson',2,1,1,NULL,'Dear Tony',1,NULL,'Dear Tony',1,NULL,'Ms Tony A Jameson Jr',NULL,1,'2004-05-16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(68,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav, Chris','Ms Chris O Yadav Jr',NULL,NULL,NULL,'5',NULL,'Both','1983947021',NULL,NULL,'Chris','O','Yadav',2,1,1,NULL,'Dear Chris',1,NULL,'Dear Chris',1,NULL,'Ms Chris O Yadav Jr',NULL,1,'1999-07-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(69,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Cisco Systems ','Cisco Systems ',NULL,NULL,NULL,'4',NULL,'Both','795728639',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Cisco Systems ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Cisco Systems ',NULL,NULL,NULL,0),(70,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Zope, Monica','Ms Monica Z Zope Sr',NULL,NULL,NULL,'5',NULL,'Both','2941450513',NULL,NULL,'Monica','Z','Zope',2,2,1,NULL,'Dear Monica',1,NULL,'Dear Monica',1,NULL,'Ms Monica Z Zope Sr',NULL,2,'2012-01-03',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(71,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jones, Sam','Mrs Sam U Jones Sr',NULL,NULL,NULL,'2',NULL,'Both','4253918495',NULL,NULL,'Sam','U','Jones',1,2,1,NULL,'Dear Sam',1,NULL,'Dear Sam',1,NULL,'Mrs Sam U Jones Sr',NULL,1,'1985-03-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(72,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jones, Dan','Mr Dan K Jones Jr',NULL,NULL,NULL,'2',NULL,'Both','2112700752',NULL,NULL,'Dan','K','Jones',3,1,1,NULL,'Dear Dan',1,NULL,'Dear Dan',1,NULL,'Mr Dan K Jones Jr',NULL,2,'1988-11-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(73,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Jake Roberts\'s home','Jake Roberts\'s home','Roberts\'s home',NULL,NULL,'5',NULL,'Both','2397139093',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jake Roberts\'s home',5,NULL,'Dear Jake Roberts\'s home',2,NULL,'Jake Roberts\'s home',NULL,NULL,NULL,0,NULL,'Jake Roberts\'s home',NULL,NULL,NULL,NULL,NULL,0),(74,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Amar Parker\'s home','Amar Parker\'s home','Parker\'s home',NULL,NULL,'2',NULL,'Both','2084710195',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Amar Parker\'s home',5,NULL,'Dear Amar Parker\'s home',2,NULL,'Amar Parker\'s home',NULL,NULL,NULL,0,NULL,'Amar Parker\'s home',NULL,NULL,NULL,NULL,NULL,0),(75,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Intel ','Intel ',NULL,NULL,NULL,'3',NULL,'Both','2441934574',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Intel ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Intel ',NULL,NULL,NULL,0),(76,'Organization',NULL,1,0,0,0,1,0,NULL,NULL,'Eastmont Computing Center ','Eastmont Computing Center ',NULL,NULL,NULL,'2',NULL,'Both','3529056227',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Eastmont Computing Center ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Eastmont Computing Center ',NULL,NULL,NULL,0),(77,'Household',NULL,0,1,0,0,1,0,NULL,NULL,'Peter Reynolds\'s home','Peter Reynolds\'s home','Reynolds\'s home',NULL,NULL,'2',NULL,'Both','546612173',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Peter Reynolds\'s home',5,NULL,'Dear Peter Reynolds\'s home',2,NULL,'Peter Reynolds\'s home',NULL,NULL,NULL,0,NULL,'Peter Reynolds\'s home',NULL,NULL,NULL,NULL,NULL,0),(78,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Intel ','Intel ',NULL,NULL,NULL,'3',NULL,'Both','2441934574',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Intel ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Intel ',NULL,NULL,NULL,0),(79,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Intel ','Intel ',NULL,NULL,NULL,'2',NULL,'Both','2441934574',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Intel ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Intel ',NULL,NULL,NULL,0),(80,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Jones, Pat','Mrs Pat W Jones Jr',NULL,NULL,NULL,'4',NULL,'Both','2611000198',NULL,NULL,'Pat','W','Jones',1,1,1,NULL,'Dear Pat',1,NULL,'Dear Pat',1,NULL,'Mrs Pat W Jones Jr',NULL,1,'2005-05-09',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(81,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Tony','Mrs Tony F Łąchowski Sr',NULL,NULL,NULL,'4',NULL,'Both','1434307520',NULL,NULL,'Tony','F','Łąchowski',1,2,1,NULL,'Dear Tony',1,NULL,'Dear Tony',1,NULL,'Mrs Tony F Łąchowski Sr',NULL,1,'1999-01-22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(82,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Patel, Kenneth','Mrs Kenneth R Patel Jr',NULL,NULL,NULL,'3',NULL,'Both','3499781194',NULL,NULL,'Kenneth','R','Patel',1,1,1,NULL,'Dear Kenneth',1,NULL,'Dear Kenneth',1,NULL,'Mrs Kenneth R Patel Jr',NULL,2,'2007-05-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(83,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Zope, Rebecca','Mrs Rebecca G Zope Sr',NULL,NULL,NULL,'4',NULL,'Both','263533362',NULL,NULL,'Rebecca','G','Zope',1,2,1,NULL,'Dear Rebecca',1,NULL,'Dear Rebecca',1,NULL,'Mrs Rebecca G Zope Sr',NULL,1,'1990-08-24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(84,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Monica Roberts\'s home','Monica Roberts\'s home','Roberts\'s home',NULL,NULL,'5',NULL,'Both','4040878348',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Monica Roberts\'s home',5,NULL,'Dear Monica Roberts\'s home',2,NULL,'Monica Roberts\'s home',NULL,NULL,NULL,0,NULL,'Monica Roberts\'s home',NULL,NULL,NULL,NULL,NULL,0),(85,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Zope, Greg','Mr Greg H Zope Sr',NULL,NULL,NULL,'4',NULL,'Both','2432540602',NULL,NULL,'Greg','H','Zope',3,2,1,NULL,'Dear Greg',1,NULL,'Dear Greg',1,NULL,'Mr Greg H Zope Sr',NULL,1,'2009-10-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(86,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Smith, Monica','Ms Monica F Smith Sr',NULL,NULL,NULL,'3',NULL,'Both','521367718',NULL,NULL,'Monica','F','Smith',2,2,1,NULL,'Dear Monica',1,NULL,'Dear Monica',1,NULL,'Ms Monica F Smith Sr',NULL,1,'2002-06-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(87,'Household',NULL,1,1,0,0,1,0,NULL,NULL,'Raymond Adams\'s home','Raymond Adams\'s home','Adams\'s home',NULL,NULL,'2',NULL,'Both','779124061',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Raymond Adams\'s home',5,NULL,'Dear Raymond Adams\'s home',2,NULL,'Raymond Adams\'s home',NULL,NULL,NULL,0,NULL,'Raymond Adams\'s home',NULL,NULL,NULL,NULL,NULL,0),(88,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Reynolds, Fraddie','Mr Fraddie Y Reynolds Sr',NULL,NULL,NULL,'5',NULL,'Both','4038183119',NULL,NULL,'Fraddie','Y','Reynolds',3,2,1,NULL,'Dear Fraddie',1,NULL,'Dear Fraddie',1,NULL,'Mr Fraddie Y Reynolds Sr',NULL,1,'1978-09-01',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(89,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jones, Greg','Mr Greg Y Jones Sr',NULL,NULL,NULL,'2',NULL,'Both','2246298831',NULL,NULL,'Greg','Y','Jones',3,2,1,NULL,'Dear Greg',1,NULL,'Dear Greg',1,NULL,'Mr Greg Y Jones Sr',NULL,1,'1993-07-28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(90,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Parker, Amar','Mr Amar G Parker Jr',NULL,NULL,NULL,'4',NULL,'Both','157759246',NULL,NULL,'Amar','G','Parker',3,1,1,NULL,'Dear Amar',1,NULL,'Dear Amar',1,NULL,'Mr Amar G Parker Jr',NULL,2,'1990-08-03',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(91,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Smith, Alice','Ms Alice Q Smith Sr',NULL,NULL,NULL,'5',NULL,'Both','119513409',NULL,NULL,'Alice','Q','Smith',2,2,1,NULL,'Dear Alice',1,NULL,'Dear Alice',1,NULL,'Ms Alice Q Smith Sr',NULL,1,'1999-02-15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(92,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Smith, Bernard','Mr Bernard H Smith Jr',NULL,NULL,NULL,'4',NULL,'Both','2852707112',NULL,NULL,'Bernard','H','Smith',3,1,1,NULL,'Dear Bernard',1,NULL,'Dear Bernard',1,NULL,'Mr Bernard H Smith Jr',NULL,1,'1997-07-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(93,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jameson, Peter','Ms Peter M Jameson Jr',NULL,NULL,NULL,'2',NULL,'Both','2479363031',NULL,NULL,'Peter','M','Jameson',2,1,1,NULL,'Dear Peter',1,NULL,'Dear Peter',1,NULL,'Ms Peter M Jameson Jr',NULL,2,'2001-01-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(94,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Patel, Tony','Mr Tony H Patel Sr',NULL,NULL,NULL,'3',NULL,'Both','815949825',NULL,NULL,'Tony','H','Patel',3,2,1,NULL,'Dear Tony',1,NULL,'Dear Tony',1,NULL,'Mr Tony H Patel Sr',NULL,1,'2003-07-03',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(95,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Walter','Dr Walter C Smith Sr',NULL,NULL,NULL,'5',NULL,'Both','1853747658',NULL,NULL,'Walter','C','Smith',4,2,1,NULL,'Dear Walter',1,NULL,'Dear Walter',1,NULL,'Dr Walter C Smith Sr',NULL,1,'1996-08-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(96,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Łąchowski, Greg','Dr Greg T Łąchowski Jr',NULL,NULL,NULL,'5',NULL,'Both','450160442',NULL,NULL,'Greg','T','Łąchowski',4,1,1,NULL,'Dear Greg',1,NULL,'Dear Greg',1,NULL,'Dr Greg T Łąchowski Jr',NULL,2,'1973-06-11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(97,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Reynolds, Kenneth','Ms Kenneth Q Reynolds Jr',NULL,NULL,NULL,'5',NULL,'Both','3796342287',NULL,NULL,'Kenneth','Q','Reynolds',2,1,1,NULL,'Dear Kenneth',1,NULL,'Dear Kenneth',1,NULL,'Ms Kenneth Q Reynolds Jr',NULL,1,'1995-04-20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(98,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Adams, Raymond','Ms Raymond S Adams Jr',NULL,NULL,NULL,'4',NULL,'Both','3548114910',NULL,NULL,'Raymond','S','Adams',2,1,1,NULL,'Dear Raymond',1,NULL,'Dear Raymond',1,NULL,'Ms Raymond S Adams Jr',NULL,2,'2011-10-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(99,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Reynolds, Sandy','Ms Sandy J Reynolds Jr',NULL,NULL,NULL,'4',NULL,'Both','3079556115',NULL,NULL,'Sandy','J','Reynolds',2,1,1,NULL,'Dear Sandy',1,NULL,'Dear Sandy',1,NULL,'Ms Sandy J Reynolds Jr',NULL,1,'1974-05-27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(100,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Łąchowski, Henry','Dr Henry H Łąchowski Sr',NULL,NULL,NULL,'2',NULL,'Both','1236523586',NULL,NULL,'Henry','H','Łąchowski',4,2,1,NULL,'Dear Henry',1,NULL,'Dear Henry',1,NULL,'Dr Henry H Łąchowski Sr',NULL,2,'1974-10-20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(101,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Zope, Andrew','Dr Andrew L Zope Jr',NULL,NULL,NULL,'3',NULL,'Both','951103224',NULL,NULL,'Andrew','L','Zope',4,1,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Dr Andrew L Zope Jr',NULL,2,'1988-02-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); +INSERT INTO `civicrm_contact` (`id`, `contact_type`, `contact_sub_type`, `do_not_email`, `do_not_phone`, `do_not_mail`, `do_not_sms`, `do_not_trade`, `is_opt_out`, `legal_identifier`, `external_identifier`, `sort_name`, `display_name`, `nick_name`, `legal_name`, `image_URL`, `preferred_communication_method`, `preferred_language`, `preferred_mail_format`, `hash`, `api_key`, `source`, `first_name`, `middle_name`, `last_name`, `prefix_id`, `suffix_id`, `email_greeting_id`, `email_greeting_custom`, `email_greeting_display`, `postal_greeting_id`, `postal_greeting_custom`, `postal_greeting_display`, `addressee_id`, `addressee_custom`, `addressee_display`, `job_title`, `gender_id`, `birth_date`, `is_deceased`, `deceased_date`, `household_name`, `primary_contact_id`, `organization_name`, `sic_code`, `user_unique_id`, `employer_id`, `is_deleted`) VALUES (1,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Inner City Arts','Inner City Arts',NULL,NULL,NULL,'4',NULL,'Both','1902067651',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'Inner City Arts',NULL,NULL,NULL,0),(2,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jones, Rebecca','Dr Rebecca N Jones Sr',NULL,NULL,NULL,'2',NULL,'Both','907455080',NULL,NULL,'Rebecca','N','Jones',4,2,1,NULL,'Dear Rebecca',1,NULL,'Dear Rebecca',1,NULL,'Dr Rebecca N Jones Sr',NULL,1,'1997-09-06',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(3,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Łąchowski, Jason','Dr Jason O Łąchowski Sr',NULL,NULL,NULL,'5',NULL,'Both','3562063757',NULL,NULL,'Jason','O','Łąchowski',4,2,1,NULL,'Dear Jason',1,NULL,'Dear Jason',1,NULL,'Dr Jason O Łąchowski Sr',NULL,1,'1995-11-24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(4,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Smith, Justin','Dr Justin L Smith Sr',NULL,NULL,NULL,'2',NULL,'Both','4103832903',NULL,NULL,'Justin','L','Smith',4,2,1,NULL,'Dear Justin',1,NULL,'Dear Justin',1,NULL,'Dr Justin L Smith Sr',NULL,1,'2012-02-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(5,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Peter','Dr Peter M Adams Jr',NULL,NULL,NULL,'4',NULL,'Both','1340839646',NULL,NULL,'Peter','M','Adams',4,1,1,NULL,'Dear Peter',1,NULL,'Dear Peter',1,NULL,'Dr Peter M Adams Jr',NULL,1,'1997-06-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(6,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Łąchowski, Richard','Mrs Richard R Łąchowski Jr',NULL,NULL,NULL,'5',NULL,'Both','3542839629',NULL,NULL,'Richard','R','Łąchowski',1,1,1,NULL,'Dear Richard',1,NULL,'Dear Richard',1,NULL,'Mrs Richard R Łąchowski Jr',NULL,2,'1995-09-17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(7,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jones, Henry','Mrs Henry E Jones Sr',NULL,NULL,NULL,'5',NULL,'Both','2231102458',NULL,NULL,'Henry','E','Jones',1,2,1,NULL,'Dear Henry',1,NULL,'Dear Henry',1,NULL,'Mrs Henry E Jones Sr',NULL,1,'1972-08-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(8,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Yadav, Bruce','Mrs Bruce Y Yadav Sr',NULL,NULL,NULL,'5',NULL,'Both','2146464792',NULL,NULL,'Bruce','Y','Yadav',1,2,1,NULL,'Dear Bruce',1,NULL,'Dear Bruce',1,NULL,'Mrs Bruce Y Yadav Sr',NULL,2,'1991-06-30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(9,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Alice','Dr Alice R Zope Sr',NULL,NULL,NULL,'4',NULL,'Both','2517513275',NULL,NULL,'Alice','R','Zope',4,2,1,NULL,'Dear Alice',1,NULL,'Dear Alice',1,NULL,'Dr Alice R Zope Sr',NULL,1,'1983-09-27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(10,'Household',NULL,0,1,0,0,1,0,NULL,NULL,'Rebecca Jones\'s home','Rebecca Jones\'s home','Jones\'s home',NULL,NULL,'2',NULL,'Both','898827553',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Rebecca Jones\'s home',5,NULL,'Dear Rebecca Jones\'s home',2,NULL,'Rebecca Jones\'s home',NULL,NULL,NULL,0,NULL,'Rebecca Jones\'s home',NULL,NULL,NULL,NULL,NULL,0),(11,'Household',NULL,1,1,0,0,1,0,NULL,NULL,'Brzęczysław Reynolds\'s home','Brzęczysław Reynolds\'s home','Reynolds\'s home',NULL,NULL,'2',NULL,'Both','904500003',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Brzęczysław Reynolds\'s home',5,NULL,'Dear Brzęczysław Reynolds\'s home',2,NULL,'Brzęczysław Reynolds\'s home',NULL,NULL,NULL,0,NULL,'Brzęczysław Reynolds\'s home',NULL,NULL,NULL,NULL,NULL,0),(12,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Working Assets ','Working Assets ',NULL,NULL,NULL,'5',NULL,'Both','3554079517',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Working Assets ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Working Assets ',NULL,NULL,NULL,0),(13,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Łąchowski, Tony','Ms Tony V Łąchowski Sr',NULL,NULL,NULL,'5',NULL,'Both','1434307520',NULL,NULL,'Tony','V','Łąchowski',2,2,1,NULL,'Dear Tony',1,NULL,'Dear Tony',1,NULL,'Ms Tony V Łąchowski Sr',NULL,1,'1998-08-29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(14,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Reynolds, Tony','Mrs Tony K Reynolds Sr',NULL,NULL,NULL,'4',NULL,'Both','3358925131',NULL,NULL,'Tony','K','Reynolds',1,2,1,NULL,'Dear Tony',1,NULL,'Dear Tony',1,NULL,'Mrs Tony K Reynolds Sr',NULL,1,'2012-05-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(15,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jones, Justin','Ms Justin W Jones Jr',NULL,NULL,NULL,'3',NULL,'Both','3840971795',NULL,NULL,'Justin','W','Jones',2,1,1,NULL,'Dear Justin',1,NULL,'Dear Justin',1,NULL,'Ms Justin W Jones Jr',NULL,2,'2009-04-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(16,'Organization',NULL,1,0,0,0,1,0,NULL,NULL,'Social Source Foundation ','Social Source Foundation ',NULL,NULL,NULL,'5',NULL,'Both','2066676426',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Social Source Foundation ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Social Source Foundation ',NULL,NULL,NULL,0),(17,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Working Assets ','Working Assets ',NULL,NULL,NULL,'2',NULL,'Both','3554079517',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Working Assets ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Working Assets ',NULL,NULL,NULL,0),(18,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Michelle Smith\'s home','Michelle Smith\'s home','Smith\'s home',NULL,NULL,'3',NULL,'Both','314970985',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Michelle Smith\'s home',5,NULL,'Dear Michelle Smith\'s home',2,NULL,'Michelle Smith\'s home',NULL,NULL,NULL,0,NULL,'Michelle Smith\'s home',NULL,NULL,NULL,NULL,NULL,0),(19,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Intel ','Intel ',NULL,NULL,NULL,'4',NULL,'Both','2441934574',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Intel ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Intel ',NULL,NULL,NULL,0),(20,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Zope, Dan','Mr Dan W Zope Sr',NULL,NULL,NULL,'4',NULL,'Both','3113450765',NULL,NULL,'Dan','W','Zope',3,2,1,NULL,'Dear Dan',1,NULL,'Dear Dan',1,NULL,'Mr Dan W Zope Sr',NULL,2,'1970-09-27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(21,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Jameson, Andrew','Mrs Andrew A Jameson Sr',NULL,NULL,NULL,'2',NULL,'Both','4159570597',NULL,NULL,'Andrew','A','Jameson',1,2,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Mrs Andrew A Jameson Sr',NULL,2,'1999-01-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(22,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Intel ','Intel ',NULL,NULL,NULL,'5',NULL,'Both','2441934574',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Intel ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Intel ',NULL,NULL,NULL,0),(23,'Household',NULL,0,1,0,0,1,0,NULL,NULL,'Donald Roberts\'s home','Donald Roberts\'s home','Roberts\'s home',NULL,NULL,'5',NULL,'Both','3782746923',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Donald Roberts\'s home',5,NULL,'Dear Donald Roberts\'s home',2,NULL,'Donald Roberts\'s home',NULL,NULL,NULL,0,NULL,'Donald Roberts\'s home',NULL,NULL,NULL,NULL,NULL,0),(24,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Jameson, Charles','Mr Charles E Jameson Jr',NULL,NULL,NULL,'4',NULL,'Both','1128677494',NULL,NULL,'Charles','E','Jameson',3,1,1,NULL,'Dear Charles',1,NULL,'Dear Charles',1,NULL,'Mr Charles E Jameson Jr',NULL,2,'1989-04-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(25,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Alice','Mrs Alice T Smith Sr',NULL,NULL,NULL,'4',NULL,'Both','119513409',NULL,NULL,'Alice','T','Smith',1,2,1,NULL,'Dear Alice',1,NULL,'Dear Alice',1,NULL,'Mrs Alice T Smith Sr',NULL,1,'1982-01-15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(26,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Project Open Hand ','Project Open Hand ',NULL,NULL,NULL,'4',NULL,'Both','22493331',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Project Open Hand ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Project Open Hand ',NULL,NULL,NULL,0),(27,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Smith, Donald','Ms Donald S Smith Jr',NULL,NULL,NULL,'4',NULL,'Both','3254622358',NULL,NULL,'Donald','S','Smith',2,1,1,NULL,'Dear Donald',1,NULL,'Dear Donald',1,NULL,'Ms Donald S Smith Jr',NULL,1,'2000-04-13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(28,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Adams, Chris','Dr Chris F Adams Jr',NULL,NULL,NULL,'2',NULL,'Both','1174315129',NULL,NULL,'Chris','F','Adams',4,1,1,NULL,'Dear Chris',1,NULL,'Dear Chris',1,NULL,'Dr Chris F Adams Jr',NULL,2,'2007-01-31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(29,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Jones, Jane','Mr Jane G Jones Sr',NULL,NULL,NULL,'3',NULL,'Both','1679012316',NULL,NULL,'Jane','G','Jones',3,2,1,NULL,'Dear Jane',1,NULL,'Dear Jane',1,NULL,'Mr Jane G Jones Sr',NULL,1,'1991-05-22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(30,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Roberts, Jane','Dr Jane O Roberts Jr',NULL,NULL,NULL,'4',NULL,'Both','3798485370',NULL,NULL,'Jane','O','Roberts',4,1,1,NULL,'Dear Jane',1,NULL,'Dear Jane',1,NULL,'Dr Jane O Roberts Jr',NULL,1,'1970-11-05',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(31,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Patel, Rebecca','Dr Rebecca C Patel Jr',NULL,NULL,NULL,'4',NULL,'Both','1224712151',NULL,NULL,'Rebecca','C','Patel',4,1,1,NULL,'Dear Rebecca',1,NULL,'Dear Rebecca',1,NULL,'Dr Rebecca C Patel Jr',NULL,2,'1981-11-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(32,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Grant, Bruce','Dr Bruce T Grant Sr',NULL,NULL,NULL,'3',NULL,'Both','3598248920',NULL,NULL,'Bruce','T','Grant',4,2,1,NULL,'Dear Bruce',1,NULL,'Dear Bruce',1,NULL,'Dr Bruce T Grant Sr',NULL,1,'1998-03-23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(33,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav, Charles','Ms Charles L Yadav Jr',NULL,NULL,NULL,'3',NULL,'Both','855830377',NULL,NULL,'Charles','L','Yadav',2,1,1,NULL,'Dear Charles',1,NULL,'Dear Charles',1,NULL,'Ms Charles L Yadav Jr',NULL,2,'1982-08-23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(34,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Parker, Jason','Ms Jason J Parker Jr',NULL,NULL,NULL,'2',NULL,'Both','1114733641',NULL,NULL,'Jason','J','Parker',2,1,1,NULL,'Dear Jason',1,NULL,'Dear Jason',1,NULL,'Ms Jason J Parker Jr',NULL,1,'1990-09-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(35,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Łąchowski, Fraddie','Ms Fraddie E Łąchowski Sr',NULL,NULL,NULL,'3',NULL,'Both','3242716919',NULL,NULL,'Fraddie','E','Łąchowski',2,2,1,NULL,'Dear Fraddie',1,NULL,'Dear Fraddie',1,NULL,'Ms Fraddie E Łąchowski Sr',NULL,2,'1989-05-18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(36,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Parker, Rebecca','Mrs Rebecca F Parker Sr',NULL,NULL,NULL,'4',NULL,'Both','3102846405',NULL,NULL,'Rebecca','F','Parker',1,2,1,NULL,'Dear Rebecca',1,NULL,'Dear Rebecca',1,NULL,'Mrs Rebecca F Parker Sr',NULL,2,'2011-01-23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(37,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Parker, Walter','Dr Walter S Parker Jr',NULL,NULL,NULL,'5',NULL,'Both','671003651',NULL,NULL,'Walter','S','Parker',4,1,1,NULL,'Dear Walter',1,NULL,'Dear Walter',1,NULL,'Dr Walter S Parker Jr',NULL,2,'1985-07-25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(38,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Kenneth','Mrs Kenneth N Zope Jr',NULL,NULL,NULL,'4',NULL,'Both','2547040431',NULL,NULL,'Kenneth','N','Zope',1,1,1,NULL,'Dear Kenneth',1,NULL,'Dear Kenneth',1,NULL,'Mrs Kenneth N Zope Jr',NULL,2,'1988-08-10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(39,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Smith, Henry','Ms Henry M Smith Sr',NULL,NULL,NULL,'2',NULL,'Both','898688352',NULL,NULL,'Henry','M','Smith',2,2,1,NULL,'Dear Henry',1,NULL,'Dear Henry',1,NULL,'Ms Henry M Smith Sr',NULL,1,'1985-12-28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(40,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Reynolds, Brzęczysław','Dr Brzęczysław N Reynolds Sr',NULL,NULL,NULL,'5',NULL,'Both','2553326248',NULL,NULL,'Brzęczysław','N','Reynolds',4,2,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Dr Brzęczysław N Reynolds Sr',NULL,2,'1995-10-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(41,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Walter Parker\'s home','Walter Parker\'s home','Parker\'s home',NULL,NULL,'4',NULL,'Both','2426659531',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Walter Parker\'s home',5,NULL,'Dear Walter Parker\'s home',2,NULL,'Walter Parker\'s home',NULL,NULL,NULL,0,NULL,'Walter Parker\'s home',NULL,NULL,NULL,NULL,NULL,0),(42,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Raymond','Ms Raymond O Reynolds Sr',NULL,NULL,NULL,'5',NULL,'Both','4293515870',NULL,NULL,'Raymond','O','Reynolds',2,2,1,NULL,'Dear Raymond',1,NULL,'Dear Raymond',1,NULL,'Ms Raymond O Reynolds Sr',NULL,2,'1991-04-14',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(43,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Justin Smith\'s home','Justin Smith\'s home','Smith\'s home',NULL,NULL,'5',NULL,'Both','2120463166',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Justin Smith\'s home',5,NULL,'Dear Justin Smith\'s home',2,NULL,'Justin Smith\'s home',NULL,NULL,NULL,0,NULL,'Justin Smith\'s home',NULL,NULL,NULL,NULL,NULL,0),(44,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Walter Łąchowski\'s home','Walter Łąchowski\'s home','Łąchowski\'s home',NULL,NULL,'3',NULL,'Both','3309429687',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Walter Łąchowski\'s home',5,NULL,'Dear Walter Łąchowski\'s home',2,NULL,'Walter Łąchowski\'s home',NULL,NULL,NULL,0,NULL,'Walter Łąchowski\'s home',NULL,NULL,NULL,NULL,NULL,0),(45,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Working Assets ','Working Assets ',NULL,NULL,NULL,'3',NULL,'Both','3554079517',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Working Assets ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Working Assets ',NULL,NULL,NULL,0),(46,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Łąchowski, Walter','Mr Walter C Łąchowski Sr',NULL,NULL,NULL,'4',NULL,'Both','3143734033',NULL,NULL,'Walter','C','Łąchowski',3,2,1,NULL,'Dear Walter',1,NULL,'Dear Walter',1,NULL,'Mr Walter C Łąchowski Sr',NULL,1,'1970-01-16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(47,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Melinda Parker\'s home','Melinda Parker\'s home','Parker\'s home',NULL,NULL,'2',NULL,'Both','3211600278',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Melinda Parker\'s home',5,NULL,'Dear Melinda Parker\'s home',2,NULL,'Melinda Parker\'s home',NULL,NULL,NULL,0,NULL,'Melinda Parker\'s home',NULL,NULL,NULL,NULL,NULL,0),(48,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Adams, Milan','Dr Milan Q Adams Jr',NULL,NULL,NULL,'5',NULL,'Both','4279570902',NULL,NULL,'Milan','Q','Adams',4,1,1,NULL,'Dear Milan',1,NULL,'Dear Milan',1,NULL,'Dr Milan Q Adams Jr',NULL,1,'1979-01-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(49,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jones, Kenneth','Mrs Kenneth H Jones Sr',NULL,NULL,NULL,'2',NULL,'Both','2926795253',NULL,NULL,'Kenneth','H','Jones',1,2,1,NULL,'Dear Kenneth',1,NULL,'Dear Kenneth',1,NULL,'Mrs Kenneth H Jones Sr',NULL,2,'1996-02-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(50,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Roberts, Monica','Mr Monica I Roberts Jr',NULL,NULL,NULL,'5',NULL,'Both','1145276104',NULL,NULL,'Monica','I','Roberts',3,1,1,NULL,'Dear Monica',1,NULL,'Dear Monica',1,NULL,'Mr Monica I Roberts Jr',NULL,1,'1996-12-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(51,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Roberts, Bruce','Ms Bruce G Roberts Jr',NULL,NULL,NULL,'2',NULL,'Both','1797116566',NULL,NULL,'Bruce','G','Roberts',2,1,1,NULL,'Dear Bruce',1,NULL,'Dear Bruce',1,NULL,'Ms Bruce G Roberts Jr',NULL,1,'1973-01-09',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(52,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Jane Yadav\'s home','Jane Yadav\'s home','Yadav\'s home',NULL,NULL,'5',NULL,'Both','4206732299',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jane Yadav\'s home',5,NULL,'Dear Jane Yadav\'s home',2,NULL,'Jane Yadav\'s home',NULL,NULL,NULL,0,NULL,'Jane Yadav\'s home',NULL,NULL,NULL,NULL,NULL,0),(53,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Reynolds, Justin','Ms Justin I Reynolds Jr',NULL,NULL,NULL,'3',NULL,'Both','3106877490',NULL,NULL,'Justin','I','Reynolds',2,1,1,NULL,'Dear Justin',1,NULL,'Dear Justin',1,NULL,'Ms Justin I Reynolds Jr',NULL,2,'1988-12-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(54,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Charles Yadav\'s home','Charles Yadav\'s home','Yadav\'s home',NULL,NULL,'2',NULL,'Both','1515105675',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Charles Yadav\'s home',5,NULL,'Dear Charles Yadav\'s home',2,NULL,'Charles Yadav\'s home',NULL,NULL,NULL,0,NULL,'Charles Yadav\'s home',NULL,NULL,NULL,NULL,NULL,0),(55,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Roberts, Bernard','Mrs Bernard U Roberts Jr',NULL,NULL,NULL,'2',NULL,'Both','5883777',NULL,NULL,'Bernard','U','Roberts',1,1,1,NULL,'Dear Bernard',1,NULL,'Dear Bernard',1,NULL,'Mrs Bernard U Roberts Jr',NULL,1,'2005-07-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(56,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Jane','Ms Jane Y Smith Jr',NULL,NULL,NULL,'5',NULL,'Both','83103719',NULL,NULL,'Jane','Y','Smith',2,1,1,NULL,'Dear Jane',1,NULL,'Dear Jane',1,NULL,'Ms Jane Y Smith Jr',NULL,1,'1977-10-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(57,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Brzęczysław','Mrs Brzęczysław O Smith Jr',NULL,NULL,NULL,'3',NULL,'Both','3764320726',NULL,NULL,'Brzęczysław','O','Smith',1,1,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Mrs Brzęczysław O Smith Jr',NULL,1,'1999-06-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(58,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Smith, Jason','Dr Jason P Smith Sr',NULL,NULL,NULL,'4',NULL,'Both','2826172591',NULL,NULL,'Jason','P','Smith',4,2,1,NULL,'Dear Jason',1,NULL,'Dear Jason',1,NULL,'Dr Jason P Smith Sr',NULL,2,'1971-11-16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(59,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Jones, Jennifer','Dr Jennifer A Jones Jr',NULL,NULL,NULL,'2',NULL,'Both','2365602850',NULL,NULL,'Jennifer','A','Jones',4,1,1,NULL,'Dear Jennifer',1,NULL,'Dear Jennifer',1,NULL,'Dr Jennifer A Jones Jr',NULL,1,'1998-06-17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(60,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Patel, Alan','Mr Alan O Patel Jr',NULL,NULL,NULL,'3',NULL,'Both','1365829885',NULL,NULL,'Alan','O','Patel',3,1,1,NULL,'Dear Alan',1,NULL,'Dear Alan',1,NULL,'Mr Alan O Patel Jr',NULL,1,'1991-06-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(61,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Smith, Jason','Mrs Jason V Smith Jr',NULL,NULL,NULL,'5',NULL,'Both','2826172591',NULL,NULL,'Jason','V','Smith',1,1,1,NULL,'Dear Jason',1,NULL,'Dear Jason',1,NULL,'Mrs Jason V Smith Jr',NULL,2,'1980-05-23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(62,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jones, Milan','Mrs Milan Q Jones Sr',NULL,NULL,NULL,'3',NULL,'Both','3883256585',NULL,NULL,'Milan','Q','Jones',1,2,1,NULL,'Dear Milan',1,NULL,'Dear Milan',1,NULL,'Mrs Milan Q Jones Sr',NULL,2,'2004-01-18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(63,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Roberts, Donald','Ms Donald H Roberts Jr',NULL,NULL,NULL,'3',NULL,'Both','2595057400',NULL,NULL,'Donald','H','Roberts',2,1,1,NULL,'Dear Donald',1,NULL,'Dear Donald',1,NULL,'Ms Donald H Roberts Jr',NULL,1,'2006-04-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(64,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Parker, Bernard','Ms Bernard R Parker Sr',NULL,NULL,NULL,'4',NULL,'Both','1224286841',NULL,NULL,'Bernard','R','Parker',2,2,1,NULL,'Dear Bernard',1,NULL,'Dear Bernard',1,NULL,'Ms Bernard R Parker Sr',NULL,2,'2002-11-14',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(65,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jameson, Walter','Mr Walter N Jameson Sr',NULL,NULL,NULL,'4',NULL,'Both','291689504',NULL,NULL,'Walter','N','Jameson',3,2,1,NULL,'Dear Walter',1,NULL,'Dear Walter',1,NULL,'Mr Walter N Jameson Sr',NULL,1,'1999-05-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(66,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Justin','Mrs Justin J Smith Sr',NULL,NULL,NULL,'2',NULL,'Both','4103832903',NULL,NULL,'Justin','J','Smith',1,2,1,NULL,'Dear Justin',1,NULL,'Dear Justin',1,NULL,'Mrs Justin J Smith Sr',NULL,2,'1995-04-21',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(67,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, John','Ms John Y Jameson Sr',NULL,NULL,NULL,'5',NULL,'Both','2366671905',NULL,NULL,'John','Y','Jameson',2,2,1,NULL,'Dear John',1,NULL,'Dear John',1,NULL,'Ms John Y Jameson Sr',NULL,2,'1973-11-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(68,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Yadav, Bruce','Dr Bruce J Yadav Sr',NULL,NULL,NULL,'3',NULL,'Both','2146464792',NULL,NULL,'Bruce','J','Yadav',4,2,1,NULL,'Dear Bruce',1,NULL,'Dear Bruce',1,NULL,'Dr Bruce J Yadav Sr',NULL,2,'1980-12-29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(69,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Yadav, Jane','Mr Jane C Yadav Jr',NULL,NULL,NULL,'3',NULL,'Both','244484198',NULL,NULL,'Jane','C','Yadav',3,1,1,NULL,'Dear Jane',1,NULL,'Dear Jane',1,NULL,'Mr Jane C Yadav Jr',NULL,1,'2004-04-27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(70,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Parker, Amar','Dr Amar N Parker Sr',NULL,NULL,NULL,'4',NULL,'Both','157759246',NULL,NULL,'Amar','N','Parker',4,2,1,NULL,'Dear Amar',1,NULL,'Dear Amar',1,NULL,'Dr Amar N Parker Sr',NULL,1,'1996-12-22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(71,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Patel, Greg','Dr Greg P Patel Sr',NULL,NULL,NULL,'3',NULL,'Both','2131444987',NULL,NULL,'Greg','P','Patel',4,2,1,NULL,'Dear Greg',1,NULL,'Dear Greg',1,NULL,'Dr Greg P Patel Sr',NULL,2,'1997-11-22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(72,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Conservation Corp ','Conservation Corp ',NULL,NULL,NULL,'5',NULL,'Both','1902067651',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Conservation Corp ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Conservation Corp ',NULL,NULL,NULL,0),(73,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Parker, Melinda','Dr Melinda Z Parker Sr',NULL,NULL,NULL,'5',NULL,'Both','2602059183',NULL,NULL,'Melinda','Z','Parker',4,2,1,NULL,'Dear Melinda',1,NULL,'Dear Melinda',1,NULL,'Dr Melinda Z Parker Sr',NULL,2,'2002-11-29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(74,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Smith, Jennifer','Ms Jennifer O Smith Sr',NULL,NULL,NULL,'3',NULL,'Both','963089643',NULL,NULL,'Jennifer','O','Smith',2,2,1,NULL,'Dear Jennifer',1,NULL,'Dear Jennifer',1,NULL,'Ms Jennifer O Smith Sr',NULL,2,'2001-08-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(75,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Parker, Melinda','Dr Melinda D Parker Jr',NULL,NULL,NULL,'5',NULL,'Both','2602059183',NULL,NULL,'Melinda','D','Parker',4,1,1,NULL,'Dear Melinda',1,NULL,'Dear Melinda',1,NULL,'Dr Melinda D Parker Jr',NULL,2,'2001-12-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(76,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Zope, Jane','Mrs Jane U Zope Sr',NULL,NULL,NULL,'3',NULL,'Both','1896735401',NULL,NULL,'Jane','U','Zope',1,2,1,NULL,'Dear Jane',1,NULL,'Dear Jane',1,NULL,'Mrs Jane U Zope Sr',NULL,1,'2005-04-28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(77,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Working Assets ','Working Assets ',NULL,NULL,NULL,'5',NULL,'Both','3554079517',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Working Assets ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Working Assets ',NULL,NULL,NULL,0),(78,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Zope, Sam','Mr Sam Z Zope Sr',NULL,NULL,NULL,'2',NULL,'Both','972265794',NULL,NULL,'Sam','Z','Zope',3,2,1,NULL,'Dear Sam',1,NULL,'Dear Sam',1,NULL,'Mr Sam Z Zope Sr',NULL,1,'1994-10-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(79,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Reynolds, Brzęczysław','Mrs Brzęczysław K Reynolds Sr',NULL,NULL,NULL,'2',NULL,'Both','2553326248',NULL,NULL,'Brzęczysław','K','Reynolds',1,2,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Mrs Brzęczysław K Reynolds Sr',NULL,1,'1987-06-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(80,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Łąchowski, Melinda','Mrs Melinda R Łąchowski Sr',NULL,NULL,NULL,'3',NULL,'Both','1748872128',NULL,NULL,'Melinda','R','Łąchowski',1,2,1,NULL,'Dear Melinda',1,NULL,'Dear Melinda',1,NULL,'Mrs Melinda R Łąchowski Sr',NULL,1,'2005-10-07',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(81,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Reynolds, Andrew','Mr Andrew Y Reynolds Jr',NULL,NULL,NULL,'4',NULL,'Both','3309670970',NULL,NULL,'Andrew','Y','Reynolds',3,1,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Mr Andrew Y Reynolds Jr',NULL,2,'1971-10-09',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(82,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Roberts, James','Mr James V Roberts Sr',NULL,NULL,NULL,'2',NULL,'Both','2843377977',NULL,NULL,'James','V','Roberts',3,2,1,NULL,'Dear James',1,NULL,'Dear James',1,NULL,'Mr James V Roberts Sr',NULL,1,'2003-12-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(83,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Kenneth Smith\'s home','Kenneth Smith\'s home','Smith\'s home',NULL,NULL,'2',NULL,'Both','391456395',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Kenneth Smith\'s home',5,NULL,'Dear Kenneth Smith\'s home',2,NULL,'Kenneth Smith\'s home',NULL,NULL,NULL,0,NULL,'Kenneth Smith\'s home',NULL,NULL,NULL,NULL,NULL,0),(84,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Charles Jameson\'s home','Charles Jameson\'s home','Jameson\'s home',NULL,NULL,'3',NULL,'Both','3277864694',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Charles Jameson\'s home',5,NULL,'Dear Charles Jameson\'s home',2,NULL,'Charles Jameson\'s home',NULL,NULL,NULL,0,NULL,'Charles Jameson\'s home',NULL,NULL,NULL,NULL,NULL,0),(85,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Patel, Amar','Dr Amar C Patel Sr',NULL,NULL,NULL,'2',NULL,'Both','1152114309',NULL,NULL,'Amar','C','Patel',4,2,1,NULL,'Dear Amar',1,NULL,'Dear Amar',1,NULL,'Dr Amar C Patel Sr',NULL,1,'1979-12-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(86,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Patel, Rebecca','Mrs Rebecca I Patel Sr',NULL,NULL,NULL,'5',NULL,'Both','1224712151',NULL,NULL,'Rebecca','I','Patel',1,2,1,NULL,'Dear Rebecca',1,NULL,'Dear Rebecca',1,NULL,'Mrs Rebecca I Patel Sr',NULL,2,'2005-02-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(87,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Smith, Chris','Ms Chris A Smith Sr',NULL,NULL,NULL,'5',NULL,'Both','3975509052',NULL,NULL,'Chris','A','Smith',2,2,1,NULL,'Dear Chris',1,NULL,'Dear Chris',1,NULL,'Ms Chris A Smith Sr',NULL,1,'2000-06-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(88,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Kenneth Jones\'s home','Kenneth Jones\'s home','Jones\'s home',NULL,NULL,'3',NULL,'Both','2789091345',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Kenneth Jones\'s home',5,NULL,'Dear Kenneth Jones\'s home',2,NULL,'Kenneth Jones\'s home',NULL,NULL,NULL,0,NULL,'Kenneth Jones\'s home',NULL,NULL,NULL,NULL,NULL,0),(89,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Adams, Greg','Dr Greg F Adams Sr',NULL,NULL,NULL,'5',NULL,'Both','1384014872',NULL,NULL,'Greg','F','Adams',4,2,1,NULL,'Dear Greg',1,NULL,'Dear Greg',1,NULL,'Dr Greg F Adams Sr',NULL,1,'2000-01-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(90,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Smith, Milan','Dr Milan V Smith Sr',NULL,NULL,NULL,'5',NULL,'Both','1444857235',NULL,NULL,'Milan','V','Smith',4,2,1,NULL,'Dear Milan',1,NULL,'Dear Milan',1,NULL,'Dr Milan V Smith Sr',NULL,1,'1984-06-05',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(91,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Zope, Michael','Mr Michael H Zope Jr',NULL,NULL,NULL,'2',NULL,'Both','226812246',NULL,NULL,'Michael','H','Zope',3,1,1,NULL,'Dear Michael',1,NULL,'Dear Michael',1,NULL,'Mr Michael H Zope Jr',NULL,1,'1997-10-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(92,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Justin Smith\'s home','Justin Smith\'s home','Smith\'s home',NULL,NULL,'4',NULL,'Both','2120463166',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Justin Smith\'s home',5,NULL,'Dear Justin Smith\'s home',2,NULL,'Justin Smith\'s home',NULL,NULL,NULL,0,NULL,'Justin Smith\'s home',NULL,NULL,NULL,NULL,NULL,0),(93,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Donald','Ms Donald X Patel Jr',NULL,NULL,NULL,'5',NULL,'Both','2313128911',NULL,NULL,'Donald','X','Patel',2,1,1,NULL,'Dear Donald',1,NULL,'Dear Donald',1,NULL,'Ms Donald X Patel Jr',NULL,1,'2005-08-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(94,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Łąchowski, Michelle','Mrs Michelle X Łąchowski Jr',NULL,NULL,NULL,'3',NULL,'Both','335338660',NULL,NULL,'Michelle','X','Łąchowski',1,1,1,NULL,'Dear Michelle',1,NULL,'Dear Michelle',1,NULL,'Mrs Michelle X Łąchowski Jr',NULL,2,'1995-04-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(95,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Inner City ','Inner City ',NULL,NULL,NULL,'4',NULL,'Both','550937833',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Inner City ',NULL,NULL,NULL,0,NULL,NULL,NULL,'Inner City ',NULL,NULL,NULL,0),(96,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Smith, Kenneth','Mrs Kenneth Y Smith Jr',NULL,NULL,NULL,'5',NULL,'Both','3261441801',NULL,NULL,'Kenneth','Y','Smith',1,1,1,NULL,'Dear Kenneth',1,NULL,'Dear Kenneth',1,NULL,'Mrs Kenneth Y Smith Jr',NULL,2,'2011-10-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(97,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Sam','Mr Sam F Smith Sr',NULL,NULL,NULL,'2',NULL,'Both','2864532352',NULL,NULL,'Sam','F','Smith',3,2,1,NULL,'Dear Sam',1,NULL,'Dear Sam',1,NULL,'Mr Sam F Smith Sr',NULL,2,'1974-04-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(98,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Smith, Michelle','Mrs Michelle E Smith Sr',NULL,NULL,NULL,'3',NULL,'Both','3532395800',NULL,NULL,'Michelle','E','Smith',1,2,1,NULL,'Dear Michelle',1,NULL,'Dear Michelle',1,NULL,'Mrs Michelle E Smith Sr',NULL,2,'2009-03-14',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(99,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Smith, Brzęczysław','Dr Brzęczysław P Smith Jr',NULL,NULL,NULL,'4',NULL,'Both','3764320726',NULL,NULL,'Brzęczysław','P','Smith',4,1,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Dr Brzęczysław P Smith Jr',NULL,2,'2011-04-27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(100,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Jones, Milan','Ms Milan N Jones Jr',NULL,NULL,NULL,'5',NULL,'Both','3883256585',NULL,NULL,'Milan','N','Jones',2,1,1,NULL,'Dear Milan',1,NULL,'Dear Milan',1,NULL,'Ms Milan N Jones Jr',NULL,2,'1985-03-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(101,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Sam Smith\'s home','Sam Smith\'s home','Smith\'s home',NULL,NULL,'4',NULL,'Both','996133972',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Sam Smith\'s home',5,NULL,'Dear Sam Smith\'s home',2,NULL,'Sam Smith\'s home',NULL,NULL,NULL,0,NULL,'Sam Smith\'s home',NULL,NULL,NULL,NULL,NULL,0); /*!40000 ALTER TABLE `civicrm_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -267,7 +267,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution_soft` WRITE; /*!40000 ALTER TABLE `civicrm_contribution_soft` DISABLE KEYS */; -INSERT INTO `civicrm_contribution_soft` (`id`, `contribution_id`, `contact_id`, `amount`, `currency`, `pcp_id`, `pcp_display_in_roll`, `pcp_roll_nickname`, `pcp_personal_note`) VALUES (1,8,72,'10.00','USD',1,1,'Jones Family','Helping Hands'),(2,9,72,'250.00','USD',1,1,'Annie and the kids','Annie Helps'); +INSERT INTO `civicrm_contribution_soft` (`id`, `contribution_id`, `contact_id`, `amount`, `currency`, `pcp_id`, `pcp_display_in_roll`, `pcp_roll_nickname`, `pcp_personal_note`) VALUES (1,8,42,'10.00','USD',1,1,'Jones Family','Helping Hands'),(2,9,42,'250.00','USD',1,1,'Annie and the kids','Annie Helps'); /*!40000 ALTER TABLE `civicrm_contribution_soft` ENABLE KEYS */; UNLOCK TABLES; @@ -401,7 +401,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_domain` WRITE; /*!40000 ALTER TABLE `civicrm_domain` DISABLE KEYS */; -INSERT INTO `civicrm_domain` (`id`, `name`, `description`, `config_backend`, `version`, `loc_block_id`, `locales`, `locale_custom_strings`) VALUES (1,'Default Domain Name',NULL,NULL,'4.2.beta5',NULL,NULL,NULL); +INSERT INTO `civicrm_domain` (`id`, `name`, `description`, `config_backend`, `version`, `loc_block_id`, `locales`, `locale_custom_strings`) VALUES (1,'Default Domain Name',NULL,NULL,'4.2.0',NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_domain` ENABLE KEYS */; UNLOCK TABLES; @@ -411,7 +411,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,NULL,1,'\"Domain Email\" ',0,0,0,0,NULL,NULL,NULL,NULL),(2,27,1,'zopebernard@earthlink.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(3,27,1,'zopebernard@redimail.net',0,0,0,0,NULL,NULL,NULL,NULL),(4,49,1,'jamesonrichard@earthlink.edu.in',1,0,0,0,NULL,NULL,NULL,NULL),(5,49,1,'jamesonrichard@earthlink.edu.in',0,0,0,0,NULL,NULL,NULL,NULL),(6,35,1,'adamspurvi@tsec.net.in',1,0,0,0,NULL,NULL,NULL,NULL),(7,35,1,'adamspurvi@brown.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(8,21,1,'adamsfranklin@tsec.org',1,0,0,0,NULL,NULL,NULL,NULL),(9,21,1,'adamsfranklin@gmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(10,99,1,'reynoldssandy@amazon.org',1,0,0,0,NULL,NULL,NULL,NULL),(11,99,1,'reynoldssandy@aol.net.in',0,0,0,0,NULL,NULL,NULL,NULL),(12,53,1,'jonesraymond@brown.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(13,53,1,'jonesraymond@npo.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(14,101,1,'zopeandrew@brown.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(15,101,1,'zopeandrew@gmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(16,95,1,'smithwalter@aol.edu',1,0,0,0,NULL,NULL,NULL,NULL),(17,95,1,'smithwalter@redimail.edu',0,0,0,0,NULL,NULL,NULL,NULL),(18,63,1,'smithjason@redimail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(19,63,1,'smithjason@earthlink.edu.in',0,0,0,0,NULL,NULL,NULL,NULL),(20,91,1,'smithalice@redimail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(21,91,1,'smithalice@brown.net',0,0,0,0,NULL,NULL,NULL,NULL),(22,77,1,'peterreynoldsshome@indiatimes.net',1,0,0,0,NULL,NULL,NULL,NULL),(23,77,1,'peterreynoldsshome@hotmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(24,73,1,'jakerobertsshome@redimail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(25,73,1,'jakerobertsshome@tsec.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(26,87,1,'raymondadamsshome@indiatimes.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(27,87,1,'raymondadamsshome@aol.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(28,11,1,'monicasmithshome@earthlink.org',1,0,0,0,NULL,NULL,NULL,NULL),(29,11,1,'monicasmithshome@gmail.net.in',0,0,0,0,NULL,NULL,NULL,NULL),(30,15,1,'chrisyadavshome@redimail.org',1,0,0,0,NULL,NULL,NULL,NULL),(31,15,1,'chrisyadavshome@amazon.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(32,69,3,'ciscosystems@brown.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(33,69,3,'ciscosystems@aol.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(34,13,3,'projectopenhand@earthlink.net',1,0,0,0,NULL,NULL,NULL,NULL),(35,13,3,'projectopenhand@amazon.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(36,79,3,'intel@gmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(37,79,3,'intel@brown.net.in',0,0,0,0,NULL,NULL,NULL,NULL),(38,5,3,'compasspoint@brown.edu',1,0,0,0,NULL,NULL,NULL,NULL),(39,5,3,'compasspoint@aol.org',0,0,0,0,NULL,NULL,NULL,NULL),(40,75,3,'intel@hotmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(41,75,3,'intel@gmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(42,85,1,'zopegreg@brown.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(43,85,1,'zopegreg@gmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(44,41,1,'smithjustin@tsec.net',1,0,0,0,NULL,NULL,NULL,NULL),(45,41,1,'smithjustin@amazon.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(46,45,1,'smithjennifer@amazon.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(47,45,1,'smithjennifer@indiatimes.edu.in',0,0,0,0,NULL,NULL,NULL,NULL),(48,7,1,'jonesmichelle@gmail.edu.in',1,0,0,0,NULL,NULL,NULL,NULL),(49,7,1,'jonesmichelle@hotmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(50,3,1,'smithwalter@redimail.net',1,0,0,0,NULL,NULL,NULL,NULL),(51,3,1,'smithwalter@amazon.org',0,0,0,0,NULL,NULL,NULL,NULL),(52,67,1,'jamesontony@hotmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(53,67,1,'jamesontony@redimail.net',0,0,0,0,NULL,NULL,NULL,NULL),(54,97,1,'reynoldskenneth@tsec.net',1,0,0,0,NULL,NULL,NULL,NULL),(55,97,1,'reynoldskenneth@npo.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(56,23,1,'yadavhenry@indiatimes.org',1,0,0,0,NULL,NULL,NULL,NULL),(57,23,1,'yadavhenry@indiatimes.net',0,0,0,0,NULL,NULL,NULL,NULL),(58,9,1,'yadavtony@npo.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(59,9,1,'yadavtony@npo.edu',0,0,0,0,NULL,NULL,NULL,NULL),(60,17,1,'robertsrichard@brown.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(61,17,1,'robertsrichard@aol.edu',0,0,0,0,NULL,NULL,NULL,NULL),(62,51,1,'jonesjustin@aol.edu',1,0,0,0,NULL,NULL,NULL,NULL),(63,51,1,'jonesjustin@amazon.edu',0,0,0,0,NULL,NULL,NULL,NULL),(64,37,1,'jonessam@brown.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(65,37,1,'jonessam@indiatimes.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(66,55,1,'jonesbill@redimail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(67,55,1,'jonesbill@redimail.edu',0,0,0,0,NULL,NULL,NULL,NULL),(68,93,1,'jamesonpeter@indiatimes.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(69,93,1,'jamesonpeter@indiatimes.net.in',0,0,0,0,NULL,NULL,NULL,NULL),(70,19,1,'chowskimichelle@aol.net.in',1,0,0,0,NULL,NULL,NULL,NULL),(71,19,1,'chowskimichelle@hotmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(72,43,1,'robertsjake@aol.net',1,0,0,0,NULL,NULL,NULL,NULL),(73,43,1,'robertsjake@hotmail.edu.in',0,0,0,0,NULL,NULL,NULL,NULL),(74,31,1,'yadavdan@brown.edu',1,0,0,0,NULL,NULL,NULL,NULL),(75,31,1,'yadavdan@brown.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(76,61,1,'yadavmichael@indiatimes.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(77,61,1,'yadavmichael@earthlink.net.in',0,0,0,0,NULL,NULL,NULL,NULL),(78,83,1,'zoperebecca@gmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(79,83,1,'zoperebecca@earthlink.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(80,57,1,'smithjake@aol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(81,57,1,'smithjake@npo.edu',0,0,0,0,NULL,NULL,NULL,NULL),(82,81,1,'chowskitony@aol.org',1,0,0,0,NULL,NULL,NULL,NULL),(83,81,1,'chowskitony@gmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(84,71,1,'jonessam@hotmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(85,71,1,'jonessam@amazon.org',0,0,0,0,NULL,NULL,NULL,NULL),(86,65,1,'yadavjennifer@gmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(87,65,1,'yadavjennifer@aol.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(88,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(89,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(90,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,NULL,1,'\"Domain Email\" ',0,0,0,0,NULL,NULL,NULL,NULL),(2,57,1,'smithbrzczysaw@amazon.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(3,57,1,'smithbrzczysaw@indiatimes.net.in',0,0,0,0,NULL,NULL,NULL,NULL),(4,53,1,'reynoldsjustin@redimail.net',1,0,0,0,NULL,NULL,NULL,NULL),(5,53,1,'reynoldsjustin@gmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(6,35,1,'chowskifraddie@npo.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(7,35,1,'chowskifraddie@earthlink.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(8,13,1,'chowskitony@npo.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(9,13,1,'chowskitony@hotmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(10,59,1,'jonesjennifer@tsec.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(11,59,1,'jonesjennifer@tsec.net.in',0,0,0,0,NULL,NULL,NULL,NULL),(12,25,1,'smithalice@redimail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(13,25,1,'smithalice@earthlink.net',0,0,0,0,NULL,NULL,NULL,NULL),(14,41,1,'walterparkershome@amazon.net',1,0,0,0,NULL,NULL,NULL,NULL),(15,41,1,'walterparkershome@aol.edu.in',0,0,0,0,NULL,NULL,NULL,NULL),(16,43,1,'justinsmithshome@tsec.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(17,43,1,'justinsmithshome@earthlink.net.in',0,0,0,0,NULL,NULL,NULL,NULL),(18,101,1,'samsmithshome@amazon.edu.in',1,0,0,0,NULL,NULL,NULL,NULL),(19,101,1,'samsmithshome@gmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(20,47,1,'melindaparkershome@npo.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(21,47,1,'melindaparkershome@indiatimes.org',0,0,0,0,NULL,NULL,NULL,NULL),(22,11,1,'brzczysawreynoldsshome@amazon.net.in',1,0,0,0,NULL,NULL,NULL,NULL),(23,11,1,'brzczysawreynoldsshome@brown.edu',0,0,0,0,NULL,NULL,NULL,NULL),(24,83,1,'kennethsmithshome@brown.org',1,0,0,0,NULL,NULL,NULL,NULL),(25,83,1,'kennethsmithshome@indiatimes.net.in',0,0,0,0,NULL,NULL,NULL,NULL),(26,23,1,'donaldrobertsshome@tsec.net.in',1,0,0,0,NULL,NULL,NULL,NULL),(27,23,1,'donaldrobertsshome@redimail.net',0,0,0,0,NULL,NULL,NULL,NULL),(28,95,3,'innercity@npo.net.in',1,0,0,0,NULL,NULL,NULL,NULL),(29,95,3,'innercity@brown.edu',0,0,0,0,NULL,NULL,NULL,NULL),(30,45,3,'workingassets@npo.org',1,0,0,0,NULL,NULL,NULL,NULL),(31,45,3,'workingassets@brown.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(32,77,3,'workingassets@earthlink.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(33,77,3,'workingassets@redimail.net',0,0,0,0,NULL,NULL,NULL,NULL),(34,17,3,'workingassets@aol.net.in',1,0,0,0,NULL,NULL,NULL,NULL),(35,17,3,'workingassets@amazon.net',0,0,0,0,NULL,NULL,NULL,NULL),(36,19,3,'intel@brown.edu.in',1,0,0,0,NULL,NULL,NULL,NULL),(37,19,3,'intel@npo.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(38,37,1,'parkerwalter@npo.org',1,0,0,0,NULL,NULL,NULL,NULL),(39,37,1,'parkerwalter@npo.org',0,0,0,0,NULL,NULL,NULL,NULL),(40,9,1,'zopealice@gmail.edu',1,0,0,0,NULL,NULL,NULL,NULL),(41,9,1,'zopealice@amazon.edu',0,0,0,0,NULL,NULL,NULL,NULL),(42,29,1,'jonesjane@gmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(43,29,1,'jonesjane@tsec.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(44,97,1,'smithsam@indiatimes.net',1,0,0,0,NULL,NULL,NULL,NULL),(45,97,1,'smithsam@earthlink.edu',0,0,0,0,NULL,NULL,NULL,NULL),(46,99,1,'smithbrzczysaw@tsec.edu.in',1,0,0,0,NULL,NULL,NULL,NULL),(47,99,1,'smithbrzczysaw@earthlink.edu.in',0,0,0,0,NULL,NULL,NULL,NULL),(48,27,1,'smithdonald@tsec.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(49,27,1,'smithdonald@gmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(50,75,1,'parkermelinda@amazon.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(51,75,1,'parkermelinda@tsec.net',0,0,0,0,NULL,NULL,NULL,NULL),(52,89,1,'adamsgreg@redimail.net',1,0,0,0,NULL,NULL,NULL,NULL),(53,89,1,'adamsgreg@npo.edu.in',0,0,0,0,NULL,NULL,NULL,NULL),(54,65,1,'jamesonwalter@tsec.org',1,0,0,0,NULL,NULL,NULL,NULL),(55,65,1,'jamesonwalter@npo.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(56,87,1,'smithchris@brown.org',1,0,0,0,NULL,NULL,NULL,NULL),(57,87,1,'smithchris@aol.edu.in',0,0,0,0,NULL,NULL,NULL,NULL),(58,67,1,'jamesonjohn@redimail.org',1,0,0,0,NULL,NULL,NULL,NULL),(59,67,1,'jamesonjohn@redimail.net',0,0,0,0,NULL,NULL,NULL,NULL),(60,3,1,'chowskijason@npo.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(61,3,1,'chowskijason@npo.edu.in',0,0,0,0,NULL,NULL,NULL,NULL),(62,15,1,'jonesjustin@earthlink.net',1,0,0,0,NULL,NULL,NULL,NULL),(63,15,1,'jonesjustin@aol.edu.in',0,0,0,0,NULL,NULL,NULL,NULL),(64,33,1,'yadavcharles@earthlink.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(65,33,1,'yadavcharles@redimail.org',0,0,0,0,NULL,NULL,NULL,NULL),(66,21,1,'jamesonandrew@amazon.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(67,21,1,'jamesonandrew@aol.org',0,0,0,0,NULL,NULL,NULL,NULL),(68,79,1,'reynoldsbrzczysaw@amazon.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(69,79,1,'reynoldsbrzczysaw@earthlink.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(70,91,1,'zopemichael@amazon.edu.in',1,0,0,0,NULL,NULL,NULL,NULL),(71,91,1,'zopemichael@aol.net.in',0,0,0,0,NULL,NULL,NULL,NULL),(72,71,1,'patelgreg@aol.edu.in',1,0,0,0,NULL,NULL,NULL,NULL),(73,71,1,'patelgreg@redimail.org',0,0,0,0,NULL,NULL,NULL,NULL),(74,39,1,'smithhenry@brown.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(75,39,1,'smithhenry@indiatimes.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(76,69,1,'yadavjane@earthlink.edu.in',1,0,0,0,NULL,NULL,NULL,NULL),(77,69,1,'yadavjane@hotmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(78,51,1,'robertsbruce@indiatimes.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(79,51,1,'robertsbruce@aol.net',0,0,0,0,NULL,NULL,NULL,NULL),(80,7,1,'joneshenry@amazon.net',1,0,0,0,NULL,NULL,NULL,NULL),(81,7,1,'joneshenry@hotmail.edu.in',0,0,0,0,NULL,NULL,NULL,NULL),(82,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(83,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(84,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_email` ENABLE KEYS */; UNLOCK TABLES; @@ -448,7 +448,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 (3,'civicrm_contact',2,3),(23,'civicrm_contact',3,4),(24,'civicrm_contact',3,5),(56,'civicrm_contact',6,4),(57,'civicrm_contact',6,5),(22,'civicrm_contact',7,4),(14,'civicrm_contact',12,4),(15,'civicrm_contact',12,5),(2,'civicrm_contact',13,2),(47,'civicrm_contact',16,4),(29,'civicrm_contact',17,4),(33,'civicrm_contact',19,4),(21,'civicrm_contact',20,5),(26,'civicrm_contact',23,5),(48,'civicrm_contact',25,5),(6,'civicrm_contact',27,4),(7,'civicrm_contact',27,5),(19,'civicrm_contact',28,5),(27,'civicrm_contact',30,4),(28,'civicrm_contact',30,5),(35,'civicrm_contact',31,5),(54,'civicrm_contact',33,4),(55,'civicrm_contact',33,5),(8,'civicrm_contact',35,4),(30,'civicrm_contact',37,4),(20,'civicrm_contact',40,4),(11,'civicrm_contact',42,4),(12,'civicrm_contact',42,5),(46,'civicrm_contact',47,5),(4,'civicrm_contact',48,1),(34,'civicrm_contact',50,5),(13,'civicrm_contact',53,4),(9,'civicrm_contact',54,4),(10,'civicrm_contact',54,5),(39,'civicrm_contact',57,4),(40,'civicrm_contact',57,5),(53,'civicrm_contact',59,4),(36,'civicrm_contact',61,5),(16,'civicrm_contact',63,4),(17,'civicrm_contact',63,5),(51,'civicrm_contact',66,4),(52,'civicrm_contact',66,5),(43,'civicrm_contact',71,4),(5,'civicrm_contact',75,1),(1,'civicrm_contact',76,2),(41,'civicrm_contact',81,4),(42,'civicrm_contact',81,5),(45,'civicrm_contact',82,4),(37,'civicrm_contact',83,5),(18,'civicrm_contact',91,5),(38,'civicrm_contact',92,5),(31,'civicrm_contact',93,4),(32,'civicrm_contact',93,5),(44,'civicrm_contact',94,5),(49,'civicrm_contact',96,4),(50,'civicrm_contact',96,5),(25,'civicrm_contact',97,4); +INSERT INTO `civicrm_entity_tag` (`id`, `entity_table`, `entity_id`, `tag_id`) VALUES (55,'civicrm_contact',5,5),(23,'civicrm_contact',8,4),(18,'civicrm_contact',9,4),(19,'civicrm_contact',9,5),(12,'civicrm_contact',13,5),(53,'civicrm_contact',14,4),(35,'civicrm_contact',15,4),(36,'civicrm_contact',15,5),(5,'civicrm_contact',17,2),(4,'civicrm_contact',26,3),(27,'civicrm_contact',27,4),(28,'civicrm_contact',27,5),(26,'civicrm_contact',28,4),(20,'civicrm_contact',29,4),(6,'civicrm_contact',30,4),(7,'civicrm_contact',30,5),(32,'civicrm_contact',38,5),(42,'civicrm_contact',39,4),(43,'civicrm_contact',39,5),(2,'civicrm_contact',45,3),(16,'civicrm_contact',48,4),(17,'civicrm_contact',48,5),(37,'civicrm_contact',50,5),(44,'civicrm_contact',51,4),(45,'civicrm_contact',51,5),(11,'civicrm_contact',53,4),(54,'civicrm_contact',55,4),(21,'civicrm_contact',56,4),(9,'civicrm_contact',57,4),(10,'civicrm_contact',57,5),(33,'civicrm_contact',58,4),(13,'civicrm_contact',59,5),(24,'civicrm_contact',60,4),(25,'civicrm_contact',60,5),(56,'civicrm_contact',62,4),(34,'civicrm_contact',67,5),(40,'civicrm_contact',70,4),(3,'civicrm_contact',72,3),(52,'civicrm_contact',73,5),(8,'civicrm_contact',74,5),(48,'civicrm_contact',78,4),(49,'civicrm_contact',78,5),(22,'civicrm_contact',80,5),(50,'civicrm_contact',81,4),(51,'civicrm_contact',81,5),(38,'civicrm_contact',82,5),(47,'civicrm_contact',85,4),(30,'civicrm_contact',87,4),(31,'civicrm_contact',87,5),(29,'civicrm_contact',89,5),(14,'civicrm_contact',90,4),(15,'civicrm_contact',90,5),(41,'civicrm_contact',91,4),(39,'civicrm_contact',94,4),(1,'civicrm_contact',95,3),(46,'civicrm_contact',100,5); /*!40000 ALTER TABLE `civicrm_entity_tag` ENABLE KEYS */; UNLOCK TABLES; @@ -458,7 +458,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`, `contribution_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_multiple_registrations`, `allow_same_participant_emails`, `has_waitlist`, `requires_approval`, `expiration_time`, `waitlist_text`, `approval_req_text`, `is_template`, `template_title`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `parent_event_id`, `slot_label_id`) VALUES (1,'Fall Fundraiser Dinner','Kick up your heels at our Fall Fundraiser Dinner/Dance at Glen Echo Park! Come by yourself or bring a partner, friend or the entire family!','This event benefits our teen programs. Admission includes a full 3 course meal and wine or soft drinks. Grab your dancing shoes, bring the kids and come join the party!',3,1,1,'2013-01-19 17:00:00','2013-01-21 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,2,1,'Fill in the information below to join as at this wonderful dinner event.',NULL,'Confirm Your Registration Information','Review the information below carefully.',NULL,1,'Contact the Development Department if you need to make any changes to your registration.','Fundraising Dept.','development@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!','

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

    Please tell your friends and colleagues about this wonderful event.

    ','

    Back to CiviCRM Home Page

    ',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',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,'2012-07-18 12:00:00','2012-07-18 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,3,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','

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

    Please tell your friends and colleagues about the concert.

    ','

    Back to CiviCRM Home Page

    ',0,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,NULL,NULL),(3,'Rain-forest Cup Youth Soccer Tournament','Sign up your team to participate in this fun tournament which benefits several Rain-forest protection groups in the Amazon basin.','This is a FYSA Sanctioned Tournament, which is open to all USSF/FIFA affiliated organizations for boys and girls in age groups: U9-U10 (6v6), U11-U12 (8v8), and U13-U17 (Full Sided).',3,1,1,'2013-02-19 07:00:00','2013-02-22 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,4,1,'Complete the form below to register your team for this year\'s tournament.','A Soccer Youth Event','Review and Confirm Your Registration Information','','A Soccer Youth Event',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','

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

    ','

    Back to CiviCRM Home Page

    ',0,NULL,NULL,0,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,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,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,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`, `contribution_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_multiple_registrations`, `allow_same_participant_emails`, `has_waitlist`, `requires_approval`, `expiration_time`, `waitlist_text`, `approval_req_text`, `is_template`, `template_title`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `parent_event_id`, `slot_label_id`) VALUES (1,'Fall Fundraiser Dinner','Kick up your heels at our Fall Fundraiser Dinner/Dance at Glen Echo Park! Come by yourself or bring a partner, friend or the entire family!','This event benefits our teen programs. Admission includes a full 3 course meal and wine or soft drinks. Grab your dancing shoes, bring the kids and come join the party!',3,1,1,'2013-02-20 17:00:00','2013-02-22 17:00:00',1,'Register Now',NULL,NULL,100,'Sorry! The Fall Fundraiser Dinner is full. Please call Jane at 204 222-1000 ext 33 if you want to be added to the waiting list.',1,4,NULL,1,1,'Dinner Contribution',1,2,1,'Fill in the information below to join as at this wonderful dinner event.',NULL,'Confirm Your Registration Information','Review the information below carefully.',NULL,1,'Contact the Development Department if you need to make any changes to your registration.','Fundraising Dept.','development@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!','

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

    Please tell your friends and colleagues about this wonderful event.

    ','

    Back to CiviCRM Home Page

    ',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',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,'2012-08-19 12:00:00','2012-08-19 17:00:00',1,'Register Now',NULL,NULL,50,'We have all the singers we can handle. Come to the pavilion anyway and join in from the audience.',1,2,NULL,NULL,1,'Festival Fee',1,3,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','

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

    Please tell your friends and colleagues about the concert.

    ','

    Back to CiviCRM Home Page

    ',0,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,NULL,NULL),(3,'Rain-forest Cup Youth Soccer Tournament','Sign up your team to participate in this fun tournament which benefits several Rain-forest protection groups in the Amazon basin.','This is a FYSA Sanctioned Tournament, which is open to all USSF/FIFA affiliated organizations for boys and girls in age groups: U9-U10 (6v6), U11-U12 (8v8), and U13-U17 (Full Sided).',3,1,1,'2013-03-20 07:00:00','2013-03-23 17:00:00',1,'Register Now',NULL,NULL,500,'Sorry! All available team slots for this tournament have been filled. Contact Jill Futbol for information about the waiting list and next years event.',1,4,NULL,NULL,1,'Tournament Fees',1,4,1,'Complete the form below to register your team for this year\'s tournament.','A Soccer Youth Event','Review and Confirm Your Registration Information','','A Soccer Youth Event',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','

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

    ','

    Back to CiviCRM Home Page

    ',0,NULL,NULL,0,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,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,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,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; @@ -541,7 +541,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,27,'Added',NULL,NULL),(2,2,49,'Added',NULL,NULL),(3,2,35,'Added',NULL,NULL),(4,2,72,'Added',NULL,NULL),(5,2,54,'Added',NULL,NULL),(6,2,21,'Added',NULL,NULL),(7,2,42,'Added',NULL,NULL),(8,2,99,'Added',NULL,NULL),(9,2,53,'Added',NULL,NULL),(10,2,101,'Added',NULL,NULL),(11,2,12,'Added',NULL,NULL),(12,2,95,'Added',NULL,NULL),(13,2,63,'Added',NULL,NULL),(14,2,62,'Added',NULL,NULL),(15,2,91,'Added',NULL,NULL),(16,2,85,'Added',NULL,NULL),(17,2,28,'Added',NULL,NULL),(18,2,41,'Added',NULL,NULL),(19,2,40,'Added',NULL,NULL),(20,2,52,'Added',NULL,NULL),(21,2,20,'Added',NULL,NULL),(22,2,45,'Added',NULL,NULL),(23,2,7,'Added',NULL,NULL),(24,2,36,'Added',NULL,NULL),(25,2,3,'Added',NULL,NULL),(26,2,67,'Added',NULL,NULL),(27,2,97,'Added',NULL,NULL),(28,2,26,'Added',NULL,NULL),(29,2,23,'Added',NULL,NULL),(30,2,9,'Added',NULL,NULL),(31,2,30,'Added',NULL,NULL),(32,2,90,'Added',NULL,NULL),(33,2,17,'Added',NULL,NULL),(34,2,51,'Added',NULL,NULL),(35,2,37,'Added',NULL,NULL),(36,2,55,'Added',NULL,NULL),(37,2,93,'Added',NULL,NULL),(38,2,46,'Added',NULL,NULL),(39,2,19,'Added',NULL,NULL),(40,2,43,'Added',NULL,NULL),(41,2,50,'Added',NULL,NULL),(42,2,22,'Added',NULL,NULL),(43,2,31,'Added',NULL,NULL),(44,2,100,'Added',NULL,NULL),(45,2,61,'Added',NULL,NULL),(46,2,56,'Added',NULL,NULL),(47,2,83,'Added',NULL,NULL),(48,2,98,'Added',NULL,NULL),(49,2,92,'Added',NULL,NULL),(50,2,80,'Added',NULL,NULL),(51,2,57,'Added',NULL,NULL),(52,2,86,'Added',NULL,NULL),(53,2,81,'Added',NULL,NULL),(54,2,88,'Added',NULL,NULL),(55,2,71,'Added',NULL,NULL),(56,2,10,'Added',NULL,NULL),(57,2,94,'Added',NULL,NULL),(58,2,65,'Added',NULL,NULL),(59,2,82,'Added',NULL,NULL),(60,2,4,'Added',NULL,NULL),(61,3,47,'Added',NULL,NULL),(62,3,32,'Added',NULL,NULL),(63,3,16,'Added',NULL,NULL),(64,3,68,'Added',NULL,NULL),(65,3,25,'Added',NULL,NULL),(66,3,29,'Added',NULL,NULL),(67,3,96,'Added',NULL,NULL),(68,3,39,'Added',NULL,NULL),(69,3,66,'Added',NULL,NULL),(70,3,70,'Added',NULL,NULL),(71,3,59,'Added',NULL,NULL),(72,3,60,'Added',NULL,NULL),(73,3,33,'Added',NULL,NULL),(74,3,89,'Added',NULL,NULL),(75,3,6,'Added',NULL,NULL),(76,4,27,'Added',NULL,NULL),(77,4,99,'Added',NULL,NULL),(78,4,91,'Added',NULL,NULL),(79,4,45,'Added',NULL,NULL),(80,4,23,'Added',NULL,NULL),(81,4,55,'Added',NULL,NULL),(82,4,31,'Added',NULL,NULL),(83,4,80,'Added',NULL,NULL); +INSERT INTO `civicrm_group_contact` (`id`, `group_id`, `contact_id`, `status`, `location_id`, `email_id`) VALUES (1,2,30,'Added',NULL,NULL),(2,2,32,'Added',NULL,NULL),(3,2,74,'Added',NULL,NULL),(4,2,42,'Added',NULL,NULL),(5,2,57,'Added',NULL,NULL),(6,2,64,'Added',NULL,NULL),(7,2,53,'Added',NULL,NULL),(8,2,35,'Added',NULL,NULL),(9,2,13,'Added',NULL,NULL),(10,2,6,'Added',NULL,NULL),(11,2,59,'Added',NULL,NULL),(12,2,20,'Added',NULL,NULL),(13,2,90,'Added',NULL,NULL),(14,2,25,'Added',NULL,NULL),(15,2,48,'Added',NULL,NULL),(16,2,37,'Added',NULL,NULL),(17,2,9,'Added',NULL,NULL),(18,2,76,'Added',NULL,NULL),(19,2,29,'Added',NULL,NULL),(20,2,66,'Added',NULL,NULL),(21,2,56,'Added',NULL,NULL),(22,2,86,'Added',NULL,NULL),(23,2,80,'Added',NULL,NULL),(24,2,98,'Added',NULL,NULL),(25,2,8,'Added',NULL,NULL),(26,2,34,'Added',NULL,NULL),(27,2,60,'Added',NULL,NULL),(28,2,97,'Added',NULL,NULL),(29,2,28,'Added',NULL,NULL),(30,2,99,'Added',NULL,NULL),(31,2,27,'Added',NULL,NULL),(32,2,75,'Added',NULL,NULL),(33,2,89,'Added',NULL,NULL),(34,2,65,'Added',NULL,NULL),(35,2,87,'Added',NULL,NULL),(36,2,46,'Added',NULL,NULL),(37,2,38,'Added',NULL,NULL),(38,2,40,'Added',NULL,NULL),(39,2,58,'Added',NULL,NULL),(40,2,4,'Added',NULL,NULL),(41,2,67,'Added',NULL,NULL),(42,2,3,'Added',NULL,NULL),(43,2,15,'Added',NULL,NULL),(44,2,33,'Added',NULL,NULL),(45,2,50,'Added',NULL,NULL),(46,2,21,'Added',NULL,NULL),(47,2,82,'Added',NULL,NULL),(48,2,24,'Added',NULL,NULL),(49,2,94,'Added',NULL,NULL),(50,2,36,'Added',NULL,NULL),(51,2,70,'Added',NULL,NULL),(52,2,79,'Added',NULL,NULL),(53,2,91,'Added',NULL,NULL),(54,2,71,'Added',NULL,NULL),(55,2,39,'Added',NULL,NULL),(56,2,69,'Added',NULL,NULL),(57,2,51,'Added',NULL,NULL),(58,2,7,'Added',NULL,NULL),(59,2,100,'Added',NULL,NULL),(60,2,96,'Added',NULL,NULL),(61,3,85,'Added',NULL,NULL),(62,3,93,'Added',NULL,NULL),(63,3,78,'Added',NULL,NULL),(64,3,49,'Added',NULL,NULL),(65,3,81,'Added',NULL,NULL),(66,3,31,'Added',NULL,NULL),(67,3,73,'Added',NULL,NULL),(68,3,63,'Added',NULL,NULL),(69,3,14,'Added',NULL,NULL),(70,3,61,'Added',NULL,NULL),(71,3,55,'Added',NULL,NULL),(72,3,2,'Added',NULL,NULL),(73,3,5,'Added',NULL,NULL),(74,3,68,'Added',NULL,NULL),(75,3,62,'Added',NULL,NULL),(76,4,30,'Added',NULL,NULL),(77,4,35,'Added',NULL,NULL),(78,4,48,'Added',NULL,NULL),(79,4,86,'Added',NULL,NULL),(80,4,28,'Added',NULL,NULL),(81,4,46,'Added',NULL,NULL),(82,4,15,'Added',NULL,NULL),(83,4,36,'Added',NULL,NULL); /*!40000 ALTER TABLE `civicrm_group_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -616,7 +616,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,1,NULL,1,NULL,NULL,NULL,NULL,NULL),(2,87,88,118,NULL,NULL,NULL,NULL,NULL),(3,88,89,119,NULL,NULL,NULL,NULL,NULL),(4,89,90,120,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,1,NULL,1,NULL,NULL,NULL,NULL,NULL),(2,87,82,114,NULL,NULL,NULL,NULL,NULL),(3,88,83,115,NULL,NULL,NULL,NULL,NULL),(4,89,84,116,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_loc_block` ENABLE KEYS */; UNLOCK TABLES; @@ -823,6 +823,15 @@ LOCK TABLES `civicrm_mailing_trackable_url` WRITE; /*!40000 ALTER TABLE `civicrm_mailing_trackable_url` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Dumping data for table `civicrm_managed` +-- + +LOCK TABLES `civicrm_managed` WRITE; +/*!40000 ALTER TABLE `civicrm_managed` DISABLE KEYS */; +/*!40000 ALTER TABLE `civicrm_managed` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Dumping data for table `civicrm_mapping` -- @@ -847,7 +856,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`, `reminder_date`, `owner_membership_id`, `is_test`, `is_pay_later`, `contribution_recur_id`, `campaign_id`) VALUES (1,93,1,'2012-07-19','2012-07-19','2014-07-18','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(2,50,2,'2012-07-18','2012-07-18','2013-07-17','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(3,85,1,'2012-07-17','2012-07-17','2014-07-16','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(4,66,2,'2012-07-16','2012-07-16','2013-07-15','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(5,99,2,'2011-07-15','2011-07-15','2012-07-14','Check',4,NULL,NULL,NULL,0,0,NULL,NULL),(6,12,2,'2012-07-14','2012-07-14','2013-07-13','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(7,53,1,'2012-07-13','2012-07-13','2014-07-12','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(8,33,2,'2012-07-12','2012-07-12','2013-07-11','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(9,10,1,'2012-07-11','2012-07-11','2014-07-10','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(10,16,1,'2010-05-08','2010-05-08','2012-05-07','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(11,71,3,'2012-07-09','2012-07-09',NULL,'Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(12,28,2,'2012-07-08','2012-07-08','2013-07-07','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(13,62,1,'2012-07-07','2012-07-07','2014-07-06','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(14,25,2,'2012-07-06','2012-07-06','2013-07-05','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(15,21,1,'2010-03-29','2010-03-29','2012-03-28','Donation',3,NULL,NULL,NULL,0,0,NULL,NULL),(16,59,2,'2012-07-04','2012-07-04','2013-07-03','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(17,54,1,'2012-07-03','2012-07-03','2014-07-02','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(18,32,2,'2012-07-02','2012-07-02','2013-07-01','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(19,55,1,'2012-07-01','2012-07-01','2014-06-30','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(20,41,1,'2010-02-17','2010-02-17','2012-02-16','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(21,4,1,'2012-06-29','2012-06-29','2014-06-28','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(22,100,3,'2012-06-28','2012-06-28',NULL,'Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(23,43,1,'2012-06-27','2012-06-27','2014-06-26','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(24,30,2,'2012-06-26','2012-06-26','2013-06-25','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(25,61,1,'2010-01-08','2010-01-08','2012-01-07','Donation',3,NULL,NULL,NULL,0,0,NULL,NULL),(26,40,2,'2012-06-24','2012-06-24','2013-06-23','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(27,42,1,'2012-06-23','2012-06-23','2014-06-22','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(28,22,2,'2012-06-22','2012-06-22','2013-06-21','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(29,67,1,'2012-06-21','2012-06-21','2014-06-20','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(30,36,1,'2009-11-29','2009-11-29','2011-11-28','Donation',3,NULL,NULL,NULL,0,0,NULL,NULL); +INSERT INTO `civicrm_membership` (`id`, `contact_id`, `membership_type_id`, `join_date`, `start_date`, `end_date`, `source`, `status_id`, `is_override`, `reminder_date`, `owner_membership_id`, `is_test`, `is_pay_later`, `contribution_recur_id`, `campaign_id`) VALUES (1,70,1,'2012-08-20','2012-08-20','2014-08-19','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(2,51,2,'2012-08-19','2012-08-19','2013-08-18','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(3,81,1,'2012-08-18','2012-08-18','2014-08-17','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(4,35,2,'2012-08-17','2012-08-17','2013-08-16','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(5,62,2,'2011-08-16','2011-08-16','2012-08-15','Check',4,NULL,NULL,NULL,0,0,NULL,NULL),(6,5,2,'2012-08-15','2012-08-15','2013-08-14','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(7,28,1,'2012-08-14','2012-08-14','2014-08-13','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(8,74,2,'2012-08-13','2012-08-13','2013-08-12','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(9,3,1,'2012-08-12','2012-08-12','2014-08-11','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(10,48,1,'2010-06-09','2010-06-09','2012-06-08','Donation',3,NULL,NULL,NULL,0,0,NULL,NULL),(11,2,3,'2012-08-10','2012-08-10',NULL,'Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(12,85,2,'2012-08-09','2012-08-09','2013-08-08','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(13,65,1,'2012-08-08','2012-08-08','2014-08-07','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(14,15,2,'2012-08-07','2012-08-07','2013-08-06','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(15,8,2,'2011-08-06','2011-08-06','2012-08-05','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL),(16,25,2,'2012-08-05','2012-08-05','2013-08-04','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(17,38,1,'2012-08-04','2012-08-04','2014-08-03','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(18,56,2,'2012-08-03','2012-08-03','2013-08-02','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(19,9,1,'2012-08-02','2012-08-02','2014-08-01','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(20,59,2,'2011-08-01','2011-08-01','2012-07-31','Check',4,NULL,NULL,NULL,0,0,NULL,NULL),(21,34,1,'2012-07-31','2012-07-31','2014-07-30','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(22,20,3,'2012-07-30','2012-07-30',NULL,'Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(23,73,1,'2012-07-29','2012-07-29','2014-07-28','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(24,94,2,'2012-07-28','2012-07-28','2013-07-27','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(25,61,2,'2011-07-27','2011-07-27','2012-07-26','Check',4,NULL,NULL,NULL,0,0,NULL,NULL),(26,60,2,'2012-07-26','2012-07-26','2013-07-25','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(27,67,1,'2012-07-25','2012-07-25','2014-07-24','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(28,100,2,'2012-07-24','2012-07-24','2013-07-23','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(29,97,1,'2012-07-23','2012-07-23','2014-07-22','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(30,31,2,'2011-07-22','2011-07-22','2012-07-21','Check',4,NULL,NULL,NULL,0,0,NULL,NULL); /*!40000 ALTER TABLE `civicrm_membership` ENABLE KEYS */; UNLOCK TABLES; @@ -867,7 +876,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`, `renewal_reminder_date`, `membership_type_id`) VALUES (1,21,1,'2012-06-29','2014-06-28',4,'2012-07-19',NULL,1),(2,9,1,'2012-07-11','2014-07-10',10,'2012-07-19',NULL,1),(3,6,1,'2012-07-14','2013-07-13',12,'2012-07-19',NULL,2),(4,10,3,'2010-05-08','2012-05-07',16,'2012-07-19',NULL,1),(5,15,3,'2010-03-29','2012-03-28',21,'2012-07-19',NULL,1),(6,28,1,'2012-06-22','2013-06-21',22,'2012-07-19',NULL,2),(7,14,1,'2012-07-06','2013-07-05',25,'2012-07-19',NULL,2),(8,12,1,'2012-07-08','2013-07-07',28,'2012-07-19',NULL,2),(9,24,1,'2012-06-26','2013-06-25',30,'2012-07-19',NULL,2),(10,18,1,'2012-07-02','2013-07-01',32,'2012-07-19',NULL,2),(11,8,1,'2012-07-12','2013-07-11',33,'2012-07-19',NULL,2),(12,30,3,'2009-11-29','2011-11-28',36,'2012-07-19',NULL,1),(13,26,1,'2012-06-24','2013-06-23',40,'2012-07-19',NULL,2),(14,20,3,'2010-02-17','2012-02-16',41,'2012-07-19',NULL,1),(15,27,1,'2012-06-23','2014-06-22',42,'2012-07-19',NULL,1),(16,23,1,'2012-06-27','2014-06-26',43,'2012-07-19',NULL,1),(17,2,1,'2012-07-18','2013-07-17',50,'2012-07-19',NULL,2),(18,7,1,'2012-07-13','2014-07-12',53,'2012-07-19',NULL,1),(19,17,1,'2012-07-03','2014-07-02',54,'2012-07-19',NULL,1),(20,19,1,'2012-07-01','2014-06-30',55,'2012-07-19',NULL,1),(21,16,1,'2012-07-04','2013-07-03',59,'2012-07-19',NULL,2),(22,25,3,'2010-01-08','2012-01-07',61,'2012-07-19',NULL,1),(23,13,1,'2012-07-07','2014-07-06',62,'2012-07-19',NULL,1),(24,4,1,'2012-07-16','2013-07-15',66,'2012-07-19',NULL,2),(25,29,1,'2012-06-21','2014-06-20',67,'2012-07-19',NULL,1),(26,11,1,'2012-07-09',NULL,71,'2012-07-19',NULL,3),(27,3,1,'2012-07-17','2014-07-16',85,'2012-07-19',NULL,1),(28,1,1,'2012-07-19','2014-07-18',93,'2012-07-19',NULL,1),(29,5,4,'2011-07-15','2012-07-14',99,'2012-07-19',NULL,2),(30,22,1,'2012-06-28',NULL,100,'2012-07-19',NULL,3); +INSERT INTO `civicrm_membership_log` (`id`, `membership_id`, `status_id`, `start_date`, `end_date`, `modified_id`, `modified_date`, `renewal_reminder_date`, `membership_type_id`) VALUES (1,11,1,'2012-08-10',NULL,2,'2012-08-20',NULL,3),(2,9,1,'2012-08-12','2014-08-11',3,'2012-08-20',NULL,1),(3,6,1,'2012-08-15','2013-08-14',5,'2012-08-20',NULL,2),(4,15,4,'2011-08-06','2012-08-05',8,'2012-08-20',NULL,2),(5,19,1,'2012-08-02','2014-08-01',9,'2012-08-20',NULL,1),(6,14,1,'2012-08-07','2013-08-06',15,'2012-08-20',NULL,2),(7,22,1,'2012-07-30',NULL,20,'2012-08-20',NULL,3),(8,16,1,'2012-08-05','2013-08-04',25,'2012-08-20',NULL,2),(9,7,1,'2012-08-14','2014-08-13',28,'2012-08-20',NULL,1),(10,30,4,'2011-07-22','2012-07-21',31,'2012-08-20',NULL,2),(11,21,1,'2012-07-31','2014-07-30',34,'2012-08-20',NULL,1),(12,4,1,'2012-08-17','2013-08-16',35,'2012-08-20',NULL,2),(13,17,1,'2012-08-04','2014-08-03',38,'2012-08-20',NULL,1),(14,10,3,'2010-06-09','2012-06-08',48,'2012-08-20',NULL,1),(15,2,1,'2012-08-19','2013-08-18',51,'2012-08-20',NULL,2),(16,18,1,'2012-08-03','2013-08-02',56,'2012-08-20',NULL,2),(17,20,4,'2011-08-01','2012-07-31',59,'2012-08-20',NULL,2),(18,26,1,'2012-07-26','2013-07-25',60,'2012-08-20',NULL,2),(19,25,4,'2011-07-27','2012-07-26',61,'2012-08-20',NULL,2),(20,5,4,'2011-08-16','2012-08-15',62,'2012-08-20',NULL,2),(21,13,1,'2012-08-08','2014-08-07',65,'2012-08-20',NULL,1),(22,27,1,'2012-07-25','2014-07-24',67,'2012-08-20',NULL,1),(23,1,1,'2012-08-20','2014-08-19',70,'2012-08-20',NULL,1),(24,23,1,'2012-07-29','2014-07-28',73,'2012-08-20',NULL,1),(25,8,1,'2012-08-13','2013-08-12',74,'2012-08-20',NULL,2),(26,3,1,'2012-08-18','2014-08-17',81,'2012-08-20',NULL,1),(27,12,1,'2012-08-09','2013-08-08',85,'2012-08-20',NULL,2),(28,24,1,'2012-07-28','2013-07-27',94,'2012-08-20',NULL,2),(29,29,1,'2012-07-23','2014-07-22',97,'2012-08-20',NULL,1),(30,28,1,'2012-07-24','2013-07-23',100,'2012-08-20',NULL,2); /*!40000 ALTER TABLE `civicrm_membership_log` ENABLE KEYS */; UNLOCK TABLES; @@ -915,7 +924,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_msg_template` WRITE; /*!40000 ALTER TABLE `civicrm_msg_template` DISABLE KEYS */; -INSERT INTO `civicrm_msg_template` (`id`, `msg_title`, `msg_subject`, `msg_text`, `msg_html`, `is_active`, `workflow_id`, `is_default`, `is_reserved`, `pdf_format_id`) VALUES (1,'Cases - Send Copy of an Activity','{if $idHash}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if $isCaseActivity}\n{ts}Your Case Role(s){/ts} : {$contact.role}\n{if $manageCaseURL}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if $editActURL}\n{ts}Edit this Activity{/ts} : {$editActURL}\n{/if}\n{if $viewActURL}\n{ts}View this Activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value}\n{/if}\n{/foreach}\n\n{foreach from=$activity.customGroups key=customGroupName item=customGroup}\n==========================================================\n{$customGroupName}\n==========================================================\n{foreach from=$customGroup item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n
    \n \n \n \n \n {if $isCaseActivity}\n \n \n \n \n {if $manageCaseURL}\n \n \n \n {/if}\n {/if}\n {if $editActURL} \n \n \n \n {/if}\n {if $viewActURL}\n \n \n \n {/if} \n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n
    \n {ts}Activity Summary{/ts} - {$activityTypeName}\n
    \n {ts}Your Case Role(s){/ts}\n \n {$contact.role}\n
    \n {ts}Manage Case{/ts}\n
    \n {ts}Edit this activity{/ts}\n
    \n {ts}View this activity{/ts}\n
    \n {$field.label}{if $field.category}({$field.category}){/if}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
    \n {$customGroupName}\n
    \n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
    \n
    \n
    \n\n\n\n',1,656,1,0,NULL),(2,'Cases - Send Copy of an Activity','{if $idHash}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if $isCaseActivity}\n{ts}Your Case Role(s){/ts} : {$contact.role}\n{if $manageCaseURL}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if $editActURL}\n{ts}Edit this Activity{/ts} : {$editActURL}\n{/if}\n{if $viewActURL}\n{ts}View this Activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value}\n{/if}\n{/foreach}\n\n{foreach from=$activity.customGroups key=customGroupName item=customGroup}\n==========================================================\n{$customGroupName}\n==========================================================\n{foreach from=$customGroup item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n
    \n \n \n \n \n {if $isCaseActivity}\n \n \n \n \n {if $manageCaseURL}\n \n \n \n {/if}\n {/if}\n {if $editActURL} \n \n \n \n {/if}\n {if $viewActURL}\n \n \n \n {/if} \n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n
    \n {ts}Activity Summary{/ts} - {$activityTypeName}\n
    \n {ts}Your Case Role(s){/ts}\n \n {$contact.role}\n
    \n {ts}Manage Case{/ts}\n
    \n {ts}Edit this activity{/ts}\n
    \n {ts}View this activity{/ts}\n
    \n {$field.label}{if $field.category}({$field.category}){/if}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
    \n {$customGroupName}\n
    \n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
    \n
    \n
    \n\n\n\n',1,656,0,1,NULL),(3,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts}\n','{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}\n{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}\n\n{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact Id{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"CiviCRM >> Administer CiviCRM >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
    \n

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

    \n

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

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

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

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

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

    \n

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

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

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

    \n
    \n \n \n \n \n \n \n \n
    \n {ts}Copy of Contribution Receipt{/ts}\n
    \n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
    \n
    \n
    \n\n\n\n',1,657,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}Contribution Type{/ts}: {$formValues.contributionType_name}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\n{ts}Total Amount{/ts}: {$formValues.total_amount|crmMoney:$currency}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $receipt_date}\n{ts}Receipt Date{/ts}: {$receipt_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy and !$formValues.hidden_CreditCard}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{if $formValues.trxn_id}\n{ts}Transaction ID{/ts}: {$formValues.trxn_id}\n{/if}\n\n{if $ccContribution}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n{if $formValues.honor_first_name}\n\n===========================================================\n{$formValues.honor_type}\n===========================================================\n{$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}\n{if $formValues.honor_email}\n{ts}Honoree Email{/ts}: {$formValues.honor_email}\n{/if}\n{/if}\n\n{if $formValues.product_name}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if $fulfilled_date}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
    \n\n {if $formValues.receipt_text}\n

    {$formValues.receipt_text|htmlize}

    \n {else}\n

    {ts}Thanks for your support.{/ts}

    \n {/if}\n\n

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

    \n\n
    \n \n \n \n \n \n \n \n \n\n {if $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n\n \n \n \n \n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $receipt_date}\n \n \n \n \n {/if}\n\n {if $formValues.paidBy and !$formValues.hidden_CreditCard}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n\n {if $formValues.trxn_id}\n \n \n \n \n {/if}\n\n {if $ccContribution}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $formValues.honor_first_name}\n \n \n \n \n \n \n {/if}\n\n {if $formValues.product_name}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if $fulfilled_date}\n \n \n \n \n {/if}\n {/if}\n\n
    \n {ts}Contribution Information{/ts}\n
    \n {ts}Contribution Type{/ts}\n \n {$formValues.contributionType_name}\n
    \n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
    {ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
    \n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
    {$line.description|truncate:30:\"...\"}
    {/if}\n
    \n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.line_total|crmMoney:$currency}\n
    \n
    \n {ts}Total Amount{/ts}\n \n {$formValues.total_amount|crmMoney:$currency}\n
    \n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
    \n {ts}Receipt Date{/ts}\n \n {$receipt_date|truncate:10:\'\'|crmDate}\n
    \n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
    \n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
    \n {ts}Transaction ID{/ts}\n \n {$formValues.trxn_id}\n
    \n {ts}Billing Name and Address{/ts}\n
    \n {$billingName}
    \n {$address|nl2br}\n
    \n {ts}Credit Card Information{/ts}\n
    \n {$credit_card_type}
    \n {$credit_card_number}
    \n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
    \n {$customName}\n
    \n {$n}\n \n {$v}\n
    \n {$formValues.honor_type}\n
    \n {$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}
    \n {if $formValues.honor_email}\n {ts}Honoree Email{/ts}: {$formValues.honor_email}\n {/if}\n
    \n {ts}Premium Information{/ts}\n
    \n {$formValues.product_name}\n
    \n {ts}Option{/ts}\n \n {$formValues.product_option}\n
    \n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
    \n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
    \n
    \n
    \n\n\n\n',1,658,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}Contribution Type{/ts}: {$formValues.contributionType_name}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\n{ts}Total Amount{/ts}: {$formValues.total_amount|crmMoney:$currency}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $receipt_date}\n{ts}Receipt Date{/ts}: {$receipt_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy and !$formValues.hidden_CreditCard}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{if $formValues.trxn_id}\n{ts}Transaction ID{/ts}: {$formValues.trxn_id}\n{/if}\n\n{if $ccContribution}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n{if $formValues.honor_first_name}\n\n===========================================================\n{$formValues.honor_type}\n===========================================================\n{$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}\n{if $formValues.honor_email}\n{ts}Honoree Email{/ts}: {$formValues.honor_email}\n{/if}\n{/if}\n\n{if $formValues.product_name}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if $fulfilled_date}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
    \n\n {if $formValues.receipt_text}\n

    {$formValues.receipt_text|htmlize}

    \n {else}\n

    {ts}Thanks for your support.{/ts}

    \n {/if}\n\n

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

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

    {$receipt_text|htmlize}

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

    {$pay_later_receipt}

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

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

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

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

    \n {if $contact_email}\n

    {$contact_email}

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

    {$contact_phone}

    \n {/if}\n
    \n

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

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

    {$receipt_text|htmlize}

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

    {$pay_later_receipt}

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

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

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

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

    \n {if $contact_email}\n

    {$contact_email}

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

    {$contact_phone}

    \n {/if}\n
    \n

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

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

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

    \n
     
    \n

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

    \n

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

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

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

    \n

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

    \n

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

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

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

    \n
    \n

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

    \n

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

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

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

    \n
     
    \n

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

    \n

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

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

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

    \n

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

    \n

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

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

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

    \n
    \n

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

    \n

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n

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

    \n

    {if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}

    \n\n

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

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

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

    \n

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

    \n

    {if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}

    \n\n

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

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

    {ts}Your Personal Campaign Page{/ts}

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

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

    \n

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

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

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

    \n\n {if $isTellFriendEnabled}\n

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

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

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

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

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

    \n {if $pcpNotifyEmailAddress}\n

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

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

    {ts}Your Personal Campaign Page{/ts}

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

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

    \n

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

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

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

    \n\n {if $isTellFriendEnabled}\n

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

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

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

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

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

    \n {if $pcpNotifyEmailAddress}\n

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

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

    {ts}Dear supporter{/ts},

    \n

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

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

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

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

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

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

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

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

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

    \n
    \n
    \n

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

    \n

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

    \n

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

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

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

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

    {ts}Dear supporter{/ts},

    \n

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

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

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

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

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

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

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

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

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

    \n
    \n
    \n

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

    \n

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

    \n

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

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

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

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

    {$event.confirm_email_text|htmlize}

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

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

    \n {if $isPrimary}\n

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

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

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

    \n {if $isPrimary}\n

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

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

    {$pay_later_receipt}

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

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

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

    {$event.confirm_email_text|htmlize}

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

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

    \n {if $isPrimary}\n

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

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

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

    \n {if $isPrimary}\n

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

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

    {$pay_later_receipt}

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

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

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

    Dear {contact.display_name},

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

    {$event.confirm_email_text|htmlize}

    \n\n {else}\n

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

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

    \n {if $isOnWaitlist}\n

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

    \n {if $isPrimary}\n

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

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

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

    \n {if $isPrimary}\n

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

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

    {$pay_later_receipt}

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

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

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

    Dear {contact.display_name},

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

    {$event.confirm_email_text|htmlize}

    \n\n {else}\n

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

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

    \n {if $isOnWaitlist}\n

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

    \n {if $isPrimary}\n

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

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

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

    \n {if $isPrimary}\n

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

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

    {$pay_later_receipt}

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

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

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

    Dear {contact.display_name},

    \n {if $is_pay_later}\n

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

    \n {else}\n

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

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

    {$pay_later_receipt}

    \n {/if}\n\n

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

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

     

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

     

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

     

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

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

    Dear {contact.display_name},

    \n {if $is_pay_later}\n

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

    \n {else}\n

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

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

    {$pay_later_receipt}

    \n {/if}\n\n

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

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

     

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

     

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

     

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

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

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

    \n

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

    \n
    \n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
    \n {ts}Event Information and Location{/ts}\n
    \n {$event.event_title}
    \n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
    \n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
    \n {if $event.location.address.1.name}\n {$event.location.address.1.name}
    \n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
    \n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
    \n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
    \n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
    \n {ts}Event Contacts:{/ts}\n
    \n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
    \n {ts}Email{/ts}\n \n {$eventEmail.email}\n
    \n {ts}Download iCalendar File{/ts}\n
    \n {ts}Registered Email{/ts}\n
    \n {$contact.email}\n
    \n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
    \n
    \n

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

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

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

    \n

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

    \n
    \n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
    \n {ts}Event Information and Location{/ts}\n
    \n {$event.event_title}
    \n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
    \n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
    \n {if $event.location.address.1.name}\n {$event.location.address.1.name}
    \n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
    \n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
    \n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
    \n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
    \n {ts}Event Contacts:{/ts}\n
    \n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
    \n {ts}Email{/ts}\n \n {$eventEmail.email}\n
    \n {ts}Download iCalendar File{/ts}\n
    \n {ts}Registered Email{/ts}\n
    \n {$contact.email}\n
    \n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
    \n
    \n

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

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

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

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

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

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

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

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

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

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

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

    \n

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

    \n

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

    \n
    \n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
    \n {ts}Event Information and Location{/ts}\n
    \n {$event.event_title}
    \n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
    \n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
    \n {if $event.location.address.1.name}\n {$event.location.address.1.name}
    \n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
    \n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
    \n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
    \n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
    \n {ts}Event Contacts:{/ts}\n
    \n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
    \n {ts}Email{/ts}\n \n {$eventEmail.email}\n
    \n {ts}Download iCalendar File{/ts}\n
    \n {ts}Registered Email{/ts}\n
    \n {$contact.email}\n
    \n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
    \n
    \n

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

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

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

    \n

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

    \n

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

    \n
    \n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
    \n {ts}Event Information and Location{/ts}\n
    \n {$event.event_title}
    \n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
    \n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
    \n {if $event.location.address.1.name}\n {$event.location.address.1.name}
    \n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
    \n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
    \n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
    \n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
    \n {ts}Event Contacts:{/ts}\n
    \n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
    \n {ts}Email{/ts}\n \n {$eventEmail.email}\n
    \n {ts}Download iCalendar File{/ts}\n
    \n {ts}Registered Email{/ts}\n
    \n {$contact.email}\n
    \n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
    \n
    \n

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

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

    {$senderMessage}

    \n {if $generalLink}\n

    {ts}More information{/ts}

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

    {ts}Make a contribution{/ts}

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

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

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

    {$senderMessage}

    \n {if $generalLink}\n

    {ts}More information{/ts}

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

    {ts}Make a contribution{/ts}

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

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

    \n {/if}\n
    \n
    \n\n\n\n',1,673,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}Contribution Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number} \n{/if}\n{/if}\n{/if}\n{/if}\n\n{if $isPrimary }\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if $customValues}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n {if $isPrimary}\n \n \n \n {/if}\n\n {if $customValues}\n \n \n \n {/if}\n\n
    \n {if $formValues.receipt_text_signup}\n

    {$formValues.receipt_text_signup|htmlize}

    \n {elseif $formValues.receipt_text_renewal}\n

    {$formValues.receipt_text_renewal|htmlize}

    \n {else}\n

    {ts}Thanks for your support.{/ts}

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

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

    \n {/if}\n
    \n \n {if !$lineItem}\n \n \n \n \n \n \n \n {/if}\n {if ! $cancelled}\n {if !$lineItem}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount}\n \n \n \n {if $formValues.contributionType_name}\n \n \n \n \n {/if}\n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n \n \n \n \n {if $receive_date}\n \n \n \n \n {/if}\n {if $formValues.paidBy}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
    \n {ts}Membership Information{/ts}\n
    \n {ts}Membership Type{/ts}\n \n {$membership_name}\n
    \n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
    \n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
    \n {ts}Membership Fee{/ts}\n
    \n {ts}Contribution Type{/ts}\n \n {$formValues.contributionType_name}\n
    \n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
    {ts}Item{/ts}{ts}Fee{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
    \n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
    {$line.description|truncate:30:\"...\"}
    {/if} \n
    \n {$line.line_total|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
    \n
    \n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
    \n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
    \n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
    \n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
    \n
    \n \n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
    \n {ts}Billing Name and Address{/ts}\n
    \n {$billingName}
    \n {$address}\n
    \n {ts}Credit Card Information{/ts}\n
    \n {$credit_card_type}
    \n {$credit_card_number}\n
    \n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
    \n
    \n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
    \n {ts}Membership Options{/ts}\n
    \n {$customName}\n \n {$value}\n
    \n
    \n
    \n\n\n\n',1,674,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}Contribution Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number} \n{/if}\n{/if}\n{/if}\n{/if}\n\n{if $isPrimary }\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if $customValues}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n {if $isPrimary}\n \n \n \n {/if}\n\n {if $customValues}\n \n \n \n {/if}\n\n
    \n {if $formValues.receipt_text_signup}\n

    {$formValues.receipt_text_signup|htmlize}

    \n {elseif $formValues.receipt_text_renewal}\n

    {$formValues.receipt_text_renewal|htmlize}

    \n {else}\n

    {ts}Thanks for your support.{/ts}

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

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

    \n {/if}\n
    \n \n {if !$lineItem}\n \n \n \n \n \n \n \n {/if}\n {if ! $cancelled}\n {if !$lineItem}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount}\n \n \n \n {if $formValues.contributionType_name}\n \n \n \n \n {/if}\n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n \n \n \n \n {if $receive_date}\n \n \n \n \n {/if}\n {if $formValues.paidBy}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
    \n {ts}Membership Information{/ts}\n
    \n {ts}Membership Type{/ts}\n \n {$membership_name}\n
    \n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
    \n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
    \n {ts}Membership Fee{/ts}\n
    \n {ts}Contribution Type{/ts}\n \n {$formValues.contributionType_name}\n
    \n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
    {ts}Item{/ts}{ts}Fee{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
    \n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
    {$line.description|truncate:30:\"...\"}
    {/if} \n
    \n {$line.line_total|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
    \n
    \n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
    \n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
    \n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
    \n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
    \n
    \n \n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
    \n {ts}Billing Name and Address{/ts}\n
    \n {$billingName}
    \n {$address}\n
    \n {ts}Credit Card Information{/ts}\n
    \n {$credit_card_type}
    \n {$credit_card_number}\n
    \n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
    \n
    \n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
    \n {ts}Membership Options{/ts}\n
    \n {$customName}\n \n {$value}\n
    \n
    \n
    \n\n\n\n',1,674,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 }\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}\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}\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{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if $membership_trx_id}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if $is_recur}\n{if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nick Name{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0 OR $membership_amount GT 0 }\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND ( $amount GT 0 OR $membership_amount GT 0 ) }\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n
    \n\n {if $receipt_text}\n

    {$receipt_text|htmlize}

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

    {$pay_later_receipt}

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

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

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

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

    \n {if $contact_email}\n

    {$contact_email}

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

    {$contact_phone}

    \n {/if}\n
    \n

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

    \n
    \n {$customPre_grouptitle}\n
    \n {$customName}\n \n {$customValue}\n
    \n {$customPost_grouptitle}\n
    \n {$customName}\n \n {$customValue}\n
    \n
    \n\n\n\n',1,675,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 }\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}\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}\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{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if $membership_trx_id}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if $is_recur}\n{if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nick Name{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0 OR $membership_amount GT 0 }\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND ( $amount GT 0 OR $membership_amount GT 0 ) }\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n
    \n\n {if $receipt_text}\n

    {$receipt_text|htmlize}

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

    {$pay_later_receipt}

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

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

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

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

    \n {if $contact_email}\n

    {$contact_email}

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

    {$contact_phone}

    \n {/if}\n
    \n

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

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

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

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

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n\n {if $frequency_day}\n

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

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

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

    \n
    \n {$honor_type}\n
    \n

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

    \n {if $honor_email}\n

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

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

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

    \n

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

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

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

    \n\n {if $frequency_day}\n

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

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

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

    \n
    \n {$honor_type}\n
    \n

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

    \n {if $honor_email}\n

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

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

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

    \n

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

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

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

    \n {else}\n

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n {else}\n

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

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

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

    \n

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

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

    Thank you for signing {$petition.title}.

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

    Thank you for signing {$petition.title}.

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

    Thank you for signing {$petition.title}.

    \n\n

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

    \nEmail confirmation page: {$petition.confirmUrl}

    \n\n

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

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

    Thank you for signing {$petition.title}.

    \n\n

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

    \nEmail confirmation page: {$petition.confirmUrl}

    \n\n

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

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

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

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

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

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

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

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

    \n Your Team\n

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

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

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

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

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

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

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

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

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

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

    \n

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

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

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

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

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

    \n

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

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

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

    \n
    \n \n \n \n \n \n \n \n
    \n {ts}Copy of Contribution Receipt{/ts}\n
    \n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
    \n
    \n
    \n\n\n\n',1,654,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}Contribution Type{/ts}: {$formValues.contributionType_name}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\n{ts}Total Amount{/ts}: {$formValues.total_amount|crmMoney:$currency}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $receipt_date}\n{ts}Receipt Date{/ts}: {$receipt_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy and !$formValues.hidden_CreditCard}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{if $formValues.trxn_id}\n{ts}Transaction ID{/ts}: {$formValues.trxn_id}\n{/if}\n\n{if $ccContribution}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n{if $formValues.honor_first_name}\n\n===========================================================\n{$formValues.honor_type}\n===========================================================\n{$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}\n{if $formValues.honor_email}\n{ts}Honoree Email{/ts}: {$formValues.honor_email}\n{/if}\n{/if}\n\n{if $formValues.product_name}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if $fulfilled_date}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
    \n\n {if $formValues.receipt_text}\n

    {$formValues.receipt_text|htmlize}

    \n {else}\n

    {ts}Thanks for your support.{/ts}

    \n {/if}\n\n

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

    \n\n
    \n \n \n \n \n \n \n \n \n\n {if $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n\n \n \n \n \n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $receipt_date}\n \n \n \n \n {/if}\n\n {if $formValues.paidBy and !$formValues.hidden_CreditCard}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n\n {if $formValues.trxn_id}\n \n \n \n \n {/if}\n\n {if $ccContribution}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $formValues.honor_first_name}\n \n \n \n \n \n \n {/if}\n\n {if $formValues.product_name}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if $fulfilled_date}\n \n \n \n \n {/if}\n {/if}\n\n
    \n {ts}Contribution Information{/ts}\n
    \n {ts}Contribution Type{/ts}\n \n {$formValues.contributionType_name}\n
    \n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
    {ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
    \n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
    {$line.description|truncate:30:\"...\"}
    {/if}\n
    \n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.line_total|crmMoney:$currency}\n
    \n
    \n {ts}Total Amount{/ts}\n \n {$formValues.total_amount|crmMoney:$currency}\n
    \n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
    \n {ts}Receipt Date{/ts}\n \n {$receipt_date|truncate:10:\'\'|crmDate}\n
    \n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
    \n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
    \n {ts}Transaction ID{/ts}\n \n {$formValues.trxn_id}\n
    \n {ts}Billing Name and Address{/ts}\n
    \n {$billingName}
    \n {$address|nl2br}\n
    \n {ts}Credit Card Information{/ts}\n
    \n {$credit_card_type}
    \n {$credit_card_number}
    \n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
    \n {$customName}\n
    \n {$n}\n \n {$v}\n
    \n {$formValues.honor_type}\n
    \n {$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}
    \n {if $formValues.honor_email}\n {ts}Honoree Email{/ts}: {$formValues.honor_email}\n {/if}\n
    \n {ts}Premium Information{/ts}\n
    \n {$formValues.product_name}\n
    \n {ts}Option{/ts}\n \n {$formValues.product_option}\n
    \n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
    \n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
    \n
    \n
    \n\n\n\n',1,655,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}Contribution Type{/ts}: {$formValues.contributionType_name}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {$line.line_total|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\n{ts}Total Amount{/ts}: {$formValues.total_amount|crmMoney:$currency}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $receipt_date}\n{ts}Receipt Date{/ts}: {$receipt_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy and !$formValues.hidden_CreditCard}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{if $formValues.trxn_id}\n{ts}Transaction ID{/ts}: {$formValues.trxn_id}\n{/if}\n\n{if $ccContribution}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n{if $formValues.honor_first_name}\n\n===========================================================\n{$formValues.honor_type}\n===========================================================\n{$formValues.honor_prefix} {$formValues.honor_first_name} {$formValues.honor_last_name}\n{if $formValues.honor_email}\n{ts}Honoree Email{/ts}: {$formValues.honor_email}\n{/if}\n{/if}\n\n{if $formValues.product_name}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if $fulfilled_date}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
    \n\n {if $formValues.receipt_text}\n

    {$formValues.receipt_text|htmlize}

    \n {else}\n

    {ts}Thanks for your support.{/ts}

    \n {/if}\n\n

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

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

    {$receipt_text|htmlize}

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

    {$pay_later_receipt}

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

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

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

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

    \n {if $contact_email}\n

    {$contact_email}

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

    {$contact_phone}

    \n {/if}\n
    \n

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

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

    {$receipt_text|htmlize}

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

    {$pay_later_receipt}

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

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

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

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

    \n {if $contact_email}\n

    {$contact_email}

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

    {$contact_phone}

    \n {/if}\n
    \n

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

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

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

    \n
     
    \n

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

    \n

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

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

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

    \n

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

    \n

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

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

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

    \n
    \n

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

    \n

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

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

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

    \n
     
    \n

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

    \n

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

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

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

    \n

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

    \n

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

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

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

    \n
    \n

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

    \n

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n

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

    \n

    {if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}

    \n\n

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

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

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

    \n

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

    \n

    {if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}

    \n\n

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

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

    {ts}Your Personal Campaign Page{/ts}

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

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

    \n

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

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

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

    \n\n {if $isTellFriendEnabled}\n

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

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

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

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

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

    \n {if $pcpNotifyEmailAddress}\n

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

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

    {ts}Your Personal Campaign Page{/ts}

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

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

    \n

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

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

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

    \n\n {if $isTellFriendEnabled}\n

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

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

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

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

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

    \n {if $pcpNotifyEmailAddress}\n

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

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

    {ts}Dear supporter{/ts},

    \n

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

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

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

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

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

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

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

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

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

    \n
    \n
    \n

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

    \n

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

    \n

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

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

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

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

    {ts}Dear supporter{/ts},

    \n

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

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

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

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

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

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

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

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

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

    \n
    \n
    \n

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

    \n

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

    \n

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

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

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

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

    {$event.confirm_email_text|htmlize}

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

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

    \n {if $isPrimary}\n

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

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

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

    \n {if $isPrimary}\n

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

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

    {$pay_later_receipt}

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

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

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

    {$event.confirm_email_text|htmlize}

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

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

    \n {if $isPrimary}\n

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

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

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

    \n {if $isPrimary}\n

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

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

    {$pay_later_receipt}

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

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

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

    Dear {contact.display_name},

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

    {$event.confirm_email_text|htmlize}

    \n\n {else}\n

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

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

    \n {if $isOnWaitlist}\n

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

    \n {if $isPrimary}\n

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

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

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

    \n {if $isPrimary}\n

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

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

    {$pay_later_receipt}

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

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

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

    Dear {contact.display_name},

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

    {$event.confirm_email_text|htmlize}

    \n\n {else}\n

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

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

    \n {if $isOnWaitlist}\n

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

    \n {if $isPrimary}\n

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

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

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

    \n {if $isPrimary}\n

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

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

    {$pay_later_receipt}

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

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

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

    Dear {contact.display_name},

    \n {if $is_pay_later}\n

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

    \n {else}\n

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

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

    {$pay_later_receipt}

    \n {/if}\n\n

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

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

     

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

     

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

     

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

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

    Dear {contact.display_name},

    \n {if $is_pay_later}\n

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

    \n {else}\n

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

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

    {$pay_later_receipt}

    \n {/if}\n\n

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

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

     

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

     

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

     

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

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

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

    \n

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

    \n
    \n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
    \n {ts}Event Information and Location{/ts}\n
    \n {$event.event_title}
    \n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
    \n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
    \n {if $event.location.address.1.name}\n {$event.location.address.1.name}
    \n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
    \n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
    \n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
    \n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
    \n {ts}Event Contacts:{/ts}\n
    \n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
    \n {ts}Email{/ts}\n \n {$eventEmail.email}\n
    \n {ts}Download iCalendar File{/ts}\n
    \n {ts}Registered Email{/ts}\n
    \n {$contact.email}\n
    \n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
    \n
    \n

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

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

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

    \n

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

    \n
    \n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
    \n {ts}Event Information and Location{/ts}\n
    \n {$event.event_title}
    \n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
    \n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
    \n {if $event.location.address.1.name}\n {$event.location.address.1.name}
    \n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
    \n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
    \n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
    \n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
    \n {ts}Event Contacts:{/ts}\n
    \n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
    \n {ts}Email{/ts}\n \n {$eventEmail.email}\n
    \n {ts}Download iCalendar File{/ts}\n
    \n {ts}Registered Email{/ts}\n
    \n {$contact.email}\n
    \n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
    \n
    \n

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

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

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

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

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

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

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

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

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

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

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

    \n

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

    \n

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

    \n
    \n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
    \n {ts}Event Information and Location{/ts}\n
    \n {$event.event_title}
    \n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
    \n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
    \n {if $event.location.address.1.name}\n {$event.location.address.1.name}
    \n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
    \n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
    \n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
    \n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
    \n {ts}Event Contacts:{/ts}\n
    \n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
    \n {ts}Email{/ts}\n \n {$eventEmail.email}\n
    \n {ts}Download iCalendar File{/ts}\n
    \n {ts}Registered Email{/ts}\n
    \n {$contact.email}\n
    \n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
    \n
    \n

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

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

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

    \n

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

    \n

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

    \n
    \n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n \n \n \n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
    \n {ts}Event Information and Location{/ts}\n
    \n {$event.event_title}
    \n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
    \n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
    \n {if $event.location.address.1.name}\n {$event.location.address.1.name}
    \n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
    \n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
    \n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
    \n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
    \n {ts}Event Contacts:{/ts}\n
    \n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
    \n {ts}Email{/ts}\n \n {$eventEmail.email}\n
    \n {ts}Download iCalendar File{/ts}\n
    \n {ts}Registered Email{/ts}\n
    \n {$contact.email}\n
    \n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
    \n
    \n

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

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

    {$senderMessage}

    \n {if $generalLink}\n

    {ts}More information{/ts}

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

    {ts}Make a contribution{/ts}

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

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

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

    {$senderMessage}

    \n {if $generalLink}\n

    {ts}More information{/ts}

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

    {ts}Make a contribution{/ts}

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

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

    \n {/if}\n
    \n
    \n\n\n\n',1,670,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}Contribution Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number} \n{/if}\n{/if}\n{/if}\n{/if}\n\n{if $isPrimary }\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if $customValues}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n {if $isPrimary}\n \n \n \n {/if}\n\n {if $customValues}\n \n \n \n {/if}\n\n
    \n {if $formValues.receipt_text_signup}\n

    {$formValues.receipt_text_signup|htmlize}

    \n {elseif $formValues.receipt_text_renewal}\n

    {$formValues.receipt_text_renewal|htmlize}

    \n {else}\n

    {ts}Thanks for your support.{/ts}

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

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

    \n {/if}\n
    \n \n {if !$lineItem}\n \n \n \n \n \n \n \n {/if}\n {if ! $cancelled}\n {if !$lineItem}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount}\n \n \n \n {if $formValues.contributionType_name}\n \n \n \n \n {/if}\n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n \n \n \n \n {if $receive_date}\n \n \n \n \n {/if}\n {if $formValues.paidBy}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
    \n {ts}Membership Information{/ts}\n
    \n {ts}Membership Type{/ts}\n \n {$membership_name}\n
    \n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
    \n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
    \n {ts}Membership Fee{/ts}\n
    \n {ts}Contribution Type{/ts}\n \n {$formValues.contributionType_name}\n
    \n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
    {ts}Item{/ts}{ts}Fee{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
    \n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
    {$line.description|truncate:30:\"...\"}
    {/if} \n
    \n {$line.line_total|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
    \n
    \n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
    \n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
    \n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
    \n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
    \n
    \n \n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
    \n {ts}Billing Name and Address{/ts}\n
    \n {$billingName}
    \n {$address}\n
    \n {ts}Credit Card Information{/ts}\n
    \n {$credit_card_type}
    \n {$credit_card_number}\n
    \n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
    \n
    \n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
    \n {ts}Membership Options{/ts}\n
    \n {$customName}\n \n {$value}\n
    \n
    \n
    \n\n\n\n',1,671,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}Contribution Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n--------------------------------------------------------------------------------------------------\n{/if}\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number} \n{/if}\n{/if}\n{/if}\n{/if}\n\n{if $isPrimary }\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if $customValues}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n {if $isPrimary}\n \n \n \n {/if}\n\n {if $customValues}\n \n \n \n {/if}\n\n
    \n {if $formValues.receipt_text_signup}\n

    {$formValues.receipt_text_signup|htmlize}

    \n {elseif $formValues.receipt_text_renewal}\n

    {$formValues.receipt_text_renewal|htmlize}

    \n {else}\n

    {ts}Thanks for your support.{/ts}

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

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

    \n {/if}\n
    \n \n {if !$lineItem}\n \n \n \n \n \n \n \n {/if}\n {if ! $cancelled}\n {if !$lineItem}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount}\n \n \n \n {if $formValues.contributionType_name}\n \n \n \n \n {/if}\n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n \n \n \n \n {if $receive_date}\n \n \n \n \n {/if}\n {if $formValues.paidBy}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
    \n {ts}Membership Information{/ts}\n
    \n {ts}Membership Type{/ts}\n \n {$membership_name}\n
    \n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
    \n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
    \n {ts}Membership Fee{/ts}\n
    \n {ts}Contribution Type{/ts}\n \n {$formValues.contributionType_name}\n
    \n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
    {ts}Item{/ts}{ts}Fee{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
    \n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
    {$line.description|truncate:30:\"...\"}
    {/if} \n
    \n {$line.line_total|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
    \n
    \n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
    \n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
    \n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
    \n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
    \n
    \n \n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
    \n {ts}Billing Name and Address{/ts}\n
    \n {$billingName}
    \n {$address}\n
    \n {ts}Credit Card Information{/ts}\n
    \n {$credit_card_type}
    \n {$credit_card_number}\n
    \n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
    \n
    \n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
    \n {ts}Membership Options{/ts}\n
    \n {$customName}\n \n {$value}\n
    \n
    \n
    \n\n\n\n',1,671,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 }\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}\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}\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{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if $membership_trx_id}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if $is_recur}\n{if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nick Name{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0 OR $membership_amount GT 0 }\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND ( $amount GT 0 OR $membership_amount GT 0 ) }\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n
    \n\n {if $receipt_text}\n

    {$receipt_text|htmlize}

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

    {$pay_later_receipt}

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

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

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

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

    \n {if $contact_email}\n

    {$contact_email}

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

    {$contact_phone}

    \n {/if}\n
    \n

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

    \n
    \n {$customPre_grouptitle}\n
    \n {$customName}\n \n {$customValue}\n
    \n {$customPost_grouptitle}\n
    \n {$customName}\n \n {$customValue}\n
    \n
    \n\n\n\n',1,672,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 }\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}\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}\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{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if $membership_trx_id}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if $is_recur}\n{if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$honor_type}\n===========================================================\n{$honor_prefix} {$honor_first_name} {$honor_last_name}\n{if $honor_email}\n{ts}Honoree Email{/ts}: {$honor_email}\n{/if}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nick Name{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0 OR $membership_amount GT 0 }\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND ( $amount GT 0 OR $membership_amount GT 0 ) }\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
    \n \n\n \n \n \n\n \n\n \n \n \n
    \n\n {if $receipt_text}\n

    {$receipt_text|htmlize}

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

    {$pay_later_receipt}

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

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

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

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

    \n {if $contact_email}\n

    {$contact_email}

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

    {$contact_phone}

    \n {/if}\n
    \n

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

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

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

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

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n\n {if $frequency_day}\n

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

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

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

    \n
    \n {$honor_type}\n
    \n

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

    \n {if $honor_email}\n

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

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

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

    \n

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

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

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

    \n\n {if $frequency_day}\n

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

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

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

    \n
    \n {$honor_type}\n
    \n

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

    \n {if $honor_email}\n

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

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

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

    \n

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

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

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

    \n {else}\n

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

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

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

    \n

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

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

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

    \n

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

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

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

    \n {else}\n

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

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

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

    \n

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

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

    Thank you for signing {$petition.title}.

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

    Thank you for signing {$petition.title}.

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

    Thank you for signing {$petition.title}.

    \n\n

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

    \nEmail confirmation page: {$petition.confirmUrl}

    \n\n

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

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

    Thank you for signing {$petition.title}.

    \n\n

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

    \nEmail confirmation page: {$petition.confirmUrl}

    \n\n

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

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

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

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

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

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

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

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

    \n Your Team\n

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

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

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

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

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

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

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

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

    \n Our mailing address is:
    \n {domain.address}\n
    ',1,NULL,1,0,NULL); /*!40000 ALTER TABLE `civicrm_msg_template` ENABLE KEYS */; UNLOCK TABLES; @@ -935,7 +944,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',27,'Send newsletter for April 2005',1,'2012-01-15',NULL,'0'),(2,'civicrm_contact',49,'Arrange collection of funds from members',1,'2011-07-29',NULL,'0'),(3,'civicrm_contact',35,'Send newsletter for April 2005',1,'2011-11-05',NULL,'0'),(4,'civicrm_contact',72,'Chart out route map for next 10k run',1,'2012-03-05',NULL,'0'),(5,'civicrm_contact',54,'Reminder screening of \"Black\" on next Friday',1,'2012-03-16',NULL,'0'),(6,'civicrm_contact',21,'Invite members for the Steve Prefontaine 10k dream run',1,'2012-02-17',NULL,'0'),(7,'civicrm_contact',42,'Connect for presentation',1,'2011-12-31',NULL,'0'),(8,'civicrm_contact',99,'Organize the Terry Fox run',1,'2011-08-20',NULL,'0'),(9,'civicrm_contact',53,'Reminder screening of \"Black\" on next Friday',1,'2011-10-19',NULL,'0'),(10,'civicrm_contact',101,'Send newsletter for April 2005',1,'2011-08-28',NULL,'0'),(11,'civicrm_contact',12,'Arrange collection of funds from members',1,'2012-02-03',NULL,'0'),(12,'civicrm_contact',95,'Invite members for the Steve Prefontaine 10k dream run',1,'2011-11-13',NULL,'0'),(13,'civicrm_contact',63,'Arrange for cricket match with Sunil Gavaskar',1,'2011-11-08',NULL,'0'),(14,'civicrm_contact',62,'Organize the Terry Fox run',1,'2011-10-07',NULL,'0'),(15,'civicrm_contact',91,'Arrange collection of funds from members',1,'2012-01-06',NULL,'0'),(16,'civicrm_contact',85,'Invite members for the Steve Prefontaine 10k dream run',1,'2011-10-24',NULL,'0'),(17,'civicrm_contact',28,'Chart out route map for next 10k run',1,'2012-05-07',NULL,'0'),(18,'civicrm_contact',41,'Arrange for cricket match with Sunil Gavaskar',1,'2012-01-01',NULL,'0'),(19,'civicrm_contact',40,'Send newsletter for April 2005',1,'2011-07-26',NULL,'0'),(20,'civicrm_contact',52,'Arrange collection of funds from members',1,'2011-12-22',NULL,'0'),(21,'civicrm_contact',20,'Invite members for the Steve Prefontaine 10k dream run',1,'2011-07-26',NULL,'0'),(22,'civicrm_contact',45,'Chart out route map for next 10k run',1,'2012-04-25',NULL,'0'),(23,'civicrm_contact',7,'Get the registration done for NGO status',1,'2012-02-23',NULL,'0'),(24,'civicrm_contact',36,'Get the registration done for NGO status',1,'2012-03-31',NULL,'0'),(25,'civicrm_contact',3,'Arrange collection of funds from members',1,'2011-08-06',NULL,'0'),(26,'civicrm_contact',67,'Send reminder for annual dinner',1,'2012-02-07',NULL,'0'),(27,'civicrm_contact',97,'Connect for presentation',1,'2012-01-19',NULL,'0'),(28,'civicrm_contact',26,'Invite members for the Steve Prefontaine 10k dream run',1,'2011-10-12',NULL,'0'),(29,'civicrm_contact',23,'Arrange for cricket match with Sunil Gavaskar',1,'2012-03-16',NULL,'0'),(30,'civicrm_contact',9,'Connect for presentation',1,'2011-10-30',NULL,'0'),(31,'civicrm_contact',17,'Send reminder for annual dinner',1,'2012-03-19',NULL,'0'),(32,'civicrm_contact',51,'Get the registration done for NGO status',1,'2011-11-22',NULL,'0'),(33,'civicrm_contact',37,'Chart out route map for next 10k run',1,'2012-04-25',NULL,'0'),(34,'civicrm_contact',55,'Invite members for the Steve Prefontaine 10k dream run',1,'2012-03-23',NULL,'0'),(35,'civicrm_contact',93,'Connect for presentation',1,'2012-04-23',NULL,'0'),(36,'civicrm_contact',46,'Arrange for cricket match with Sunil Gavaskar',1,'2012-06-29',NULL,'0'),(37,'civicrm_contact',19,'Arrange for cricket match with Sunil Gavaskar',1,'2012-01-15',NULL,'0'),(38,'civicrm_contact',43,'Arrange for cricket match with Sunil Gavaskar',1,'2012-01-14',NULL,'0'),(39,'civicrm_contact',50,'Connect for presentation',1,'2011-08-19',NULL,'0'),(40,'civicrm_contact',22,'Invite members for the Steve Prefontaine 10k dream run',1,'2012-01-19',NULL,'0'),(41,'civicrm_contact',31,'Get the registration done for NGO status',1,'2012-07-10',NULL,'0'),(42,'civicrm_contact',100,'Arrange for cricket match with Sunil Gavaskar',1,'2012-04-25',NULL,'0'),(43,'civicrm_contact',61,'Chart out route map for next 10k run',1,'2012-05-08',NULL,'0'),(44,'civicrm_contact',56,'Connect for presentation',1,'2011-09-27',NULL,'0'),(45,'civicrm_contact',83,'Organize the Terry Fox run',1,'2012-03-13',NULL,'0'),(46,'civicrm_contact',98,'Connect for presentation',1,'2012-07-14',NULL,'0'),(47,'civicrm_contact',92,'Invite members for the Steve Prefontaine 10k dream run',1,'2011-10-16',NULL,'0'),(48,'civicrm_contact',80,'Arrange collection of funds from members',1,'2012-01-28',NULL,'0'),(49,'civicrm_contact',57,'Connect for presentation',1,'2011-10-28',NULL,'0'),(50,'civicrm_contact',86,'Reminder screening of \"Black\" on next Friday',1,'2012-05-28',NULL,'0'),(51,'civicrm_contact',81,'Reminder screening of \"Black\" on next Friday',1,'2012-01-25',NULL,'0'),(52,'civicrm_contact',88,'Arrange for cricket match with Sunil Gavaskar',1,'2012-05-29',NULL,'0'),(53,'civicrm_contact',71,'Connect for presentation',1,'2012-07-10',NULL,'0'),(54,'civicrm_contact',10,'Arrange for cricket match with Sunil Gavaskar',1,'2012-03-17',NULL,'0'),(55,'civicrm_contact',94,'Invite members for the Steve Prefontaine 10k dream run',1,'2012-03-16',NULL,'0'),(56,'civicrm_contact',65,'Invite members for the Steve Prefontaine 10k dream run',1,'2011-11-04',NULL,'0'),(57,'civicrm_contact',82,'Send reminder for annual dinner',1,'2012-06-06',NULL,'0'),(58,'civicrm_contact',4,'Invite members for the Steve Prefontaine 10k dream run',1,'2011-12-26',NULL,'0'),(59,'civicrm_contact',47,'Arrange for cricket match with Sunil Gavaskar',1,'2012-01-02',NULL,'0'),(60,'civicrm_contact',32,'Chart out route map for next 10k run',1,'2011-09-17',NULL,'0'),(61,'civicrm_contact',16,'Reminder screening of \"Black\" on next Friday',1,'2012-05-29',NULL,'0'),(62,'civicrm_contact',68,'Organize the Terry Fox run',1,'2012-02-28',NULL,'0'),(63,'civicrm_contact',25,'Arrange collection of funds from members',1,'2012-03-08',NULL,'0'),(64,'civicrm_contact',29,'Send newsletter for April 2005',1,'2012-07-12',NULL,'0'),(65,'civicrm_contact',96,'Get the registration done for NGO status',1,'2012-05-13',NULL,'0'),(66,'civicrm_contact',39,'Send reminder for annual dinner',1,'2011-09-05',NULL,'0'),(67,'civicrm_contact',66,'Invite members for the Steve Prefontaine 10k dream run',1,'2011-12-30',NULL,'0'),(68,'civicrm_contact',70,'Invite members for the Steve Prefontaine 10k dream run',1,'2012-06-12',NULL,'0'),(69,'civicrm_contact',59,'Arrange collection of funds from members',1,'2011-09-20',NULL,'0'),(70,'civicrm_contact',33,'Arrange collection of funds from members',1,'2011-10-10',NULL,'0'),(71,'civicrm_contact',89,'Reminder screening of \"Black\" on next Friday',1,'2012-04-08',NULL,'0'),(72,'civicrm_contact',6,'Invite members for the Steve Prefontaine 10k dream run',1,'2012-01-22',NULL,'0'),(73,'civicrm_contact',8,'Chart out route map for next 10k run',1,'2012-04-18',NULL,'0'),(74,'civicrm_contact',34,'Organize the Terry Fox run',1,'2012-05-04',NULL,'0'),(75,'civicrm_contact',77,'Connect for presentation',1,'2012-03-04',NULL,'0'),(76,'civicrm_contact',84,'Chart out route map for next 10k run',1,'2011-12-05',NULL,'0'),(77,'civicrm_contact',74,'Invite members for the Steve Prefontaine 10k dream run',1,'2012-04-08',NULL,'0'),(78,'civicrm_contact',58,'Send reminder for annual dinner',1,'2012-06-07',NULL,'0'),(79,'civicrm_contact',73,'Invite members for the Steve Prefontaine 10k dream run',1,'2011-08-01',NULL,'0'),(80,'civicrm_contact',64,'Organize the Terry Fox run',1,'2012-03-20',NULL,'0'),(81,'civicrm_contact',87,'Organize the Terry Fox run',1,'2012-03-12',NULL,'0'),(82,'civicrm_contact',11,'Connect for presentation',1,'2011-09-20',NULL,'0'),(83,'civicrm_contact',38,'Chart out route map for next 10k run',1,'2012-03-25',NULL,'0'),(84,'civicrm_contact',18,'Send newsletter for April 2005',1,'2011-11-28',NULL,'0'),(85,'civicrm_contact',15,'Chart out route map for next 10k run',1,'2012-03-28',NULL,'0'),(86,'civicrm_contact',24,'Chart out route map for next 10k run',1,'2011-08-02',NULL,'0'),(87,'civicrm_contact',44,'Connect for presentation',1,'2012-05-10',NULL,'0'),(88,'civicrm_contact',76,'Send newsletter for April 2005',1,'2012-04-03',NULL,'0'),(89,'civicrm_contact',69,'Get the registration done for NGO status',1,'2012-01-04',NULL,'0'),(90,'civicrm_contact',13,'Invite members for the Steve Prefontaine 10k dream run',1,'2011-12-13',NULL,'0'),(91,'civicrm_contact',78,'Arrange collection of funds from members',1,'2011-09-12',NULL,'0'),(92,'civicrm_contact',2,'Arrange for cricket match with Sunil Gavaskar',1,'2012-03-28',NULL,'0'),(93,'civicrm_contact',79,'Organize the Terry Fox run',1,'2012-03-12',NULL,'0'),(94,'civicrm_contact',48,'Invite members for the Steve Prefontaine 10k dream run',1,'2011-11-11',NULL,'0'),(95,'civicrm_contact',5,'Send newsletter for April 2005',1,'2012-07-10',NULL,'0'),(96,'civicrm_contact',75,'Reminder screening of \"Black\" on next Friday',1,'2012-06-11',NULL,'0'),(97,'civicrm_contact',14,'Chart out route map for next 10k run',1,'2012-06-13',NULL,'0'); +INSERT INTO `civicrm_note` (`id`, `entity_table`, `entity_id`, `note`, `contact_id`, `modified_date`, `subject`, `privacy`) VALUES (1,'civicrm_contact',32,'Arrange for cricket match with Sunil Gavaskar',1,'2012-01-16',NULL,'0'),(2,'civicrm_contact',74,'Reminder screening of \"Black\" on next Friday',1,'2011-12-04',NULL,'0'),(3,'civicrm_contact',42,'Invite members for the Steve Prefontaine 10k dream run',1,'2012-07-03',NULL,'0'),(4,'civicrm_contact',57,'Invite members for the Steve Prefontaine 10k dream run',1,'2012-04-05',NULL,'0'),(5,'civicrm_contact',64,'Arrange for cricket match with Sunil Gavaskar',1,'2012-07-26',NULL,'0'),(6,'civicrm_contact',53,'Arrange collection of funds from members',1,'2012-04-05',NULL,'0'),(7,'civicrm_contact',35,'Invite members for the Steve Prefontaine 10k dream run',1,'2012-08-05',NULL,'0'),(8,'civicrm_contact',13,'Chart out route map for next 10k run',1,'2012-08-10',NULL,'0'),(9,'civicrm_contact',6,'Arrange collection of funds from members',1,'2012-02-05',NULL,'0'),(10,'civicrm_contact',59,'Get the registration done for NGO status',1,'2011-12-29',NULL,'0'),(11,'civicrm_contact',20,'Organize the Terry Fox run',1,'2012-02-15',NULL,'0'),(12,'civicrm_contact',25,'Send reminder for annual dinner',1,'2012-03-26',NULL,'0'),(13,'civicrm_contact',48,'Send reminder for annual dinner',1,'2011-11-02',NULL,'0'),(14,'civicrm_contact',37,'Arrange for cricket match with Sunil Gavaskar',1,'2012-01-02',NULL,'0'),(15,'civicrm_contact',9,'Send newsletter for April 2005',1,'2012-07-21',NULL,'0'),(16,'civicrm_contact',76,'Get the registration done for NGO status',1,'2012-02-14',NULL,'0'),(17,'civicrm_contact',29,'Get the registration done for NGO status',1,'2011-12-23',NULL,'0'),(18,'civicrm_contact',66,'Get the registration done for NGO status',1,'2011-09-26',NULL,'0'),(19,'civicrm_contact',56,'Connect for presentation',1,'2012-02-10',NULL,'0'),(20,'civicrm_contact',86,'Chart out route map for next 10k run',1,'2012-07-04',NULL,'0'),(21,'civicrm_contact',80,'Arrange collection of funds from members',1,'2012-04-10',NULL,'0'),(22,'civicrm_contact',98,'Send newsletter for April 2005',1,'2011-09-16',NULL,'0'),(23,'civicrm_contact',8,'Arrange collection of funds from members',1,'2012-04-06',NULL,'0'),(24,'civicrm_contact',34,'Arrange for cricket match with Sunil Gavaskar',1,'2011-09-03',NULL,'0'),(25,'civicrm_contact',97,'Reminder screening of \"Black\" on next Friday',1,'2012-05-07',NULL,'0'),(26,'civicrm_contact',28,'Chart out route map for next 10k run',1,'2012-08-01',NULL,'0'),(27,'civicrm_contact',99,'Send newsletter for April 2005',1,'2012-07-30',NULL,'0'),(28,'civicrm_contact',27,'Arrange for cricket match with Sunil Gavaskar',1,'2012-04-03',NULL,'0'),(29,'civicrm_contact',75,'Arrange collection of funds from members',1,'2011-09-26',NULL,'0'),(30,'civicrm_contact',89,'Send reminder for annual dinner',1,'2011-10-29',NULL,'0'),(31,'civicrm_contact',65,'Invite members for the Steve Prefontaine 10k dream run',1,'2012-04-10',NULL,'0'),(32,'civicrm_contact',87,'Send reminder for annual dinner',1,'2012-05-20',NULL,'0'),(33,'civicrm_contact',46,'Organize the Terry Fox run',1,'2011-12-26',NULL,'0'),(34,'civicrm_contact',38,'Arrange for cricket match with Sunil Gavaskar',1,'2012-05-27',NULL,'0'),(35,'civicrm_contact',40,'Organize the Terry Fox run',1,'2012-02-25',NULL,'0'),(36,'civicrm_contact',58,'Get the registration done for NGO status',1,'2011-08-22',NULL,'0'),(37,'civicrm_contact',4,'Get the registration done for NGO status',1,'2011-12-24',NULL,'0'),(38,'civicrm_contact',67,'Get the registration done for NGO status',1,'2012-01-03',NULL,'0'),(39,'civicrm_contact',3,'Chart out route map for next 10k run',1,'2011-12-29',NULL,'0'),(40,'civicrm_contact',15,'Organize the Terry Fox run',1,'2011-09-25',NULL,'0'),(41,'civicrm_contact',33,'Invite members for the Steve Prefontaine 10k dream run',1,'2011-08-31',NULL,'0'),(42,'civicrm_contact',50,'Organize the Terry Fox run',1,'2012-07-21',NULL,'0'),(43,'civicrm_contact',21,'Send reminder for annual dinner',1,'2012-02-26',NULL,'0'),(44,'civicrm_contact',82,'Get the registration done for NGO status',1,'2011-12-21',NULL,'0'),(45,'civicrm_contact',24,'Connect for presentation',1,'2011-12-05',NULL,'0'),(46,'civicrm_contact',94,'Arrange for cricket match with Sunil Gavaskar',1,'2011-12-15',NULL,'0'),(47,'civicrm_contact',36,'Send reminder for annual dinner',1,'2011-12-02',NULL,'0'),(48,'civicrm_contact',70,'Connect for presentation',1,'2011-12-22',NULL,'0'),(49,'civicrm_contact',79,'Invite members for the Steve Prefontaine 10k dream run',1,'2012-08-01',NULL,'0'),(50,'civicrm_contact',91,'Arrange collection of funds from members',1,'2011-11-23',NULL,'0'),(51,'civicrm_contact',71,'Organize the Terry Fox run',1,'2012-07-10',NULL,'0'),(52,'civicrm_contact',39,'Connect for presentation',1,'2012-08-07',NULL,'0'),(53,'civicrm_contact',69,'Get the registration done for NGO status',1,'2011-10-08',NULL,'0'),(54,'civicrm_contact',51,'Organize the Terry Fox run',1,'2012-03-22',NULL,'0'),(55,'civicrm_contact',7,'Send newsletter for April 2005',1,'2012-05-21',NULL,'0'),(56,'civicrm_contact',100,'Chart out route map for next 10k run',1,'2012-07-31',NULL,'0'),(57,'civicrm_contact',96,'Connect for presentation',1,'2011-10-07',NULL,'0'),(58,'civicrm_contact',85,'Reminder screening of \"Black\" on next Friday',1,'2011-11-06',NULL,'0'),(59,'civicrm_contact',93,'Connect for presentation',1,'2012-05-10',NULL,'0'),(60,'civicrm_contact',78,'Invite members for the Steve Prefontaine 10k dream run',1,'2011-12-23',NULL,'0'),(61,'civicrm_contact',49,'Organize the Terry Fox run',1,'2011-12-06',NULL,'0'),(62,'civicrm_contact',81,'Send newsletter for April 2005',1,'2011-11-04',NULL,'0'),(63,'civicrm_contact',31,'Arrange collection of funds from members',1,'2011-12-13',NULL,'0'),(64,'civicrm_contact',73,'Arrange collection of funds from members',1,'2012-06-11',NULL,'0'),(65,'civicrm_contact',63,'Send newsletter for April 2005',1,'2012-07-31',NULL,'0'),(66,'civicrm_contact',14,'Organize the Terry Fox run',1,'2011-11-02',NULL,'0'),(67,'civicrm_contact',61,'Arrange collection of funds from members',1,'2012-03-28',NULL,'0'),(68,'civicrm_contact',55,'Arrange for cricket match with Sunil Gavaskar',1,'2012-06-28',NULL,'0'),(69,'civicrm_contact',2,'Organize the Terry Fox run',1,'2011-11-03',NULL,'0'),(70,'civicrm_contact',5,'Send newsletter for April 2005',1,'2011-09-14',NULL,'0'),(71,'civicrm_contact',68,'Organize the Terry Fox run',1,'2011-12-22',NULL,'0'),(72,'civicrm_contact',62,'Connect for presentation',1,'2012-08-18',NULL,'0'),(73,'civicrm_contact',41,'Organize the Terry Fox run',1,'2012-01-10',NULL,'0'),(74,'civicrm_contact',43,'Connect for presentation',1,'2012-07-07',NULL,'0'),(75,'civicrm_contact',18,'Reminder screening of \"Black\" on next Friday',1,'2012-04-27',NULL,'0'),(76,'civicrm_contact',101,'Organize the Terry Fox run',1,'2012-08-01',NULL,'0'),(77,'civicrm_contact',47,'Reminder screening of \"Black\" on next Friday',1,'2011-12-22',NULL,'0'),(78,'civicrm_contact',44,'Reminder screening of \"Black\" on next Friday',1,'2012-06-03',NULL,'0'),(79,'civicrm_contact',92,'Send newsletter for April 2005',1,'2011-12-29',NULL,'0'),(80,'civicrm_contact',54,'Connect for presentation',1,'2012-06-12',NULL,'0'),(81,'civicrm_contact',84,'Connect for presentation',1,'2011-10-22',NULL,'0'),(82,'civicrm_contact',11,'Chart out route map for next 10k run',1,'2012-02-24',NULL,'0'),(83,'civicrm_contact',52,'Reminder screening of \"Black\" on next Friday',1,'2012-03-02',NULL,'0'),(84,'civicrm_contact',83,'Connect for presentation',1,'2012-04-04',NULL,'0'),(85,'civicrm_contact',88,'Connect for presentation',1,'2011-12-08',NULL,'0'),(86,'civicrm_contact',23,'Arrange for cricket match with Sunil Gavaskar',1,'2011-11-09',NULL,'0'),(87,'civicrm_contact',10,'Connect for presentation',1,'2012-07-09',NULL,'0'),(88,'civicrm_contact',95,'Send reminder for annual dinner',1,'2012-02-15',NULL,'0'),(89,'civicrm_contact',12,'Arrange collection of funds from members',1,'2012-01-14',NULL,'0'),(90,'civicrm_contact',45,'Reminder screening of \"Black\" on next Friday',1,'2012-02-19',NULL,'0'),(91,'civicrm_contact',22,'Send reminder for annual dinner',1,'2011-09-07',NULL,'0'),(92,'civicrm_contact',72,'Arrange for cricket match with Sunil Gavaskar',1,'2011-09-03',NULL,'0'),(93,'civicrm_contact',77,'Chart out route map for next 10k run',1,'2012-06-27',NULL,'0'),(94,'civicrm_contact',26,'Send newsletter for April 2005',1,'2011-12-02',NULL,'0'),(95,'civicrm_contact',16,'Send newsletter for April 2005',1,'2012-07-29',NULL,'0'),(96,'civicrm_contact',17,'Get the registration done for NGO status',1,'2012-01-28',NULL,'0'),(97,'civicrm_contact',19,'Connect for presentation',1,'2011-09-08',NULL,'0'); /*!40000 ALTER TABLE `civicrm_note` ENABLE KEYS */; UNLOCK TABLES; @@ -964,7 +973,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,'Text Message (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,0,1,7,NULL,NULL),(19,2,'Follow up','14','Follow up',NULL,0,0,14,'',0,0,1,7,NULL,NULL),(20,2,'Change Case Type','15','Change Case Type',NULL,0,0,15,'',0,0,1,7,NULL,NULL),(21,2,'Change Case Status','16','Change Case Status',NULL,0,0,16,'',0,0,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,0,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,0,1,7,NULL,NULL),(26,2,'Remove Case Role','21','Remove Case Role',NULL,0,0,21,'',0,0,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','32','Petition',NULL,0,0,31,'',0,1,1,9,NULL,NULL),(38,2,'BULK SMS','34','BULK SMS',NULL,1,NULL,34,'BULK 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,3,'Female','1','Female',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(47,3,'Male','2','Male',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(48,3,'Transgender','3','Transgender',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(49,4,'Yahoo','1','Yahoo',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(50,4,'MSN','2','Msn',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(51,4,'AIM','3','Aim',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(52,4,'GTalk','4','Gtalk',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(53,4,'Jabber','5','Jabber',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(54,4,'Skype','6','Skype',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(55,5,'Sprint','1','Sprint',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(56,5,'Verizon','2','Verizon',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(57,5,'Cingular','3','Cingular',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(58,6,'Mrs.','1','Mrs.',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(59,6,'Ms.','2','Ms.',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(60,6,'Mr.','3','Mr.',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(61,6,'Dr.','4','Dr.',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(62,7,'Jr.','1','Jr.',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(63,7,'Sr.','2','Sr.',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(64,7,'II','3','II',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(65,7,'III','4','III',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(66,7,'IV','5','IV',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(67,7,'V','6','V',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(68,7,'VI','7','VI',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(69,7,'VII','8','VII',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(70,8,'Administrator','1','Admin',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(71,8,'Authenticated','2','Auth',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(72,9,'Visa','1','Visa',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(73,9,'MasterCard','2','MasterCard',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(74,9,'Amex','3','Amex',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(75,9,'Discover','4','Discover',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(76,10,'Credit Card','1','Credit Card',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(77,10,'Debit Card','2','Debit Card',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(78,10,'Cash','3','Cash',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(79,10,'Check','4','Check',NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(80,10,'EFT','5','EFT',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(81,11,'Completed','1','Completed',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(82,11,'Pending','2','Pending',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(83,11,'Cancelled','3','Cancelled',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(84,11,'Failed','4','Failed',NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(85,11,'In Progress','5','In Progress',NULL,0,NULL,5,NULL,0,1,1,NULL,NULL,NULL),(86,11,'Overdue','6','Overdue',NULL,0,NULL,6,NULL,0,1,1,NULL,NULL,NULL),(87,12,'Waiting Review','1','Waiting Review',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(88,12,'Approved','2','Approved',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(89,12,'Not Approved','3','Not Approved',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(90,13,'Attendee','1','Attendee',NULL,1,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(91,13,'Volunteer','2','Volunteer',NULL,1,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(92,13,'Host','3','Host',NULL,1,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(93,13,'Speaker','4','Speaker',NULL,1,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(94,14,'Conference','1','Conference',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(95,14,'Exhibition','2','Exhibition',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(96,14,'Fundraiser','3','Fundraiser',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(97,14,'Meeting','4','Meeting',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(98,14,'Performance','5','Performance',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(99,14,'Workshop','6','Workshop',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(100,15,'Activities','1','activity',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(101,15,'Relationships','2','rel',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(102,15,'Groups','3','group',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(103,15,'Notes','4','note',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(104,15,'Tags','5','tag',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(105,15,'Change Log','6','log',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(106,15,'Contributions','7','CiviContribute',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(107,15,'Memberships','8','CiviMember',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(108,15,'Events','9','CiviEvent',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(109,15,'Cases','10','CiviCase',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(110,15,'Grants','11','CiviGrant',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(111,15,'Pledges','13','CiviPledge',NULL,0,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(112,16,'Custom Data','1','CustomData',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(113,16,'Address','2','Address',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(114,16,'Communication Preferences','3','CommunicationPreferences',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(115,16,'Notes','4','Notes',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(116,16,'Demographics','5','Demographics',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(117,16,'Tags and Groups','6','TagsAndGroups',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(118,16,'Email','7','Email',NULL,1,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(119,16,'Phone','8','Phone',NULL,1,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(120,16,'Instant Messenger','9','IM',NULL,1,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(121,16,'Open ID','10','OpenID',NULL,1,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(122,16,'Website','11','Website',NULL,1,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(123,17,'Address Fields','1','location',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(124,17,'Custom Fields','2','custom',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(125,17,'Activities','3','activity',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(126,17,'Relationships','4','relationship',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(127,17,'Notes','5','notes',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(128,17,'Change Log','6','changeLog',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(129,17,'Contributions','7','CiviContribute',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(130,17,'Memberships','8','CiviMember',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(131,17,'Events','9','CiviEvent',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(132,17,'Cases','10','CiviCase',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(133,17,'Grants','12','CiviGrant',NULL,0,NULL,14,NULL,0,0,1,NULL,NULL,NULL),(134,17,'Demographics','13','demographics',NULL,0,NULL,15,NULL,0,0,1,NULL,NULL,NULL),(135,17,'Pledges','15','CiviPledge',NULL,0,NULL,17,NULL,0,0,1,NULL,NULL,NULL),(136,17,'Contact Type','16','contactType',NULL,0,NULL,18,NULL,0,0,1,NULL,NULL,NULL),(137,17,'Groups','17','groups',NULL,0,NULL,19,NULL,0,0,1,NULL,NULL,NULL),(138,17,'Tags','18','tags',NULL,0,NULL,20,NULL,0,0,1,NULL,NULL,NULL),(139,17,'Mailing','19','CiviMail',NULL,0,NULL,21,NULL,0,0,1,NULL,NULL,NULL),(140,18,'Groups','1','Groups',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(141,18,'Contributions','2','CiviContribute',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(142,18,'Memberships','3','CiviMember',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(143,18,'Events','4','CiviEvent',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(144,18,'My Contacts / Organizations','5','Permissioned Orgs',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(145,18,'Pledges','7','CiviPledge',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(146,18,'Personal Campaign Pages','8','PCP',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(147,18,'Assigned Activities','9','Assigned Activities',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(148,44,'Email Address','2','email',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(149,44,'Phone','3','phone',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(150,44,'Street Address','4','street_address',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(151,44,'City','5','city',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(152,44,'State/Province','6','state_province',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(153,44,'Country','7','country',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(154,45,'Email Address','2','email',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(155,45,'Phone','3','phone',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(156,45,'Street Address','4','street_address',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(157,45,'City','5','city',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(158,45,'State/Province','6','state_province',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(159,45,'Country','7','country',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(160,19,'Street Address','1','street_address',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(161,19,'Addt\'l Address 1','2','supplemental_address_1',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(162,19,'Addt\'l Address 2','3','supplemental_address_2',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(163,19,'City','4','city',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(164,19,'Zip / Postal Code','5','postal_code',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(165,19,'Postal Code Suffix','6','postal_code_suffix',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(166,19,'County','7','county',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(167,19,'State / Province','8','state_province',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(168,19,'Country','9','country',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(169,19,'Latitude','10','geo_code_1',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(170,19,'Longitude','11','geo_code_2',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(171,19,'Address Name','12','address_name',NULL,0,NULL,12,NULL,0,0,1,NULL,NULL,NULL),(172,19,'Street Address Parsing','13','street_address_parsing',NULL,0,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(173,20,'Access Control','1',NULL,NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(174,20,'Mailing List','2',NULL,NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(175,21,'Pending','1','Pending',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(176,21,'Granted','2','Granted',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(177,21,'Rejected','3','Rejected',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(178,23,'In Honor of','1','In Honor of',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(179,23,'In Memory of','2','In Memory of',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(180,24,'CRM_Contact_Form_Search_Custom_Sample','1','CRM_Contact_Form_Search_Custom_Sample',NULL,0,NULL,1,'Household Name and State',0,0,1,NULL,NULL,NULL),(181,24,'CRM_Contact_Form_Search_Custom_ContributionAggregate','2','CRM_Contact_Form_Search_Custom_ContributionAggregate',NULL,0,NULL,2,'Contribution Aggregate',0,0,1,NULL,NULL,NULL),(182,24,'CRM_Contact_Form_Search_Custom_Basic','3','CRM_Contact_Form_Search_Custom_Basic',NULL,0,NULL,3,'Basic Search',0,0,1,NULL,NULL,NULL),(183,24,'CRM_Contact_Form_Search_Custom_Group','4','CRM_Contact_Form_Search_Custom_Group',NULL,0,NULL,4,'Include / Exclude Search',0,0,1,NULL,NULL,NULL),(184,24,'CRM_Contact_Form_Search_Custom_PostalMailing','5','CRM_Contact_Form_Search_Custom_PostalMailing',NULL,0,NULL,5,'Postal Mailing',0,0,1,NULL,NULL,NULL),(185,24,'CRM_Contact_Form_Search_Custom_Proximity','6','CRM_Contact_Form_Search_Custom_Proximity',NULL,0,NULL,6,'Proximity Search',0,0,1,NULL,NULL,NULL),(186,24,'CRM_Contact_Form_Search_Custom_EventAggregate','7','CRM_Contact_Form_Search_Custom_EventAggregate',NULL,0,NULL,7,'Event Aggregate',0,0,1,NULL,NULL,NULL),(187,24,'CRM_Contact_Form_Search_Custom_ActivitySearch','8','CRM_Contact_Form_Search_Custom_ActivitySearch',NULL,0,NULL,8,'Activity Search',0,0,1,NULL,NULL,NULL),(188,24,'CRM_Contact_Form_Search_Custom_PriceSet','9','CRM_Contact_Form_Search_Custom_PriceSet',NULL,0,NULL,9,'Price Set Details for Event Participants',0,0,1,NULL,NULL,NULL),(189,24,'CRM_Contact_Form_Search_Custom_ZipCodeRange','10','CRM_Contact_Form_Search_Custom_ZipCodeRange',NULL,0,NULL,10,'Zip Code Range',0,0,1,NULL,NULL,NULL),(190,24,'CRM_Contact_Form_Search_Custom_DateAdded','11','CRM_Contact_Form_Search_Custom_DateAdded',NULL,0,NULL,11,'Date Added to CiviCRM',0,0,1,NULL,NULL,NULL),(191,24,'CRM_Contact_Form_Search_Custom_MultipleValues','12','CRM_Contact_Form_Search_Custom_MultipleValues',NULL,0,NULL,12,'Custom Group Multiple Values Listing',0,0,1,NULL,NULL,NULL),(192,24,'CRM_Contact_Form_Search_Custom_ContribSYBNT','13','CRM_Contact_Form_Search_Custom_ContribSYBNT',NULL,0,NULL,13,'Contributions made in Year X and not Year Y',0,0,1,NULL,NULL,NULL),(193,24,'CRM_Contact_Form_Search_Custom_TagContributions','14','CRM_Contact_Form_Search_Custom_TagContributions',NULL,0,NULL,14,'Find Contribution Amounts by Tag',0,0,1,NULL,NULL,NULL),(194,24,'CRM_Contact_Form_Search_Custom_FullText','15','CRM_Contact_Form_Search_Custom_FullText',NULL,0,NULL,15,'Full-text Search',0,0,1,NULL,NULL,NULL),(195,40,'Constituent Report (Summary)','contact/summary','CRM_Report_Form_Contact_Summary',NULL,0,NULL,1,'Provides a list of address and telephone information for constituent records in your system.',0,0,1,NULL,NULL,NULL),(196,40,'Constituent Report (Detail)','contact/detail','CRM_Report_Form_Contact_Detail',NULL,0,NULL,2,'Provides contact-related information on contributions, memberships, events and activities.',0,0,1,NULL,NULL,NULL),(197,40,'Activity Report','activity','CRM_Report_Form_Activity',NULL,0,NULL,3,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)',0,0,1,NULL,NULL,NULL),(198,40,'Walk / Phone List Report','walklist','CRM_Report_Form_Walklist_Walklist',NULL,0,NULL,4,'Provides a detailed report for your walk/phonelist for targetted contacts',0,0,0,NULL,NULL,NULL),(199,40,'Current Employer Report','contact/currentEmployer','CRM_Report_Form_Contact_CurrentEmployer',NULL,0,NULL,5,'Provides detail list of employer employee relationships along with employment details Ex Join Date',0,0,1,NULL,NULL,NULL),(200,40,'Contribution Summary Report','contribute/summary','CRM_Report_Form_Contribute_Summary',NULL,0,NULL,6,'Groups and totals contributions by criteria including contact, time period, contribution type, contributor location, etc.',0,0,1,2,NULL,NULL),(201,40,'Contribution Detail Report','contribute/detail','CRM_Report_Form_Contribute_Detail',NULL,0,NULL,7,'Lists specific contributions by criteria including contact, time period, contribution type, contributor location, etc. Contribution summary report points to this report for contribution details.',0,0,1,2,NULL,NULL),(202,40,'Repeat Contributions Report','contribute/repeat','CRM_Report_Form_Contribute_Repeat',NULL,0,NULL,8,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.',0,0,1,2,NULL,NULL),(203,40,'Contributions by Organization Report','contribute/organizationSummary','CRM_Report_Form_Contribute_OrganizationSummary',NULL,0,NULL,9,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.',0,0,1,2,NULL,NULL),(204,40,'Contributions by Household Report','contribute/householdSummary','CRM_Report_Form_Contribute_HouseholdSummary',NULL,0,NULL,10,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.',0,0,1,2,NULL,NULL),(205,40,'Top Donors Report','contribute/topDonor','CRM_Report_Form_Contribute_TopDonor',NULL,0,NULL,11,'Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).',0,0,1,2,NULL,NULL),(206,40,'SYBUNT Report','contribute/sybunt','CRM_Report_Form_Contribute_Sybunt',NULL,0,NULL,12,'SYBUNT means some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.',0,0,1,2,NULL,NULL),(207,40,'LYBUNT Report','contribute/lybunt','CRM_Report_Form_Contribute_Lybunt',NULL,0,NULL,13,'LYBUNT means last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.',0,0,1,2,NULL,NULL),(208,40,'Soft Credit Report','contribute/softcredit','CRM_Report_Form_Contribute_SoftCredit',NULL,0,NULL,14,'Shows contributions made by contacts that have been soft-credited to other contacts.',0,0,1,2,NULL,NULL),(209,40,'Membership Report (Summary)','member/summary','CRM_Report_Form_Member_Summary',NULL,0,NULL,15,'Provides a summary of memberships by type and join date.',0,0,1,3,NULL,NULL),(210,40,'Membership Report (Detail)','member/detail','CRM_Report_Form_Member_Detail',NULL,0,NULL,16,'Provides a list of members along with their membership status and membership details (Join Date, Start Date, End Date). Can also display contributions (payments) associated with each membership.',0,0,1,3,NULL,NULL),(211,40,'Membership Report (Lapsed)','member/lapse','CRM_Report_Form_Member_Lapse',NULL,0,NULL,17,'Provides a list of memberships that lapsed or will lapse before the date you specify.',0,0,1,3,NULL,NULL),(212,40,'Event Participant Report (List)','event/participantListing','CRM_Report_Form_Event_ParticipantListing',NULL,0,NULL,18,'Provides lists of participants for an event.',0,0,1,1,NULL,NULL),(213,40,'Event Income Report (Summary)','event/summary','CRM_Report_Form_Event_Summary',NULL,0,NULL,19,'Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.',0,0,1,1,NULL,NULL),(214,40,'Event Income Report (Detail)','event/income','CRM_Report_Form_Event_Income',NULL,0,NULL,20,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.',0,0,1,1,NULL,NULL),(215,40,'Pledge Report','pledge/detail','CRM_Report_Form_Pledge_Detail',NULL,0,NULL,21,'Pledge Report',0,0,1,6,NULL,NULL),(216,40,'Pledged But not Paid Report','pledge/pbnp','CRM_Report_Form_Pledge_Pbnp',NULL,0,NULL,22,'Pledged but not Paid Report',0,0,1,6,NULL,NULL),(217,40,'Relationship Report','contact/relationship','CRM_Report_Form_Contact_Relationship',NULL,0,NULL,23,'Relationship Report',0,0,1,NULL,NULL,NULL),(218,40,'Case Summary Report','case/summary','CRM_Report_Form_Case_Summary',NULL,0,NULL,24,'Provides a summary of cases and their duration by date range, status, staff member and / or case role.',0,0,1,7,NULL,NULL),(219,40,'Case Time Spent Report','case/timespent','CRM_Report_Form_Case_TimeSpent',NULL,0,NULL,25,'Aggregates time spent on case and / or or non-case activities by activity type and contact.',0,0,1,7,NULL,NULL),(220,40,'Contact Demographics Report','case/demographics','CRM_Report_Form_Case_Demographics',NULL,0,NULL,26,'Demographic breakdown for case clients (and or non-case contacts) in your database. Includes custom contact fields.',0,0,1,7,NULL,NULL),(221,40,'Database Log Report','contact/log','CRM_Report_Form_Contact_Log',NULL,0,NULL,27,'Log of contact and activity records created or updated in a given date range.',0,0,1,NULL,NULL,NULL),(222,40,'Activity Report (Summary)','activitySummary','CRM_Report_Form_ActivitySummary',NULL,0,NULL,28,'Shows activity statistics by type / date',0,0,1,NULL,NULL,NULL),(223,40,'Bookkeeping Transactions Report','contribute/bookkeeping','CRM_Report_Form_Contribute_Bookkeeping',NULL,0,0,29,'Shows Bookkeeping Transactions Report',0,0,1,2,NULL,NULL),(224,40,'Grant Report (Detail)','grant/detail','CRM_Report_Form_Grant_Detail',NULL,0,0,30,'Grant Report Detail',0,0,1,5,NULL,NULL),(225,40,'Participant list Count Report','event/participantlist','CRM_Report_Form_Event_ParticipantListCount',NULL,0,0,31,'Shows the Participant list with Participant Count.',0,0,1,1,NULL,NULL),(226,40,'Income Count Summary Report','event/incomesummary','CRM_Report_Form_Event_IncomeCountSummary',NULL,0,0,32,'Shows the Income Summary of events with Count.',0,0,1,1,NULL,NULL),(227,40,'Case Detail Report','case/detail','CRM_Report_Form_Case_Detail',NULL,0,0,33,'Case Details',0,0,1,7,NULL,NULL),(228,40,'Mail Bounce Report','Mailing/bounce','CRM_Report_Form_Mailing_Bounce',NULL,0,NULL,34,'Bounce Report for mailings',0,0,1,4,NULL,NULL),(229,40,'Mail Summary Report','Mailing/summary','CRM_Report_Form_Mailing_Summary',NULL,0,NULL,35,'Summary statistics for mailings',0,0,1,4,NULL,NULL),(230,40,'Mail Opened Report','Mailing/opened','CRM_Report_Form_Mailing_Opened',NULL,0,NULL,36,'Display contacts who opened emails from a mailing',0,0,1,4,NULL,NULL),(231,40,'Mail Clickthrough Report','Mailing/clicks','CRM_Report_Form_Mailing_Clicks',NULL,0,NULL,37,'Display clicks from each mailing',0,0,1,4,NULL,NULL),(232,40,'Contact Logging Report (Summary)','logging/contact/summary','CRM_Report_Form_Contact_LoggingSummary',NULL,0,NULL,38,'Contact modification report for the logging infrastructure (summary).',0,0,0,NULL,NULL,NULL),(233,40,'Contact Logging Report (Detail)','logging/contact/detail','CRM_Report_Form_Contact_LoggingDetail',NULL,0,NULL,39,'Contact modification report for the logging infrastructure (detail).',0,0,0,NULL,NULL,NULL),(234,40,'Contribute Logging Report (Summary)','logging/contribute/summary','CRM_Report_Form_Contribute_LoggingSummary',NULL,0,NULL,40,'Contribute modification report for the logging infrastructure (summary).',0,0,0,2,NULL,NULL),(235,40,'Contribute Logging Report (Detail)','logging/contribute/detail','CRM_Report_Form_Contribute_LoggingDetail',NULL,0,NULL,41,'Contribute modification report for the logging infrastructure (detail).',0,0,0,2,NULL,NULL),(236,40,'Grant Report (Statistics)','grant/statistics','CRM_Report_Form_Grant_Statistics',NULL,0,NULL,42,'Shows statistics for Grants.',0,0,1,5,NULL,NULL),(237,40,'Survey Report (Detail)','survey/detail','CRM_Report_Form_Campaign_SurveyDetails',NULL,0,NULL,43,'Detailed report for canvassing, phone-banking, walk lists or other surveys.',0,0,1,9,NULL,NULL),(238,40,'Personal Campaign Page Report','contribute/pcp','CRM_Report_Form_Contribute_PCP',NULL,0,NULL,44,'Summarizes amount raised and number of contributors for each Personal Campaign Page.',0,0,1,2,NULL,NULL),(239,40,'Pledge Summary Report','pledge/summary','CRM_Report_Form_Pledge_Summary',NULL,0,NULL,45,'Summary of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.',0,0,1,6,NULL,NULL),(240,40,'Contribution History By Relationship Report','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),(241,40,'Mail Detail Report','mailing/detail','CRM_Report_Form_Mailing_Detail',NULL,0,NULL,47,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.',0,0,1,4,NULL,NULL),(242,40,'Contribution and Membership Details','member/contributionDetail','CRM_Report_Form_Member_ContributionDetail',NULL,0,NULL,48,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.',0,0,1,3,NULL,NULL),(243,40,'Price Set Line Item report','price/lineitem','CRM_Report_Form_Price_Lineitem',NULL,0,NULL,49,'Price Set Line Item report',0,0,1,2,NULL,NULL),(244,40,'Contribution Report with Price Set detail','price/contributionbased','CRM_Report_Form_Price_Contributionbased',NULL,0,NULL,50,'Contribution Report with Price Set detail',0,0,1,2,NULL,NULL),(245,40,'Participant Report with Price Set detail','price/lineitemparticipant','CRM_Report_Form_Price_Lineitemparticipant',NULL,0,NULL,51,'Participant Report with Price Set detail',0,0,1,1,NULL,NULL),(246,25,'Scheduled','1','Scheduled',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(247,25,'Completed','2','Completed',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(248,25,'Cancelled','3','Cancelled',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(249,25,'Left Message','4','Left Message',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(250,25,'Unreachable','5','Unreachable',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(251,25,'Not Required','6','Not Required',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(252,27,'Ongoing','1','Open','Opened',0,1,1,NULL,0,1,1,NULL,NULL,NULL),(253,27,'Resolved','2','Closed','Closed',0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(254,27,'Urgent','3','Urgent','Opened',0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(255,28,'Name Only','1','Name Only',NULL,0,0,1,'CRM_Event_Page_ParticipantListing_Name',0,1,1,NULL,NULL,NULL),(256,28,'Name and Email','2','Name and Email',NULL,0,0,2,'CRM_Event_Page_ParticipantListing_NameAndEmail',0,1,1,NULL,NULL,NULL),(257,28,'Name, Status and Register Date','3','Name, Status and Register Date',NULL,0,0,3,'CRM_Event_Page_ParticipantListing_NameStatusAndDate',0,1,1,NULL,NULL,NULL),(258,29,'jpg','1',NULL,NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL),(259,29,'jpeg','2',NULL,NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL),(260,29,'png','3',NULL,NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL),(261,29,'gif','4',NULL,NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL),(262,29,'txt','5',NULL,NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL),(263,29,'pdf','6',NULL,NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL),(264,29,'doc','7',NULL,NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL),(265,29,'xls','8',NULL,NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL),(266,29,'rtf','9',NULL,NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL),(267,29,'csv','10',NULL,NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL),(268,29,'ppt','11',NULL,NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL),(269,29,'docx','12',NULL,NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL),(270,29,'xlsx','13',NULL,NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL),(271,32,'TinyMCE','1',NULL,NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(272,32,'CKEditor','2',NULL,NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(273,32,'Joomla Default Editor','3',NULL,NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(274,32,'Drupal Default Editor','4',NULL,NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(275,31,'Search Builder','1','Search Builder',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(276,31,'Import Contact','2','Import Contact',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(277,31,'Import Activity','3','Import Activity',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(278,31,'Import Contribution','4','Import Contribution',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(279,31,'Import Membership','5','Import Membership',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL),(280,31,'Import Participant','6','Import Participant',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL),(281,31,'Export Contact','7','Export Contact',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL),(282,31,'Export Contribution','8','Export Contribution',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL),(283,31,'Export Membership','9','Export Membership',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL),(284,31,'Export Participant','10','Export Participant',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL),(285,31,'Export Pledge','11','Export Pledge',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL),(286,31,'Export Case','12','Export Case',NULL,0,0,12,NULL,0,1,1,NULL,NULL,NULL),(287,31,'Export Grant','13','Export Grant',NULL,0,0,13,NULL,0,1,1,NULL,NULL,NULL),(288,31,'Export Activity','14','Export Activity',NULL,0,0,14,NULL,0,1,1,NULL,NULL,NULL),(289,33,'day','day','day',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(290,33,'week','week','week',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(291,33,'month','month','month',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(292,33,'year','year','year',NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(293,34,'Phone','1','Phone',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(294,34,'Mobile','2','Mobile',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(295,34,'Fax','3','Fax',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(296,34,'Pager','4','Pager',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(297,34,'Voicemail','5','Voicemail',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(298,35,'Participant Role','1','ParticipantRole',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(299,35,'Participant Event Name','2','ParticipantEventName',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(300,35,'Participant Event Type','3','ParticipantEventType',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(301,36,'Public','1','public',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(302,36,'Admin','2','admin',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(303,37,'IMAP','1','IMAP',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(304,37,'Maildir','2','Maildir',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(305,37,'POP3','3','POP3',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(306,37,'Localdir','4','Localdir',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(307,38,'Urgent','1','Urgent',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(308,38,'Normal','2','Normal',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(309,38,'Low','3','Low',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(310,39,'Vancouver','city_',NULL,NULL,0,NULL,1,NULL,0,0,0,NULL,NULL,NULL),(311,39,'/(19|20)(\\d{2})-(\\d{1,2})-(\\d{1,2})/','date_',NULL,NULL,1,NULL,2,NULL,0,0,0,NULL,NULL,NULL),(312,41,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(313,41,'Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}','2','Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL),(314,41,'Dear {contact.individual_prefix} {contact.last_name}','3','Dear {contact.individual_prefix} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL),(315,41,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(316,41,'Dear {contact.household_name}','5','Dear {contact.househols_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL),(317,42,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(318,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),(319,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),(320,42,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(321,42,'Dear {contact.household_name}','5','Dear {contact.househols_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL),(322,43,'{contact.individual_prefix}{ } {contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.individual_suffix}','1','}{contact.individual_prefix}{ } {contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.individual_suffix}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(323,43,'{contact.household_name}','2','{contact.household_name}',NULL,2,1,2,NULL,0,0,1,NULL,NULL,NULL),(324,43,'{contact.organization_name}','3','{contact.organization_name}',NULL,3,1,3,NULL,0,0,1,NULL,NULL,NULL),(325,43,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(326,46,'Asset','1','Asset',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(327,46,'Liability','2','Liability',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(328,46,'Income','3','Income',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(329,46,'Expense','4','Expense',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(330,47,'Home','1','Home',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(331,47,'Work','2','Work',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(332,47,'Facebook','3','Facebook',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(333,47,'Twitter','4','Twitter',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(334,47,'MySpace','5','MySpace',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(335,47,'Main','6','Main',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(336,48,'Contacts','civicrm_contact','Contacts',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(337,48,'Activities','civicrm_activity','Activities',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(338,48,'Cases','civicrm_case','Cases',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(339,49,'USD ($)','USD','USD',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(340,50,'Name Only','1','CRM_Event_Badge_Simple',NULL,0,0,1,'Simple Event Name Badge',0,1,1,NULL,NULL,NULL),(341,50,'Name Tent','2','CRM_Event_Badge_NameTent',NULL,0,0,2,'Name Tent',0,1,1,NULL,NULL,NULL),(342,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),(343,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),(344,51,'None','0','',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(345,51,'Author Only','1','',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(346,52,'Direct Mail','1','Direct Mail',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(347,52,'Referral Program','2','Referral Program',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(348,52,'Constituent Engagement','3','Constituent Engagement',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(349,53,'Planned','1','Planned',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(350,53,'In Progress','2','In Progress',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(351,53,'Completed','3','Completed',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(352,53,'Cancelled','4','Cancelled',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(353,56,'1','1','1',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(354,56,'2','2','2',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(355,56,'3','3','3',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(356,56,'4','4','4',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(357,56,'5','5','5',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(358,58,'Letter','{\"metric\":\"in\",\"width\":8.5,\"height\":11}','letter',NULL,NULL,1,1,NULL,0,0,1,NULL,NULL,NULL),(359,58,'Legal','{\"metric\":\"in\",\"width\":8.5,\"height\":14}','legal',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(360,58,'Ledger','{\"metric\":\"in\",\"width\":17,\"height\":11}','ledger',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(361,58,'Tabloid','{\"metric\":\"in\",\"width\":11,\"height\":17}','tabloid',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(362,58,'Executive','{\"metric\":\"in\",\"width\":7.25,\"height\":10.5}','executive',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(363,58,'Folio','{\"metric\":\"in\",\"width\":8.5,\"height\":13}','folio',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(364,58,'Envelope #9','{\"metric\":\"pt\",\"width\":638.93,\"height\":278.93}','envelope-9',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(365,58,'Envelope #10','{\"metric\":\"pt\",\"width\":684,\"height\":297}','envelope-10',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(366,58,'Envelope #11','{\"metric\":\"pt\",\"width\":747,\"height\":324}','envelope-11',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(367,58,'Envelope #12','{\"metric\":\"pt\",\"width\":792,\"height\":342}','envelope-12',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL),(368,58,'Envelope #14','{\"metric\":\"pt\",\"width\":828,\"height\":360}','envelope-14',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL),(369,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),(370,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),(371,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),(372,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),(373,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),(374,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),(375,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),(376,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),(377,58,'ISO A0','{\"metric\":\"pt\",\"width\":2383.94,\"height\":3370.39}','a0',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL),(378,58,'ISO A1','{\"metric\":\"pt\",\"width\":1683.78,\"height\":2383.94}','a1',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL),(379,58,'ISO A2','{\"metric\":\"pt\",\"width\":1190.55,\"height\":1683.78}','a2',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL),(380,58,'ISO A3','{\"metric\":\"pt\",\"width\":841.89,\"height\":1190.55}','a3',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL),(381,58,'ISO A4','{\"metric\":\"pt\",\"width\":595.28,\"height\":841.89}','a4',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL),(382,58,'ISO A5','{\"metric\":\"pt\",\"width\":419.53,\"height\":595.28}','a5',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL),(383,58,'ISO A6','{\"metric\":\"pt\",\"width\":297.64,\"height\":419.53}','a6',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL),(384,58,'ISO A7','{\"metric\":\"pt\",\"width\":209.76,\"height\":297.64}','a7',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL),(385,58,'ISO A8','{\"metric\":\"pt\",\"width\":147.4,\"height\":209.76}','a8',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL),(386,58,'ISO A9','{\"metric\":\"pt\",\"width\":104.88,\"height\":147.4}','a9',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL),(387,58,'ISO A10','{\"metric\":\"pt\",\"width\":73.7,\"height\":104.88}','a10',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL),(388,58,'ISO B0','{\"metric\":\"pt\",\"width\":2834.65,\"height\":4008.19}','b0',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL),(389,58,'ISO B1','{\"metric\":\"pt\",\"width\":2004.09,\"height\":2834.65}','b1',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL),(390,58,'ISO B2','{\"metric\":\"pt\",\"width\":1417.32,\"height\":2004.09}','b2',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL),(391,58,'ISO B3','{\"metric\":\"pt\",\"width\":1000.63,\"height\":1417.32}','b3',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL),(392,58,'ISO B4','{\"metric\":\"pt\",\"width\":708.66,\"height\":1000.63}','b4',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL),(393,58,'ISO B5','{\"metric\":\"pt\",\"width\":498.9,\"height\":708.66}','b5',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL),(394,58,'ISO B6','{\"metric\":\"pt\",\"width\":354.33,\"height\":498.9}','b6',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL),(395,58,'ISO B7','{\"metric\":\"pt\",\"width\":249.45,\"height\":354.33}','b7',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL),(396,58,'ISO B8','{\"metric\":\"pt\",\"width\":175.75,\"height\":249.45}','b8',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL),(397,58,'ISO B9','{\"metric\":\"pt\",\"width\":124.72,\"height\":175.75}','b9',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL),(398,58,'ISO B10','{\"metric\":\"pt\",\"width\":87.87,\"height\":124.72}','b10',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL),(399,58,'ISO C0','{\"metric\":\"pt\",\"width\":2599.37,\"height\":3676.54}','c0',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL),(400,58,'ISO C1','{\"metric\":\"pt\",\"width\":1836.85,\"height\":2599.37}','c1',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL),(401,58,'ISO C2','{\"metric\":\"pt\",\"width\":1298.27,\"height\":1836.85}','c2',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL),(402,58,'ISO C3','{\"metric\":\"pt\",\"width\":918.43,\"height\":1298.27}','c3',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL),(403,58,'ISO C4','{\"metric\":\"pt\",\"width\":649.13,\"height\":918.43}','c4',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL),(404,58,'ISO C5','{\"metric\":\"pt\",\"width\":459.21,\"height\":649.13}','c5',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL),(405,58,'ISO C6','{\"metric\":\"pt\",\"width\":323.15,\"height\":459.21}','c6',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL),(406,58,'ISO C7','{\"metric\":\"pt\",\"width\":229.61,\"height\":323.15}','c7',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL),(407,58,'ISO C8','{\"metric\":\"pt\",\"width\":161.57,\"height\":229.61}','c8',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL),(408,58,'ISO C9','{\"metric\":\"pt\",\"width\":113.39,\"height\":161.57}','c9',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL),(409,58,'ISO C10','{\"metric\":\"pt\",\"width\":79.37,\"height\":113.39}','c10',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL),(410,58,'ISO RA0','{\"metric\":\"pt\",\"width\":2437.8,\"height\":3458.27}','ra0',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL),(411,58,'ISO RA1','{\"metric\":\"pt\",\"width\":1729.13,\"height\":2437.8}','ra1',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL),(412,58,'ISO RA2','{\"metric\":\"pt\",\"width\":1218.9,\"height\":1729.13}','ra2',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL),(413,58,'ISO RA3','{\"metric\":\"pt\",\"width\":864.57,\"height\":1218.9}','ra3',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL),(414,58,'ISO RA4','{\"metric\":\"pt\",\"width\":609.45,\"height\":864.57}','ra4',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL),(415,58,'ISO SRA0','{\"metric\":\"pt\",\"width\":2551.18,\"height\":3628.35}','sra0',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL),(416,58,'ISO SRA1','{\"metric\":\"pt\",\"width\":1814.17,\"height\":2551.18}','sra1',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL),(417,58,'ISO SRA2','{\"metric\":\"pt\",\"width\":1275.59,\"height\":1814.17}','sra2',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL),(418,58,'ISO SRA3','{\"metric\":\"pt\",\"width\":907.09,\"height\":1275.59}','sra3',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL),(419,58,'ISO SRA4','{\"metric\":\"pt\",\"width\":637.8,\"height\":907.09}','sra4',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL),(420,61,'Activity Assignees','1','Activity Assignees',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(421,61,'Activity Source','2','Activity Source',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(422,61,'Activity Targets','3','Activity Targets',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(423,62,'Participant Role','1','participant_role',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(424,63,'Morning Sessions','1','Morning Sessions',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(425,63,'Evening Sessions','2','Evening Sessions',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(426,64,'Contribution','1','Contribution',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(427,64,'Membership','2','Membership',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(428,65,'Open','1','Open',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(429,65,'Closed','2','Closed',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(430,66,'http','1','http',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(431,66,'xml','2','xml',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(432,66,'smtp','3','smtp',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL),(433,67,'Clickatell','Clickatell','Clickatell',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(434,68,'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),(435,68,'Auto-renew Memberships Only','2','Auto-renew Memberships Only',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(436,68,'Reminder for Both','3','Reminder for Both',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(437,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),(438,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),(439,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),(440,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),(441,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),(442,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),(443,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),(444,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),(445,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),(446,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),(447,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),(448,30,'\"FIXME\" ','1','\"FIXME\" ',NULL,0,1,1,'Default domain email address and from name.',0,0,1,NULL,1,NULL),(449,22,'Emergency','1','Emergency',NULL,0,1,1,NULL,0,0,1,NULL,1,NULL),(450,22,'Family Support','2','Family Support',NULL,0,NULL,2,NULL,0,0,1,NULL,1,NULL),(451,22,'General Protection','3','General Protection',NULL,0,NULL,3,NULL,0,0,1,NULL,1,NULL),(452,22,'Impunity','4','Impunity',NULL,0,NULL,4,NULL,0,0,1,NULL,1,NULL),(453,55,'Approved','1','Approved',NULL,0,1,1,NULL,0,1,1,4,1,NULL),(454,55,'Rejected','2','Rejected',NULL,0,0,2,NULL,0,1,1,4,1,NULL),(455,55,'None','3','None',NULL,0,0,3,NULL,0,1,1,4,1,NULL),(456,57,'Survey','Survey','civicrm_survey',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(457,57,'Cases','Case','civicrm_case',NULL,0,NULL,2,'CRM_Case_PseudoConstant::caseType;',0,0,1,NULL,NULL,NULL),(458,69,'Abkhaz','ab','ab_GE',NULL,NULL,0,1,NULL,0,0,0,NULL,NULL,NULL),(459,69,'Afar','aa','aa_ET',NULL,NULL,0,2,NULL,0,0,0,NULL,NULL,NULL),(460,69,'Afrikaans','af','af_ZA',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(461,69,'Akan','ak','ak_GH',NULL,NULL,0,4,NULL,0,0,0,NULL,NULL,NULL),(462,69,'Albanian','sq','sq_AL',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(463,69,'Amharic','am','am_ET',NULL,NULL,0,6,NULL,0,0,0,NULL,NULL,NULL),(464,69,'Arabic','ar','ar_EG',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(465,69,'Aragonese','an','an_ES',NULL,NULL,0,8,NULL,0,0,0,NULL,NULL,NULL),(466,69,'Armenian','hy','hy_AM',NULL,NULL,0,9,NULL,0,0,0,NULL,NULL,NULL),(467,69,'Assamese','as','as_IN',NULL,NULL,0,10,NULL,0,0,0,NULL,NULL,NULL),(468,69,'Avaric','av','av_RU',NULL,NULL,0,11,NULL,0,0,0,NULL,NULL,NULL),(469,69,'Avestan','ae','ae_XX',NULL,NULL,0,12,NULL,0,0,0,NULL,NULL,NULL),(470,69,'Aymara','ay','ay_BO',NULL,NULL,0,13,NULL,0,0,0,NULL,NULL,NULL),(471,69,'Azerbaijani','az','az_AZ',NULL,NULL,0,14,NULL,0,0,0,NULL,NULL,NULL),(472,69,'Bambara','bm','bm_ML',NULL,NULL,0,15,NULL,0,0,0,NULL,NULL,NULL),(473,69,'Bashkir','ba','ba_RU',NULL,NULL,0,16,NULL,0,0,0,NULL,NULL,NULL),(474,69,'Basque','eu','eu_ES',NULL,NULL,0,17,NULL,0,0,0,NULL,NULL,NULL),(475,69,'Belarusian','be','be_BY',NULL,NULL,0,18,NULL,0,0,0,NULL,NULL,NULL),(476,69,'Bengali','bn','bn_BD',NULL,NULL,0,19,NULL,0,0,0,NULL,NULL,NULL),(477,69,'Bihari','bh','bh_IN',NULL,NULL,0,20,NULL,0,0,0,NULL,NULL,NULL),(478,69,'Bislama','bi','bi_VU',NULL,NULL,0,21,NULL,0,0,0,NULL,NULL,NULL),(479,69,'Bosnian','bs','bs_BA',NULL,NULL,0,22,NULL,0,0,0,NULL,NULL,NULL),(480,69,'Breton','br','br_FR',NULL,NULL,0,23,NULL,0,0,0,NULL,NULL,NULL),(481,69,'Bulgarian','bg','bg_BG',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL),(482,69,'Burmese','my','my_MM',NULL,NULL,0,25,NULL,0,0,0,NULL,NULL,NULL),(483,69,'Catalan; Valencian','ca','ca_ES',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL),(484,69,'Chamorro','ch','ch_GU',NULL,NULL,0,27,NULL,0,0,0,NULL,NULL,NULL),(485,69,'Chechen','ce','ce_RU',NULL,NULL,0,28,NULL,0,0,0,NULL,NULL,NULL),(486,69,'Chichewa; Chewa; Nyanja','ny','ny_MW',NULL,NULL,0,29,NULL,0,0,0,NULL,NULL,NULL),(487,69,'Chinese (China)','zh','zh_CN',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL),(488,69,'Chinese (Taiwan)','zh','zh_TW',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL),(489,69,'Chuvash','cv','cv_RU',NULL,NULL,0,32,NULL,0,0,0,NULL,NULL,NULL),(490,69,'Cornish','kw','kw_GB',NULL,NULL,0,33,NULL,0,0,0,NULL,NULL,NULL),(491,69,'Corsican','co','co_FR',NULL,NULL,0,34,NULL,0,0,0,NULL,NULL,NULL),(492,69,'Cree','cr','cr_CA',NULL,NULL,0,35,NULL,0,0,0,NULL,NULL,NULL),(493,69,'Croatian','hr','hr_HR',NULL,NULL,0,36,NULL,0,0,0,NULL,NULL,NULL),(494,69,'Czech','cs','cs_CZ',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL),(495,69,'Danish','da','da_DK',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL),(496,69,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,NULL,0,39,NULL,0,0,0,NULL,NULL,NULL),(497,69,'Dutch','nl','nl_NL',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL),(498,69,'Dzongkha','dz','dz_BT',NULL,NULL,0,41,NULL,0,0,0,NULL,NULL,NULL),(499,69,'English (Australia)','en','en_AU',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL),(500,69,'English (Canada)','en','en_CA',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL),(501,69,'English (United Kingdom)','en','en_GB',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL),(502,69,'English (United States)','en','en_US',NULL,NULL,1,45,NULL,0,0,1,NULL,NULL,NULL),(503,69,'Esperanto','eo','eo_XX',NULL,NULL,0,46,NULL,0,0,0,NULL,NULL,NULL),(504,69,'Estonian','et','et_EE',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL),(505,69,'Ewe','ee','ee_GH',NULL,NULL,0,48,NULL,0,0,0,NULL,NULL,NULL),(506,69,'Faroese','fo','fo_FO',NULL,NULL,0,49,NULL,0,0,0,NULL,NULL,NULL),(507,69,'Fijian','fj','fj_FJ',NULL,NULL,0,50,NULL,0,0,0,NULL,NULL,NULL),(508,69,'Finnish','fi','fi_FI',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL),(509,69,'French (Canada)','fr','fr_CA',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL),(510,69,'French (France)','fr','fr_FR',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL),(511,69,'Fula; Fulah; Pulaar; Pular','ff','ff_SN',NULL,NULL,0,54,NULL,0,0,0,NULL,NULL,NULL),(512,69,'Galician','gl','gl_ES',NULL,NULL,0,55,NULL,0,0,0,NULL,NULL,NULL),(513,69,'Georgian','ka','ka_GE',NULL,NULL,0,56,NULL,0,0,0,NULL,NULL,NULL),(514,69,'German','de','de_DE',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL),(515,69,'German (Swiss)','de','de_CH',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL),(516,69,'Greek, Modern','el','el_GR',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL),(517,69,'Guaraní','gn','gn_PY',NULL,NULL,0,60,NULL,0,0,0,NULL,NULL,NULL),(518,69,'Gujarati','gu','gu_IN',NULL,NULL,0,61,NULL,0,0,0,NULL,NULL,NULL),(519,69,'Haitian; Haitian Creole','ht','ht_HT',NULL,NULL,0,62,NULL,0,0,0,NULL,NULL,NULL),(520,69,'Hausa','ha','ha_NG',NULL,NULL,0,63,NULL,0,0,0,NULL,NULL,NULL),(521,69,'Hebrew (modern)','he','he_IL',NULL,NULL,0,64,NULL,0,0,1,NULL,NULL,NULL),(522,69,'Herero','hz','hz_NA',NULL,NULL,0,65,NULL,0,0,0,NULL,NULL,NULL),(523,69,'Hindi','hi','hi_IN',NULL,NULL,0,66,NULL,0,0,1,NULL,NULL,NULL),(524,69,'Hiri Motu','ho','ho_PG',NULL,NULL,0,67,NULL,0,0,0,NULL,NULL,NULL),(525,69,'Hungarian','hu','hu_HU',NULL,NULL,0,68,NULL,0,0,1,NULL,NULL,NULL),(526,69,'Interlingua','ia','ia_XX',NULL,NULL,0,69,NULL,0,0,0,NULL,NULL,NULL),(527,69,'Indonesian','id','id_ID',NULL,NULL,0,70,NULL,0,0,1,NULL,NULL,NULL),(528,69,'Interlingue','ie','ie_XX',NULL,NULL,0,71,NULL,0,0,0,NULL,NULL,NULL),(529,69,'Irish','ga','ga_IE',NULL,NULL,0,72,NULL,0,0,0,NULL,NULL,NULL),(530,69,'Igbo','ig','ig_NG',NULL,NULL,0,73,NULL,0,0,0,NULL,NULL,NULL),(531,69,'Inupiaq','ik','ik_US',NULL,NULL,0,74,NULL,0,0,0,NULL,NULL,NULL),(532,69,'Ido','io','io_XX',NULL,NULL,0,75,NULL,0,0,0,NULL,NULL,NULL),(533,69,'Icelandic','is','is_IS',NULL,NULL,0,76,NULL,0,0,0,NULL,NULL,NULL),(534,69,'Italian','it','it_IT',NULL,NULL,0,77,NULL,0,0,1,NULL,NULL,NULL),(535,69,'Inuktitut','iu','iu_CA',NULL,NULL,0,78,NULL,0,0,0,NULL,NULL,NULL),(536,69,'Japanese','ja','ja_JP',NULL,NULL,0,79,NULL,0,0,1,NULL,NULL,NULL),(537,69,'Javanese','jv','jv_ID',NULL,NULL,0,80,NULL,0,0,0,NULL,NULL,NULL),(538,69,'Kalaallisut, Greenlandic','kl','kl_GL',NULL,NULL,0,81,NULL,0,0,0,NULL,NULL,NULL),(539,69,'Kannada','kn','kn_IN',NULL,NULL,0,82,NULL,0,0,0,NULL,NULL,NULL),(540,69,'Kanuri','kr','kr_NE',NULL,NULL,0,83,NULL,0,0,0,NULL,NULL,NULL),(541,69,'Kashmiri','ks','ks_IN',NULL,NULL,0,84,NULL,0,0,0,NULL,NULL,NULL),(542,69,'Kazakh','kk','kk_KZ',NULL,NULL,0,85,NULL,0,0,0,NULL,NULL,NULL),(543,69,'Khmer','km','km_KH',NULL,NULL,0,86,NULL,0,0,1,NULL,NULL,NULL),(544,69,'Kikuyu, Gikuyu','ki','ki_KE',NULL,NULL,0,87,NULL,0,0,0,NULL,NULL,NULL),(545,69,'Kinyarwanda','rw','rw_RW',NULL,NULL,0,88,NULL,0,0,0,NULL,NULL,NULL),(546,69,'Kirghiz, Kyrgyz','ky','ky_KG',NULL,NULL,0,89,NULL,0,0,0,NULL,NULL,NULL),(547,69,'Komi','kv','kv_RU',NULL,NULL,0,90,NULL,0,0,0,NULL,NULL,NULL),(548,69,'Kongo','kg','kg_CD',NULL,NULL,0,91,NULL,0,0,0,NULL,NULL,NULL),(549,69,'Korean','ko','ko_KR',NULL,NULL,0,92,NULL,0,0,0,NULL,NULL,NULL),(550,69,'Kurdish','ku','ku_IQ',NULL,NULL,0,93,NULL,0,0,0,NULL,NULL,NULL),(551,69,'Kwanyama, Kuanyama','kj','kj_NA',NULL,NULL,0,94,NULL,0,0,0,NULL,NULL,NULL),(552,69,'Latin','la','la_VA',NULL,NULL,0,95,NULL,0,0,0,NULL,NULL,NULL),(553,69,'Luxembourgish, Letzeburgesch','lb','lb_LU',NULL,NULL,0,96,NULL,0,0,0,NULL,NULL,NULL),(554,69,'Luganda','lg','lg_UG',NULL,NULL,0,97,NULL,0,0,0,NULL,NULL,NULL),(555,69,'Limburgish, Limburgan, Limburger','li','li_NL',NULL,NULL,0,98,NULL,0,0,0,NULL,NULL,NULL),(556,69,'Lingala','ln','ln_CD',NULL,NULL,0,99,NULL,0,0,0,NULL,NULL,NULL),(557,69,'Lao','lo','lo_LA',NULL,NULL,0,100,NULL,0,0,0,NULL,NULL,NULL),(558,69,'Lithuanian','lt','lt_LT',NULL,NULL,0,101,NULL,0,0,1,NULL,NULL,NULL),(559,69,'Luba-Katanga','lu','lu_CD',NULL,NULL,0,102,NULL,0,0,0,NULL,NULL,NULL),(560,69,'Latvian','lv','lv_LV',NULL,NULL,0,103,NULL,0,0,0,NULL,NULL,NULL),(561,69,'Manx','gv','gv_IM',NULL,NULL,0,104,NULL,0,0,0,NULL,NULL,NULL),(562,69,'Macedonian','mk','mk_MK',NULL,NULL,0,105,NULL,0,0,0,NULL,NULL,NULL),(563,69,'Malagasy','mg','mg_MG',NULL,NULL,0,106,NULL,0,0,0,NULL,NULL,NULL),(564,69,'Malay','ms','ms_MY',NULL,NULL,0,107,NULL,0,0,0,NULL,NULL,NULL),(565,69,'Malayalam','ml','ml_IN',NULL,NULL,0,108,NULL,0,0,0,NULL,NULL,NULL),(566,69,'Maltese','mt','mt_MT',NULL,NULL,0,109,NULL,0,0,0,NULL,NULL,NULL),(567,69,'Māori','mi','mi_NZ',NULL,NULL,0,110,NULL,0,0,0,NULL,NULL,NULL),(568,69,'Marathi','mr','mr_IN',NULL,NULL,0,111,NULL,0,0,0,NULL,NULL,NULL),(569,69,'Marshallese','mh','mh_MH',NULL,NULL,0,112,NULL,0,0,0,NULL,NULL,NULL),(570,69,'Mongolian','mn','mn_MN',NULL,NULL,0,113,NULL,0,0,0,NULL,NULL,NULL),(571,69,'Nauru','na','na_NR',NULL,NULL,0,114,NULL,0,0,0,NULL,NULL,NULL),(572,69,'Navajo, Navaho','nv','nv_US',NULL,NULL,0,115,NULL,0,0,0,NULL,NULL,NULL),(573,69,'Norwegian Bokmål','nb','nb_NO',NULL,NULL,0,116,NULL,0,0,1,NULL,NULL,NULL),(574,69,'North Ndebele','nd','nd_ZW',NULL,NULL,0,117,NULL,0,0,0,NULL,NULL,NULL),(575,69,'Nepali','ne','ne_NP',NULL,NULL,0,118,NULL,0,0,0,NULL,NULL,NULL),(576,69,'Ndonga','ng','ng_NA',NULL,NULL,0,119,NULL,0,0,0,NULL,NULL,NULL),(577,69,'Norwegian Nynorsk','nn','nn_NO',NULL,NULL,0,120,NULL,0,0,0,NULL,NULL,NULL),(578,69,'Norwegian','no','no_NO',NULL,NULL,0,121,NULL,0,0,0,NULL,NULL,NULL),(579,69,'Nuosu','ii','ii_CN',NULL,NULL,0,122,NULL,0,0,0,NULL,NULL,NULL),(580,69,'South Ndebele','nr','nr_ZA',NULL,NULL,0,123,NULL,0,0,0,NULL,NULL,NULL),(581,69,'Occitan (after 1500)','oc','oc_FR',NULL,NULL,0,124,NULL,0,0,0,NULL,NULL,NULL),(582,69,'Ojibwa','oj','oj_CA',NULL,NULL,0,125,NULL,0,0,0,NULL,NULL,NULL),(583,69,'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),(584,69,'Oromo','om','om_ET',NULL,NULL,0,127,NULL,0,0,0,NULL,NULL,NULL),(585,69,'Oriya','or','or_IN',NULL,NULL,0,128,NULL,0,0,0,NULL,NULL,NULL),(586,69,'Ossetian, Ossetic','os','os_GE',NULL,NULL,0,129,NULL,0,0,0,NULL,NULL,NULL),(587,69,'Panjabi, Punjabi','pa','pa_IN',NULL,NULL,0,130,NULL,0,0,0,NULL,NULL,NULL),(588,69,'Pāli','pi','pi_KH',NULL,NULL,0,131,NULL,0,0,0,NULL,NULL,NULL),(589,69,'Persian (Iran)','fa','fa_IR',NULL,NULL,0,132,NULL,0,0,0,NULL,NULL,NULL),(590,69,'Polish','pl','pl_PL',NULL,NULL,0,133,NULL,0,0,1,NULL,NULL,NULL),(591,69,'Pashto, Pushto','ps','ps_AF',NULL,NULL,0,134,NULL,0,0,0,NULL,NULL,NULL),(592,69,'Portuguese (Brazil)','pt','pt_BR',NULL,NULL,0,135,NULL,0,0,1,NULL,NULL,NULL),(593,69,'Portuguese (Portugal)','pt','pt_PT',NULL,NULL,0,136,NULL,0,0,1,NULL,NULL,NULL),(594,69,'Quechua','qu','qu_PE',NULL,NULL,0,137,NULL,0,0,0,NULL,NULL,NULL),(595,69,'Romansh','rm','rm_CH',NULL,NULL,0,138,NULL,0,0,0,NULL,NULL,NULL),(596,69,'Kirundi','rn','rn_BI',NULL,NULL,0,139,NULL,0,0,0,NULL,NULL,NULL),(597,69,'Romanian, Moldavian, Moldovan','ro','ro_RO',NULL,NULL,0,140,NULL,0,0,1,NULL,NULL,NULL),(598,69,'Russian','ru','ru_RU',NULL,NULL,0,141,NULL,0,0,1,NULL,NULL,NULL),(599,69,'Sanskrit','sa','sa_IN',NULL,NULL,0,142,NULL,0,0,0,NULL,NULL,NULL),(600,69,'Sardinian','sc','sc_IT',NULL,NULL,0,143,NULL,0,0,0,NULL,NULL,NULL),(601,69,'Sindhi','sd','sd_IN',NULL,NULL,0,144,NULL,0,0,0,NULL,NULL,NULL),(602,69,'Northern Sami','se','se_NO',NULL,NULL,0,145,NULL,0,0,0,NULL,NULL,NULL),(603,69,'Samoan','sm','sm_WS',NULL,NULL,0,146,NULL,0,0,0,NULL,NULL,NULL),(604,69,'Sango','sg','sg_CF',NULL,NULL,0,147,NULL,0,0,0,NULL,NULL,NULL),(605,69,'Serbian','sr','sr_RS',NULL,NULL,0,148,NULL,0,0,0,NULL,NULL,NULL),(606,69,'Scottish Gaelic; Gaelic','gd','gd_GB',NULL,NULL,0,149,NULL,0,0,0,NULL,NULL,NULL),(607,69,'Shona','sn','sn_ZW',NULL,NULL,0,150,NULL,0,0,0,NULL,NULL,NULL),(608,69,'Sinhala, Sinhalese','si','si_LK',NULL,NULL,0,151,NULL,0,0,0,NULL,NULL,NULL),(609,69,'Slovak','sk','sk_SK',NULL,NULL,0,152,NULL,0,0,1,NULL,NULL,NULL),(610,69,'Slovene','sl','sl_SI',NULL,NULL,0,153,NULL,0,0,1,NULL,NULL,NULL),(611,69,'Somali','so','so_SO',NULL,NULL,0,154,NULL,0,0,0,NULL,NULL,NULL),(612,69,'Southern Sotho','st','st_ZA',NULL,NULL,0,155,NULL,0,0,0,NULL,NULL,NULL),(613,69,'Spanish; Castilian (Spain)','es','es_ES',NULL,NULL,0,156,NULL,0,0,1,NULL,NULL,NULL),(614,69,'Spanish; Castilian (Mexico)','es','es_MX',NULL,NULL,0,157,NULL,0,0,1,NULL,NULL,NULL),(615,69,'Spanish; Castilian (Puerto Rico)','es','es_PR',NULL,NULL,0,158,NULL,0,0,1,NULL,NULL,NULL),(616,69,'Sundanese','su','su_ID',NULL,NULL,0,159,NULL,0,0,0,NULL,NULL,NULL),(617,69,'Swahili','sw','sw_TZ',NULL,NULL,0,160,NULL,0,0,0,NULL,NULL,NULL),(618,69,'Swati','ss','ss_ZA',NULL,NULL,0,161,NULL,0,0,0,NULL,NULL,NULL),(619,69,'Swedish','sv','sv_SE',NULL,NULL,0,162,NULL,0,0,1,NULL,NULL,NULL),(620,69,'Tamil','ta','ta_IN',NULL,NULL,0,163,NULL,0,0,0,NULL,NULL,NULL),(621,69,'Telugu','te','te_IN',NULL,NULL,0,164,NULL,0,0,1,NULL,NULL,NULL),(622,69,'Tajik','tg','tg_TJ',NULL,NULL,0,165,NULL,0,0,0,NULL,NULL,NULL),(623,69,'Thai','th','th_TH',NULL,NULL,0,166,NULL,0,0,1,NULL,NULL,NULL),(624,69,'Tigrinya','ti','ti_ET',NULL,NULL,0,167,NULL,0,0,0,NULL,NULL,NULL),(625,69,'Tibetan Standard, Tibetan, Central','bo','bo_CN',NULL,NULL,0,168,NULL,0,0,0,NULL,NULL,NULL),(626,69,'Turkmen','tk','tk_TM',NULL,NULL,0,169,NULL,0,0,0,NULL,NULL,NULL),(627,69,'Tagalog','tl','tl_PH',NULL,NULL,0,170,NULL,0,0,0,NULL,NULL,NULL),(628,69,'Tswana','tn','tn_ZA',NULL,NULL,0,171,NULL,0,0,0,NULL,NULL,NULL),(629,69,'Tonga (Tonga Islands)','to','to_TO',NULL,NULL,0,172,NULL,0,0,0,NULL,NULL,NULL),(630,69,'Turkish','tr','tr_TR',NULL,NULL,0,173,NULL,0,0,1,NULL,NULL,NULL),(631,69,'Tsonga','ts','ts_ZA',NULL,NULL,0,174,NULL,0,0,0,NULL,NULL,NULL),(632,69,'Tatar','tt','tt_RU',NULL,NULL,0,175,NULL,0,0,0,NULL,NULL,NULL),(633,69,'Twi','tw','tw_GH',NULL,NULL,0,176,NULL,0,0,0,NULL,NULL,NULL),(634,69,'Tahitian','ty','ty_PF',NULL,NULL,0,177,NULL,0,0,0,NULL,NULL,NULL),(635,69,'Uighur, Uyghur','ug','ug_CN',NULL,NULL,0,178,NULL,0,0,0,NULL,NULL,NULL),(636,69,'Ukrainian','uk','uk_UA',NULL,NULL,0,179,NULL,0,0,0,NULL,NULL,NULL),(637,69,'Urdu','ur','ur_PK',NULL,NULL,0,180,NULL,0,0,0,NULL,NULL,NULL),(638,69,'Uzbek','uz','uz_UZ',NULL,NULL,0,181,NULL,0,0,0,NULL,NULL,NULL),(639,69,'Venda','ve','ve_ZA',NULL,NULL,0,182,NULL,0,0,0,NULL,NULL,NULL),(640,69,'Vietnamese','vi','vi_VN',NULL,NULL,0,183,NULL,0,0,1,NULL,NULL,NULL),(641,69,'Volapük','vo','vo_XX',NULL,NULL,0,184,NULL,0,0,0,NULL,NULL,NULL),(642,69,'Walloon','wa','wa_BE',NULL,NULL,0,185,NULL,0,0,0,NULL,NULL,NULL),(643,69,'Welsh','cy','cy_GB',NULL,NULL,0,186,NULL,0,0,0,NULL,NULL,NULL),(644,69,'Wolof','wo','wo_SN',NULL,NULL,0,187,NULL,0,0,0,NULL,NULL,NULL),(645,69,'Western Frisian','fy','fy_NL',NULL,NULL,0,188,NULL,0,0,0,NULL,NULL,NULL),(646,69,'Xhosa','xh','xh_ZA',NULL,NULL,0,189,NULL,0,0,0,NULL,NULL,NULL),(647,69,'Yiddish','yi','yi_US',NULL,NULL,0,190,NULL,0,0,0,NULL,NULL,NULL),(648,69,'Yoruba','yo','yo_NG',NULL,NULL,0,191,NULL,0,0,0,NULL,NULL,NULL),(649,69,'Zhuang, Chuang','za','za_CN',NULL,NULL,0,192,NULL,0,0,0,NULL,NULL,NULL),(650,69,'Zulu','zu','zu_ZA',NULL,NULL,0,193,NULL,0,0,0,NULL,NULL,NULL),(651,70,'In Person','1','in_person',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(652,70,'Phone','2','phone',NULL,0,1,2,NULL,0,1,1,NULL,NULL,NULL),(653,70,'Email','3','email',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(654,70,'Fax','4','fax',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(655,70,'Letter Mail','5','letter_mail',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL),(656,71,'Cases - Send Copy of an Activity','1','case_activity',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(657,72,'Contributions - Duplicate Organization Alert','1','contribution_dupalert',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(658,72,'Contributions - Receipt (off-line)','2','contribution_offline_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(659,72,'Contributions - Receipt (on-line)','3','contribution_online_receipt',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(660,72,'Contributions - Recurring Start and End Notification','4','contribution_recurring_notify',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(661,72,'Contributions - Recurring Cancellation Notification','5','contribution_recurring_cancelled',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(662,72,'Contributions - Recurring Billing Updates','6','contribution_recurring_billing',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(663,72,'Contributions - Recurring Updates','7','contribution_recurring_edit',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(664,72,'Personal Campaign Pages - Admin Notification','8','pcp_notify',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(665,72,'Personal Campaign Pages - Supporter Status Change Notification','9','pcp_status_change',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(666,72,'Personal Campaign Pages - Supporter Welcome','10','pcp_supporter_notify',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL),(667,73,'Events - Registration Confirmation and Receipt (off-line)','1','event_offline_receipt',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(668,73,'Events - Registration Confirmation and Receipt (on-line)','2','event_online_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(669,73,'Events - Receipt only','3','event_registration_receipt',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(670,73,'Events - Registration Cancellation Notice','4','participant_cancelled',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(671,73,'Events - Registration Confirmation Invite','5','participant_confirm',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(672,73,'Events - Pending Registration Expiration Notice','6','participant_expired',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(673,74,'Tell-a-Friend Email','1','friend',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(674,75,'Memberships - Signup and Renewal Receipts (off-line)','1','membership_offline_receipt',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(675,75,'Memberships - Receipt (on-line)','2','membership_online_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(676,75,'Memberships - Auto-renew Cancellation Notification','3','membership_autorenew_cancelled',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(677,75,'Memberships - Auto-renew Billing Updates','4','membership_autorenew_billing',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(678,76,'Test-drive - Receipt Header','1','test_preview',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(679,77,'Pledges - Acknowledgement','1','pledge_acknowledge',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(680,77,'Pledges - Payment Reminder','2','pledge_reminder',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(681,78,'Profiles - Admin Notification','1','uf_notify',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(682,79,'Petition - signature added','1','petition_sign',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(683,79,'Petition - need verification','2','petition_confirmation_needed',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(684,2,'Interview','41','Interview',NULL,0,NULL,41,'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,'Text Message (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,0,1,7,NULL,NULL),(19,2,'Follow up','14','Follow up',NULL,0,0,14,'',0,0,1,7,NULL,NULL),(20,2,'Change Case Type','15','Change Case Type',NULL,0,0,15,'',0,0,1,7,NULL,NULL),(21,2,'Change Case Status','16','Change Case Status',NULL,0,0,16,'',0,0,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,0,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,0,1,7,NULL,NULL),(26,2,'Remove Case Role','21','Remove Case Role',NULL,0,0,21,'',0,0,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,'BULK SMS','34','BULK SMS',NULL,1,NULL,34,'BULK 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,3,'Female','1','Female',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(47,3,'Male','2','Male',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(48,3,'Transgender','3','Transgender',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(49,4,'Yahoo','1','Yahoo',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(50,4,'MSN','2','Msn',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(51,4,'AIM','3','Aim',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(52,4,'GTalk','4','Gtalk',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(53,4,'Jabber','5','Jabber',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(54,4,'Skype','6','Skype',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(55,5,'Sprint','1','Sprint',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(56,5,'Verizon','2','Verizon',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(57,5,'Cingular','3','Cingular',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(58,6,'Mrs.','1','Mrs.',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(59,6,'Ms.','2','Ms.',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(60,6,'Mr.','3','Mr.',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(61,6,'Dr.','4','Dr.',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(62,7,'Jr.','1','Jr.',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(63,7,'Sr.','2','Sr.',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(64,7,'II','3','II',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(65,7,'III','4','III',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(66,7,'IV','5','IV',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(67,7,'V','6','V',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(68,7,'VI','7','VI',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(69,7,'VII','8','VII',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(70,8,'Administrator','1','Admin',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(71,8,'Authenticated','2','Auth',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(72,9,'Visa','1','Visa',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(73,9,'MasterCard','2','MasterCard',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(74,9,'Amex','3','Amex',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(75,9,'Discover','4','Discover',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(76,10,'Credit Card','1','Credit Card',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(77,10,'Debit Card','2','Debit Card',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(78,10,'Cash','3','Cash',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(79,10,'Check','4','Check',NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(80,10,'EFT','5','EFT',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(81,11,'Completed','1','Completed',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(82,11,'Pending','2','Pending',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(83,11,'Cancelled','3','Cancelled',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(84,11,'Failed','4','Failed',NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(85,11,'In Progress','5','In Progress',NULL,0,NULL,5,NULL,0,1,1,NULL,NULL,NULL),(86,11,'Overdue','6','Overdue',NULL,0,NULL,6,NULL,0,1,1,NULL,NULL,NULL),(87,12,'Waiting Review','1','Waiting Review',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(88,12,'Approved','2','Approved',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(89,12,'Not Approved','3','Not Approved',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(90,13,'Attendee','1','Attendee',NULL,1,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(91,13,'Volunteer','2','Volunteer',NULL,1,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(92,13,'Host','3','Host',NULL,1,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(93,13,'Speaker','4','Speaker',NULL,1,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(94,14,'Conference','1','Conference',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(95,14,'Exhibition','2','Exhibition',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(96,14,'Fundraiser','3','Fundraiser',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(97,14,'Meeting','4','Meeting',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(98,14,'Performance','5','Performance',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(99,14,'Workshop','6','Workshop',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(100,15,'Activities','1','activity',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(101,15,'Relationships','2','rel',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(102,15,'Groups','3','group',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(103,15,'Notes','4','note',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(104,15,'Tags','5','tag',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(105,15,'Change Log','6','log',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(106,15,'Contributions','7','CiviContribute',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(107,15,'Memberships','8','CiviMember',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(108,15,'Events','9','CiviEvent',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(109,15,'Cases','10','CiviCase',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(110,15,'Grants','11','CiviGrant',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(111,15,'Pledges','13','CiviPledge',NULL,0,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(112,16,'Custom Data','1','CustomData',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(113,16,'Address','2','Address',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(114,16,'Communication Preferences','3','CommunicationPreferences',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(115,16,'Notes','4','Notes',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(116,16,'Demographics','5','Demographics',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(117,16,'Tags and Groups','6','TagsAndGroups',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(118,16,'Email','7','Email',NULL,1,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(119,16,'Phone','8','Phone',NULL,1,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(120,16,'Instant Messenger','9','IM',NULL,1,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(121,16,'Open ID','10','OpenID',NULL,1,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(122,16,'Website','11','Website',NULL,1,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(123,17,'Address Fields','1','location',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(124,17,'Custom Fields','2','custom',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(125,17,'Activities','3','activity',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(126,17,'Relationships','4','relationship',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(127,17,'Notes','5','notes',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(128,17,'Change Log','6','changeLog',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(129,17,'Contributions','7','CiviContribute',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(130,17,'Memberships','8','CiviMember',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(131,17,'Events','9','CiviEvent',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(132,17,'Cases','10','CiviCase',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(133,17,'Grants','12','CiviGrant',NULL,0,NULL,14,NULL,0,0,1,NULL,NULL,NULL),(134,17,'Demographics','13','demographics',NULL,0,NULL,15,NULL,0,0,1,NULL,NULL,NULL),(135,17,'Pledges','15','CiviPledge',NULL,0,NULL,17,NULL,0,0,1,NULL,NULL,NULL),(136,17,'Contact Type','16','contactType',NULL,0,NULL,18,NULL,0,0,1,NULL,NULL,NULL),(137,17,'Groups','17','groups',NULL,0,NULL,19,NULL,0,0,1,NULL,NULL,NULL),(138,17,'Tags','18','tags',NULL,0,NULL,20,NULL,0,0,1,NULL,NULL,NULL),(139,17,'Mailing','19','CiviMail',NULL,0,NULL,21,NULL,0,0,1,NULL,NULL,NULL),(140,18,'Groups','1','Groups',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(141,18,'Contributions','2','CiviContribute',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(142,18,'Memberships','3','CiviMember',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(143,18,'Events','4','CiviEvent',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(144,18,'My Contacts / Organizations','5','Permissioned Orgs',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(145,18,'Pledges','7','CiviPledge',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(146,18,'Personal Campaign Pages','8','PCP',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(147,18,'Assigned Activities','9','Assigned Activities',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(148,44,'Email Address','2','email',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(149,44,'Phone','3','phone',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(150,44,'Street Address','4','street_address',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(151,44,'City','5','city',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(152,44,'State/Province','6','state_province',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(153,44,'Country','7','country',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(154,45,'Email Address','2','email',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(155,45,'Phone','3','phone',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(156,45,'Street Address','4','street_address',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(157,45,'City','5','city',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(158,45,'State/Province','6','state_province',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(159,45,'Country','7','country',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(160,19,'Street Address','1','street_address',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(161,19,'Addt\'l Address 1','2','supplemental_address_1',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(162,19,'Addt\'l Address 2','3','supplemental_address_2',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(163,19,'City','4','city',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(164,19,'Zip / Postal Code','5','postal_code',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(165,19,'Postal Code Suffix','6','postal_code_suffix',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(166,19,'County','7','county',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(167,19,'State / Province','8','state_province',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(168,19,'Country','9','country',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(169,19,'Latitude','10','geo_code_1',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(170,19,'Longitude','11','geo_code_2',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(171,19,'Address Name','12','address_name',NULL,0,NULL,12,NULL,0,0,1,NULL,NULL,NULL),(172,19,'Street Address Parsing','13','street_address_parsing',NULL,0,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(173,20,'Access Control','1',NULL,NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(174,20,'Mailing List','2',NULL,NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(175,21,'Pending','1','Pending',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(176,21,'Granted','2','Granted',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(177,21,'Rejected','3','Rejected',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(178,23,'In Honor of','1','In Honor of',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(179,23,'In Memory of','2','In Memory of',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(180,24,'CRM_Contact_Form_Search_Custom_Sample','1','CRM_Contact_Form_Search_Custom_Sample',NULL,0,NULL,1,'Household Name and State',0,0,1,NULL,NULL,NULL),(181,24,'CRM_Contact_Form_Search_Custom_ContributionAggregate','2','CRM_Contact_Form_Search_Custom_ContributionAggregate',NULL,0,NULL,2,'Contribution Aggregate',0,0,1,NULL,NULL,NULL),(182,24,'CRM_Contact_Form_Search_Custom_Basic','3','CRM_Contact_Form_Search_Custom_Basic',NULL,0,NULL,3,'Basic Search',0,0,1,NULL,NULL,NULL),(183,24,'CRM_Contact_Form_Search_Custom_Group','4','CRM_Contact_Form_Search_Custom_Group',NULL,0,NULL,4,'Include / Exclude Search',0,0,1,NULL,NULL,NULL),(184,24,'CRM_Contact_Form_Search_Custom_PostalMailing','5','CRM_Contact_Form_Search_Custom_PostalMailing',NULL,0,NULL,5,'Postal Mailing',0,0,1,NULL,NULL,NULL),(185,24,'CRM_Contact_Form_Search_Custom_Proximity','6','CRM_Contact_Form_Search_Custom_Proximity',NULL,0,NULL,6,'Proximity Search',0,0,1,NULL,NULL,NULL),(186,24,'CRM_Contact_Form_Search_Custom_EventAggregate','7','CRM_Contact_Form_Search_Custom_EventAggregate',NULL,0,NULL,7,'Event Aggregate',0,0,1,NULL,NULL,NULL),(187,24,'CRM_Contact_Form_Search_Custom_ActivitySearch','8','CRM_Contact_Form_Search_Custom_ActivitySearch',NULL,0,NULL,8,'Activity Search',0,0,1,NULL,NULL,NULL),(188,24,'CRM_Contact_Form_Search_Custom_PriceSet','9','CRM_Contact_Form_Search_Custom_PriceSet',NULL,0,NULL,9,'Price Set Details for Event Participants',0,0,1,NULL,NULL,NULL),(189,24,'CRM_Contact_Form_Search_Custom_ZipCodeRange','10','CRM_Contact_Form_Search_Custom_ZipCodeRange',NULL,0,NULL,10,'Zip Code Range',0,0,1,NULL,NULL,NULL),(190,24,'CRM_Contact_Form_Search_Custom_DateAdded','11','CRM_Contact_Form_Search_Custom_DateAdded',NULL,0,NULL,11,'Date Added to CiviCRM',0,0,1,NULL,NULL,NULL),(191,24,'CRM_Contact_Form_Search_Custom_MultipleValues','12','CRM_Contact_Form_Search_Custom_MultipleValues',NULL,0,NULL,12,'Custom Group Multiple Values Listing',0,0,1,NULL,NULL,NULL),(192,24,'CRM_Contact_Form_Search_Custom_ContribSYBNT','13','CRM_Contact_Form_Search_Custom_ContribSYBNT',NULL,0,NULL,13,'Contributions made in Year X and not Year Y',0,0,1,NULL,NULL,NULL),(193,24,'CRM_Contact_Form_Search_Custom_TagContributions','14','CRM_Contact_Form_Search_Custom_TagContributions',NULL,0,NULL,14,'Find Contribution Amounts by Tag',0,0,1,NULL,NULL,NULL),(194,24,'CRM_Contact_Form_Search_Custom_FullText','15','CRM_Contact_Form_Search_Custom_FullText',NULL,0,NULL,15,'Full-text Search',0,0,1,NULL,NULL,NULL),(195,40,'Constituent Report (Summary)','contact/summary','CRM_Report_Form_Contact_Summary',NULL,0,NULL,1,'Provides a list of address and telephone information for constituent records in your system.',0,0,1,NULL,NULL,NULL),(196,40,'Constituent Report (Detail)','contact/detail','CRM_Report_Form_Contact_Detail',NULL,0,NULL,2,'Provides contact-related information on contributions, memberships, events and activities.',0,0,1,NULL,NULL,NULL),(197,40,'Activity Report','activity','CRM_Report_Form_Activity',NULL,0,NULL,3,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)',0,0,1,NULL,NULL,NULL),(198,40,'Walk / Phone List Report','walklist','CRM_Report_Form_Walklist_Walklist',NULL,0,NULL,4,'Provides a detailed report for your walk/phonelist for targetted contacts',0,0,0,NULL,NULL,NULL),(199,40,'Current Employer Report','contact/currentEmployer','CRM_Report_Form_Contact_CurrentEmployer',NULL,0,NULL,5,'Provides detail list of employer employee relationships along with employment details Ex Join Date',0,0,1,NULL,NULL,NULL),(200,40,'Contribution Summary Report','contribute/summary','CRM_Report_Form_Contribute_Summary',NULL,0,NULL,6,'Groups and totals contributions by criteria including contact, time period, contribution type, contributor location, etc.',0,0,1,2,NULL,NULL),(201,40,'Contribution Detail Report','contribute/detail','CRM_Report_Form_Contribute_Detail',NULL,0,NULL,7,'Lists specific contributions by criteria including contact, time period, contribution type, contributor location, etc. Contribution summary report points to this report for contribution details.',0,0,1,2,NULL,NULL),(202,40,'Repeat Contributions Report','contribute/repeat','CRM_Report_Form_Contribute_Repeat',NULL,0,NULL,8,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.',0,0,1,2,NULL,NULL),(203,40,'Contributions by Organization Report','contribute/organizationSummary','CRM_Report_Form_Contribute_OrganizationSummary',NULL,0,NULL,9,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.',0,0,1,2,NULL,NULL),(204,40,'Contributions by Household Report','contribute/householdSummary','CRM_Report_Form_Contribute_HouseholdSummary',NULL,0,NULL,10,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.',0,0,1,2,NULL,NULL),(205,40,'Top Donors Report','contribute/topDonor','CRM_Report_Form_Contribute_TopDonor',NULL,0,NULL,11,'Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).',0,0,1,2,NULL,NULL),(206,40,'SYBUNT Report','contribute/sybunt','CRM_Report_Form_Contribute_Sybunt',NULL,0,NULL,12,'SYBUNT means some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.',0,0,1,2,NULL,NULL),(207,40,'LYBUNT Report','contribute/lybunt','CRM_Report_Form_Contribute_Lybunt',NULL,0,NULL,13,'LYBUNT means last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.',0,0,1,2,NULL,NULL),(208,40,'Soft Credit Report','contribute/softcredit','CRM_Report_Form_Contribute_SoftCredit',NULL,0,NULL,14,'Shows contributions made by contacts that have been soft-credited to other contacts.',0,0,1,2,NULL,NULL),(209,40,'Membership Report (Summary)','member/summary','CRM_Report_Form_Member_Summary',NULL,0,NULL,15,'Provides a summary of memberships by type and join date.',0,0,1,3,NULL,NULL),(210,40,'Membership Report (Detail)','member/detail','CRM_Report_Form_Member_Detail',NULL,0,NULL,16,'Provides a list of members along with their membership status and membership details (Join Date, Start Date, End Date). Can also display contributions (payments) associated with each membership.',0,0,1,3,NULL,NULL),(211,40,'Membership Report (Lapsed)','member/lapse','CRM_Report_Form_Member_Lapse',NULL,0,NULL,17,'Provides a list of memberships that lapsed or will lapse before the date you specify.',0,0,1,3,NULL,NULL),(212,40,'Event Participant Report (List)','event/participantListing','CRM_Report_Form_Event_ParticipantListing',NULL,0,NULL,18,'Provides lists of participants for an event.',0,0,1,1,NULL,NULL),(213,40,'Event Income Report (Summary)','event/summary','CRM_Report_Form_Event_Summary',NULL,0,NULL,19,'Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.',0,0,1,1,NULL,NULL),(214,40,'Event Income Report (Detail)','event/income','CRM_Report_Form_Event_Income',NULL,0,NULL,20,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.',0,0,1,1,NULL,NULL),(215,40,'Pledge Report','pledge/detail','CRM_Report_Form_Pledge_Detail',NULL,0,NULL,21,'Pledge Report',0,0,1,6,NULL,NULL),(216,40,'Pledged But not Paid Report','pledge/pbnp','CRM_Report_Form_Pledge_Pbnp',NULL,0,NULL,22,'Pledged but not Paid Report',0,0,1,6,NULL,NULL),(217,40,'Relationship Report','contact/relationship','CRM_Report_Form_Contact_Relationship',NULL,0,NULL,23,'Relationship Report',0,0,1,NULL,NULL,NULL),(218,40,'Case Summary Report','case/summary','CRM_Report_Form_Case_Summary',NULL,0,NULL,24,'Provides a summary of cases and their duration by date range, status, staff member and / or case role.',0,0,1,7,NULL,NULL),(219,40,'Case Time Spent Report','case/timespent','CRM_Report_Form_Case_TimeSpent',NULL,0,NULL,25,'Aggregates time spent on case and / or or non-case activities by activity type and contact.',0,0,1,7,NULL,NULL),(220,40,'Contact Demographics Report','case/demographics','CRM_Report_Form_Case_Demographics',NULL,0,NULL,26,'Demographic breakdown for case clients (and or non-case contacts) in your database. Includes custom contact fields.',0,0,1,7,NULL,NULL),(221,40,'Database Log Report','contact/log','CRM_Report_Form_Contact_Log',NULL,0,NULL,27,'Log of contact and activity records created or updated in a given date range.',0,0,1,NULL,NULL,NULL),(222,40,'Activity Report (Summary)','activitySummary','CRM_Report_Form_ActivitySummary',NULL,0,NULL,28,'Shows activity statistics by type / date',0,0,1,NULL,NULL,NULL),(223,40,'Bookkeeping Transactions Report','contribute/bookkeeping','CRM_Report_Form_Contribute_Bookkeeping',NULL,0,0,29,'Shows Bookkeeping Transactions Report',0,0,1,2,NULL,NULL),(224,40,'Grant Report (Detail)','grant/detail','CRM_Report_Form_Grant_Detail',NULL,0,0,30,'Grant Report Detail',0,0,1,5,NULL,NULL),(225,40,'Participant list Count Report','event/participantlist','CRM_Report_Form_Event_ParticipantListCount',NULL,0,0,31,'Shows the Participant list with Participant Count.',0,0,1,1,NULL,NULL),(226,40,'Income Count Summary Report','event/incomesummary','CRM_Report_Form_Event_IncomeCountSummary',NULL,0,0,32,'Shows the Income Summary of events with Count.',0,0,1,1,NULL,NULL),(227,40,'Case Detail Report','case/detail','CRM_Report_Form_Case_Detail',NULL,0,0,33,'Case Details',0,0,1,7,NULL,NULL),(228,40,'Mail Bounce Report','Mailing/bounce','CRM_Report_Form_Mailing_Bounce',NULL,0,NULL,34,'Bounce Report for mailings',0,0,1,4,NULL,NULL),(229,40,'Mail Summary Report','Mailing/summary','CRM_Report_Form_Mailing_Summary',NULL,0,NULL,35,'Summary statistics for mailings',0,0,1,4,NULL,NULL),(230,40,'Mail Opened Report','Mailing/opened','CRM_Report_Form_Mailing_Opened',NULL,0,NULL,36,'Display contacts who opened emails from a mailing',0,0,1,4,NULL,NULL),(231,40,'Mail Clickthrough Report','Mailing/clicks','CRM_Report_Form_Mailing_Clicks',NULL,0,NULL,37,'Display clicks from each mailing',0,0,1,4,NULL,NULL),(232,40,'Contact Logging Report (Summary)','logging/contact/summary','CRM_Report_Form_Contact_LoggingSummary',NULL,0,NULL,38,'Contact modification report for the logging infrastructure (summary).',0,0,0,NULL,NULL,NULL),(233,40,'Contact Logging Report (Detail)','logging/contact/detail','CRM_Report_Form_Contact_LoggingDetail',NULL,0,NULL,39,'Contact modification report for the logging infrastructure (detail).',0,0,0,NULL,NULL,NULL),(234,40,'Contribute Logging Report (Summary)','logging/contribute/summary','CRM_Report_Form_Contribute_LoggingSummary',NULL,0,NULL,40,'Contribute modification report for the logging infrastructure (summary).',0,0,0,2,NULL,NULL),(235,40,'Contribute Logging Report (Detail)','logging/contribute/detail','CRM_Report_Form_Contribute_LoggingDetail',NULL,0,NULL,41,'Contribute modification report for the logging infrastructure (detail).',0,0,0,2,NULL,NULL),(236,40,'Grant Report (Statistics)','grant/statistics','CRM_Report_Form_Grant_Statistics',NULL,0,NULL,42,'Shows statistics for Grants.',0,0,1,5,NULL,NULL),(237,40,'Survey Report (Detail)','survey/detail','CRM_Report_Form_Campaign_SurveyDetails',NULL,0,NULL,43,'Detailed report for canvassing, phone-banking, walk lists or other surveys.',0,0,1,9,NULL,NULL),(238,40,'Personal Campaign Page Report','contribute/pcp','CRM_Report_Form_Contribute_PCP',NULL,0,NULL,44,'Summarizes amount raised and number of contributors for each Personal Campaign Page.',0,0,1,2,NULL,NULL),(239,40,'Pledge Summary Report','pledge/summary','CRM_Report_Form_Pledge_Summary',NULL,0,NULL,45,'Summary of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.',0,0,1,6,NULL,NULL),(240,40,'Contribution History By Relationship Report','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),(241,40,'Mail Detail Report','mailing/detail','CRM_Report_Form_Mailing_Detail',NULL,0,NULL,47,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.',0,0,1,4,NULL,NULL),(242,40,'Contribution and Membership Details','member/contributionDetail','CRM_Report_Form_Member_ContributionDetail',NULL,0,NULL,48,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.',0,0,1,3,NULL,NULL),(243,25,'Scheduled','1','Scheduled',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(244,25,'Completed','2','Completed',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(245,25,'Cancelled','3','Cancelled',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(246,25,'Left Message','4','Left Message',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(247,25,'Unreachable','5','Unreachable',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(248,25,'Not Required','6','Not Required',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(249,27,'Ongoing','1','Open','Opened',0,1,1,NULL,0,1,1,NULL,NULL,NULL),(250,27,'Resolved','2','Closed','Closed',0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(251,27,'Urgent','3','Urgent','Opened',0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(252,28,'Name Only','1','Name Only',NULL,0,0,1,'CRM_Event_Page_ParticipantListing_Name',0,1,1,NULL,NULL,NULL),(253,28,'Name and Email','2','Name and Email',NULL,0,0,2,'CRM_Event_Page_ParticipantListing_NameAndEmail',0,1,1,NULL,NULL,NULL),(254,28,'Name, Status and Register Date','3','Name, Status and Register Date',NULL,0,0,3,'CRM_Event_Page_ParticipantListing_NameStatusAndDate',0,1,1,NULL,NULL,NULL),(255,29,'jpg','1',NULL,NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL),(256,29,'jpeg','2',NULL,NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL),(257,29,'png','3',NULL,NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL),(258,29,'gif','4',NULL,NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL),(259,29,'txt','5',NULL,NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL),(260,29,'pdf','6',NULL,NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL),(261,29,'doc','7',NULL,NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL),(262,29,'xls','8',NULL,NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL),(263,29,'rtf','9',NULL,NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL),(264,29,'csv','10',NULL,NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL),(265,29,'ppt','11',NULL,NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL),(266,29,'docx','12',NULL,NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL),(267,29,'xlsx','13',NULL,NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL),(268,32,'TinyMCE','1',NULL,NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(269,32,'CKEditor','2',NULL,NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(270,32,'Joomla Default Editor','3',NULL,NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(271,32,'Drupal Default Editor','4',NULL,NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(272,31,'Search Builder','1','Search Builder',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(273,31,'Import Contact','2','Import Contact',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(274,31,'Import Activity','3','Import Activity',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(275,31,'Import Contribution','4','Import Contribution',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(276,31,'Import Membership','5','Import Membership',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL),(277,31,'Import Participant','6','Import Participant',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL),(278,31,'Export Contact','7','Export Contact',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL),(279,31,'Export Contribution','8','Export Contribution',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL),(280,31,'Export Membership','9','Export Membership',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL),(281,31,'Export Participant','10','Export Participant',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL),(282,31,'Export Pledge','11','Export Pledge',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL),(283,31,'Export Case','12','Export Case',NULL,0,0,12,NULL,0,1,1,NULL,NULL,NULL),(284,31,'Export Grant','13','Export Grant',NULL,0,0,13,NULL,0,1,1,NULL,NULL,NULL),(285,31,'Export Activity','14','Export Activity',NULL,0,0,14,NULL,0,1,1,NULL,NULL,NULL),(286,33,'day','day','day',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(287,33,'week','week','week',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(288,33,'month','month','month',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(289,33,'year','year','year',NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(290,34,'Phone','1','Phone',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(291,34,'Mobile','2','Mobile',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(292,34,'Fax','3','Fax',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(293,34,'Pager','4','Pager',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(294,34,'Voicemail','5','Voicemail',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(295,35,'Participant Role','1','ParticipantRole',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(296,35,'Participant Event Name','2','ParticipantEventName',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(297,35,'Participant Event Type','3','ParticipantEventType',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(298,36,'Public','1','public',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(299,36,'Admin','2','admin',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(300,37,'IMAP','1','IMAP',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(301,37,'Maildir','2','Maildir',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(302,37,'POP3','3','POP3',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(303,37,'Localdir','4','Localdir',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(304,38,'Urgent','1','Urgent',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(305,38,'Normal','2','Normal',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(306,38,'Low','3','Low',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(307,39,'Vancouver','city_',NULL,NULL,0,NULL,1,NULL,0,0,0,NULL,NULL,NULL),(308,39,'/(19|20)(\\d{2})-(\\d{1,2})-(\\d{1,2})/','date_',NULL,NULL,1,NULL,2,NULL,0,0,0,NULL,NULL,NULL),(309,41,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(310,41,'Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}','2','Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL),(311,41,'Dear {contact.individual_prefix} {contact.last_name}','3','Dear {contact.individual_prefix} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL),(312,41,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(313,41,'Dear {contact.household_name}','5','Dear {contact.househols_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL),(314,42,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(315,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),(316,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),(317,42,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(318,42,'Dear {contact.household_name}','5','Dear {contact.househols_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL),(319,43,'{contact.individual_prefix}{ } {contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.individual_suffix}','1','}{contact.individual_prefix}{ } {contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.individual_suffix}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(320,43,'{contact.household_name}','2','{contact.household_name}',NULL,2,1,2,NULL,0,0,1,NULL,NULL,NULL),(321,43,'{contact.organization_name}','3','{contact.organization_name}',NULL,3,1,3,NULL,0,0,1,NULL,NULL,NULL),(322,43,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(323,46,'Asset','1','Asset',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(324,46,'Liability','2','Liability',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(325,46,'Income','3','Income',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(326,46,'Expense','4','Expense',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(327,47,'Home','1','Home',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(328,47,'Work','2','Work',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(329,47,'Facebook','3','Facebook',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(330,47,'Twitter','4','Twitter',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(331,47,'MySpace','5','MySpace',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(332,47,'Main','6','Main',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(333,48,'Contacts','civicrm_contact','Contacts',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(334,48,'Activities','civicrm_activity','Activities',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(335,48,'Cases','civicrm_case','Cases',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(336,49,'USD ($)','USD','USD',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(337,50,'Name Only','1','CRM_Event_Badge_Simple',NULL,0,0,1,'Simple Event Name Badge',0,1,1,NULL,NULL,NULL),(338,50,'Name Tent','2','CRM_Event_Badge_NameTent',NULL,0,0,2,'Name Tent',0,1,1,NULL,NULL,NULL),(339,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),(340,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),(341,51,'None','0','',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(342,51,'Author Only','1','',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(343,52,'Direct Mail','1','Direct Mail',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(344,52,'Referral Program','2','Referral Program',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(345,52,'Constituent Engagement','3','Constituent Engagement',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(346,53,'Planned','1','Planned',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(347,53,'In Progress','2','In Progress',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(348,53,'Completed','3','Completed',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(349,53,'Cancelled','4','Cancelled',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(350,56,'1','1','1',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(351,56,'2','2','2',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(352,56,'3','3','3',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(353,56,'4','4','4',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(354,56,'5','5','5',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(355,58,'Letter','{\"metric\":\"in\",\"width\":8.5,\"height\":11}','letter',NULL,NULL,1,1,NULL,0,0,1,NULL,NULL,NULL),(356,58,'Legal','{\"metric\":\"in\",\"width\":8.5,\"height\":14}','legal',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(357,58,'Ledger','{\"metric\":\"in\",\"width\":17,\"height\":11}','ledger',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(358,58,'Tabloid','{\"metric\":\"in\",\"width\":11,\"height\":17}','tabloid',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(359,58,'Executive','{\"metric\":\"in\",\"width\":7.25,\"height\":10.5}','executive',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(360,58,'Folio','{\"metric\":\"in\",\"width\":8.5,\"height\":13}','folio',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(361,58,'Envelope #9','{\"metric\":\"pt\",\"width\":638.93,\"height\":278.93}','envelope-9',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(362,58,'Envelope #10','{\"metric\":\"pt\",\"width\":684,\"height\":297}','envelope-10',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(363,58,'Envelope #11','{\"metric\":\"pt\",\"width\":747,\"height\":324}','envelope-11',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(364,58,'Envelope #12','{\"metric\":\"pt\",\"width\":792,\"height\":342}','envelope-12',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL),(365,58,'Envelope #14','{\"metric\":\"pt\",\"width\":828,\"height\":360}','envelope-14',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL),(366,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),(367,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),(368,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),(369,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),(370,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),(371,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),(372,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),(373,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),(374,58,'ISO A0','{\"metric\":\"pt\",\"width\":2383.94,\"height\":3370.39}','a0',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL),(375,58,'ISO A1','{\"metric\":\"pt\",\"width\":1683.78,\"height\":2383.94}','a1',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL),(376,58,'ISO A2','{\"metric\":\"pt\",\"width\":1190.55,\"height\":1683.78}','a2',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL),(377,58,'ISO A3','{\"metric\":\"pt\",\"width\":841.89,\"height\":1190.55}','a3',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL),(378,58,'ISO A4','{\"metric\":\"pt\",\"width\":595.28,\"height\":841.89}','a4',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL),(379,58,'ISO A5','{\"metric\":\"pt\",\"width\":419.53,\"height\":595.28}','a5',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL),(380,58,'ISO A6','{\"metric\":\"pt\",\"width\":297.64,\"height\":419.53}','a6',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL),(381,58,'ISO A7','{\"metric\":\"pt\",\"width\":209.76,\"height\":297.64}','a7',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL),(382,58,'ISO A8','{\"metric\":\"pt\",\"width\":147.4,\"height\":209.76}','a8',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL),(383,58,'ISO A9','{\"metric\":\"pt\",\"width\":104.88,\"height\":147.4}','a9',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL),(384,58,'ISO A10','{\"metric\":\"pt\",\"width\":73.7,\"height\":104.88}','a10',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL),(385,58,'ISO B0','{\"metric\":\"pt\",\"width\":2834.65,\"height\":4008.19}','b0',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL),(386,58,'ISO B1','{\"metric\":\"pt\",\"width\":2004.09,\"height\":2834.65}','b1',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL),(387,58,'ISO B2','{\"metric\":\"pt\",\"width\":1417.32,\"height\":2004.09}','b2',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL),(388,58,'ISO B3','{\"metric\":\"pt\",\"width\":1000.63,\"height\":1417.32}','b3',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL),(389,58,'ISO B4','{\"metric\":\"pt\",\"width\":708.66,\"height\":1000.63}','b4',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL),(390,58,'ISO B5','{\"metric\":\"pt\",\"width\":498.9,\"height\":708.66}','b5',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL),(391,58,'ISO B6','{\"metric\":\"pt\",\"width\":354.33,\"height\":498.9}','b6',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL),(392,58,'ISO B7','{\"metric\":\"pt\",\"width\":249.45,\"height\":354.33}','b7',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL),(393,58,'ISO B8','{\"metric\":\"pt\",\"width\":175.75,\"height\":249.45}','b8',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL),(394,58,'ISO B9','{\"metric\":\"pt\",\"width\":124.72,\"height\":175.75}','b9',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL),(395,58,'ISO B10','{\"metric\":\"pt\",\"width\":87.87,\"height\":124.72}','b10',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL),(396,58,'ISO C0','{\"metric\":\"pt\",\"width\":2599.37,\"height\":3676.54}','c0',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL),(397,58,'ISO C1','{\"metric\":\"pt\",\"width\":1836.85,\"height\":2599.37}','c1',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL),(398,58,'ISO C2','{\"metric\":\"pt\",\"width\":1298.27,\"height\":1836.85}','c2',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL),(399,58,'ISO C3','{\"metric\":\"pt\",\"width\":918.43,\"height\":1298.27}','c3',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL),(400,58,'ISO C4','{\"metric\":\"pt\",\"width\":649.13,\"height\":918.43}','c4',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL),(401,58,'ISO C5','{\"metric\":\"pt\",\"width\":459.21,\"height\":649.13}','c5',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL),(402,58,'ISO C6','{\"metric\":\"pt\",\"width\":323.15,\"height\":459.21}','c6',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL),(403,58,'ISO C7','{\"metric\":\"pt\",\"width\":229.61,\"height\":323.15}','c7',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL),(404,58,'ISO C8','{\"metric\":\"pt\",\"width\":161.57,\"height\":229.61}','c8',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL),(405,58,'ISO C9','{\"metric\":\"pt\",\"width\":113.39,\"height\":161.57}','c9',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL),(406,58,'ISO C10','{\"metric\":\"pt\",\"width\":79.37,\"height\":113.39}','c10',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL),(407,58,'ISO RA0','{\"metric\":\"pt\",\"width\":2437.8,\"height\":3458.27}','ra0',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL),(408,58,'ISO RA1','{\"metric\":\"pt\",\"width\":1729.13,\"height\":2437.8}','ra1',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL),(409,58,'ISO RA2','{\"metric\":\"pt\",\"width\":1218.9,\"height\":1729.13}','ra2',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL),(410,58,'ISO RA3','{\"metric\":\"pt\",\"width\":864.57,\"height\":1218.9}','ra3',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL),(411,58,'ISO RA4','{\"metric\":\"pt\",\"width\":609.45,\"height\":864.57}','ra4',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL),(412,58,'ISO SRA0','{\"metric\":\"pt\",\"width\":2551.18,\"height\":3628.35}','sra0',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL),(413,58,'ISO SRA1','{\"metric\":\"pt\",\"width\":1814.17,\"height\":2551.18}','sra1',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL),(414,58,'ISO SRA2','{\"metric\":\"pt\",\"width\":1275.59,\"height\":1814.17}','sra2',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL),(415,58,'ISO SRA3','{\"metric\":\"pt\",\"width\":907.09,\"height\":1275.59}','sra3',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL),(416,58,'ISO SRA4','{\"metric\":\"pt\",\"width\":637.8,\"height\":907.09}','sra4',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL),(417,61,'Activity Assignees','1','Activity Assignees',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(418,61,'Activity Source','2','Activity Source',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(419,61,'Activity Targets','3','Activity Targets',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(420,62,'Participant Role','1','participant_role',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(421,63,'Morning Sessions','1','Morning Sessions',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(422,63,'Evening Sessions','2','Evening Sessions',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(423,64,'Contribution','1','Contribution',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(424,64,'Membership','2','Membership',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(425,65,'Open','1','Open',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(426,65,'Closed','2','Closed',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(427,66,'http','1','http',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(428,66,'xml','2','xml',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(429,66,'smtp','3','smtp',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL),(430,67,'Clickatell','Clickatell','Clickatell',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(431,68,'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),(432,68,'Auto-renew Memberships Only','2','Auto-renew Memberships Only',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(433,68,'Reminder for Both','3','Reminder for Both',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(434,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),(435,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),(436,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),(437,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),(438,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),(439,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),(440,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),(441,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),(442,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),(443,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),(444,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),(445,30,'\"FIXME\" ','1','\"FIXME\" ',NULL,0,1,1,'Default domain email address and from name.',0,0,1,NULL,1,NULL),(446,22,'Emergency','1','Emergency',NULL,0,1,1,NULL,0,0,1,NULL,1,NULL),(447,22,'Family Support','2','Family Support',NULL,0,NULL,2,NULL,0,0,1,NULL,1,NULL),(448,22,'General Protection','3','General Protection',NULL,0,NULL,3,NULL,0,0,1,NULL,1,NULL),(449,22,'Impunity','4','Impunity',NULL,0,NULL,4,NULL,0,0,1,NULL,1,NULL),(450,55,'Approved','1','Approved',NULL,0,1,1,NULL,0,1,1,4,1,NULL),(451,55,'Rejected','2','Rejected',NULL,0,0,2,NULL,0,1,1,4,1,NULL),(452,55,'None','3','None',NULL,0,0,3,NULL,0,1,1,4,1,NULL),(453,57,'Survey','Survey','civicrm_survey',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(454,57,'Cases','Case','civicrm_case',NULL,0,NULL,2,'CRM_Case_PseudoConstant::caseType;',0,0,1,NULL,NULL,NULL),(455,69,'Abkhaz','ab','ab_GE',NULL,NULL,0,1,NULL,0,0,0,NULL,NULL,NULL),(456,69,'Afar','aa','aa_ET',NULL,NULL,0,2,NULL,0,0,0,NULL,NULL,NULL),(457,69,'Afrikaans','af','af_ZA',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(458,69,'Akan','ak','ak_GH',NULL,NULL,0,4,NULL,0,0,0,NULL,NULL,NULL),(459,69,'Albanian','sq','sq_AL',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(460,69,'Amharic','am','am_ET',NULL,NULL,0,6,NULL,0,0,0,NULL,NULL,NULL),(461,69,'Arabic','ar','ar_EG',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(462,69,'Aragonese','an','an_ES',NULL,NULL,0,8,NULL,0,0,0,NULL,NULL,NULL),(463,69,'Armenian','hy','hy_AM',NULL,NULL,0,9,NULL,0,0,0,NULL,NULL,NULL),(464,69,'Assamese','as','as_IN',NULL,NULL,0,10,NULL,0,0,0,NULL,NULL,NULL),(465,69,'Avaric','av','av_RU',NULL,NULL,0,11,NULL,0,0,0,NULL,NULL,NULL),(466,69,'Avestan','ae','ae_XX',NULL,NULL,0,12,NULL,0,0,0,NULL,NULL,NULL),(467,69,'Aymara','ay','ay_BO',NULL,NULL,0,13,NULL,0,0,0,NULL,NULL,NULL),(468,69,'Azerbaijani','az','az_AZ',NULL,NULL,0,14,NULL,0,0,0,NULL,NULL,NULL),(469,69,'Bambara','bm','bm_ML',NULL,NULL,0,15,NULL,0,0,0,NULL,NULL,NULL),(470,69,'Bashkir','ba','ba_RU',NULL,NULL,0,16,NULL,0,0,0,NULL,NULL,NULL),(471,69,'Basque','eu','eu_ES',NULL,NULL,0,17,NULL,0,0,0,NULL,NULL,NULL),(472,69,'Belarusian','be','be_BY',NULL,NULL,0,18,NULL,0,0,0,NULL,NULL,NULL),(473,69,'Bengali','bn','bn_BD',NULL,NULL,0,19,NULL,0,0,0,NULL,NULL,NULL),(474,69,'Bihari','bh','bh_IN',NULL,NULL,0,20,NULL,0,0,0,NULL,NULL,NULL),(475,69,'Bislama','bi','bi_VU',NULL,NULL,0,21,NULL,0,0,0,NULL,NULL,NULL),(476,69,'Bosnian','bs','bs_BA',NULL,NULL,0,22,NULL,0,0,0,NULL,NULL,NULL),(477,69,'Breton','br','br_FR',NULL,NULL,0,23,NULL,0,0,0,NULL,NULL,NULL),(478,69,'Bulgarian','bg','bg_BG',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL),(479,69,'Burmese','my','my_MM',NULL,NULL,0,25,NULL,0,0,0,NULL,NULL,NULL),(480,69,'Catalan; Valencian','ca','ca_ES',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL),(481,69,'Chamorro','ch','ch_GU',NULL,NULL,0,27,NULL,0,0,0,NULL,NULL,NULL),(482,69,'Chechen','ce','ce_RU',NULL,NULL,0,28,NULL,0,0,0,NULL,NULL,NULL),(483,69,'Chichewa; Chewa; Nyanja','ny','ny_MW',NULL,NULL,0,29,NULL,0,0,0,NULL,NULL,NULL),(484,69,'Chinese (China)','zh','zh_CN',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL),(485,69,'Chinese (Taiwan)','zh','zh_TW',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL),(486,69,'Chuvash','cv','cv_RU',NULL,NULL,0,32,NULL,0,0,0,NULL,NULL,NULL),(487,69,'Cornish','kw','kw_GB',NULL,NULL,0,33,NULL,0,0,0,NULL,NULL,NULL),(488,69,'Corsican','co','co_FR',NULL,NULL,0,34,NULL,0,0,0,NULL,NULL,NULL),(489,69,'Cree','cr','cr_CA',NULL,NULL,0,35,NULL,0,0,0,NULL,NULL,NULL),(490,69,'Croatian','hr','hr_HR',NULL,NULL,0,36,NULL,0,0,0,NULL,NULL,NULL),(491,69,'Czech','cs','cs_CZ',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL),(492,69,'Danish','da','da_DK',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL),(493,69,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,NULL,0,39,NULL,0,0,0,NULL,NULL,NULL),(494,69,'Dutch','nl','nl_NL',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL),(495,69,'Dzongkha','dz','dz_BT',NULL,NULL,0,41,NULL,0,0,0,NULL,NULL,NULL),(496,69,'English (Australia)','en','en_AU',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL),(497,69,'English (Canada)','en','en_CA',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL),(498,69,'English (United Kingdom)','en','en_GB',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL),(499,69,'English (United States)','en','en_US',NULL,NULL,1,45,NULL,0,0,1,NULL,NULL,NULL),(500,69,'Esperanto','eo','eo_XX',NULL,NULL,0,46,NULL,0,0,0,NULL,NULL,NULL),(501,69,'Estonian','et','et_EE',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL),(502,69,'Ewe','ee','ee_GH',NULL,NULL,0,48,NULL,0,0,0,NULL,NULL,NULL),(503,69,'Faroese','fo','fo_FO',NULL,NULL,0,49,NULL,0,0,0,NULL,NULL,NULL),(504,69,'Fijian','fj','fj_FJ',NULL,NULL,0,50,NULL,0,0,0,NULL,NULL,NULL),(505,69,'Finnish','fi','fi_FI',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL),(506,69,'French (Canada)','fr','fr_CA',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL),(507,69,'French (France)','fr','fr_FR',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL),(508,69,'Fula; Fulah; Pulaar; Pular','ff','ff_SN',NULL,NULL,0,54,NULL,0,0,0,NULL,NULL,NULL),(509,69,'Galician','gl','gl_ES',NULL,NULL,0,55,NULL,0,0,0,NULL,NULL,NULL),(510,69,'Georgian','ka','ka_GE',NULL,NULL,0,56,NULL,0,0,0,NULL,NULL,NULL),(511,69,'German','de','de_DE',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL),(512,69,'German (Swiss)','de','de_CH',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL),(513,69,'Greek, Modern','el','el_GR',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL),(514,69,'Guaraní','gn','gn_PY',NULL,NULL,0,60,NULL,0,0,0,NULL,NULL,NULL),(515,69,'Gujarati','gu','gu_IN',NULL,NULL,0,61,NULL,0,0,0,NULL,NULL,NULL),(516,69,'Haitian; Haitian Creole','ht','ht_HT',NULL,NULL,0,62,NULL,0,0,0,NULL,NULL,NULL),(517,69,'Hausa','ha','ha_NG',NULL,NULL,0,63,NULL,0,0,0,NULL,NULL,NULL),(518,69,'Hebrew (modern)','he','he_IL',NULL,NULL,0,64,NULL,0,0,1,NULL,NULL,NULL),(519,69,'Herero','hz','hz_NA',NULL,NULL,0,65,NULL,0,0,0,NULL,NULL,NULL),(520,69,'Hindi','hi','hi_IN',NULL,NULL,0,66,NULL,0,0,1,NULL,NULL,NULL),(521,69,'Hiri Motu','ho','ho_PG',NULL,NULL,0,67,NULL,0,0,0,NULL,NULL,NULL),(522,69,'Hungarian','hu','hu_HU',NULL,NULL,0,68,NULL,0,0,1,NULL,NULL,NULL),(523,69,'Interlingua','ia','ia_XX',NULL,NULL,0,69,NULL,0,0,0,NULL,NULL,NULL),(524,69,'Indonesian','id','id_ID',NULL,NULL,0,70,NULL,0,0,1,NULL,NULL,NULL),(525,69,'Interlingue','ie','ie_XX',NULL,NULL,0,71,NULL,0,0,0,NULL,NULL,NULL),(526,69,'Irish','ga','ga_IE',NULL,NULL,0,72,NULL,0,0,0,NULL,NULL,NULL),(527,69,'Igbo','ig','ig_NG',NULL,NULL,0,73,NULL,0,0,0,NULL,NULL,NULL),(528,69,'Inupiaq','ik','ik_US',NULL,NULL,0,74,NULL,0,0,0,NULL,NULL,NULL),(529,69,'Ido','io','io_XX',NULL,NULL,0,75,NULL,0,0,0,NULL,NULL,NULL),(530,69,'Icelandic','is','is_IS',NULL,NULL,0,76,NULL,0,0,0,NULL,NULL,NULL),(531,69,'Italian','it','it_IT',NULL,NULL,0,77,NULL,0,0,1,NULL,NULL,NULL),(532,69,'Inuktitut','iu','iu_CA',NULL,NULL,0,78,NULL,0,0,0,NULL,NULL,NULL),(533,69,'Japanese','ja','ja_JP',NULL,NULL,0,79,NULL,0,0,1,NULL,NULL,NULL),(534,69,'Javanese','jv','jv_ID',NULL,NULL,0,80,NULL,0,0,0,NULL,NULL,NULL),(535,69,'Kalaallisut, Greenlandic','kl','kl_GL',NULL,NULL,0,81,NULL,0,0,0,NULL,NULL,NULL),(536,69,'Kannada','kn','kn_IN',NULL,NULL,0,82,NULL,0,0,0,NULL,NULL,NULL),(537,69,'Kanuri','kr','kr_NE',NULL,NULL,0,83,NULL,0,0,0,NULL,NULL,NULL),(538,69,'Kashmiri','ks','ks_IN',NULL,NULL,0,84,NULL,0,0,0,NULL,NULL,NULL),(539,69,'Kazakh','kk','kk_KZ',NULL,NULL,0,85,NULL,0,0,0,NULL,NULL,NULL),(540,69,'Khmer','km','km_KH',NULL,NULL,0,86,NULL,0,0,1,NULL,NULL,NULL),(541,69,'Kikuyu, Gikuyu','ki','ki_KE',NULL,NULL,0,87,NULL,0,0,0,NULL,NULL,NULL),(542,69,'Kinyarwanda','rw','rw_RW',NULL,NULL,0,88,NULL,0,0,0,NULL,NULL,NULL),(543,69,'Kirghiz, Kyrgyz','ky','ky_KG',NULL,NULL,0,89,NULL,0,0,0,NULL,NULL,NULL),(544,69,'Komi','kv','kv_RU',NULL,NULL,0,90,NULL,0,0,0,NULL,NULL,NULL),(545,69,'Kongo','kg','kg_CD',NULL,NULL,0,91,NULL,0,0,0,NULL,NULL,NULL),(546,69,'Korean','ko','ko_KR',NULL,NULL,0,92,NULL,0,0,0,NULL,NULL,NULL),(547,69,'Kurdish','ku','ku_IQ',NULL,NULL,0,93,NULL,0,0,0,NULL,NULL,NULL),(548,69,'Kwanyama, Kuanyama','kj','kj_NA',NULL,NULL,0,94,NULL,0,0,0,NULL,NULL,NULL),(549,69,'Latin','la','la_VA',NULL,NULL,0,95,NULL,0,0,0,NULL,NULL,NULL),(550,69,'Luxembourgish, Letzeburgesch','lb','lb_LU',NULL,NULL,0,96,NULL,0,0,0,NULL,NULL,NULL),(551,69,'Luganda','lg','lg_UG',NULL,NULL,0,97,NULL,0,0,0,NULL,NULL,NULL),(552,69,'Limburgish, Limburgan, Limburger','li','li_NL',NULL,NULL,0,98,NULL,0,0,0,NULL,NULL,NULL),(553,69,'Lingala','ln','ln_CD',NULL,NULL,0,99,NULL,0,0,0,NULL,NULL,NULL),(554,69,'Lao','lo','lo_LA',NULL,NULL,0,100,NULL,0,0,0,NULL,NULL,NULL),(555,69,'Lithuanian','lt','lt_LT',NULL,NULL,0,101,NULL,0,0,1,NULL,NULL,NULL),(556,69,'Luba-Katanga','lu','lu_CD',NULL,NULL,0,102,NULL,0,0,0,NULL,NULL,NULL),(557,69,'Latvian','lv','lv_LV',NULL,NULL,0,103,NULL,0,0,0,NULL,NULL,NULL),(558,69,'Manx','gv','gv_IM',NULL,NULL,0,104,NULL,0,0,0,NULL,NULL,NULL),(559,69,'Macedonian','mk','mk_MK',NULL,NULL,0,105,NULL,0,0,0,NULL,NULL,NULL),(560,69,'Malagasy','mg','mg_MG',NULL,NULL,0,106,NULL,0,0,0,NULL,NULL,NULL),(561,69,'Malay','ms','ms_MY',NULL,NULL,0,107,NULL,0,0,0,NULL,NULL,NULL),(562,69,'Malayalam','ml','ml_IN',NULL,NULL,0,108,NULL,0,0,0,NULL,NULL,NULL),(563,69,'Maltese','mt','mt_MT',NULL,NULL,0,109,NULL,0,0,0,NULL,NULL,NULL),(564,69,'Māori','mi','mi_NZ',NULL,NULL,0,110,NULL,0,0,0,NULL,NULL,NULL),(565,69,'Marathi','mr','mr_IN',NULL,NULL,0,111,NULL,0,0,0,NULL,NULL,NULL),(566,69,'Marshallese','mh','mh_MH',NULL,NULL,0,112,NULL,0,0,0,NULL,NULL,NULL),(567,69,'Mongolian','mn','mn_MN',NULL,NULL,0,113,NULL,0,0,0,NULL,NULL,NULL),(568,69,'Nauru','na','na_NR',NULL,NULL,0,114,NULL,0,0,0,NULL,NULL,NULL),(569,69,'Navajo, Navaho','nv','nv_US',NULL,NULL,0,115,NULL,0,0,0,NULL,NULL,NULL),(570,69,'Norwegian Bokmål','nb','nb_NO',NULL,NULL,0,116,NULL,0,0,1,NULL,NULL,NULL),(571,69,'North Ndebele','nd','nd_ZW',NULL,NULL,0,117,NULL,0,0,0,NULL,NULL,NULL),(572,69,'Nepali','ne','ne_NP',NULL,NULL,0,118,NULL,0,0,0,NULL,NULL,NULL),(573,69,'Ndonga','ng','ng_NA',NULL,NULL,0,119,NULL,0,0,0,NULL,NULL,NULL),(574,69,'Norwegian Nynorsk','nn','nn_NO',NULL,NULL,0,120,NULL,0,0,0,NULL,NULL,NULL),(575,69,'Norwegian','no','no_NO',NULL,NULL,0,121,NULL,0,0,0,NULL,NULL,NULL),(576,69,'Nuosu','ii','ii_CN',NULL,NULL,0,122,NULL,0,0,0,NULL,NULL,NULL),(577,69,'South Ndebele','nr','nr_ZA',NULL,NULL,0,123,NULL,0,0,0,NULL,NULL,NULL),(578,69,'Occitan (after 1500)','oc','oc_FR',NULL,NULL,0,124,NULL,0,0,0,NULL,NULL,NULL),(579,69,'Ojibwa','oj','oj_CA',NULL,NULL,0,125,NULL,0,0,0,NULL,NULL,NULL),(580,69,'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),(581,69,'Oromo','om','om_ET',NULL,NULL,0,127,NULL,0,0,0,NULL,NULL,NULL),(582,69,'Oriya','or','or_IN',NULL,NULL,0,128,NULL,0,0,0,NULL,NULL,NULL),(583,69,'Ossetian, Ossetic','os','os_GE',NULL,NULL,0,129,NULL,0,0,0,NULL,NULL,NULL),(584,69,'Panjabi, Punjabi','pa','pa_IN',NULL,NULL,0,130,NULL,0,0,0,NULL,NULL,NULL),(585,69,'Pāli','pi','pi_KH',NULL,NULL,0,131,NULL,0,0,0,NULL,NULL,NULL),(586,69,'Persian (Iran)','fa','fa_IR',NULL,NULL,0,132,NULL,0,0,0,NULL,NULL,NULL),(587,69,'Polish','pl','pl_PL',NULL,NULL,0,133,NULL,0,0,1,NULL,NULL,NULL),(588,69,'Pashto, Pushto','ps','ps_AF',NULL,NULL,0,134,NULL,0,0,0,NULL,NULL,NULL),(589,69,'Portuguese (Brazil)','pt','pt_BR',NULL,NULL,0,135,NULL,0,0,1,NULL,NULL,NULL),(590,69,'Portuguese (Portugal)','pt','pt_PT',NULL,NULL,0,136,NULL,0,0,1,NULL,NULL,NULL),(591,69,'Quechua','qu','qu_PE',NULL,NULL,0,137,NULL,0,0,0,NULL,NULL,NULL),(592,69,'Romansh','rm','rm_CH',NULL,NULL,0,138,NULL,0,0,0,NULL,NULL,NULL),(593,69,'Kirundi','rn','rn_BI',NULL,NULL,0,139,NULL,0,0,0,NULL,NULL,NULL),(594,69,'Romanian, Moldavian, Moldovan','ro','ro_RO',NULL,NULL,0,140,NULL,0,0,1,NULL,NULL,NULL),(595,69,'Russian','ru','ru_RU',NULL,NULL,0,141,NULL,0,0,1,NULL,NULL,NULL),(596,69,'Sanskrit','sa','sa_IN',NULL,NULL,0,142,NULL,0,0,0,NULL,NULL,NULL),(597,69,'Sardinian','sc','sc_IT',NULL,NULL,0,143,NULL,0,0,0,NULL,NULL,NULL),(598,69,'Sindhi','sd','sd_IN',NULL,NULL,0,144,NULL,0,0,0,NULL,NULL,NULL),(599,69,'Northern Sami','se','se_NO',NULL,NULL,0,145,NULL,0,0,0,NULL,NULL,NULL),(600,69,'Samoan','sm','sm_WS',NULL,NULL,0,146,NULL,0,0,0,NULL,NULL,NULL),(601,69,'Sango','sg','sg_CF',NULL,NULL,0,147,NULL,0,0,0,NULL,NULL,NULL),(602,69,'Serbian','sr','sr_RS',NULL,NULL,0,148,NULL,0,0,0,NULL,NULL,NULL),(603,69,'Scottish Gaelic; Gaelic','gd','gd_GB',NULL,NULL,0,149,NULL,0,0,0,NULL,NULL,NULL),(604,69,'Shona','sn','sn_ZW',NULL,NULL,0,150,NULL,0,0,0,NULL,NULL,NULL),(605,69,'Sinhala, Sinhalese','si','si_LK',NULL,NULL,0,151,NULL,0,0,0,NULL,NULL,NULL),(606,69,'Slovak','sk','sk_SK',NULL,NULL,0,152,NULL,0,0,1,NULL,NULL,NULL),(607,69,'Slovene','sl','sl_SI',NULL,NULL,0,153,NULL,0,0,1,NULL,NULL,NULL),(608,69,'Somali','so','so_SO',NULL,NULL,0,154,NULL,0,0,0,NULL,NULL,NULL),(609,69,'Southern Sotho','st','st_ZA',NULL,NULL,0,155,NULL,0,0,0,NULL,NULL,NULL),(610,69,'Spanish; Castilian (Spain)','es','es_ES',NULL,NULL,0,156,NULL,0,0,1,NULL,NULL,NULL),(611,69,'Spanish; Castilian (Mexico)','es','es_MX',NULL,NULL,0,157,NULL,0,0,1,NULL,NULL,NULL),(612,69,'Spanish; Castilian (Puerto Rico)','es','es_PR',NULL,NULL,0,158,NULL,0,0,1,NULL,NULL,NULL),(613,69,'Sundanese','su','su_ID',NULL,NULL,0,159,NULL,0,0,0,NULL,NULL,NULL),(614,69,'Swahili','sw','sw_TZ',NULL,NULL,0,160,NULL,0,0,0,NULL,NULL,NULL),(615,69,'Swati','ss','ss_ZA',NULL,NULL,0,161,NULL,0,0,0,NULL,NULL,NULL),(616,69,'Swedish','sv','sv_SE',NULL,NULL,0,162,NULL,0,0,1,NULL,NULL,NULL),(617,69,'Tamil','ta','ta_IN',NULL,NULL,0,163,NULL,0,0,0,NULL,NULL,NULL),(618,69,'Telugu','te','te_IN',NULL,NULL,0,164,NULL,0,0,1,NULL,NULL,NULL),(619,69,'Tajik','tg','tg_TJ',NULL,NULL,0,165,NULL,0,0,0,NULL,NULL,NULL),(620,69,'Thai','th','th_TH',NULL,NULL,0,166,NULL,0,0,1,NULL,NULL,NULL),(621,69,'Tigrinya','ti','ti_ET',NULL,NULL,0,167,NULL,0,0,0,NULL,NULL,NULL),(622,69,'Tibetan Standard, Tibetan, Central','bo','bo_CN',NULL,NULL,0,168,NULL,0,0,0,NULL,NULL,NULL),(623,69,'Turkmen','tk','tk_TM',NULL,NULL,0,169,NULL,0,0,0,NULL,NULL,NULL),(624,69,'Tagalog','tl','tl_PH',NULL,NULL,0,170,NULL,0,0,0,NULL,NULL,NULL),(625,69,'Tswana','tn','tn_ZA',NULL,NULL,0,171,NULL,0,0,0,NULL,NULL,NULL),(626,69,'Tonga (Tonga Islands)','to','to_TO',NULL,NULL,0,172,NULL,0,0,0,NULL,NULL,NULL),(627,69,'Turkish','tr','tr_TR',NULL,NULL,0,173,NULL,0,0,1,NULL,NULL,NULL),(628,69,'Tsonga','ts','ts_ZA',NULL,NULL,0,174,NULL,0,0,0,NULL,NULL,NULL),(629,69,'Tatar','tt','tt_RU',NULL,NULL,0,175,NULL,0,0,0,NULL,NULL,NULL),(630,69,'Twi','tw','tw_GH',NULL,NULL,0,176,NULL,0,0,0,NULL,NULL,NULL),(631,69,'Tahitian','ty','ty_PF',NULL,NULL,0,177,NULL,0,0,0,NULL,NULL,NULL),(632,69,'Uighur, Uyghur','ug','ug_CN',NULL,NULL,0,178,NULL,0,0,0,NULL,NULL,NULL),(633,69,'Ukrainian','uk','uk_UA',NULL,NULL,0,179,NULL,0,0,0,NULL,NULL,NULL),(634,69,'Urdu','ur','ur_PK',NULL,NULL,0,180,NULL,0,0,0,NULL,NULL,NULL),(635,69,'Uzbek','uz','uz_UZ',NULL,NULL,0,181,NULL,0,0,0,NULL,NULL,NULL),(636,69,'Venda','ve','ve_ZA',NULL,NULL,0,182,NULL,0,0,0,NULL,NULL,NULL),(637,69,'Vietnamese','vi','vi_VN',NULL,NULL,0,183,NULL,0,0,1,NULL,NULL,NULL),(638,69,'Volapük','vo','vo_XX',NULL,NULL,0,184,NULL,0,0,0,NULL,NULL,NULL),(639,69,'Walloon','wa','wa_BE',NULL,NULL,0,185,NULL,0,0,0,NULL,NULL,NULL),(640,69,'Welsh','cy','cy_GB',NULL,NULL,0,186,NULL,0,0,0,NULL,NULL,NULL),(641,69,'Wolof','wo','wo_SN',NULL,NULL,0,187,NULL,0,0,0,NULL,NULL,NULL),(642,69,'Western Frisian','fy','fy_NL',NULL,NULL,0,188,NULL,0,0,0,NULL,NULL,NULL),(643,69,'Xhosa','xh','xh_ZA',NULL,NULL,0,189,NULL,0,0,0,NULL,NULL,NULL),(644,69,'Yiddish','yi','yi_US',NULL,NULL,0,190,NULL,0,0,0,NULL,NULL,NULL),(645,69,'Yoruba','yo','yo_NG',NULL,NULL,0,191,NULL,0,0,0,NULL,NULL,NULL),(646,69,'Zhuang, Chuang','za','za_CN',NULL,NULL,0,192,NULL,0,0,0,NULL,NULL,NULL),(647,69,'Zulu','zu','zu_ZA',NULL,NULL,0,193,NULL,0,0,0,NULL,NULL,NULL),(648,70,'In Person','1','in_person',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(649,70,'Phone','2','phone',NULL,0,1,2,NULL,0,1,1,NULL,NULL,NULL),(650,70,'Email','3','email',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(651,70,'Fax','4','fax',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(652,70,'Letter Mail','5','letter_mail',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL),(653,71,'Cases - Send Copy of an Activity','1','case_activity',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(654,72,'Contributions - Duplicate Organization Alert','1','contribution_dupalert',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(655,72,'Contributions - Receipt (off-line)','2','contribution_offline_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(656,72,'Contributions - Receipt (on-line)','3','contribution_online_receipt',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(657,72,'Contributions - Recurring Start and End Notification','4','contribution_recurring_notify',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(658,72,'Contributions - Recurring Cancellation Notification','5','contribution_recurring_cancelled',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(659,72,'Contributions - Recurring Billing Updates','6','contribution_recurring_billing',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(660,72,'Contributions - Recurring Updates','7','contribution_recurring_edit',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(661,72,'Personal Campaign Pages - Admin Notification','8','pcp_notify',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(662,72,'Personal Campaign Pages - Supporter Status Change Notification','9','pcp_status_change',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(663,72,'Personal Campaign Pages - Supporter Welcome','10','pcp_supporter_notify',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL),(664,73,'Events - Registration Confirmation and Receipt (off-line)','1','event_offline_receipt',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(665,73,'Events - Registration Confirmation and Receipt (on-line)','2','event_online_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(666,73,'Events - Receipt only','3','event_registration_receipt',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(667,73,'Events - Registration Cancellation Notice','4','participant_cancelled',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(668,73,'Events - Registration Confirmation Invite','5','participant_confirm',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(669,73,'Events - Pending Registration Expiration Notice','6','participant_expired',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(670,74,'Tell-a-Friend Email','1','friend',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(671,75,'Memberships - Signup and Renewal Receipts (off-line)','1','membership_offline_receipt',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(672,75,'Memberships - Receipt (on-line)','2','membership_online_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(673,75,'Memberships - Auto-renew Cancellation Notification','3','membership_autorenew_cancelled',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(674,75,'Memberships - Auto-renew Billing Updates','4','membership_autorenew_billing',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(675,76,'Test-drive - Receipt Header','1','test_preview',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(676,77,'Pledges - Acknowledgement','1','pledge_acknowledge',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(677,77,'Pledges - Payment Reminder','2','pledge_reminder',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(678,78,'Profiles - Admin Notification','1','uf_notify',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(679,79,'Petition - signature added','1','petition_sign',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(680,79,'Petition - need verification','2','petition_confirmation_needed',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(681,2,'Interview','41','Interview',NULL,0,NULL,41,'Conduct a phone or in person interview.',0,0,1,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_option_value` ENABLE KEYS */; UNLOCK TABLES; @@ -974,7 +983,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,42,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(2,28,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(3,1,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,39,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(5,97,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(6,84,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,79,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(8,95,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(9,8,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,87,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(11,35,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(12,10,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,12,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(14,9,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(15,93,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,32,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(17,43,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(18,2,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,63,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(20,69,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(21,76,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,3,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,6,3,3,'1','2008-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,'800.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(25,19,3,2,'2','2008-04-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,'800.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(26,100,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(27,92,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(28,73,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,27,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(30,91,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(31,48,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,38,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(33,86,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(34,75,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,62,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(36,96,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(37,80,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,88,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(39,77,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(40,70,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,57,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(42,71,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(43,53,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,29,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(45,5,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(46,30,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,90,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(48,82,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(49,15,3,3,'1','2009-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,'800.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(50,61,3,2,'2','2009-04-05 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,'800.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL); +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,32,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(2,53,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(3,26,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,35,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(5,97,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(6,29,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,16,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(8,88,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(9,64,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,44,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(11,7,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(12,100,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,62,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(14,51,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(15,24,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,52,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(17,54,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(18,6,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,76,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(20,66,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(21,80,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,13,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(23,19,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(24,8,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,99,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,11,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(27,20,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(28,60,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,79,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(30,33,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(31,92,3,2,'2','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,'800.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(32,84,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(33,38,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(34,3,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,81,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(36,93,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(37,57,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,21,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(39,47,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(40,71,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,89,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(42,73,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(43,2,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,85,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(45,82,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(46,34,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,101,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(48,18,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,'50.00',NULL,NULL,'USD',NULL,NULL,NULL,NULL),(49,42,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,39,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; @@ -1022,7 +1031,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,72,2,'My Personal Civi Fundraiser','I\'m on a mission to get all my friends and family to help support my favorite open-source civic sector CRM.','

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

    \r\n

    You can learn more about CiviCRM here.

    \r\n

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

    ','Contribute Now',1,'contribute',1,1,1,'5000.00','USD',1); +INSERT INTO `civicrm_pcp` (`id`, `contact_id`, `status_id`, `title`, `intro_text`, `page_text`, `donate_link_text`, `page_id`, `page_type`, `pcp_block_id`, `is_thermometer`, `is_honor_roll`, `goal_amount`, `currency`, `is_active`) VALUES (1,42,2,'My Personal Civi Fundraiser','I\'m on a mission to get all my friends and family to help support my favorite open-source civic sector CRM.','

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

    \r\n

    You can learn more about CiviCRM here.

    \r\n

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

    ','Contribute Now',1,'contribute',1,1,1,'5000.00','USD',1); /*!40000 ALTER TABLE `civicrm_pcp` ENABLE KEYS */; UNLOCK TABLES; @@ -1051,7 +1060,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_type_id`) VALUES (1,NULL,1,0,0,NULL,'204 222-1001',NULL,1),(2,49,1,1,0,NULL,'21097037',NULL,1),(3,49,1,0,0,NULL,'25345656',NULL,2),(4,35,1,1,0,NULL,'74935306',NULL,1),(5,35,1,0,0,NULL,'37489276',NULL,2),(6,53,1,1,0,NULL,'87493962',NULL,1),(7,53,1,0,0,NULL,'74464198',NULL,2),(8,101,1,1,0,NULL,'39323226',NULL,1),(9,101,1,0,0,NULL,'84455421',NULL,2),(10,95,1,1,0,NULL,'62790195',NULL,1),(11,95,1,0,0,NULL,'34750202',NULL,2),(12,62,1,1,0,NULL,'60676445',NULL,1),(13,62,1,0,0,NULL,'78127206',NULL,2),(14,91,1,1,0,NULL,'66952390',NULL,1),(15,91,1,0,0,NULL,'58838592',NULL,2),(16,8,1,1,0,NULL,'39685127',NULL,1),(17,8,1,0,0,NULL,'59242214',NULL,2),(18,34,1,1,0,NULL,'65802514',NULL,1),(19,34,1,0,0,NULL,'80154583',NULL,2),(20,77,1,1,0,NULL,'83484270',NULL,1),(21,77,1,0,0,NULL,'85524611',NULL,2),(22,74,1,1,0,NULL,'89750925',NULL,1),(23,74,1,0,0,NULL,'59083592',NULL,2),(24,58,1,1,0,NULL,'52059501',NULL,1),(25,58,1,0,0,NULL,'65346424',NULL,2),(26,73,1,1,0,NULL,'70898034',NULL,1),(27,73,1,0,0,NULL,'68983511',NULL,2),(28,64,1,1,0,NULL,'42629898',NULL,1),(29,64,1,0,0,NULL,'57596838',NULL,2),(30,11,1,1,0,NULL,'39731858',NULL,1),(31,11,1,0,0,NULL,'39762274',NULL,2),(32,38,1,1,0,NULL,'91677008',NULL,1),(33,38,1,0,0,NULL,'95517760',NULL,2),(34,44,1,1,0,NULL,'14573020',NULL,1),(35,44,1,0,0,NULL,'16289190',NULL,2),(36,76,3,1,0,NULL,'25416021',NULL,1),(37,76,3,0,0,NULL,'73453487',NULL,2),(38,13,3,1,0,NULL,'14201843',NULL,1),(39,13,3,0,0,NULL,'64375293',NULL,2),(40,2,3,1,0,NULL,'13155674',NULL,1),(41,2,3,0,0,NULL,'22191572',NULL,2),(42,79,3,1,0,NULL,'50228289',NULL,1),(43,79,3,0,0,NULL,'25578531',NULL,2),(44,5,3,1,0,NULL,'87783757',NULL,1),(45,5,3,0,0,NULL,'92250173',NULL,2),(46,14,3,1,0,NULL,'45134548',NULL,1),(47,14,3,0,0,NULL,'26002171',NULL,2),(48,85,1,1,0,NULL,'30242559',NULL,1),(49,85,1,0,0,NULL,'45657370',NULL,2),(50,28,1,1,0,NULL,'81425479',NULL,1),(51,28,1,0,0,NULL,'44353728',NULL,2),(52,41,1,1,0,NULL,'13554338',NULL,1),(53,41,1,0,0,NULL,'17733636',NULL,2),(54,40,1,1,0,NULL,'72669840',NULL,1),(55,40,1,0,0,NULL,'42651040',NULL,2),(56,52,1,1,0,NULL,'28642341',NULL,1),(57,52,1,0,0,NULL,'48356189',NULL,2),(58,20,1,1,0,NULL,'24298128',NULL,1),(59,20,1,0,0,NULL,'93540273',NULL,2),(60,7,1,1,0,NULL,'79411258',NULL,1),(61,7,1,0,0,NULL,'90443655',NULL,2),(62,67,1,1,0,NULL,'54920988',NULL,1),(63,67,1,0,0,NULL,'36155432',NULL,2),(64,97,1,1,0,NULL,'95796025',NULL,1),(65,97,1,0,0,NULL,'52518186',NULL,2),(66,26,1,1,0,NULL,'58751257',NULL,1),(67,26,1,0,0,NULL,'14380157',NULL,2),(68,23,1,1,0,NULL,'32423821',NULL,1),(69,23,1,0,0,NULL,'73300714',NULL,2),(70,17,1,1,0,NULL,'43616053',NULL,1),(71,17,1,0,0,NULL,'59935208',NULL,2),(72,37,1,1,0,NULL,'65960922',NULL,1),(73,37,1,0,0,NULL,'97327072',NULL,2),(74,55,1,1,0,NULL,'36131255',NULL,1),(75,55,1,0,0,NULL,'79699449',NULL,2),(76,46,1,1,0,NULL,'46190973',NULL,1),(77,46,1,0,0,NULL,'17528731',NULL,2),(78,19,1,1,0,NULL,'33894654',NULL,1),(79,19,1,0,0,NULL,'80701227',NULL,2),(80,43,1,1,0,NULL,'96024013',NULL,1),(81,43,1,0,0,NULL,'36780963',NULL,2),(82,50,1,1,0,NULL,'78785751',NULL,1),(83,50,1,0,0,NULL,'79838506',NULL,2),(84,22,1,1,0,NULL,'85727070',NULL,1),(85,22,1,0,0,NULL,'60462980',NULL,2),(86,31,1,1,0,NULL,'44778096',NULL,1),(87,31,1,0,0,NULL,'52405508',NULL,2),(88,100,1,1,0,NULL,'36307089',NULL,1),(89,100,1,0,0,NULL,'91247825',NULL,2),(90,61,1,1,0,NULL,'13162435',NULL,1),(91,61,1,0,0,NULL,'70637646',NULL,2),(92,56,1,1,0,NULL,'94843611',NULL,1),(93,56,1,0,0,NULL,'12939760',NULL,2),(94,83,1,1,0,NULL,'32345381',NULL,1),(95,83,1,0,0,NULL,'92593026',NULL,2),(96,98,1,1,0,NULL,'87054203',NULL,1),(97,98,1,0,0,NULL,'55662116',NULL,2),(98,92,1,1,0,NULL,'68657900',NULL,1),(99,92,1,0,0,NULL,'78300641',NULL,2),(100,80,1,1,0,NULL,'99811362',NULL,1),(101,80,1,0,0,NULL,'36090203',NULL,2),(102,86,1,1,0,NULL,'20292011',NULL,1),(103,86,1,0,0,NULL,'59876107',NULL,2),(104,88,1,1,0,NULL,'72645944',NULL,1),(105,88,1,0,0,NULL,'39016581',NULL,2),(106,71,1,1,0,NULL,'72990297',NULL,1),(107,71,1,0,0,NULL,'26881033',NULL,2),(108,10,1,1,0,NULL,'30796649',NULL,1),(109,10,1,0,0,NULL,'20285603',NULL,2),(110,94,1,1,0,NULL,'63530532',NULL,1),(111,94,1,0,0,NULL,'63292608',NULL,2),(112,65,1,1,0,NULL,'78152546',NULL,1),(113,65,1,0,0,NULL,'23975065',NULL,2),(114,82,1,1,0,NULL,'43013599',NULL,1),(115,82,1,0,0,NULL,'41077032',NULL,2),(116,4,1,1,0,NULL,'21549079',NULL,1),(117,4,1,0,0,NULL,'78672845',NULL,2),(118,NULL,1,0,0,NULL,'204 222-1000',NULL,1),(119,NULL,1,0,0,NULL,'204 223-1000',NULL,1),(120,NULL,1,0,0,NULL,'303 323-1000',NULL,1); +INSERT INTO `civicrm_phone` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `mobile_provider_id`, `phone`, `phone_ext`, `phone_type_id`) VALUES (1,NULL,1,0,0,NULL,'204 222-1001',NULL,1),(2,32,1,1,0,NULL,'71086691',NULL,1),(3,32,1,0,0,NULL,'75152973',NULL,2),(4,74,1,1,0,NULL,'21833806',NULL,1),(5,74,1,0,0,NULL,'55403332',NULL,2),(6,64,1,1,0,NULL,'73701240',NULL,1),(7,64,1,0,0,NULL,'93716834',NULL,2),(8,53,1,1,0,NULL,'63606670',NULL,1),(9,53,1,0,0,NULL,'30217059',NULL,2),(10,35,1,1,0,NULL,'46577202',NULL,1),(11,35,1,0,0,NULL,'94509973',NULL,2),(12,13,1,1,0,NULL,'98865640',NULL,1),(13,13,1,0,0,NULL,'56535753',NULL,2),(14,59,1,1,0,NULL,'75882011',NULL,1),(15,59,1,0,0,NULL,'75172445',NULL,2),(16,20,1,1,0,NULL,'42946713',NULL,1),(17,20,1,0,0,NULL,'64185037',NULL,2),(18,25,1,1,0,NULL,'53886326',NULL,1),(19,25,1,0,0,NULL,'81181803',NULL,2),(20,41,1,1,0,NULL,'27866641',NULL,1),(21,41,1,0,0,NULL,'75462632',NULL,2),(22,43,1,1,0,NULL,'20871559',NULL,1),(23,43,1,0,0,NULL,'24617208',NULL,2),(24,101,1,1,0,NULL,'27379358',NULL,1),(25,101,1,0,0,NULL,'69887558',NULL,2),(26,47,1,1,0,NULL,'79323027',NULL,1),(27,47,1,0,0,NULL,'82432904',NULL,2),(28,44,1,1,0,NULL,'19043846',NULL,1),(29,44,1,0,0,NULL,'55305631',NULL,2),(30,92,1,1,0,NULL,'78055449',NULL,1),(31,92,1,0,0,NULL,'17843532',NULL,2),(32,11,1,1,0,NULL,'77771483',NULL,1),(33,11,1,0,0,NULL,'95821509',NULL,2),(34,52,1,1,0,NULL,'40193338',NULL,1),(35,52,1,0,0,NULL,'41849461',NULL,2),(36,83,1,1,0,NULL,'30964034',NULL,1),(37,83,1,0,0,NULL,'26532740',NULL,2),(38,88,1,1,0,NULL,'18014781',NULL,1),(39,88,1,0,0,NULL,'98423410',NULL,2),(40,23,1,1,0,NULL,'52386191',NULL,1),(41,23,1,0,0,NULL,'48244982',NULL,2),(42,10,1,1,0,NULL,'60128056',NULL,1),(43,10,1,0,0,NULL,'73738101',NULL,2),(44,95,3,1,0,NULL,'56701102',NULL,1),(45,95,3,0,0,NULL,'72433510',NULL,2),(46,22,3,1,0,NULL,'14696910',NULL,1),(47,22,3,0,0,NULL,'84301600',NULL,2),(48,77,3,1,0,NULL,'44515549',NULL,1),(49,77,3,0,0,NULL,'42397056',NULL,2),(50,26,3,1,0,NULL,'72403718',NULL,1),(51,26,3,0,0,NULL,'46591720',NULL,2),(52,16,3,1,0,NULL,'70634413',NULL,1),(53,16,3,0,0,NULL,'61249269',NULL,2),(54,17,3,1,0,NULL,'93181312',NULL,1),(55,17,3,0,0,NULL,'44093783',NULL,2),(56,19,3,1,0,NULL,'65417925',NULL,1),(57,19,3,0,0,NULL,'64617537',NULL,2),(58,37,1,1,0,NULL,'95131103',NULL,1),(59,37,1,0,0,NULL,'96322543',NULL,2),(60,76,1,1,0,NULL,'19001539',NULL,1),(61,76,1,0,0,NULL,'31333014',NULL,2),(62,29,1,1,0,NULL,'29318374',NULL,1),(63,29,1,0,0,NULL,'85568573',NULL,2),(64,56,1,1,0,NULL,'84171657',NULL,1),(65,56,1,0,0,NULL,'28080732',NULL,2),(66,86,1,1,0,NULL,'68422507',NULL,1),(67,86,1,0,0,NULL,'26284969',NULL,2),(68,80,1,1,0,NULL,'96916385',NULL,1),(69,80,1,0,0,NULL,'12569298',NULL,2),(70,98,1,1,0,NULL,'50669279',NULL,1),(71,98,1,0,0,NULL,'94688864',NULL,2),(72,8,1,1,0,NULL,'96739322',NULL,1),(73,8,1,0,0,NULL,'70362526',NULL,2),(74,34,1,1,0,NULL,'71760113',NULL,1),(75,34,1,0,0,NULL,'73284569',NULL,2),(76,97,1,1,0,NULL,'37007865',NULL,1),(77,97,1,0,0,NULL,'31773241',NULL,2),(78,28,1,1,0,NULL,'99492568',NULL,1),(79,28,1,0,0,NULL,'37130140',NULL,2),(80,89,1,1,0,NULL,'37176495',NULL,1),(81,89,1,0,0,NULL,'26700657',NULL,2),(82,65,1,1,0,NULL,'60193782',NULL,1),(83,65,1,0,0,NULL,'67239655',NULL,2),(84,46,1,1,0,NULL,'93525824',NULL,1),(85,46,1,0,0,NULL,'91118754',NULL,2),(86,38,1,1,0,NULL,'12251724',NULL,1),(87,38,1,0,0,NULL,'56526589',NULL,2),(88,40,1,1,0,NULL,'90156560',NULL,1),(89,40,1,0,0,NULL,'13487872',NULL,2),(90,58,1,1,0,NULL,'86297627',NULL,1),(91,58,1,0,0,NULL,'43199867',NULL,2),(92,4,1,1,0,NULL,'75080662',NULL,1),(93,4,1,0,0,NULL,'49202043',NULL,2),(94,67,1,1,0,NULL,'79559129',NULL,1),(95,67,1,0,0,NULL,'12902271',NULL,2),(96,50,1,1,0,NULL,'22395310',NULL,1),(97,50,1,0,0,NULL,'18482910',NULL,2),(98,82,1,1,0,NULL,'26416664',NULL,1),(99,82,1,0,0,NULL,'49643182',NULL,2),(100,94,1,1,0,NULL,'84727949',NULL,1),(101,94,1,0,0,NULL,'42494628',NULL,2),(102,70,1,1,0,NULL,'52232990',NULL,1),(103,70,1,0,0,NULL,'96911578',NULL,2),(104,79,1,1,0,NULL,'86405448',NULL,1),(105,79,1,0,0,NULL,'32334046',NULL,2),(106,91,1,1,0,NULL,'46608061',NULL,1),(107,91,1,0,0,NULL,'44165409',NULL,2),(108,71,1,1,0,NULL,'61190964',NULL,1),(109,71,1,0,0,NULL,'91161723',NULL,2),(110,7,1,1,0,NULL,'86464753',NULL,1),(111,7,1,0,0,NULL,'68111989',NULL,2),(112,100,1,1,0,NULL,'61015461',NULL,1),(113,100,1,0,0,NULL,'67075476',NULL,2),(114,NULL,1,0,0,NULL,'204 222-1000',NULL,1),(115,NULL,1,0,0,NULL,'204 223-1000',NULL,1),(116,NULL,1,0,0,NULL,'303 323-1000',NULL,1); /*!40000 ALTER TABLE `civicrm_phone` ENABLE KEYS */; UNLOCK TABLES; @@ -1198,7 +1207,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,41,85,1,NULL,NULL,1,NULL,0,0,NULL),(2,40,85,1,NULL,NULL,1,NULL,0,0,NULL),(3,41,28,1,NULL,NULL,1,NULL,0,0,NULL),(4,40,28,1,NULL,NULL,1,NULL,0,0,NULL),(5,28,85,2,NULL,NULL,1,NULL,0,0,NULL),(6,40,41,3,NULL,NULL,1,NULL,0,0,NULL),(7,85,8,6,NULL,NULL,1,NULL,0,0,NULL),(8,28,8,7,NULL,NULL,1,NULL,0,0,NULL),(9,41,8,7,NULL,NULL,1,NULL,0,0,NULL),(10,40,8,7,NULL,NULL,1,NULL,0,0,NULL),(11,45,52,1,NULL,NULL,1,NULL,0,0,NULL),(12,7,52,1,NULL,NULL,1,NULL,0,0,NULL),(13,45,20,1,NULL,NULL,1,NULL,0,0,NULL),(14,7,20,1,NULL,NULL,1,NULL,0,0,NULL),(15,20,52,2,NULL,NULL,1,NULL,0,0,NULL),(16,7,45,3,NULL,NULL,1,NULL,0,0,NULL),(17,52,34,6,NULL,NULL,1,NULL,0,0,NULL),(18,20,34,7,NULL,NULL,1,NULL,0,0,NULL),(19,45,34,7,NULL,NULL,1,NULL,0,0,NULL),(20,7,34,7,NULL,NULL,1,NULL,0,0,NULL),(21,67,36,1,NULL,NULL,1,NULL,0,0,NULL),(22,97,36,1,NULL,NULL,1,NULL,0,0,NULL),(23,67,3,1,NULL,NULL,1,NULL,0,0,NULL),(24,97,3,1,NULL,NULL,1,NULL,0,0,NULL),(25,3,36,2,NULL,NULL,1,NULL,0,0,NULL),(26,97,67,3,NULL,NULL,1,NULL,0,0,NULL),(27,36,77,6,NULL,NULL,1,NULL,0,0,NULL),(28,3,77,7,NULL,NULL,1,NULL,0,0,NULL),(29,67,77,7,NULL,NULL,1,NULL,0,0,NULL),(30,97,77,7,NULL,NULL,1,NULL,0,0,NULL),(31,9,26,1,NULL,NULL,1,NULL,0,0,NULL),(32,30,26,1,NULL,NULL,1,NULL,0,0,NULL),(33,9,23,1,NULL,NULL,1,NULL,0,0,NULL),(34,30,23,1,NULL,NULL,1,NULL,0,0,NULL),(35,23,26,2,NULL,NULL,1,NULL,0,0,NULL),(36,30,9,3,NULL,NULL,1,NULL,0,0,NULL),(37,26,84,6,NULL,NULL,1,NULL,0,0,NULL),(38,23,84,7,NULL,NULL,1,NULL,0,0,NULL),(39,9,84,7,NULL,NULL,1,NULL,0,0,NULL),(40,30,84,7,NULL,NULL,1,NULL,0,0,NULL),(41,51,90,1,NULL,NULL,1,NULL,0,0,NULL),(42,37,90,1,NULL,NULL,1,NULL,0,0,NULL),(43,51,17,1,NULL,NULL,1,NULL,0,0,NULL),(44,37,17,1,NULL,NULL,1,NULL,0,0,NULL),(45,17,90,2,NULL,NULL,1,NULL,0,0,NULL),(46,37,51,3,NULL,NULL,1,NULL,0,0,NULL),(47,90,74,6,NULL,NULL,1,NULL,0,0,NULL),(48,17,74,7,NULL,NULL,1,NULL,0,0,NULL),(49,51,74,7,NULL,NULL,1,NULL,0,0,NULL),(50,37,74,7,NULL,NULL,1,NULL,0,0,NULL),(51,46,55,1,NULL,NULL,1,NULL,0,0,NULL),(52,19,55,1,NULL,NULL,1,NULL,0,0,NULL),(53,46,93,1,NULL,NULL,1,NULL,0,0,NULL),(54,19,93,1,NULL,NULL,1,NULL,0,0,NULL),(55,93,55,2,NULL,NULL,1,NULL,0,0,NULL),(56,19,46,3,NULL,NULL,1,NULL,0,0,NULL),(57,55,58,6,NULL,NULL,1,NULL,0,0,NULL),(58,93,58,7,NULL,NULL,1,NULL,0,0,NULL),(59,46,58,7,NULL,NULL,1,NULL,0,0,NULL),(60,19,58,7,NULL,NULL,1,NULL,0,0,NULL),(61,22,43,1,NULL,NULL,1,NULL,0,0,NULL),(62,31,43,1,NULL,NULL,1,NULL,0,0,NULL),(63,22,50,1,NULL,NULL,1,NULL,0,0,NULL),(64,31,50,1,NULL,NULL,1,NULL,0,0,NULL),(65,50,43,2,NULL,NULL,1,NULL,0,0,NULL),(66,31,22,3,NULL,NULL,1,NULL,0,0,NULL),(67,43,73,6,NULL,NULL,1,NULL,0,0,NULL),(68,50,73,7,NULL,NULL,1,NULL,0,0,NULL),(69,22,73,7,NULL,NULL,1,NULL,0,0,NULL),(70,31,73,7,NULL,NULL,1,NULL,0,0,NULL),(71,56,100,1,NULL,NULL,1,NULL,0,0,NULL),(72,83,100,1,NULL,NULL,1,NULL,0,0,NULL),(73,56,61,1,NULL,NULL,1,NULL,0,0,NULL),(74,83,61,1,NULL,NULL,1,NULL,0,0,NULL),(75,61,100,2,NULL,NULL,1,NULL,0,0,NULL),(76,83,56,3,NULL,NULL,1,NULL,0,0,NULL),(77,100,64,6,NULL,NULL,1,NULL,0,0,NULL),(78,61,64,7,NULL,NULL,1,NULL,0,0,NULL),(79,56,64,7,NULL,NULL,1,NULL,0,0,NULL),(80,83,64,7,NULL,NULL,1,NULL,0,0,NULL),(81,80,98,1,NULL,NULL,1,NULL,0,0,NULL),(82,57,98,1,NULL,NULL,1,NULL,0,0,NULL),(83,80,92,1,NULL,NULL,1,NULL,0,0,NULL),(84,57,92,1,NULL,NULL,1,NULL,0,0,NULL),(85,92,98,2,NULL,NULL,1,NULL,0,0,NULL),(86,57,80,3,NULL,NULL,1,NULL,0,0,NULL),(87,98,87,6,NULL,NULL,1,NULL,0,0,NULL),(88,92,87,7,NULL,NULL,1,NULL,0,0,NULL),(89,80,87,7,NULL,NULL,1,NULL,0,0,NULL),(90,57,87,7,NULL,NULL,1,NULL,0,0,NULL),(91,88,86,1,NULL,NULL,1,NULL,0,0,NULL),(92,71,86,1,NULL,NULL,1,NULL,0,0,NULL),(93,88,81,1,NULL,NULL,1,NULL,0,0,NULL),(94,71,81,1,NULL,NULL,1,NULL,0,0,NULL),(95,81,86,2,NULL,NULL,1,NULL,0,0,NULL),(96,71,88,3,NULL,NULL,1,NULL,0,0,NULL),(97,86,11,6,NULL,NULL,1,NULL,0,0,NULL),(98,81,11,7,NULL,NULL,1,NULL,0,0,NULL),(99,88,11,7,NULL,NULL,1,NULL,0,0,NULL),(100,71,11,7,NULL,NULL,1,NULL,0,0,NULL),(101,65,10,1,NULL,NULL,1,NULL,0,0,NULL),(102,82,10,1,NULL,NULL,1,NULL,0,0,NULL),(103,65,94,1,NULL,NULL,1,NULL,0,0,NULL),(104,82,94,1,NULL,NULL,1,NULL,0,0,NULL),(105,94,10,2,NULL,NULL,1,NULL,0,0,NULL),(106,82,65,3,NULL,NULL,1,NULL,0,0,NULL),(107,10,38,6,NULL,NULL,1,NULL,0,0,NULL),(108,94,38,7,NULL,NULL,1,NULL,0,0,NULL),(109,65,38,7,NULL,NULL,1,NULL,0,0,NULL),(110,82,38,7,NULL,NULL,1,NULL,0,0,NULL),(111,32,4,1,NULL,NULL,1,NULL,0,0,NULL),(112,16,4,1,NULL,NULL,1,NULL,0,0,NULL),(113,32,47,1,NULL,NULL,1,NULL,0,0,NULL),(114,16,47,1,NULL,NULL,1,NULL,0,0,NULL),(115,47,4,2,NULL,NULL,1,NULL,0,0,NULL),(116,16,32,3,NULL,NULL,1,NULL,0,0,NULL),(117,4,18,6,NULL,NULL,1,NULL,0,0,NULL),(118,47,18,7,NULL,NULL,1,NULL,0,0,NULL),(119,32,18,7,NULL,NULL,1,NULL,0,0,NULL),(120,16,18,7,NULL,NULL,1,NULL,0,0,NULL),(121,29,68,1,NULL,NULL,1,NULL,0,0,NULL),(122,96,68,1,NULL,NULL,1,NULL,0,0,NULL),(123,29,25,1,NULL,NULL,1,NULL,0,0,NULL),(124,96,25,1,NULL,NULL,1,NULL,0,0,NULL),(125,25,68,2,NULL,NULL,1,NULL,0,0,NULL),(126,96,29,3,NULL,NULL,1,NULL,0,0,NULL),(127,68,15,6,NULL,NULL,1,NULL,0,0,NULL),(128,25,15,7,NULL,NULL,1,NULL,0,0,NULL),(129,29,15,7,NULL,NULL,1,NULL,0,0,NULL),(130,96,15,7,NULL,NULL,1,NULL,0,0,NULL),(131,70,39,1,NULL,NULL,1,NULL,0,0,NULL),(132,59,39,1,NULL,NULL,1,NULL,0,0,NULL),(133,70,66,1,NULL,NULL,1,NULL,0,0,NULL),(134,59,66,1,NULL,NULL,1,NULL,0,0,NULL),(135,66,39,2,NULL,NULL,1,NULL,0,0,NULL),(136,59,70,3,NULL,NULL,1,NULL,0,0,NULL),(137,39,24,6,NULL,NULL,1,NULL,0,0,NULL),(138,66,24,7,NULL,NULL,1,NULL,0,0,NULL),(139,70,24,7,NULL,NULL,1,NULL,0,0,NULL),(140,59,24,7,NULL,NULL,1,NULL,0,0,NULL),(141,89,60,1,NULL,NULL,1,NULL,0,0,NULL),(142,6,60,1,NULL,NULL,1,NULL,0,0,NULL),(143,89,33,1,NULL,NULL,1,NULL,0,0,NULL),(144,6,33,1,NULL,NULL,1,NULL,0,0,NULL),(145,33,60,2,NULL,NULL,1,NULL,0,0,NULL),(146,6,89,3,NULL,NULL,1,NULL,0,0,NULL),(147,60,44,6,NULL,NULL,1,NULL,0,0,NULL),(148,33,44,7,NULL,NULL,1,NULL,0,0,NULL),(149,89,44,7,NULL,NULL,1,NULL,0,0,NULL),(150,6,44,7,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,76,37,1,NULL,NULL,1,NULL,0,0,NULL),(2,29,37,1,NULL,NULL,1,NULL,0,0,NULL),(3,76,9,1,NULL,NULL,1,NULL,0,0,NULL),(4,29,9,1,NULL,NULL,1,NULL,0,0,NULL),(5,9,37,2,NULL,NULL,1,NULL,0,0,NULL),(6,29,76,3,NULL,NULL,1,NULL,0,0,NULL),(7,37,41,6,NULL,NULL,1,NULL,0,0,NULL),(8,9,41,7,NULL,NULL,1,NULL,0,0,NULL),(9,76,41,7,NULL,NULL,1,NULL,0,0,NULL),(10,29,41,7,NULL,NULL,1,NULL,0,0,NULL),(11,86,66,1,NULL,NULL,1,NULL,0,0,NULL),(12,80,66,1,NULL,NULL,1,NULL,0,0,NULL),(13,86,56,1,NULL,NULL,1,NULL,0,0,NULL),(14,80,56,1,NULL,NULL,1,NULL,0,0,NULL),(15,56,66,2,NULL,NULL,1,NULL,0,0,NULL),(16,80,86,3,NULL,NULL,1,NULL,0,0,NULL),(17,66,43,6,NULL,NULL,1,NULL,0,0,NULL),(18,56,43,7,NULL,NULL,1,NULL,0,0,NULL),(19,86,43,7,NULL,NULL,1,NULL,0,0,NULL),(20,80,43,7,NULL,NULL,1,NULL,0,0,NULL),(21,34,98,1,NULL,NULL,1,NULL,0,0,NULL),(22,60,98,1,NULL,NULL,1,NULL,0,0,NULL),(23,34,8,1,NULL,NULL,1,NULL,0,0,NULL),(24,60,8,1,NULL,NULL,1,NULL,0,0,NULL),(25,8,98,2,NULL,NULL,1,NULL,0,0,NULL),(26,60,34,3,NULL,NULL,1,NULL,0,0,NULL),(27,98,18,6,NULL,NULL,1,NULL,0,0,NULL),(28,8,18,7,NULL,NULL,1,NULL,0,0,NULL),(29,34,18,7,NULL,NULL,1,NULL,0,0,NULL),(30,60,18,7,NULL,NULL,1,NULL,0,0,NULL),(31,99,97,1,NULL,NULL,1,NULL,0,0,NULL),(32,27,97,1,NULL,NULL,1,NULL,0,0,NULL),(33,99,28,1,NULL,NULL,1,NULL,0,0,NULL),(34,27,28,1,NULL,NULL,1,NULL,0,0,NULL),(35,28,97,2,NULL,NULL,1,NULL,0,0,NULL),(36,27,99,3,NULL,NULL,1,NULL,0,0,NULL),(37,97,101,6,NULL,NULL,1,NULL,0,0,NULL),(38,28,101,7,NULL,NULL,1,NULL,0,0,NULL),(39,99,101,7,NULL,NULL,1,NULL,0,0,NULL),(40,27,101,7,NULL,NULL,1,NULL,0,0,NULL),(41,65,75,1,NULL,NULL,1,NULL,0,0,NULL),(42,87,75,1,NULL,NULL,1,NULL,0,0,NULL),(43,65,89,1,NULL,NULL,1,NULL,0,0,NULL),(44,87,89,1,NULL,NULL,1,NULL,0,0,NULL),(45,89,75,2,NULL,NULL,1,NULL,0,0,NULL),(46,87,65,3,NULL,NULL,1,NULL,0,0,NULL),(47,75,47,6,NULL,NULL,1,NULL,0,0,NULL),(48,89,47,7,NULL,NULL,1,NULL,0,0,NULL),(49,65,47,7,NULL,NULL,1,NULL,0,0,NULL),(50,87,47,7,NULL,NULL,1,NULL,0,0,NULL),(51,40,46,1,NULL,NULL,1,NULL,0,0,NULL),(52,58,46,1,NULL,NULL,1,NULL,0,0,NULL),(53,40,38,1,NULL,NULL,1,NULL,0,0,NULL),(54,58,38,1,NULL,NULL,1,NULL,0,0,NULL),(55,38,46,2,NULL,NULL,1,NULL,0,0,NULL),(56,58,40,3,NULL,NULL,1,NULL,0,0,NULL),(57,46,44,6,NULL,NULL,1,NULL,0,0,NULL),(58,38,44,7,NULL,NULL,1,NULL,0,0,NULL),(59,40,44,7,NULL,NULL,1,NULL,0,0,NULL),(60,58,44,7,NULL,NULL,1,NULL,0,0,NULL),(61,3,4,1,NULL,NULL,1,NULL,0,0,NULL),(62,15,4,1,NULL,NULL,1,NULL,0,0,NULL),(63,3,67,1,NULL,NULL,1,NULL,0,0,NULL),(64,15,67,1,NULL,NULL,1,NULL,0,0,NULL),(65,67,4,2,NULL,NULL,1,NULL,0,0,NULL),(66,15,3,3,NULL,NULL,1,NULL,0,0,NULL),(67,4,92,6,NULL,NULL,1,NULL,0,0,NULL),(68,67,92,7,NULL,NULL,1,NULL,0,0,NULL),(69,3,92,7,NULL,NULL,1,NULL,0,0,NULL),(70,15,92,7,NULL,NULL,1,NULL,0,0,NULL),(71,21,33,1,NULL,NULL,1,NULL,0,0,NULL),(72,82,33,1,NULL,NULL,1,NULL,0,0,NULL),(73,21,50,1,NULL,NULL,1,NULL,0,0,NULL),(74,82,50,1,NULL,NULL,1,NULL,0,0,NULL),(75,50,33,2,NULL,NULL,1,NULL,0,0,NULL),(76,82,21,3,NULL,NULL,1,NULL,0,0,NULL),(77,33,54,6,NULL,NULL,1,NULL,0,0,NULL),(78,50,54,7,NULL,NULL,1,NULL,0,0,NULL),(79,21,54,7,NULL,NULL,1,NULL,0,0,NULL),(80,82,54,7,NULL,NULL,1,NULL,0,0,NULL),(81,36,24,1,NULL,NULL,1,NULL,0,0,NULL),(82,70,24,1,NULL,NULL,1,NULL,0,0,NULL),(83,36,94,1,NULL,NULL,1,NULL,0,0,NULL),(84,70,94,1,NULL,NULL,1,NULL,0,0,NULL),(85,94,24,2,NULL,NULL,1,NULL,0,0,NULL),(86,70,36,3,NULL,NULL,1,NULL,0,0,NULL),(87,24,84,6,NULL,NULL,1,NULL,0,0,NULL),(88,94,84,7,NULL,NULL,1,NULL,0,0,NULL),(89,36,84,7,NULL,NULL,1,NULL,0,0,NULL),(90,70,84,7,NULL,NULL,1,NULL,0,0,NULL),(91,71,79,1,NULL,NULL,1,NULL,0,0,NULL),(92,39,79,1,NULL,NULL,1,NULL,0,0,NULL),(93,71,91,1,NULL,NULL,1,NULL,0,0,NULL),(94,39,91,1,NULL,NULL,1,NULL,0,0,NULL),(95,91,79,2,NULL,NULL,1,NULL,0,0,NULL),(96,39,71,3,NULL,NULL,1,NULL,0,0,NULL),(97,79,11,6,NULL,NULL,1,NULL,0,0,NULL),(98,91,11,7,NULL,NULL,1,NULL,0,0,NULL),(99,71,11,7,NULL,NULL,1,NULL,0,0,NULL),(100,39,11,7,NULL,NULL,1,NULL,0,0,NULL),(101,7,69,1,NULL,NULL,1,NULL,0,0,NULL),(102,100,69,1,NULL,NULL,1,NULL,0,0,NULL),(103,7,51,1,NULL,NULL,1,NULL,0,0,NULL),(104,100,51,1,NULL,NULL,1,NULL,0,0,NULL),(105,51,69,2,NULL,NULL,1,NULL,0,0,NULL),(106,100,7,3,NULL,NULL,1,NULL,0,0,NULL),(107,69,52,6,NULL,NULL,1,NULL,0,0,NULL),(108,51,52,7,NULL,NULL,1,NULL,0,0,NULL),(109,7,52,7,NULL,NULL,1,NULL,0,0,NULL),(110,100,52,7,NULL,NULL,1,NULL,0,0,NULL),(111,93,96,1,NULL,NULL,1,NULL,0,0,NULL),(112,78,96,1,NULL,NULL,1,NULL,0,0,NULL),(113,93,85,1,NULL,NULL,1,NULL,0,0,NULL),(114,78,85,1,NULL,NULL,1,NULL,0,0,NULL),(115,85,96,2,NULL,NULL,1,NULL,0,0,NULL),(116,78,93,3,NULL,NULL,1,NULL,0,0,NULL),(117,96,83,6,NULL,NULL,1,NULL,0,0,NULL),(118,85,83,7,NULL,NULL,1,NULL,0,0,NULL),(119,93,83,7,NULL,NULL,1,NULL,0,0,NULL),(120,78,83,7,NULL,NULL,1,NULL,0,0,NULL),(121,31,49,1,NULL,NULL,1,NULL,0,0,NULL),(122,73,49,1,NULL,NULL,1,NULL,0,0,NULL),(123,31,81,1,NULL,NULL,1,NULL,0,0,NULL),(124,73,81,1,NULL,NULL,1,NULL,0,0,NULL),(125,81,49,2,NULL,NULL,1,NULL,0,0,NULL),(126,73,31,3,NULL,NULL,1,NULL,0,0,NULL),(127,49,88,6,NULL,NULL,1,NULL,0,0,NULL),(128,81,88,7,NULL,NULL,1,NULL,0,0,NULL),(129,31,88,7,NULL,NULL,1,NULL,0,0,NULL),(130,73,88,7,NULL,NULL,1,NULL,0,0,NULL),(131,61,63,1,NULL,NULL,1,NULL,0,0,NULL),(132,55,63,1,NULL,NULL,1,NULL,0,0,NULL),(133,61,14,1,NULL,NULL,1,NULL,0,0,NULL),(134,55,14,1,NULL,NULL,1,NULL,0,0,NULL),(135,14,63,2,NULL,NULL,1,NULL,0,0,NULL),(136,55,61,3,NULL,NULL,1,NULL,0,0,NULL),(137,63,23,6,NULL,NULL,1,NULL,0,0,NULL),(138,14,23,7,NULL,NULL,1,NULL,0,0,NULL),(139,61,23,7,NULL,NULL,1,NULL,0,0,NULL),(140,55,23,7,NULL,NULL,1,NULL,0,0,NULL),(141,68,2,1,NULL,NULL,1,NULL,0,0,NULL),(142,62,2,1,NULL,NULL,1,NULL,0,0,NULL),(143,68,5,1,NULL,NULL,1,NULL,0,0,NULL),(144,62,5,1,NULL,NULL,1,NULL,0,0,NULL),(145,5,2,2,NULL,NULL,1,NULL,0,0,NULL),(146,62,68,3,NULL,NULL,1,NULL,0,0,NULL),(147,2,10,6,NULL,NULL,1,NULL,0,0,NULL),(148,5,10,7,NULL,NULL,1,NULL,0,0,NULL),(149,68,10,7,NULL,NULL,1,NULL,0,0,NULL),(150,62,10,7,NULL,NULL,1,NULL,0,0,NULL); /*!40000 ALTER TABLE `civicrm_relationship` ENABLE KEYS */; UNLOCK TABLES; @@ -1237,7 +1246,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_setting` WRITE; /*!40000 ALTER TABLE `civicrm_setting` DISABLE KEYS */; -INSERT INTO `civicrm_setting` (`id`, `group_name`, `name`, `value`, `domain_id`, `contact_id`, `is_domain`, `component_id`, `created_date`, `created_id`) VALUES (1,'CiviCRM Preferences','contact_view_options','s:28:\"123456789101113\";',1,NULL,1,NULL,NULL,NULL),(2,'CiviCRM Preferences','contact_edit_options','s:25:\"1234567891011\";',1,NULL,1,NULL,NULL,NULL),(3,'CiviCRM Preferences','advanced_search_options','s:46:\"123456789101112131516171819\";',1,NULL,1,NULL,NULL,NULL),(4,'CiviCRM Preferences','user_dashboard_options','s:15:\"1234578\";',1,NULL,1,NULL,NULL,NULL),(5,'CiviCRM Preferences','address_options','s:23:\"123456891011\";',1,NULL,1,NULL,NULL,NULL),(6,'CiviCRM Preferences','address_format','s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(7,'CiviCRM Preferences','mailing_format','s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(8,'CiviCRM Preferences','display_name_format','s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";',1,NULL,1,NULL,NULL,NULL),(9,'CiviCRM Preferences','sort_name_format','s:43:\"{contact.last_name}{, }{contact.first_name}\";',1,NULL,1,NULL,NULL,NULL),(10,'CiviCRM Preferences','editor_id','s:1:\"2\";',1,NULL,1,NULL,NULL,NULL),(11,'CiviCRM Preferences','contact_ajax_check_similar','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(12,'CiviCRM Preferences','activity_assignee_notification','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(13,'CiviCRM Preferences','contact_autocomplete_options','s:5:\"12\";',1,NULL,1,NULL,NULL,NULL),(14,'CiviCRM Preferences','contact_reference_options','s:5:\"12\";',1,NULL,1,NULL,NULL,NULL),(15,'Address Standardization Preferences','address_standardization_provider',NULL,1,NULL,1,NULL,NULL,NULL),(16,'Address Standardization Preferences','address_standardization_userid',NULL,1,NULL,1,NULL,NULL,NULL),(17,'Address Standardization Preferences','address_standardization_url',NULL,1,NULL,1,NULL,NULL,NULL),(18,'Campaign Preferences','tag_unconfirmed','s:11:\"Unconfirmed\";',1,NULL,1,NULL,NULL,NULL),(19,'Campaign Preferences','petition_contacts','s:17:\"Petition Contacts\";',1,NULL,1,NULL,NULL,NULL),(20,'Event Preferences','enable_cart','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(21,'Mailing Preferences','profile_double_optin','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(22,'Mailing Preferences','profile_add_to_group_double_optin','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(23,'Mailing Preferences','track_civimail_replies','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(24,'Mailing Preferences','civimail_workflow','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(25,'Mailing Preferences','civimail_server_wide_lock','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(26,'Mailing Preferences','mailing_backend','a:1:{s:15:\"outBound_option\";s:1:\"3\";}',1,NULL,1,NULL,NULL,NULL),(27,'Member Preferences','default_renewal_contribution_page',NULL,1,NULL,1,NULL,NULL,NULL),(28,'Multi Site Preferences','is_enabled','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(29,'Multi Site Preferences','uniq_email_per_site','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(30,'Multi Site Preferences','domain_group_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(31,'Multi Site Preferences','event_price_set_domain_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(32,'Directory Preferences','uploadDir','s:7:\"upload/\";',1,NULL,1,NULL,'2012-07-19 04:22:36',NULL),(33,'Directory Preferences','imageUploadDir','s:19:\"persist/contribute/\";',1,NULL,1,NULL,'2012-07-19 04:22:36',NULL),(34,'Directory Preferences','customFileUploadDir','s:7:\"custom/\";',1,NULL,1,NULL,'2012-07-19 04:22:36',NULL),(35,'Directory Preferences','customTemplateDir',NULL,1,NULL,1,NULL,NULL,NULL),(36,'Directory Preferences','customPHPPathDir',NULL,1,NULL,1,NULL,NULL,NULL),(37,'Directory Preferences','extensionsDir',NULL,1,NULL,1,NULL,NULL,NULL),(38,'URL Preferences','userFrameworkResourceURL','s:16:\"modules/civicrm/\";',1,NULL,1,NULL,'2012-07-19 04:22:36',NULL),(39,'URL Preferences','imageUploadURL','s:33:\"files/civicrm/persist/contribute/\";',1,NULL,1,NULL,'2012-07-19 04:22:36',NULL),(40,'URL Preferences','customCSSURL',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:\"123456789101113\";',1,NULL,1,NULL,NULL,NULL),(2,'CiviCRM Preferences','contact_edit_options','s:22:\"12345678911\";',1,NULL,1,NULL,NULL,NULL),(3,'CiviCRM Preferences','advanced_search_options','s:46:\"123456789101112131516171819\";',1,NULL,1,NULL,NULL,NULL),(4,'CiviCRM Preferences','user_dashboard_options','s:15:\"1234578\";',1,NULL,1,NULL,NULL,NULL),(5,'CiviCRM Preferences','address_options','s:23:\"123456891011\";',1,NULL,1,NULL,NULL,NULL),(6,'CiviCRM Preferences','address_format','s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(7,'CiviCRM Preferences','mailing_format','s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(8,'CiviCRM Preferences','display_name_format','s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";',1,NULL,1,NULL,NULL,NULL),(9,'CiviCRM Preferences','sort_name_format','s:43:\"{contact.last_name}{, }{contact.first_name}\";',1,NULL,1,NULL,NULL,NULL),(10,'CiviCRM Preferences','editor_id','s:1:\"2\";',1,NULL,1,NULL,NULL,NULL),(11,'CiviCRM Preferences','contact_ajax_check_similar','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(12,'CiviCRM Preferences','activity_assignee_notification','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(13,'CiviCRM Preferences','contact_autocomplete_options','s:5:\"12\";',1,NULL,1,NULL,NULL,NULL),(14,'CiviCRM Preferences','contact_reference_options','s:5:\"12\";',1,NULL,1,NULL,NULL,NULL),(15,'Address Standardization Preferences','address_standardization_provider',NULL,1,NULL,1,NULL,NULL,NULL),(16,'Address Standardization Preferences','address_standardization_userid',NULL,1,NULL,1,NULL,NULL,NULL),(17,'Address Standardization Preferences','address_standardization_url',NULL,1,NULL,1,NULL,NULL,NULL),(18,'Campaign Preferences','tag_unconfirmed','s:11:\"Unconfirmed\";',1,NULL,1,NULL,NULL,NULL),(19,'Campaign Preferences','petition_contacts','s:17:\"Petition Contacts\";',1,NULL,1,NULL,NULL,NULL),(20,'Event Preferences','enable_cart','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(21,'Mailing Preferences','profile_double_optin','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(22,'Mailing Preferences','profile_add_to_group_double_optin','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(23,'Mailing Preferences','track_civimail_replies','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(24,'Mailing Preferences','civimail_workflow','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(25,'Mailing Preferences','civimail_server_wide_lock','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(26,'Mailing Preferences','mailing_backend','a:1:{s:15:\"outBound_option\";s:1:\"3\";}',1,NULL,1,NULL,NULL,NULL),(27,'Member Preferences','default_renewal_contribution_page',NULL,1,NULL,1,NULL,NULL,NULL),(28,'Multi Site Preferences','is_enabled','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(29,'Multi Site Preferences','uniq_email_per_site','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(30,'Multi Site Preferences','domain_group_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(31,'Multi Site Preferences','event_price_set_domain_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(32,'Directory Preferences','uploadDir','s:7:\"upload/\";',1,NULL,1,NULL,'2012-08-20 11:56:39',NULL),(33,'Directory Preferences','imageUploadDir','s:19:\"persist/contribute/\";',1,NULL,1,NULL,'2012-08-20 11:56:39',NULL),(34,'Directory Preferences','customFileUploadDir','s:7:\"custom/\";',1,NULL,1,NULL,'2012-08-20 11:56:39',NULL),(35,'Directory Preferences','customTemplateDir',NULL,1,NULL,1,NULL,NULL,NULL),(36,'Directory Preferences','customPHPPathDir',NULL,1,NULL,1,NULL,NULL,NULL),(37,'Directory Preferences','extensionsDir',NULL,1,NULL,1,NULL,NULL,NULL),(38,'URL Preferences','userFrameworkResourceURL','s:16:\"modules/civicrm/\";',1,NULL,1,NULL,'2012-08-20 11:56:39',NULL),(39,'URL Preferences','imageUploadURL','s:33:\"files/civicrm/persist/contribute/\";',1,NULL,1,NULL,'2012-08-20 11:56:39',NULL),(40,'URL Preferences','customCSSURL',NULL,1,NULL,1,NULL,NULL,NULL),(41,'URL Preferences','extensionsURL',NULL,1,NULL,1,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_setting` ENABLE KEYS */; UNLOCK TABLES; @@ -1266,7 +1275,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,27,2,'2012-02-01 11:43:39','Email','Added',NULL),(2,49,2,'2012-07-02 04:19:39','Email','Added',NULL),(3,35,2,'2011-10-19 09:07:00','Email','Added',NULL),(4,72,2,'2012-02-18 04:14:19','Email','Added',NULL),(5,54,2,'2011-12-06 02:04:41','Email','Added',NULL),(6,21,2,'2012-02-11 07:57:51','Email','Added',NULL),(7,42,2,'2011-07-29 11:19:28','Email','Added',NULL),(8,99,2,'2011-08-15 10:17:28','Email','Added',NULL),(9,53,2,'2011-07-27 10:12:37','Email','Added',NULL),(10,101,2,'2011-12-13 09:30:35','Email','Added',NULL),(11,12,2,'2012-03-01 03:52:32','Email','Added',NULL),(12,95,2,'2011-09-05 12:05:34','Email','Added',NULL),(13,63,2,'2012-04-24 07:06:55','Email','Added',NULL),(14,62,2,'2012-05-13 03:36:56','Email','Added',NULL),(15,91,2,'2012-05-15 07:13:53','Email','Added',NULL),(16,85,2,'2011-11-18 07:12:02','Email','Added',NULL),(17,28,2,'2011-12-29 12:03:39','Email','Added',NULL),(18,41,2,'2012-04-22 03:21:47','Email','Added',NULL),(19,40,2,'2012-07-07 05:36:49','Email','Added',NULL),(20,52,2,'2012-01-12 04:09:21','Email','Added',NULL),(21,20,2,'2011-09-13 06:01:29','Email','Added',NULL),(22,45,2,'2012-01-16 12:10:28','Email','Added',NULL),(23,7,2,'2012-06-09 08:40:04','Email','Added',NULL),(24,36,2,'2011-11-24 09:50:46','Email','Added',NULL),(25,3,2,'2012-07-08 06:09:06','Email','Added',NULL),(26,67,2,'2011-07-24 06:09:55','Email','Added',NULL),(27,97,2,'2011-09-14 02:56:45','Email','Added',NULL),(28,26,2,'2011-08-14 01:01:03','Email','Added',NULL),(29,23,2,'2012-01-05 08:58:22','Email','Added',NULL),(30,9,2,'2011-10-26 07:38:14','Email','Added',NULL),(31,30,2,'2011-09-10 09:57:46','Email','Added',NULL),(32,90,2,'2012-01-01 09:00:26','Email','Added',NULL),(33,17,2,'2011-11-06 09:59:28','Email','Added',NULL),(34,51,2,'2012-05-04 05:49:26','Email','Added',NULL),(35,37,2,'2012-04-03 02:43:04','Email','Added',NULL),(36,55,2,'2012-06-04 03:50:33','Email','Added',NULL),(37,93,2,'2011-10-21 09:41:32','Email','Added',NULL),(38,46,2,'2012-05-03 06:03:46','Email','Added',NULL),(39,19,2,'2011-09-27 06:58:37','Email','Added',NULL),(40,43,2,'2011-08-11 08:25:19','Email','Added',NULL),(41,50,2,'2011-08-08 10:12:31','Email','Added',NULL),(42,22,2,'2012-03-08 05:36:37','Email','Added',NULL),(43,31,2,'2011-08-26 10:02:50','Email','Added',NULL),(44,100,2,'2011-12-30 06:58:08','Email','Added',NULL),(45,61,2,'2011-12-30 06:32:05','Email','Added',NULL),(46,56,2,'2011-07-27 03:14:02','Email','Added',NULL),(47,83,2,'2012-06-20 11:34:49','Email','Added',NULL),(48,98,2,'2012-07-19 08:42:57','Email','Added',NULL),(49,92,2,'2011-09-04 05:15:44','Email','Added',NULL),(50,80,2,'2011-09-13 03:39:40','Email','Added',NULL),(51,57,2,'2011-09-20 10:11:18','Email','Added',NULL),(52,86,2,'2012-04-05 06:29:26','Email','Added',NULL),(53,81,2,'2012-03-23 11:05:44','Email','Added',NULL),(54,88,2,'2011-12-12 11:34:34','Email','Added',NULL),(55,71,2,'2012-07-13 07:59:57','Email','Added',NULL),(56,10,2,'2012-06-26 05:06:15','Email','Added',NULL),(57,94,2,'2011-08-02 05:07:24','Email','Added',NULL),(58,65,2,'2011-08-11 02:18:43','Email','Added',NULL),(59,82,2,'2011-11-10 08:16:24','Email','Added',NULL),(60,4,2,'2011-12-11 07:36:14','Email','Added',NULL),(61,47,3,'2012-06-25 06:50:32','Email','Added',NULL),(62,32,3,'2012-01-09 09:48:27','Email','Added',NULL),(63,16,3,'2012-05-18 05:26:26','Email','Added',NULL),(64,68,3,'2012-06-28 07:58:58','Email','Added',NULL),(65,25,3,'2012-06-27 08:35:54','Email','Added',NULL),(66,29,3,'2012-01-02 09:53:57','Email','Added',NULL),(67,96,3,'2012-06-18 09:26:59','Email','Added',NULL),(68,39,3,'2012-05-27 09:51:34','Email','Added',NULL),(69,66,3,'2011-11-26 11:23:20','Email','Added',NULL),(70,70,3,'2012-02-20 06:52:20','Email','Added',NULL),(71,59,3,'2011-12-20 03:23:18','Email','Added',NULL),(72,60,3,'2011-11-03 12:59:06','Email','Added',NULL),(73,33,3,'2012-06-01 11:26:05','Email','Added',NULL),(74,89,3,'2011-08-15 09:50:06','Email','Added',NULL),(75,6,3,'2011-08-13 09:27:45','Email','Added',NULL),(76,27,4,'2011-10-30 10:45:16','Email','Added',NULL),(77,99,4,'2011-11-12 12:33:36','Email','Added',NULL),(78,91,4,'2012-05-07 01:39:37','Email','Added',NULL),(79,45,4,'2011-08-03 04:41:24','Email','Added',NULL),(80,23,4,'2011-11-03 05:56:58','Email','Added',NULL),(81,55,4,'2012-02-21 10:28:22','Email','Added',NULL),(82,31,4,'2011-09-29 07:13:58','Email','Added',NULL),(83,80,4,'2012-07-01 10:51:51','Email','Added',NULL); +INSERT INTO `civicrm_subscription_history` (`id`, `contact_id`, `group_id`, `date`, `method`, `status`, `tracking`) VALUES (1,30,2,'2012-03-11 10:41:18','Email','Added',NULL),(2,32,2,'2011-11-07 08:43:49','Email','Added',NULL),(3,74,2,'2011-10-07 09:44:57','Email','Added',NULL),(4,42,2,'2011-11-21 08:33:55','Email','Added',NULL),(5,57,2,'2012-04-23 09:13:30','Email','Added',NULL),(6,64,2,'2011-09-19 12:29:11','Email','Added',NULL),(7,53,2,'2012-07-06 07:10:23','Email','Added',NULL),(8,35,2,'2012-02-17 05:45:29','Email','Added',NULL),(9,13,2,'2011-12-22 01:06:05','Email','Added',NULL),(10,6,2,'2012-02-23 08:29:37','Email','Added',NULL),(11,59,2,'2012-03-05 04:55:22','Email','Added',NULL),(12,20,2,'2012-01-18 04:52:11','Email','Added',NULL),(13,90,2,'2011-10-06 01:17:46','Email','Added',NULL),(14,25,2,'2012-05-10 11:55:47','Email','Added',NULL),(15,48,2,'2012-05-09 09:53:46','Email','Added',NULL),(16,37,2,'2012-01-15 10:53:44','Email','Added',NULL),(17,9,2,'2012-05-01 01:23:39','Email','Added',NULL),(18,76,2,'2012-01-12 04:17:00','Email','Added',NULL),(19,29,2,'2012-07-06 02:44:41','Email','Added',NULL),(20,66,2,'2012-02-06 09:00:46','Email','Added',NULL),(21,56,2,'2011-10-18 02:48:52','Email','Added',NULL),(22,86,2,'2012-05-27 04:59:00','Email','Added',NULL),(23,80,2,'2012-01-02 06:05:10','Email','Added',NULL),(24,98,2,'2012-07-08 09:50:35','Email','Added',NULL),(25,8,2,'2012-07-08 01:08:12','Email','Added',NULL),(26,34,2,'2011-12-03 09:54:29','Email','Added',NULL),(27,60,2,'2012-03-12 06:32:47','Email','Added',NULL),(28,97,2,'2011-11-26 05:07:17','Email','Added',NULL),(29,28,2,'2012-01-12 05:27:08','Email','Added',NULL),(30,99,2,'2012-01-15 08:48:01','Email','Added',NULL),(31,27,2,'2012-08-09 02:07:53','Email','Added',NULL),(32,75,2,'2012-02-14 06:03:10','Email','Added',NULL),(33,89,2,'2011-12-04 11:20:16','Email','Added',NULL),(34,65,2,'2012-01-06 05:19:15','Email','Added',NULL),(35,87,2,'2011-12-22 05:54:54','Email','Added',NULL),(36,46,2,'2012-06-02 09:08:04','Email','Added',NULL),(37,38,2,'2012-02-20 10:52:48','Email','Added',NULL),(38,40,2,'2011-12-07 11:36:46','Email','Added',NULL),(39,58,2,'2011-11-11 09:38:30','Email','Added',NULL),(40,4,2,'2012-03-23 06:51:49','Email','Added',NULL),(41,67,2,'2011-09-29 09:18:08','Email','Added',NULL),(42,3,2,'2011-08-31 08:00:54','Email','Added',NULL),(43,15,2,'2012-04-10 07:57:58','Email','Added',NULL),(44,33,2,'2012-02-13 11:13:37','Email','Added',NULL),(45,50,2,'2011-09-05 03:42:49','Email','Added',NULL),(46,21,2,'2012-07-06 06:43:44','Email','Added',NULL),(47,82,2,'2012-08-14 10:07:31','Email','Added',NULL),(48,24,2,'2012-02-22 12:42:09','Email','Added',NULL),(49,94,2,'2012-04-23 09:37:08','Email','Added',NULL),(50,36,2,'2012-08-03 01:02:55','Email','Added',NULL),(51,70,2,'2012-04-27 10:57:46','Email','Added',NULL),(52,79,2,'2011-10-26 12:17:24','Email','Added',NULL),(53,91,2,'2011-10-25 02:19:25','Email','Added',NULL),(54,71,2,'2012-03-07 11:18:09','Email','Added',NULL),(55,39,2,'2012-03-31 02:13:01','Email','Added',NULL),(56,69,2,'2012-03-22 01:34:25','Email','Added',NULL),(57,51,2,'2011-11-21 08:47:20','Email','Added',NULL),(58,7,2,'2011-12-23 06:09:00','Email','Added',NULL),(59,100,2,'2011-10-08 11:59:18','Email','Added',NULL),(60,96,2,'2011-08-30 03:16:40','Email','Added',NULL),(61,85,3,'2012-07-15 03:23:17','Email','Added',NULL),(62,93,3,'2012-07-15 02:43:39','Email','Added',NULL),(63,78,3,'2012-03-08 03:11:24','Email','Added',NULL),(64,49,3,'2012-01-02 09:27:05','Email','Added',NULL),(65,81,3,'2012-08-11 10:48:14','Email','Added',NULL),(66,31,3,'2012-02-06 04:44:51','Email','Added',NULL),(67,73,3,'2011-09-18 09:56:13','Email','Added',NULL),(68,63,3,'2012-02-08 07:34:40','Email','Added',NULL),(69,14,3,'2011-12-04 11:01:08','Email','Added',NULL),(70,61,3,'2011-09-21 04:42:47','Email','Added',NULL),(71,55,3,'2012-05-08 03:58:42','Email','Added',NULL),(72,2,3,'2011-09-11 09:22:36','Email','Added',NULL),(73,5,3,'2012-01-21 09:25:42','Email','Added',NULL),(74,68,3,'2012-05-01 11:39:34','Email','Added',NULL),(75,62,3,'2012-03-15 03:44:12','Email','Added',NULL),(76,30,4,'2012-05-31 09:31:51','Email','Added',NULL),(77,35,4,'2012-02-14 05:37:49','Email','Added',NULL),(78,48,4,'2011-11-05 01:01:26','Email','Added',NULL),(79,86,4,'2011-12-14 10:39:11','Email','Added',NULL),(80,28,4,'2012-04-03 08:10:55','Email','Added',NULL),(81,46,4,'2012-03-17 10:14:58','Email','Added',NULL),(82,15,4,'2012-02-23 02:17:57','Email','Added',NULL),(83,36,4,'2012-08-12 08:47:48','Email','Added',NULL); /*!40000 ALTER TABLE `civicrm_subscription_history` ENABLE KEYS */; UNLOCK TABLES; @@ -1332,7 +1341,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_uf_field` WRITE; /*!40000 ALTER TABLE `civicrm_uf_field` DISABLE KEYS */; -INSERT INTO `civicrm_uf_field` (`id`, `uf_group_id`, `field_name`, `is_active`, `is_view`, `is_required`, `weight`, `help_post`, `help_pre`, `visibility`, `in_selector`, `is_searchable`, `location_type_id`, `phone_type_id`, `label`, `field_type`, `is_reserved`) VALUES (1,1,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'First Name','Individual',0),(2,1,'last_name',1,0,1,2,'First and last name will be shared with other visitors to the site.',NULL,'User and User Admin Only',0,0,NULL,NULL,'Last Name','Individual',0),(3,1,'street_address',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'Street Address (Home)','Contact',0),(4,1,'city',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'City (Home)','Contact',0),(5,1,'postal_code',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'Postal Code (Home)','Contact',0),(6,1,'country',1,0,0,6,'Your state/province and country of residence will be shared with others so folks can find others in their community.',NULL,'User and User Admin Only',0,0,1,NULL,'Country (Home)','Contact',0),(7,1,'state_province',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'State (Home)','Contact',0),(8,2,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'First Name','Individual',0),(9,2,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Last Name','Individual',0),(10,2,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Email Address','Contact',0),(11,3,'participant_status',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Participant Status','Participant',1),(12,4,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'First Name','Individual',0),(13,4,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Last Name','Individual',0),(14,4,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Email Address','Contact',0),(15,5,'organization_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Organization Name','Organization',0),(16,5,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Email Address','Contact',0),(17,6,'household_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Household Name','Household',0),(18,6,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Email Address','Contact',0),(19,7,'phone',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,1,1,'Home Phone','Contact',0),(20,7,'phone',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,1,2,'Home Mobile','Contact',0),(21,7,'street_address',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Primary Address','Contact',0),(22,7,'city',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'City','Contact',0),(23,7,'state_province',1,0,1,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'State','Contact',0),(24,7,'postal_code',1,0,1,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Postal Code','Contact',0),(25,7,'email',1,0,1,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Primary Email','Contact',0),(26,7,'group',1,0,1,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Groups','Contact',0),(27,7,'tag',1,0,1,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Tags','Contact',0),(28,7,'gender',1,0,1,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Gender','Individual',0),(29,7,'birth_date',1,0,1,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Date of Birth','Individual',0),(30,8,'street_address',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'Street Address (Home)','Contact',1),(31,8,'city',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'City (Home)','Contact',1),(32,8,'postal_code',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'Postal Code (Home)','Contact',0),(33,8,'country',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'Country (Home)','Contact',0),(34,8,'state_province',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'State (Home)','Contact',0),(35,9,'organization_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Organization Name','Organization',0),(36,9,'phone',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,3,1,'Phone (Main) ','Contact',0),(37,9,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,3,NULL,'Email (Main) ','Contact',0),(38,9,'street_address',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,3,NULL,'Street Address','Contact',0),(39,9,'city',1,0,1,5,NULL,NULL,'User and User Admin Only',0,0,3,NULL,'City','Contact',0),(40,9,'postal_code',1,0,1,6,NULL,NULL,'User and User Admin Only',0,0,3,NULL,'Postal Code','Contact',0),(41,9,'country',1,0,1,7,NULL,NULL,'User and User Admin Only',0,0,3,NULL,'Country','Contact',0),(42,9,'state_province',1,0,1,8,NULL,NULL,'User and User Admin Only',0,0,3,NULL,'State / Province','Contact',0),(43,10,'contribution_type',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Type','Contribution',1),(44,10,'total_amount',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Amount','Contribution',1),(45,10,'contribution_status_id',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Status','Contribution',1),(46,10,'receive_date',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Received','Contribution',1),(47,10,'contribution_source',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Source','Contribution',0),(48,10,'payment_instrument',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Paid By','Contribution',0),(49,10,'check_number',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Check Number','Contribution',0),(50,10,'send_receipt',1,0,0,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Send Receipt','Contribution',0),(51,10,'invoice_id',1,0,0,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Invoice ID','Contribution',0),(52,11,'membership_type',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Type','Membership',1),(53,11,'join_date',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Member Since','Membership',1),(54,11,'membership_start_date',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Start Date','Membership',1),(55,11,'membership_end_date',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'End Date','Membership',1),(56,11,'membership_source',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Source','Membership',0),(57,11,'send_receipt',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Send Receipt','Membership',0),(58,11,'contribution_type',1,0,1,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Contribution Type','Membership',1),(59,11,'total_amount',1,0,1,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Amount','Membership',1),(60,11,'receive_date',1,0,1,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Received','Membership',1),(61,11,'payment_instrument',1,0,0,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Paid By','Membership',0),(62,11,'check_number',1,0,0,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Check Number','Membership',0),(63,11,'contribution_status_id',1,0,1,12,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Payment Status','Membership',1),(64,12,'email',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Email Address','Contact',0); +INSERT INTO `civicrm_uf_field` (`id`, `uf_group_id`, `field_name`, `is_active`, `is_view`, `is_required`, `weight`, `help_post`, `help_pre`, `visibility`, `in_selector`, `is_searchable`, `location_type_id`, `phone_type_id`, `label`, `field_type`, `is_reserved`) VALUES (1,1,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'First Name','Individual',0),(2,1,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Last Name','Individual',0),(3,1,'street_address',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'Street Address (Home)','Contact',0),(4,1,'city',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'City (Home)','Contact',0),(5,1,'postal_code',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'Postal Code (Home)','Contact',0),(6,1,'country',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'Country (Home)','Contact',0),(7,1,'state_province',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'State (Home)','Contact',0),(8,2,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'First Name','Individual',0),(9,2,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Last Name','Individual',0),(10,2,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Email Address','Contact',0),(11,3,'participant_status',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Participant Status','Participant',1),(12,4,'first_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'First Name','Individual',0),(13,4,'last_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Last Name','Individual',0),(14,4,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Email Address','Contact',0),(15,5,'organization_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Organization Name','Organization',0),(16,5,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Email Address','Contact',0),(17,6,'household_name',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Household Name','Household',0),(18,6,'email',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Email Address','Contact',0),(19,7,'phone',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,1,1,'Home Phone','Contact',0),(20,7,'phone',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,1,2,'Home Mobile','Contact',0),(21,7,'street_address',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Primary Address','Contact',0),(22,7,'city',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'City','Contact',0),(23,7,'state_province',1,0,1,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'State','Contact',0),(24,7,'postal_code',1,0,1,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Postal Code','Contact',0),(25,7,'email',1,0,1,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Primary Email','Contact',0),(26,7,'group',1,0,1,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Groups','Contact',0),(27,7,'tag',1,0,1,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Tags','Contact',0),(28,7,'gender',1,0,1,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Gender','Individual',0),(29,7,'birth_date',1,0,1,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Date of Birth','Individual',0),(30,8,'street_address',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'Street Address (Home)','Contact',1),(31,8,'city',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'City (Home)','Contact',1),(32,8,'postal_code',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'Postal Code (Home)','Contact',0),(33,8,'country',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'Country (Home)','Contact',0),(34,8,'state_province',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,1,NULL,'State (Home)','Contact',0),(35,9,'organization_name',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Organization Name','Organization',0),(36,9,'phone',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,3,1,'Phone (Main) ','Contact',0),(37,9,'email',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,3,NULL,'Email (Main) ','Contact',0),(38,9,'street_address',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,3,NULL,'Street Address','Contact',0),(39,9,'city',1,0,1,5,NULL,NULL,'User and User Admin Only',0,0,3,NULL,'City','Contact',0),(40,9,'postal_code',1,0,1,6,NULL,NULL,'User and User Admin Only',0,0,3,NULL,'Postal Code','Contact',0),(41,9,'country',1,0,1,7,NULL,NULL,'User and User Admin Only',0,0,3,NULL,'Country','Contact',0),(42,9,'state_province',1,0,1,8,NULL,NULL,'User and User Admin Only',0,0,3,NULL,'State / Province','Contact',0),(43,10,'contribution_type',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Type','Contribution',1),(44,10,'total_amount',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Amount','Contribution',1),(45,10,'contribution_status_id',1,0,1,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Status','Contribution',1),(46,10,'receive_date',1,0,1,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Received','Contribution',1),(47,10,'contribution_source',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Source','Contribution',0),(48,10,'payment_instrument',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Paid By','Contribution',0),(49,10,'check_number',1,0,0,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Check Number','Contribution',0),(50,10,'send_receipt',1,0,0,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Send Receipt','Contribution',0),(51,10,'invoice_id',1,0,0,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Invoice ID','Contribution',0),(52,11,'membership_type',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Type','Membership',1),(53,11,'join_date',1,0,1,2,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Member Since','Membership',1),(54,11,'membership_start_date',1,0,0,3,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Start Date','Membership',1),(55,11,'membership_end_date',1,0,0,4,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'End Date','Membership',1),(56,11,'membership_source',1,0,0,5,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Source','Membership',0),(57,11,'send_receipt',1,0,0,6,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Send Receipt','Membership',0),(58,11,'contribution_type',1,0,1,7,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Contribution Type','Membership',1),(59,11,'total_amount',1,0,1,8,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Amount','Membership',1),(60,11,'receive_date',1,0,1,9,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Received','Membership',1),(61,11,'payment_instrument',1,0,0,10,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Paid By','Membership',0),(62,11,'check_number',1,0,0,11,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Check Number','Membership',0),(63,11,'contribution_status_id',1,0,1,12,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Payment Status','Membership',1),(64,12,'email',1,0,1,1,NULL,NULL,'User and User Admin Only',0,0,NULL,NULL,'Email Address','Contact',0); /*!40000 ALTER TABLE `civicrm_uf_field` ENABLE KEYS */; UNLOCK TABLES; @@ -1393,7 +1402,7 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2012-07-19 16:22:42 +-- Dump completed on 2012-08-21 12:26:44 -- +--------------------------------------------------------------------+ -- | CiviCRM version 3.4 | -- +--------------------------------------------------------------------+ diff --git a/sql/civicrm_navigation.mysql b/sql/civicrm_navigation.mysql index 502abcff2..a318c4557 100644 --- a/sql/civicrm_navigation.mysql +++ b/sql/civicrm_navigation.mysql @@ -32,7 +32,7 @@ INSERT INTO civicrm_setting ( domain_id, contact_id, is_domain, group_name, name, value ) VALUES ( @domainID, NULL, 1, 'CiviCRM Preferences', 'contact_view_options', 's:28:"123456789101113";' ), - ( @domainID, NULL, 1, 'CiviCRM Preferences', 'contact_edit_options', 's:25:"1234567891011";' ), + ( @domainID, NULL, 1, 'CiviCRM Preferences', 'contact_edit_options', 's:22:"12345678911";' ), ( @domainID, NULL, 1, 'CiviCRM Preferences', 'advanced_search_options', 's:46:"123456789101112131516171819";' ), ( @domainID, NULL, 1, 'CiviCRM Preferences', 'user_dashboard_options', 's:15:"1234578";' ), ( @domainID, NULL, 1, 'CiviCRM Preferences', 'address_options', 's:23:"123456891011";' ), @@ -80,7 +80,8 @@ VALUES ( @domainID, NULL, 1, 'Directory Preferences', 'extensionsDir' , NULL ), ( @domainID, NULL, 1, 'URL Preferences', 'userFrameworkResourceURL' , NULL ), ( @domainID, NULL, 1, 'URL Preferences', 'imageUploadURL' , NULL ), - ( @domainID, NULL, 1, 'URL Preferences', 'customCSSURL' , NULL ); + ( @domainID, NULL, 1, 'URL Preferences', 'customCSSURL' , NULL ), + ( @domainID, NULL, 1, 'URL Preferences', 'extensionsURL' , NULL ); -- mail settings diff --git a/templates/CRM/Admin/Page/ExtensionDetails.tpl b/templates/CRM/Admin/Page/ExtensionDetails.tpl index ce49844d9..c410115b0 100644 --- a/templates/CRM/Admin/Page/ExtensionDetails.tpl +++ b/templates/CRM/Admin/Page/ExtensionDetails.tpl @@ -1,9 +1,14 @@ + {if $action EQ 1} + + + + {/if} - + @@ -15,7 +20,7 @@ - + diff --git a/templates/CRM/Contact/Page/View/Summary.tpl b/templates/CRM/Contact/Page/View/Summary.tpl index 5e9f34e27..b696beb70 100644 --- a/templates/CRM/Contact/Page/View/Summary.tpl +++ b/templates/CRM/Contact/Page/View/Summary.tpl @@ -200,13 +200,14 @@
    + {if $showEmail}
    {include file="CRM/Contact/Page/Inline/Email.tpl"}
    - - {if $website} + {/if} + {if $website and $showWebsite}
    {foreach from=$website item=item} {if !empty($item.url)} @@ -228,12 +229,14 @@
    + {if $showPhone}
    {include file="CRM/Contact/Page/Inline/Phone.tpl"}
    -
    - {if $im} +
    + {/if} + {if $im and $showIM}
    {foreach from=$im item=item} {if $item.name or $item.provider} @@ -245,7 +248,7 @@ {/foreach}
    {/if} - {if $openid} + {if $openid and $showOpenID}
    {foreach from=$openid item=item} {if $item.openid} @@ -261,7 +264,7 @@
    - + {if $showAddress}
    {assign var='locationIndex' value=1} {if $address} @@ -296,8 +299,9 @@ {/if}
    - + {/if}
    + {if $showCommunicationPreferences}
    @@ -305,6 +309,7 @@
    + {/if} {if $contact_type eq 'Individual' AND $showDemographics}
    @@ -319,42 +324,46 @@
    -
    -
    -
    - {include file="CRM/Contact/Page/View/CustomDataView.tpl" side='1'} -
    - -
    - {include file="CRM/Contact/Page/View/CustomDataView.tpl" side='0'} -
    + {if $showCustomData} +
    +
    +
    + {include file="CRM/Contact/Page/View/CustomDataView.tpl" side='1'} +
    -
    -
    +
    + {include file="CRM/Contact/Page/View/CustomDataView.tpl" side='0'}
    - {literal} - - {/literal} - {if !empty($hookContent) and isset($hookContentPlacement) and $hookContentPlacement eq 1} - {include file="CRM/Contact/Page/View/SummaryHook.tpl"} - {/if} - {else} - {include file="CRM/Contact/Page/View/SummaryHook.tpl"} - {/if} + +
    +
    -
    -
    + + {literal} + + {/literal} + {/if} + + {if !empty($hookContent) and isset($hookContentPlacement) and $hookContentPlacement eq 1} + {include file="CRM/Contact/Page/View/SummaryHook.tpl"} + {/if} + {else} + {include file="CRM/Contact/Page/View/SummaryHook.tpl"} + {/if} +
    +
    +
    {/literal}
    -
    - Advanced Settings +
    + Advanced Settings
    @@ -48,37 +48,37 @@
    - + - + - + - + - + - + - + @@ -87,12 +87,12 @@ - + - + diff --git a/templates/CRM/UF/Form/Block.tpl b/templates/CRM/UF/Form/Block.tpl index 0b82ba20e..d43e4212f 100644 --- a/templates/CRM/UF/Form/Block.tpl +++ b/templates/CRM/UF/Form/Block.tpl @@ -44,8 +44,8 @@
    {$field.groupTitle} {/if} - {if $form.formName eq 'Confirm' OR $form.formName eq 'ThankYou'} -
    {$field.groupTitle}
    + {if $form.formName eq 'Confirm' OR $form.formName eq 'ThankYou'} +
    {$field.groupTitle}
    {/if} {assign var=fieldset value=`$field.groupTitle`} {assign var=groupHelpPost value=`$field.groupHelpPost`} @@ -66,7 +66,7 @@ {if $field.help_pre && $action neq 4 && $action neq 1028}   {$field.help_pre} {/if} -
    {$form.$n.label}
    +
    {$form.$n.label}
    {assign var="count" value="1"} {strip} @@ -104,7 +104,7 @@ {if $field.help_pre && $action neq 4 && $action neq 1028}   {$field.help_pre} {/if} -
    {$form.$n.label}
    +
    {$form.$n.label}
    {if $n|substr:0:3 eq 'im-'} {assign var="provider" value=$n|cat:"-provider_id"} @@ -117,15 +117,15 @@ {if $n eq 'email_greeting' or $n eq 'postal_greeting' or $n eq 'addressee'} {include file="CRM/Profile/Form/GreetingType.tpl"} {elseif $n eq 'group'} -
    {ts}Name (key){/ts}{$extension.name} ({$extension.key})
    {ts}Description{/ts}{$extension.description}
    {ts}Download Location{/ts}{$extension.downloadUrl}{ts}Download location{/ts}{$extension.downloadUrl}
    {ts}Local path{/ts}{$extension.path}{ts}Author{/ts}{$extension.maintainer.author} ({$extension.maintainer.email})
    {ts}License{/ts}{$extension.license}{ts}Version{/ts}{$extension.version}
    {ts}Released on{/ts}{$extension.releaseDate}{$form.add_contact_to_group.label} {$form.add_contact_to_group.html} {help id='id-add_group' file="CRM/UF/Form/Group.hlp"}
    {$form.notify.label} {$form.notify.html} {help id='id-notify_email' file="CRM/UF/Form/Group.hlp"}
    {$form.post_URL.label} {$form.post_URL.html} {help id='id-post_URL' file="CRM/UF/Form/Group.hlp"}
    {$form.cancel_URL.label} {$form.cancel_URL.html} {help id='id-cancel_URL' file="CRM/UF/Form/Group.hlp"}
    {$form.add_captcha.html} {$form.add_captcha.label} {help id='id-add_captcha' file="CRM/UF/Form/Group.hlp"}
    {$form.is_cms_user.label} {$form.is_cms_user.html} {help id='id-is_cms_user' file="CRM/UF/Form/Group.hlp"}
    {$form.is_update_dupe.label} {$form.is_update_dupe.html} {help id='id-is_update_dupe' file="CRM/UF/Form/Group.hlp"}
    {$form.is_map.html} {$form.is_map.label} {help id='id-is_map' file="CRM/UF/Form/Group.hlp"}
    - *} -
    {$form.$n.html}{* quickform add closing
    + + *} +
    {$form.$n.html}{* quickform add closing
    {elseif ( ( $field.data_type eq 'Date' ) or - ( $n|substr:-5:5 eq '_date' ) ) AND - ( $form.formName neq 'Confirm' ) AND - ( $form.formName neq 'ThankYou' ) } + ( $n|substr:-5:5 eq '_date' ) ) AND + ( $form.formName neq 'Confirm' ) AND + ( $form.formName neq 'ThankYou' ) } {include file="CRM/common/jcalendar.tpl" elementName=$n} - {else} + {else} {$form.$n.html} {if $n eq 'gender' && $form.$fieldName.frozen neq true} ({ts}clear{/ts}) @@ -178,8 +178,8 @@ diff --git a/templates/CRM/UF/Form/Field.tpl b/templates/CRM/UF/Form/Field.tpl index 71e778334..188caa579 100644 --- a/templates/CRM/UF/Form/Field.tpl +++ b/templates/CRM/UF/Form/Field.tpl @@ -26,21 +26,21 @@

    {if $action eq 8}{ts}Delete Field{/ts} - {$fieldTitle}{elseif $action eq 1}{ts}Add Field{/ts}{elseif $action eq 2}{ts}Edit Field{/ts} - {$fieldTitle}{/if}

    {if $action eq 8} -
    +
    {ts}WARNING: Deleting this profile field will remove it from Profile forms and listings. If this field is used in any 'stand-alone' Profile forms, you will need to update those forms to remove this field.{/ts} {ts}Do you want to continue?{/ts}
    {else} -
    {include file="CRM/common/formButtons.tpl" location="top"}
    +
    {include file="CRM/common/formButtons.tpl" location="top"}
    - + - @@ -65,20 +65,20 @@ - - + - - + - - + @@ -102,65 +102,65 @@ var otherModule = new Array( ); {/literal}{/foreach}{literal} cj( function() { - if ( cj.inArray( "Profile", otherModule ) > -1 && cj.inArray( "Search Profile", otherModule ) == -1 ){ + if ( cj.inArray( "Profile", otherModule ) > -1 && cj.inArray( "Search Profile", otherModule ) == -1 ){ cj('#profile_visibility').show(); } else if( cj.inArray( "Search Profile", otherModule ) > -1 ){ cj('#profile_visibility').show(); cj("#in_selector").attr('checked',true); } else if( cj.inArray( "Profile", otherModule ) == -1 && cj.inArray( "Search Profile", otherModule ) == -1 ){ cj('#profile_visibility').hide(); - } + } }); var preHelpLabel = ""; function showLabel( ) { - if(preHelpLabel) { cj(".crm-uf-field-form-block-help_pre .label").html(preHelpLabel); } - cj(".crm-uf-field-form-block-is_view").show(); - cj(".crm-uf-field-form-block-is_required").show(); - cj(".crm-uf-field-form-block-visibility").show(); - cj(".crm-uf-field-form-block-is_searchable").show(); - cj(".crm-uf-field-form-block-in_selector").show(); - cj(".crm-uf-field-form-block-help_post").show(); + if(preHelpLabel) { cj(".crm-uf-field-form-block-help_pre .label").html(preHelpLabel); } + cj(".crm-uf-field-form-block-is_view").show(); + cj(".crm-uf-field-form-block-is_required").show(); + cj(".crm-uf-field-form-block-visibility").show(); + cj(".crm-uf-field-form-block-is_searchable").show(); + cj(".crm-uf-field-form-block-in_selector").show(); + cj(".crm-uf-field-form-block-help_post").show(); if("Formatting" == document.forms.Field['field_name[0]'].options[document.forms.Field['field_name[0]'].selectedIndex].value) - { - if(!preHelpLabel) { preHelpLabel = cj(".crm-uf-field-form-block-help_post .label").html(); } - cj(".crm-uf-field-form-block-help_pre .label").html(''); - cj(".crm-uf-field-form-block-is_view").hide(); - cj(".crm-uf-field-form-block-is_required").hide(); - cj(".crm-uf-field-form-block-visibility").hide(); - cj(".crm-uf-field-form-block-is_searchable").hide(); - cj(".crm-uf-field-form-block-in_selector").hide(); - cj(".crm-uf-field-form-block-help_post").hide(); - } + { + if(!preHelpLabel) { preHelpLabel = cj(".crm-uf-field-form-block-help_post .label").html(); } + cj(".crm-uf-field-form-block-help_pre .label").html(''); + cj(".crm-uf-field-form-block-is_view").hide(); + cj(".crm-uf-field-form-block-is_required").hide(); + cj(".crm-uf-field-form-block-visibility").hide(); + cj(".crm-uf-field-form-block-is_searchable").hide(); + cj(".crm-uf-field-form-block-in_selector").hide(); + cj(".crm-uf-field-form-block-help_post").hide(); + } var labelValue = ''; - /* Code to set the Field Label */ - if (document.forms.Field['field_name[0]'].options[document.forms.Field['field_name[0]'].selectedIndex].value) { + /* Code to set the Field Label */ + if (document.forms.Field['field_name[0]'].options[document.forms.Field['field_name[0]'].selectedIndex].value) { if ( document.forms.Field['field_name[1]'].value ) { - labelValue = document.forms.Field['field_name[1]'].options[document.forms.Field['field_name[1]'].selectedIndex].text; + labelValue = document.forms.Field['field_name[1]'].options[document.forms.Field['field_name[1]'].selectedIndex].text; } - if ( document.forms.Field['field_name[3]'].value ) { - labelValue = labelValue + '-' + document.forms.Field['field_name[3]'].options[document.forms.Field['field_name[3]'].selectedIndex].text + ''; - } - if ( document.forms.Field['field_name[2]'].value ) { - labelValue = labelValue + ' (' + document.forms.Field['field_name[2]'].options[document.forms.Field['field_name[2]'].selectedIndex].text + ')'; - } + if ( document.forms.Field['field_name[3]'].value ) { + labelValue = labelValue + '-' + document.forms.Field['field_name[3]'].options[document.forms.Field['field_name[3]'].selectedIndex].text + ''; + } + if ( document.forms.Field['field_name[2]'].value ) { + labelValue = labelValue + ' (' + document.forms.Field['field_name[2]'].options[document.forms.Field['field_name[2]'].selectedIndex].text + ')'; + } } else { - labelValue = ''; + labelValue = ''; } var custom = document.forms.Field['field_name[1]'].value; if ( custom.substring( 0, 7 ) == 'custom_' ) { var customFieldLabel = labelValue.split(' :: ', 2); labelValue = customFieldLabel[0]; - if ( document.forms.Field['field_name[2]'].value ) { - labelValue = labelValue + ' (' + document.forms.Field['field_name[2]'].options[document.forms.Field['field_name[2]'].selectedIndex].text + ')'; + if ( document.forms.Field['field_name[2]'].value ) { + labelValue = labelValue + ' (' + document.forms.Field['field_name[2]'].options[document.forms.Field['field_name[2]'].selectedIndex].text + ')'; } } - + var input = document.getElementById('label'); input.value = labelValue; @@ -198,11 +198,11 @@ function showLabel( ) { cj('#help_post').val( data.help_post ); cj('#help_pre').val( data.help_pre ); }, 'json'); -} +} {/literal}{if $action neq 8}{literal} showHideSeletorSearch(); - + function showHideSeletorSearch() { var vsbl= cj("#visibility").val( ); @@ -221,7 +221,7 @@ function showLabel( ) { show("is_search_desSpan"); } var fldName = cj("#field_name\\[1\\]").val(); - if ( fldName == 'group' || fldName == 'tag' ) { + if ( fldName == 'group' || fldName == 'tag' ) { hide("in_selector_label"); hide("in_selector_html"); hide("in_selector_desSpan"); @@ -235,7 +235,7 @@ function showLabel( ) { cj("#field_name\\[1\\]").bind( 'change blur', function( ) { showHideSeletorSearch( ); - }); + }); cj( function( ) { cj("#field_name\\[1\\]").addClass( 'huge' ); @@ -243,7 +243,7 @@ cj( function( ) { cj("#is_view").click( function(){ viewOnlyShowHide(); }); - + }); {/literal}{/if}{literal} @@ -261,7 +261,7 @@ function viewOnlyShowHide( ) { } } -//CRM-4363 +//CRM-4363 function mixProfile( ) { var allMixTypes = ["Participant", "Membership", "Contribution"]; var type = document.forms.Field['field_name[0]'].value; @@ -271,11 +271,11 @@ function mixProfile( ) { document.getElementById("is_searchable").checked = false; if ( alreadyMixProfile ) { var message = {/literal}'{ts}Oops. You can not mark fields as Searchable in a profile that contains fields for multiple record types.{/ts}'{literal}; - alert( message ); + alert( message ); } else { - var message = {/literal}{ts}'Oops. '{/ts} + var message = {/literal}{ts}'Oops. '{/ts} + type + '{ts} fields can not be marked as Searchable in a profile.{/ts}'{literal}; - alert( message ); + alert( message ); } } if ( document.getElementById("in_selector").checked ) { @@ -284,9 +284,9 @@ function mixProfile( ) { var message = {/literal}'{ts}Oops. You can not mark a field as a Result Column in a profile that contains fields from multiple record types.{/ts}'{literal}; alert( message ); } else { - var message = {/literal}{ts}'Oops. '{/ts} + var message = {/literal}{ts}'Oops. '{/ts} + type + '{ts} can not be used as a Result Column for profile searches.{/ts}'{literal}; - alert( message ); + alert( message ); } } } @@ -296,16 +296,16 @@ function verify( ) { var allMixTypes = ["Participant", "Membership", "Contribution"]; var type = document.forms.Field['field_name[0]'].value; if ( allMixTypes.indexOf( type ) != -1 ) { - var message = {/literal}{ts}'Oops. One or more fields in this profile are configured to be Searchable and / or shown in a Results Column, AND you are trying to add a '{/ts} + var message = {/literal}{ts}'Oops. One or more fields in this profile are configured to be Searchable and / or shown in a Results Column, AND you are trying to add a '{/ts} + type + '{ts} field. Profiles with a mixture of field types can not include Searchable or Results Column fields. If you save this field now, the Seachable and Results Column settings will be removed for all fields in this profile. Do you want to continue?{/ts}'{literal}; - var ok = confirm( message ); + var ok = confirm( message ); if ( !ok ) { return false; } } } - + {/literal} {* include jscript to warn if unsaved form field changes *} diff --git a/templates/CRM/UF/Form/Group.tpl b/templates/CRM/UF/Form/Group.tpl index 2618e8dc0..3ce2e11ab 100644 --- a/templates/CRM/UF/Form/Group.tpl +++ b/templates/CRM/UF/Form/Group.tpl @@ -23,25 +23,25 @@ | see the CiviCRM license FAQ at http://civicrm.org/licensing | +--------------------------------------------------------------------+ *} -{* add/update/view CiviCRM Profile *} +{* add/update/view CiviCRM Profile *} {if $action eq 8}

    {ts}Delete CiviCRM Profile{/ts}

    {/if} -
    +
    {include file="CRM/common/formButtons.tpl" location="top"}
    {if $action eq 2 or $action eq 4 } {* Update or View*} -{/if} - +{/if} + {if $action eq 8 or $action eq 64}
    {$message} -
    -{else} +
    +{else}
    {$form.field_name.label} {$form.field_name.html}
     {ts}Select the type of CiviCRM record and the field you want to include in this Profile.{/ts}
    {$form.label.label} {if $action == 2}{include file='CRM/Core/I18n/Dialog.tpl' table='civicrm_uf_field' field='label' id=$fieldId}{/if}{$form.label.html}
    +
    {$form.label.html}
    {ts}The field label displayed on the form (over-ride the default field label here, if desired).{/ts}
    {$form.in_selector.label}
    {$form.in_selector.html}
    +
    {$form.in_selector.html}
    {ts}Is this field included as a column in the search results table? This setting applies only to fields with 'Public Pages' or 'Public Pages and Listings' visibility.{/ts}
    {$form.help_pre.label}{if $action == 2}{include file='CRM/Core/I18n/Dialog.tpl' table='civicrm_uf_field' field='help_pre' id=$fieldId}{/if}{$form.help_pre.html|crmReplace:class:huge}
    +
    {$form.help_pre.html|crmReplace:class:huge}
     {ts}Explanatory text displayed to users for this field (can include HTML formatting tags).{/ts}
    {$form.help_post.label}{if $action == 2}{include file='CRM/Core/I18n/Dialog.tpl' table='civicrm_uf_field' field='help_post' id=$fieldId}{/if}{$form.help_post.html|crmReplace:class:huge}
    +
    {$form.help_post.html|crmReplace:class:huge}
     {ts}Explanatory text displayed to users for this field (can include HTML formatting tags).{/ts}
    {$form.weight.label}  {$form.weight.html}
     {ts}Weight controls the order in which fields are displayed within a profile. Enter a positive or negative integer - lower numbers are displayed ahead of higher numbers.{/ts}
    @@ -68,7 +68,7 @@
    {$form.title.label} {if $action == 2}{include file='CRM/Core/I18n/Dialog.tpl' table='civicrm_uf_group' field='title' id=$gid}{/if}
    {* adding advance setting tab *} - {include file='CRM/UF/Form/AdvanceSetting.tpl'} + {include file='CRM/UF/Form/AdvanceSetting.tpl'} {/if}
    {include file="CRM/common/formButtons.tpl" location="bottom"}
    diff --git a/templates/CRM/UF/Form/Preview.tpl b/templates/CRM/UF/Form/Preview.tpl index 021dbe1e4..9eb6b9c72 100644 --- a/templates/CRM/UF/Form/Preview.tpl +++ b/templates/CRM/UF/Form/Preview.tpl @@ -35,22 +35,22 @@ {if $viewOnly } {* wrap in crm-container div so crm styles are used *}
    - {include file="CRM/common/CMSUser.tpl"} - {strip} + {include file="CRM/common/CMSUser.tpl"} + {strip} {if $help_pre && $action neq 4}
    {$help_pre}
    {/if} {assign var=zeroField value="Initial Non Existent Fieldset"} {assign var=fieldset value=$zeroField} {foreach from=$fields item=field key=fieldName} {if $field.groupTitle != $fieldset} {if $fieldset != $zeroField} - + {if $groupHelpPost}
    {$groupHelpPost}
    {/if} {if $mode ne 8} {/if} - {/if} + {/if} {if $mode ne 8}

    {$field.groupTitle}

    {/if} @@ -67,13 +67,13 @@ {/if} {assign var=n value=$field.name} {if $field.options_per_line } - + {$form.$n.label} - {assign var="count" value="1"} + {assign var="count" value="1"} {strip} - + {* sort by fails for option per line. Added a variable to iterate through the element array*} {assign var="index" value="1"} @@ -83,29 +83,29 @@ {else} {if $count == $field.options_per_line} - + {assign var="count" value="1"} {else} - {assign var="count" value=`$count+1`} + {assign var="count" value=`$count+1`} {/if} {/if} {/foreach}
    {$form.$n.$key.html}
    - {if $field.html_type eq 'Radio' and $form.formName eq 'Preview'} + {if $field.html_type eq 'Radio' and $form.formName eq 'Preview'} ({ts}clear{/ts}) - {/if} + {/if} {/strip} - {else} + {else} {$form.$n.label} - + {if $n eq 'group' && $form.group || ( $n eq 'tag' && $form.tag )} {include file="CRM/Contact/Form/Edit/TagsAndGroups.tpl" type=$n} {elseif $n eq 'email_greeting' or $n eq 'postal_greeting' or $n eq 'addressee'} - {include file="CRM/Profile/Form/GreetingType.tpl"} + {include file="CRM/Profile/Form/GreetingType.tpl"} {elseif ( $field.data_type eq 'Date' AND $element.skip_calendar NEQ true ) or - ( $n|substr:-5:5 eq '_date' ) or ( $field.name eq 'activity_date_time' ) } + ( $n|substr:-5:5 eq '_date' ) or ( $field.name eq 'activity_date_time' ) } {include file="CRM/common/jcalendar.tpl" elementName=$form.$n.name} {else} {if $n|substr:0:4 eq 'url-'} @@ -127,18 +127,18 @@ {/if} {/if} {/if} - {/if} + {/if} - {/if} + {/if} {* Show explanatory text for field if not in 'view' mode *} {if $field.help_post && $action neq 4}  {$field.help_post} {/if} - {/foreach} - + {/foreach} + {if $addCAPTCHA } {include file='CRM/common/ReCAPTCHA.tpl'} - {/if} + {/if} {if $field.groupHelpPost}
    {$field.groupHelpPost}
    @@ -146,13 +146,13 @@ {/strip}
    {* end crm-container div *} {else} - {capture assign=infoMessage}{ts}This CiviCRM profile field is view only.{/ts}{/capture} - {include file="CRM/common/info.tpl"} + {capture assign=infoMessage}{ts}This CiviCRM profile field is view only.{/ts}{/capture} + {include file="CRM/common/info.tpl"} {/if} {/if} {* fields array is not empty *} -
    - {include file="CRM/common/formButtons.tpl"} +
    + {include file="CRM/common/formButtons.tpl"}
    diff --git a/templates/CRM/UF/Page/Field.tpl b/templates/CRM/UF/Page/Field.tpl index 6cd25c0b9..1bd62cb80 100644 --- a/templates/CRM/UF/Page/Field.tpl +++ b/templates/CRM/UF/Page/Field.tpl @@ -26,7 +26,7 @@ {if $showBestResult } {ts}For best results, the Country field should precede the State-Province field in your Profile form. You can use the up and down arrows on field listing page for this profile to change the order of these fields or manually edit weight for Country/State-Province Field.{/ts} -{/if} +{/if} {if $action eq 1 or $action eq 2 or $action eq 4 or $action eq 8 } {include file="CRM/UF/Form/Field.tpl"} @@ -44,8 +44,8 @@ {/if} {strip} {* handle enable/disable actions*} - {include file="CRM/common/enableDisable.tpl"} - {include file="CRM/common/jsortable.tpl"} + {include file="CRM/common/enableDisable.tpl"} + {include file="CRM/common/jsortable.tpl"} @@ -55,12 +55,12 @@ {/if} - - - + + + - + {foreach from=$ufField item=row} @@ -86,8 +86,8 @@
    {ts}Add Field{/ts}
    {if !$isGroupReserved}
    {ts}Edit Settings{/ts}
    {/if}
    {ts}Preview (all fields){/ts}
    {if !$skipCreate }
    {ts}Use (create mode){/ts}
    {/if}
    - {/if} - + {/if} + {else} {if $action eq 16} @@ -101,5 +101,5 @@ {/if} -{include file="CRM/common/crmeditable.tpl"} +{include file="CRM/common/crmeditable.tpl"} diff --git a/templates/CRM/UF/Page/Group.tpl b/templates/CRM/UF/Page/Group.tpl index db39ebd39..17b44e229 100644 --- a/templates/CRM/UF/Page/Group.tpl +++ b/templates/CRM/UF/Page/Group.tpl @@ -27,7 +27,7 @@ {* Add or edit Profile Group form *} {include file="CRM/UF/Form/Group.tpl"} {elseif $action eq 1024} - {* Preview Profile Group form *} + {* Preview Profile Group form *} {include file="CRM/UF/Form/Preview.tpl"} {elseif $action eq 8192} {* Display HTML Form Snippet Code *} @@ -38,8 +38,8 @@
    -
    - Select HTML Code +
    + Select HTML Code
    - + {foreach from=$rows item=row} {if !$row.is_reserved } - + @@ -92,7 +92,7 @@ {/foreach}
    {ts}Searchable?{/ts} {ts}In Selector?{/ts}{ts}Order{/ts}{ts}Required{/ts}{ts}View Only{/ts}{ts}Order{/ts}{ts}Required{/ts}{ts}View Only{/ts} {ts}Reserved{/ts}
    {ts}Used For{/ts}
    {$row.title} {$row.group_type} {$row.id}
    - + {if NOT ($action eq 1 or $action eq 2)}
    {ts}Add Profile{/ts}
    @@ -112,11 +112,11 @@ {ts}Used For{/ts} - + {foreach from=$rows item=row} {if $row.is_reserved} - + {$row.title} {$row.group_type} {$row.id} @@ -127,7 +127,7 @@ {/foreach} - + {if NOT ($action eq 1 or $action eq 2)}
    {ts}Add Profile{/ts}
    @@ -157,4 +157,4 @@ {/if} {/if} {/if} -{include file="CRM/common/crmeditable.tpl"} +{include file="CRM/common/crmeditable.tpl"} diff --git a/templates/CRM/common/drupal6.tpl b/templates/CRM/common/drupal6.tpl index 56f0322a7..835e51456 100644 --- a/templates/CRM/common/drupal6.tpl +++ b/templates/CRM/common/drupal6.tpl @@ -55,6 +55,8 @@ {*{include file="CRM/common/langSwitch.tpl"}*} +{crmRegion name='page-header'} +{/crmRegion}
    {if isset($localTasks) and $localTasks} @@ -63,16 +65,20 @@ {include file="CRM/common/status.tpl"} +{crmRegion name='page-body'} {if isset($isForm) and $isForm} {include file="CRM/Form/$formTpl.tpl"} {else} {include file=$tplFile} {/if} +{/crmRegion} +{crmRegion name='page-footer'} {if ! $urlIsPublic} {include file="CRM/common/footer.tpl"} {/if} +{/crmRegion} {literal}