From 74c4e3ac4c35c8024ff3c762c3308dedd741c5e5 Mon Sep 17 00:00:00 2001 From: larssandergreen Date: Wed, 19 Oct 2022 13:42:37 -0600 Subject: [PATCH] Add previous_2 and previous_before fiscal year to relative date filters --- .../Incremental/sql/5.56.alpha1.mysql.tpl | 17 + CRM/Upgrade/Incremental/sql/README.txt | 14 + sql/civicrm_generated.mysql | 8996 +++++++++-------- xml/templates/civicrm_data.tpl | 20 +- 4 files changed, 4567 insertions(+), 4480 deletions(-) diff --git a/CRM/Upgrade/Incremental/sql/5.56.alpha1.mysql.tpl b/CRM/Upgrade/Incremental/sql/5.56.alpha1.mysql.tpl index 832de428b1..ceb65db2c7 100644 --- a/CRM/Upgrade/Incremental/sql/5.56.alpha1.mysql.tpl +++ b/CRM/Upgrade/Incremental/sql/5.56.alpha1.mysql.tpl @@ -1,5 +1,22 @@ {* file to handle db changes in 5.56.alpha1 during upgrade *} +-- Add in Year prior to previous fiscal year and Previous 2 fiscal years +SELECT @option_group_id_date_filter := max(id) from civicrm_option_group where name = 'relative_date_filters'; + +SELECT @max_wt := max(weight) from civicrm_option_value where option_group_id = @option_group_id_date_filter; +INSERT INTO + `civicrm_option_value` (`option_group_id`, {localize field='label'}`label`{/localize}, `value`, `name`, `grouping`, `filter`, `is_default`, `weight`, {localize field='description'}`description`{/localize}, `is_optgroup`, `is_reserved`, `is_active`, `component_id`, `visibility_id`, `icon`) +SELECT + @option_group_id_date_filter, {localize}'{ts escape="sql"}Previous 2 fiscal years{/ts}'{/localize}, 'previous_2.fiscal_year', 'previous_2.fiscal_year', NULL, NULL, 0, (SELECT @max_wt := @max_wt+1), {localize}NULL{/localize}, 0, 0, 1, NULL, NULL, NULL +WHERE NOT EXISTS (SELECT * FROM civicrm_option_value WHERE `value`='previous_2.fiscal_year' AND `option_group_id` = @option_group_id_date_filter); + +SELECT @max_wt := max(weight) from civicrm_option_value where option_group_id = @option_group_id_date_filter; +INSERT INTO + `civicrm_option_value` (`option_group_id`, {localize field='label'}`label`{/localize}, `value`, `name`, `grouping`, `filter`, `is_default`, `weight`, {localize field='description'}`description`{/localize}, `is_optgroup`, `is_reserved`, `is_active`, `component_id`, `visibility_id`, `icon`) +SELECT + @option_group_id_date_filter, {localize}'{ts escape="sql"}Fiscal year prior to previous fiscal year{/ts}'{/localize}, 'previous_before.fiscal_year', 'previous_before.fiscal_year', NULL, NULL, 0, (SELECT @max_wt := @max_wt+1), {localize}NULL{/localize}, 0, 0, 1, NULL, NULL, NULL +WHERE NOT EXISTS (SELECT * FROM civicrm_option_value WHERE `value`='previous_before.fiscal_year' AND `option_group_id` = @option_group_id_date_filter); + -- dev/core#3905 Update data type for data to LONGTEXT ALTER TABLE civicrm_job_log MODIFY COLUMN data LONGTEXT COMMENT 'Potential extended data for specific job run (e.g. tracebacks).'; diff --git a/CRM/Upgrade/Incremental/sql/README.txt b/CRM/Upgrade/Incremental/sql/README.txt index f7954bce54..ded7ef05a1 100644 --- a/CRM/Upgrade/Incremental/sql/README.txt +++ b/CRM/Upgrade/Incremental/sql/README.txt @@ -79,5 +79,19 @@ INSERT INTO civicrm_option_value VALUES (@option_group_id_activity_type, {localize}'{ts escape="sql"}Change Custom Data{/ts}'{/localize},{localize}''{/localize}, (SELECT @max_val := @max_val+1), 'Change Custom Data', (SELECT @max_wt := @max_wt+1), 0, @caseCompId); + +If you are inserting an option value row that might already exist (for example, a Relative Date Filter could have already been added manually), we should only insert it if it doesn't already exist. + +Here's an example which adds a Relative Date Filter with localization, the next available weight and does not insert if the value already exists. +------------------------------------------------------------------------------ +SELECT @option_group_id_date_filter := max(id) from civicrm_option_group where name = 'relative_date_filters'; + +SELECT @max_wt := max(weight) from civicrm_option_value where option_group_id = @option_group_id_date_filter; +INSERT INTO + `civicrm_option_value` (`option_group_id`, {localize field='label'}`label`{/localize}, `value`, `name`, `grouping`, `filter`, `is_default`, `weight`, {localize field='description'}`description`{/localize}, `is_optgroup`, `is_reserved`, `is_active`, `component_id`, `visibility_id`, `icon`) +SELECT + @option_group_id_date_filter, {localize}'{ts escape="sql"}Previous 2 fiscal years{/ts}'{/localize}, 'previous_2.fiscal_year', 'previous_2.fiscal_year', NULL, NULL, 0, (SELECT @max_wt := @max_wt+1), {localize}NULL{/localize}, 0, 0, 1, NULL, NULL, NULL +WHERE NOT EXISTS (SELECT * FROM civicrm_option_value WHERE `value`='previous_2.fiscal_year' AND `option_group_id` = @option_group_id_date_filter); + ------------------------------------------------------------------------------ More details: https://docs.civicrm.org/dev/en/latest/translation/database/#localised-fields-schema-changes diff --git a/sql/civicrm_generated.mysql b/sql/civicrm_generated.mysql index a28d9a7ed3..cbf38b868b 100644 --- a/sql/civicrm_generated.mysql +++ b/sql/civicrm_generated.mysql @@ -117,7 +117,7 @@ LOCK TABLES `civicrm_acl_entity_role` WRITE; /*!40000 ALTER TABLE `civicrm_acl_entity_role` DISABLE KEYS */; INSERT INTO `civicrm_acl_entity_role` (`id`, `acl_role_id`, `entity_table`, `entity_id`, `is_active`) VALUES (1,1,'civicrm_group',1,1), - (2,867,'civicrm_group',4,1); + (2,869,'civicrm_group',4,1); /*!40000 ALTER TABLE `civicrm_acl_entity_role` ENABLE KEYS */; UNLOCK TABLES; @@ -162,647 +162,647 @@ UNLOCK TABLES; LOCK TABLES `civicrm_activity` WRITE; /*!40000 ALTER TABLE `civicrm_activity` DISABLE KEYS */; INSERT INTO `civicrm_activity` (`id`, `source_record_id`, `activity_type_id`, `subject`, `activity_date_time`, `duration`, `location`, `phone_id`, `phone_number`, `details`, `status_id`, `priority_id`, `parent_id`, `is_test`, `medium_id`, `is_auto`, `relationship_id`, `is_current_revision`, `original_id`, `result`, `is_deleted`, `campaign_id`, `engagement_level`, `weight`, `is_star`, `created_date`, `modified_date`) VALUES - (1,NULL,1,'Subject for Meeting','2022-07-06 05:34:13',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (2,NULL,22,'Subject for Print/Merge Document','2021-12-08 10:38:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (3,NULL,1,'Subject for Meeting','2021-11-17 09:03:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (4,NULL,1,'Subject for Meeting','2022-02-19 03:41:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (5,NULL,22,'Subject for Print/Merge Document','2021-11-11 22:20:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (6,NULL,9,'Subject for Tell a Friend','2022-07-24 13:21:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (7,NULL,22,'Subject for Print/Merge Document','2022-08-07 11:24:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (8,NULL,22,'Subject for Print/Merge Document','2021-12-27 21:32:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (9,NULL,1,'Subject for Meeting','2022-04-25 17:16:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (10,NULL,55,'Subject for Interview','2022-10-04 09:58:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (11,NULL,9,'Subject for Tell a Friend','2021-11-05 18:07:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (12,NULL,22,'Subject for Print/Merge Document','2022-09-02 10:20:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (13,NULL,2,'Subject for Phone Call','2021-10-13 00:50:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (14,NULL,2,'Subject for Phone Call','2022-01-20 21:41:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (15,NULL,22,'Subject for Print/Merge Document','2022-01-21 08:39:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (16,NULL,2,'Subject for Phone Call','2022-03-24 17:25:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (17,NULL,1,'Subject for Meeting','2022-09-20 11:21:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (18,NULL,1,'Subject for Meeting','2022-08-14 04:20:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (19,NULL,9,'Subject for Tell a Friend','2022-04-27 08:56:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (20,NULL,9,'Subject for Tell a Friend','2021-10-18 18:35:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (21,NULL,22,'Subject for Print/Merge Document','2022-09-16 17:34:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (22,NULL,1,'Subject for Meeting','2022-09-04 16:32:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (23,NULL,2,'Subject for Phone Call','2022-07-30 18:13:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (24,NULL,2,'Subject for Phone Call','2022-09-06 15:45:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (25,NULL,22,'Subject for Print/Merge Document','2022-05-22 04:24:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (26,NULL,1,'Subject for Meeting','2022-05-18 05:56:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (27,NULL,2,'Subject for Phone Call','2021-12-16 03:47:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (28,NULL,55,'Subject for Interview','2022-03-30 05:50:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (29,NULL,22,'Subject for Print/Merge Document','2022-05-24 15:10:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (30,NULL,55,'Subject for Interview','2021-12-02 12:40:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (31,NULL,9,'Subject for Tell a Friend','2022-03-10 03:14:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (32,NULL,22,'Subject for Print/Merge Document','2022-02-14 11:54:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (33,NULL,9,'Subject for Tell a Friend','2022-02-08 19:13:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (34,NULL,22,'Subject for Print/Merge Document','2022-02-28 15:59:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (35,NULL,2,'Subject for Phone Call','2021-12-30 13:07:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (36,NULL,1,'Subject for Meeting','2021-12-17 02:53:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (37,NULL,2,'Subject for Phone Call','2022-05-17 06:29:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (38,NULL,2,'Subject for Phone Call','2021-12-07 09:42:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (39,NULL,1,'Subject for Meeting','2022-06-12 12:34:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (40,NULL,9,'Subject for Tell a Friend','2022-06-21 12:48:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (41,NULL,22,'Subject for Print/Merge Document','2022-09-24 06:10:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (42,NULL,9,'Subject for Tell a Friend','2022-05-06 02:25:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (43,NULL,55,'Subject for Interview','2021-11-30 00:39:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (44,NULL,9,'Subject for Tell a Friend','2022-02-14 14:45:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (45,NULL,9,'Subject for Tell a Friend','2022-07-07 16:54:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (46,NULL,2,'Subject for Phone Call','2022-08-20 11:45:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (47,NULL,22,'Subject for Print/Merge Document','2022-01-05 08:59:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (48,NULL,9,'Subject for Tell a Friend','2022-04-12 03:16:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (49,NULL,1,'Subject for Meeting','2022-02-16 02:37:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (50,NULL,2,'Subject for Phone Call','2022-03-07 14:49:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (51,NULL,55,'Subject for Interview','2022-06-29 02:38:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (52,NULL,22,'Subject for Print/Merge Document','2022-02-19 05:30:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (53,NULL,2,'Subject for Phone Call','2022-03-02 04:42:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (54,NULL,55,'Subject for Interview','2021-11-25 06:28:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (55,NULL,55,'Subject for Interview','2022-07-27 21:39:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (56,NULL,55,'Subject for Interview','2022-01-13 15:15:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (57,NULL,55,'Subject for Interview','2022-01-19 23:33:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (58,NULL,1,'Subject for Meeting','2022-01-03 20:27:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (59,NULL,2,'Subject for Phone Call','2022-03-26 06:14:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (60,NULL,55,'Subject for Interview','2022-01-07 20:03:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (61,NULL,22,'Subject for Print/Merge Document','2022-03-22 14:15:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (62,NULL,9,'Subject for Tell a Friend','2022-04-01 06:26:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (63,NULL,22,'Subject for Print/Merge Document','2022-05-09 15:47:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (64,NULL,1,'Subject for Meeting','2021-12-01 00:18:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (65,NULL,9,'Subject for Tell a Friend','2022-10-08 17:47:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (66,NULL,22,'Subject for Print/Merge Document','2022-07-15 02:49:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (67,NULL,1,'Subject for Meeting','2021-11-09 22:52:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (68,NULL,1,'Subject for Meeting','2022-09-14 22:10:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (69,NULL,22,'Subject for Print/Merge Document','2022-05-19 16:59:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (70,NULL,2,'Subject for Phone Call','2021-12-30 18:01:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (71,NULL,1,'Subject for Meeting','2021-11-16 17:24:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (72,NULL,55,'Subject for Interview','2021-12-24 01:08:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (73,NULL,22,'Subject for Print/Merge Document','2022-03-22 09:46:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (74,NULL,2,'Subject for Phone Call','2022-10-01 13:30:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (75,NULL,22,'Subject for Print/Merge Document','2022-09-02 12:23:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (76,NULL,1,'Subject for Meeting','2022-02-11 20:55:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (77,NULL,2,'Subject for Phone Call','2022-03-13 10:20:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (78,NULL,9,'Subject for Tell a Friend','2022-02-11 22:19:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (79,NULL,22,'Subject for Print/Merge Document','2021-11-06 16:29:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (80,NULL,9,'Subject for Tell a Friend','2022-08-24 03:42:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (81,NULL,9,'Subject for Tell a Friend','2022-02-16 17:37:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (82,NULL,1,'Subject for Meeting','2021-12-24 18:31:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (83,NULL,1,'Subject for Meeting','2022-09-09 01:22:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (84,NULL,55,'Subject for Interview','2021-12-24 08:19:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (85,NULL,55,'Subject for Interview','2022-10-07 20:46:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (86,NULL,1,'Subject for Meeting','2021-10-18 15:28:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (87,NULL,2,'Subject for Phone Call','2022-01-05 10:03:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (88,NULL,1,'Subject for Meeting','2022-09-28 14:47:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (89,NULL,2,'Subject for Phone Call','2022-05-25 03:54:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (90,NULL,1,'Subject for Meeting','2021-10-12 23:02:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (91,NULL,55,'Subject for Interview','2021-10-31 06:34:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (92,NULL,9,'Subject for Tell a Friend','2022-08-04 08:22:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (93,NULL,22,'Subject for Print/Merge Document','2021-12-24 20:18:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (94,NULL,1,'Subject for Meeting','2022-04-29 07:14:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (95,NULL,22,'Subject for Print/Merge Document','2022-02-04 15:14:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (96,NULL,2,'Subject for Phone Call','2022-07-19 20:36:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (97,NULL,22,'Subject for Print/Merge Document','2022-05-20 08:28:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (98,NULL,1,'Subject for Meeting','2022-02-06 05:27:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (99,NULL,2,'Subject for Phone Call','2021-12-13 08:32:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (100,NULL,9,'Subject for Tell a Friend','2022-07-05 04:24:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (101,NULL,1,'Subject for Meeting','2022-08-06 02:06:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (102,NULL,22,'Subject for Print/Merge Document','2022-06-15 12:19:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (103,NULL,2,'Subject for Phone Call','2022-03-05 08:37:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (104,NULL,55,'Subject for Interview','2021-11-18 21:56:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (105,NULL,22,'Subject for Print/Merge Document','2022-05-03 04:39:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (106,NULL,22,'Subject for Print/Merge Document','2021-12-01 23:07:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (107,NULL,1,'Subject for Meeting','2022-01-26 18:57:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (108,NULL,2,'Subject for Phone Call','2022-07-07 10:39:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (109,NULL,9,'Subject for Tell a Friend','2022-06-24 16:04:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (110,NULL,22,'Subject for Print/Merge Document','2022-02-13 13:46:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (111,NULL,1,'Subject for Meeting','2022-06-07 07:15:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (112,NULL,2,'Subject for Phone Call','2021-10-13 05:03:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (113,NULL,1,'Subject for Meeting','2022-03-04 13:44:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (114,NULL,2,'Subject for Phone Call','2022-04-26 02:33:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (115,NULL,55,'Subject for Interview','2021-11-30 19:30:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (116,NULL,22,'Subject for Print/Merge Document','2022-05-19 16:14:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (117,NULL,22,'Subject for Print/Merge Document','2022-02-22 00:22:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (118,NULL,1,'Subject for Meeting','2022-09-03 18:53:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (119,NULL,1,'Subject for Meeting','2022-03-26 05:55:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (120,NULL,9,'Subject for Tell a Friend','2022-10-04 16:44:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (121,NULL,2,'Subject for Phone Call','2022-10-09 22:54:52',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (122,NULL,9,'Subject for Tell a Friend','2022-04-24 11:47:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (123,NULL,55,'Subject for Interview','2022-05-12 17:00:13',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (124,NULL,9,'Subject for Tell a Friend','2021-11-29 15:39:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (125,NULL,9,'Subject for Tell a Friend','2022-03-07 20:57:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (126,NULL,2,'Subject for Phone Call','2022-02-18 06:11:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (127,NULL,2,'Subject for Phone Call','2022-06-20 23:45:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (128,NULL,9,'Subject for Tell a Friend','2022-06-21 02:45:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (129,NULL,2,'Subject for Phone Call','2022-03-23 10:09:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (130,NULL,2,'Subject for Phone Call','2022-03-28 05:40:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (131,NULL,9,'Subject for Tell a Friend','2022-08-23 00:36:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (132,NULL,9,'Subject for Tell a Friend','2022-03-27 14:41:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (133,NULL,1,'Subject for Meeting','2021-12-15 17:16:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (134,NULL,22,'Subject for Print/Merge Document','2022-06-16 11:38:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (135,NULL,2,'Subject for Phone Call','2022-03-14 02:55:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (136,NULL,22,'Subject for Print/Merge Document','2021-11-11 03:30:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (137,NULL,9,'Subject for Tell a Friend','2022-06-21 01:51:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (138,NULL,55,'Subject for Interview','2022-01-27 12:55:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (139,NULL,2,'Subject for Phone Call','2022-10-02 01:00:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (140,NULL,55,'Subject for Interview','2022-04-26 01:34:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (141,NULL,55,'Subject for Interview','2022-01-25 04:05:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (142,NULL,22,'Subject for Print/Merge Document','2022-02-03 06:33:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (143,NULL,1,'Subject for Meeting','2021-12-17 15:57:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (144,NULL,2,'Subject for Phone Call','2022-01-30 11:50:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (145,NULL,1,'Subject for Meeting','2022-09-15 23:30:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (146,NULL,55,'Subject for Interview','2022-01-22 05:06:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (147,NULL,55,'Subject for Interview','2022-05-26 14:13:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (148,NULL,1,'Subject for Meeting','2021-10-23 05:53:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (149,NULL,55,'Subject for Interview','2022-05-18 03:19:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (150,NULL,9,'Subject for Tell a Friend','2022-01-17 13:45:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (151,NULL,9,'Subject for Tell a Friend','2022-10-01 01:15:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (152,NULL,2,'Subject for Phone Call','2022-03-19 10:14:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (153,NULL,9,'Subject for Tell a Friend','2021-10-24 13:02:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (154,NULL,55,'Subject for Interview','2021-11-20 08:53:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (155,NULL,1,'Subject for Meeting','2021-11-24 18:59:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (156,NULL,1,'Subject for Meeting','2022-07-27 16:28:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (157,NULL,55,'Subject for Interview','2022-03-27 14:12:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (158,NULL,55,'Subject for Interview','2022-07-08 01:40:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (159,NULL,2,'Subject for Phone Call','2022-01-08 11:27:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (160,NULL,1,'Subject for Meeting','2022-10-11 10:52:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (161,NULL,2,'Subject for Phone Call','2022-05-05 12:05:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (162,NULL,9,'Subject for Tell a Friend','2022-06-06 22:09:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (163,NULL,2,'Subject for Phone Call','2022-03-14 08:14:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (164,NULL,22,'Subject for Print/Merge Document','2022-02-19 17:04:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (165,NULL,1,'Subject for Meeting','2022-06-27 15:02:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (166,NULL,9,'Subject for Tell a Friend','2022-09-02 01:56:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (167,NULL,1,'Subject for Meeting','2021-12-04 02:45:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (168,NULL,2,'Subject for Phone Call','2021-11-29 04:12:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (169,NULL,22,'Subject for Print/Merge Document','2022-06-15 13:29:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (170,NULL,22,'Subject for Print/Merge Document','2022-03-17 16:33:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (171,NULL,9,'Subject for Tell a Friend','2022-02-17 00:55:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (172,NULL,9,'Subject for Tell a Friend','2022-06-21 17:04:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (173,NULL,2,'Subject for Phone Call','2021-10-13 06:07:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (174,NULL,1,'Subject for Meeting','2022-09-25 00:31:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (175,NULL,22,'Subject for Print/Merge Document','2022-01-31 03:36:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (176,NULL,2,'Subject for Phone Call','2022-04-14 11:44:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (177,NULL,9,'Subject for Tell a Friend','2022-01-25 01:36:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (178,NULL,22,'Subject for Print/Merge Document','2022-01-20 08:43:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (179,NULL,22,'Subject for Print/Merge Document','2022-04-23 23:16:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (180,NULL,2,'Subject for Phone Call','2021-11-07 07:21:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (181,NULL,9,'Subject for Tell a Friend','2022-08-03 02:34:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (182,NULL,2,'Subject for Phone Call','2022-07-20 14:10:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (183,NULL,22,'Subject for Print/Merge Document','2022-07-20 09:09:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (184,NULL,22,'Subject for Print/Merge Document','2022-01-11 22:20:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (185,NULL,55,'Subject for Interview','2021-11-19 08:13:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (186,NULL,1,'Subject for Meeting','2022-02-13 14:41:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'), - (187,NULL,22,'Subject for Print/Merge Document','2021-10-26 03:25:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (188,NULL,1,'Subject for Meeting','2022-04-24 08:32:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (189,NULL,1,'Subject for Meeting','2022-05-29 17:52:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (190,NULL,9,'Subject for Tell a Friend','2022-06-13 13:51:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (191,NULL,2,'Subject for Phone Call','2022-07-16 20:43:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (192,NULL,9,'Subject for Tell a Friend','2022-04-01 05:46:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (193,NULL,22,'Subject for Print/Merge Document','2022-04-02 21:58:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (194,NULL,9,'Subject for Tell a Friend','2022-06-22 06:07:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (195,NULL,22,'Subject for Print/Merge Document','2021-11-19 15:31:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (196,NULL,55,'Subject for Interview','2022-03-13 13:29:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (197,NULL,55,'Subject for Interview','2022-07-25 02:13:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (198,NULL,22,'Subject for Print/Merge Document','2022-01-15 16:47:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (199,NULL,1,'Subject for Meeting','2022-01-15 05:11:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (200,NULL,2,'Subject for Phone Call','2022-06-14 01:27:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (201,NULL,55,'Subject for Interview','2021-10-28 04:35:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (202,NULL,22,'Subject for Print/Merge Document','2022-05-21 13:59:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (203,NULL,55,'Subject for Interview','2022-09-18 00:06:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (204,NULL,2,'Subject for Phone Call','2022-06-27 16:58:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (205,NULL,2,'Subject for Phone Call','2021-12-25 06:57:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (206,NULL,2,'Subject for Phone Call','2021-11-02 06:01:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (207,NULL,55,'Subject for Interview','2022-05-23 05:57:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (208,NULL,1,'Subject for Meeting','2021-11-18 10:48:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (209,NULL,55,'Subject for Interview','2022-05-09 00:58:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (210,NULL,2,'Subject for Phone Call','2021-12-17 19:03:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (211,NULL,2,'Subject for Phone Call','2022-01-19 00:07:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (212,NULL,1,'Subject for Meeting','2022-07-17 14:22:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (213,NULL,2,'Subject for Phone Call','2022-10-10 21:49:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (214,NULL,55,'Subject for Interview','2022-03-20 14:40:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (215,NULL,2,'Subject for Phone Call','2021-10-12 15:26:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (216,NULL,22,'Subject for Print/Merge Document','2022-05-03 19:39:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (217,NULL,22,'Subject for Print/Merge Document','2022-09-28 23:13:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (218,NULL,22,'Subject for Print/Merge Document','2022-04-07 07:44:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (219,NULL,9,'Subject for Tell a Friend','2022-09-19 17:45:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (220,NULL,55,'Subject for Interview','2022-01-12 23:50:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (221,NULL,1,'Subject for Meeting','2022-07-03 04:47:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (222,NULL,2,'Subject for Phone Call','2022-09-01 14:14:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (223,NULL,1,'Subject for Meeting','2022-01-27 02:16:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (224,NULL,2,'Subject for Phone Call','2022-05-04 16:34:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (225,NULL,22,'Subject for Print/Merge Document','2022-04-16 21:32:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (226,NULL,55,'Subject for Interview','2022-01-17 04:06:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (227,NULL,22,'Subject for Print/Merge Document','2021-12-14 18:43:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (228,NULL,2,'Subject for Phone Call','2022-07-20 06:25:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (229,NULL,2,'Subject for Phone Call','2022-06-03 05:16:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (230,NULL,9,'Subject for Tell a Friend','2022-07-07 02:01:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (231,NULL,55,'Subject for Interview','2022-08-26 08:48:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (232,NULL,55,'Subject for Interview','2022-01-02 18:46:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (233,NULL,1,'Subject for Meeting','2022-09-06 18:38:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (234,NULL,9,'Subject for Tell a Friend','2021-10-20 21:38:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (235,NULL,22,'Subject for Print/Merge Document','2022-09-03 08:30:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (236,NULL,2,'Subject for Phone Call','2022-02-08 01:10:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (237,NULL,9,'Subject for Tell a Friend','2022-07-13 16:04:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (238,NULL,22,'Subject for Print/Merge Document','2022-06-11 20:45:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (239,NULL,1,'Subject for Meeting','2022-08-30 17:45:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (240,NULL,55,'Subject for Interview','2021-11-04 23:17:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (241,NULL,1,'Subject for Meeting','2022-05-11 18:05:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (242,NULL,22,'Subject for Print/Merge Document','2022-09-27 11:06:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (243,NULL,22,'Subject for Print/Merge Document','2021-11-20 23:19:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (244,NULL,2,'Subject for Phone Call','2021-12-11 09:28:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (245,NULL,55,'Subject for Interview','2022-05-09 19:10:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (246,NULL,1,'Subject for Meeting','2022-04-28 19:57:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (247,NULL,2,'Subject for Phone Call','2021-11-15 18:30:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (248,NULL,1,'Subject for Meeting','2022-09-03 12:23:13',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (249,NULL,55,'Subject for Interview','2022-04-08 23:19:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (250,NULL,9,'Subject for Tell a Friend','2021-12-25 15:44:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (251,NULL,1,'Subject for Meeting','2022-09-12 12:05:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (252,NULL,9,'Subject for Tell a Friend','2021-11-05 03:06:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (253,NULL,1,'Subject for Meeting','2022-10-04 07:54:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (254,NULL,55,'Subject for Interview','2022-06-02 17:55:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (255,NULL,1,'Subject for Meeting','2022-04-29 09:21:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (256,NULL,2,'Subject for Phone Call','2021-12-14 16:03:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (257,NULL,1,'Subject for Meeting','2022-05-16 22:33:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (258,NULL,55,'Subject for Interview','2022-09-29 11:34:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (259,NULL,22,'Subject for Print/Merge Document','2022-09-03 17:07:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (260,NULL,1,'Subject for Meeting','2021-12-28 11:57:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (261,NULL,55,'Subject for Interview','2022-03-24 08:55:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (262,NULL,9,'Subject for Tell a Friend','2022-06-14 09:08:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (263,NULL,22,'Subject for Print/Merge Document','2022-07-27 01:09:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (264,NULL,22,'Subject for Print/Merge Document','2022-03-25 05:49:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (265,NULL,9,'Subject for Tell a Friend','2021-11-04 23:54:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (266,NULL,9,'Subject for Tell a Friend','2022-01-25 14:17:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (267,NULL,2,'Subject for Phone Call','2021-10-31 16:28:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (268,NULL,22,'Subject for Print/Merge Document','2022-04-16 06:13:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (269,NULL,9,'Subject for Tell a Friend','2022-01-07 02:08:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (270,NULL,1,'Subject for Meeting','2022-09-14 03:00:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (271,NULL,2,'Subject for Phone Call','2021-11-29 16:25:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (272,NULL,22,'Subject for Print/Merge Document','2022-03-01 11:05:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (273,NULL,55,'Subject for Interview','2022-04-29 01:03:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (274,NULL,55,'Subject for Interview','2022-04-17 12:08:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (275,NULL,9,'Subject for Tell a Friend','2022-06-14 03:37:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (276,NULL,9,'Subject for Tell a Friend','2022-06-17 08:22:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (277,NULL,22,'Subject for Print/Merge Document','2022-07-10 09:27:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (278,NULL,22,'Subject for Print/Merge Document','2022-09-14 06:07:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (279,NULL,55,'Subject for Interview','2021-11-19 16:04:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (280,NULL,1,'Subject for Meeting','2021-10-14 04:39:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (281,NULL,2,'Subject for Phone Call','2022-05-26 15:01:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (282,NULL,9,'Subject for Tell a Friend','2022-01-29 02:57:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (283,NULL,55,'Subject for Interview','2021-12-30 08:16:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (284,NULL,2,'Subject for Phone Call','2022-04-25 18:00:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (285,NULL,9,'Subject for Tell a Friend','2022-09-03 13:40:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (286,NULL,1,'Subject for Meeting','2022-09-30 20:25:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (287,NULL,2,'Subject for Phone Call','2022-02-13 09:32:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (288,NULL,55,'Subject for Interview','2022-07-26 00:06:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (289,NULL,55,'Subject for Interview','2022-01-09 09:12:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (290,NULL,2,'Subject for Phone Call','2022-03-15 00:50:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (291,NULL,55,'Subject for Interview','2022-07-19 00:39:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (292,NULL,9,'Subject for Tell a Friend','2022-04-13 12:49:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (293,NULL,55,'Subject for Interview','2022-09-19 23:48:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (294,NULL,1,'Subject for Meeting','2022-06-11 03:38:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (295,NULL,22,'Subject for Print/Merge Document','2022-07-04 08:45:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (296,NULL,55,'Subject for Interview','2022-02-21 20:04:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (297,NULL,9,'Subject for Tell a Friend','2021-11-18 07:22:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (298,NULL,22,'Subject for Print/Merge Document','2022-07-11 05:23:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (299,NULL,22,'Subject for Print/Merge Document','2022-09-04 10:23:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (300,NULL,22,'Subject for Print/Merge Document','2022-06-19 07:27:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (301,NULL,1,'Subject for Meeting','2022-01-17 06:15:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (302,NULL,2,'Subject for Phone Call','2022-02-20 09:27:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (303,NULL,2,'Subject for Phone Call','2022-06-11 23:18:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (304,NULL,55,'Subject for Interview','2022-06-01 08:19:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (305,NULL,55,'Subject for Interview','2022-03-22 11:40:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (306,NULL,22,'Subject for Print/Merge Document','2022-06-09 05:52:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (307,NULL,55,'Subject for Interview','2022-05-31 00:29:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (308,NULL,22,'Subject for Print/Merge Document','2022-09-14 01:51:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (309,NULL,55,'Subject for Interview','2021-11-23 15:15:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (310,NULL,2,'Subject for Phone Call','2022-01-05 03:46:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (311,NULL,9,'Subject for Tell a Friend','2021-12-02 15:18:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (312,NULL,22,'Subject for Print/Merge Document','2022-07-07 17:39:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (313,NULL,22,'Subject for Print/Merge Document','2022-04-03 22:46:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (314,NULL,9,'Subject for Tell a Friend','2021-10-24 02:27:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (315,NULL,1,'Subject for Meeting','2022-06-01 15:41:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (316,NULL,9,'Subject for Tell a Friend','2021-11-16 21:11:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (317,NULL,22,'Subject for Print/Merge Document','2022-07-10 16:48:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (318,NULL,9,'Subject for Tell a Friend','2022-09-23 16:06:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (319,NULL,55,'Subject for Interview','2022-01-15 16:20:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (320,NULL,22,'Subject for Print/Merge Document','2022-01-06 22:55:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (321,NULL,22,'Subject for Print/Merge Document','2022-04-06 15:26:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (322,NULL,55,'Subject for Interview','2022-06-06 06:32:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (323,NULL,9,'Subject for Tell a Friend','2022-04-28 05:41:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (324,NULL,55,'Subject for Interview','2021-12-23 08:16:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (325,NULL,2,'Subject for Phone Call','2021-10-31 04:50:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (326,NULL,1,'Subject for Meeting','2021-11-07 16:10:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (327,NULL,9,'Subject for Tell a Friend','2022-04-14 04:37:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (328,NULL,1,'Subject for Meeting','2022-06-08 18:30:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (329,NULL,1,'Subject for Meeting','2022-06-28 04:15:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (330,NULL,55,'Subject for Interview','2022-02-06 17:16:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (331,NULL,9,'Subject for Tell a Friend','2022-08-19 09:29:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (332,NULL,2,'Subject for Phone Call','2022-08-21 08:43:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (333,NULL,9,'Subject for Tell a Friend','2021-10-18 03:20:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (334,NULL,9,'Subject for Tell a Friend','2021-12-04 13:04:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (335,NULL,9,'Subject for Tell a Friend','2021-11-25 18:23:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (336,NULL,9,'Subject for Tell a Friend','2022-07-22 21:38:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (337,NULL,9,'Subject for Tell a Friend','2022-01-24 19:27:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (338,NULL,2,'Subject for Phone Call','2022-06-17 03:04:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (339,NULL,1,'Subject for Meeting','2021-12-30 22:12:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (340,NULL,9,'Subject for Tell a Friend','2022-04-10 20:42:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (341,NULL,1,'Subject for Meeting','2022-08-25 00:25:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (342,NULL,9,'Subject for Tell a Friend','2021-10-15 13:14:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (343,NULL,1,'Subject for Meeting','2022-04-01 18:01:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (344,NULL,2,'Subject for Phone Call','2022-06-15 17:24:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (345,NULL,22,'Subject for Print/Merge Document','2021-10-17 05:00:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (346,NULL,55,'Subject for Interview','2021-11-24 05:02:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (347,NULL,1,'Subject for Meeting','2022-02-16 16:39:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (348,NULL,2,'Subject for Phone Call','2022-03-30 14:06:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (349,NULL,55,'Subject for Interview','2022-03-06 20:41:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (350,NULL,1,'Subject for Meeting','2022-09-15 13:17:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (351,NULL,2,'Subject for Phone Call','2022-10-10 21:58:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (352,NULL,1,'Subject for Meeting','2022-02-11 02:45:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (353,NULL,9,'Subject for Tell a Friend','2022-07-09 23:46:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (354,NULL,9,'Subject for Tell a Friend','2022-07-10 18:54:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (355,NULL,1,'Subject for Meeting','2021-12-13 02:24:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (356,NULL,55,'Subject for Interview','2022-02-25 09:19:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (357,NULL,2,'Subject for Phone Call','2022-02-14 20:23:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (358,NULL,22,'Subject for Print/Merge Document','2021-12-10 22:37:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (359,NULL,55,'Subject for Interview','2022-05-03 23:16:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (360,NULL,22,'Subject for Print/Merge Document','2021-10-29 00:07:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (361,NULL,1,'Subject for Meeting','2021-12-27 00:02:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (362,NULL,2,'Subject for Phone Call','2021-12-02 03:00:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (363,NULL,22,'Subject for Print/Merge Document','2022-04-29 20:24:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (364,NULL,2,'Subject for Phone Call','2022-07-23 10:51:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (365,NULL,2,'Subject for Phone Call','2022-09-06 07:41:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (366,NULL,1,'Subject for Meeting','2022-09-08 04:20:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (367,NULL,2,'Subject for Phone Call','2022-09-10 01:58:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (368,NULL,9,'Subject for Tell a Friend','2022-10-01 19:16:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (369,NULL,1,'Subject for Meeting','2022-02-12 02:08:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (370,NULL,1,'Subject for Meeting','2022-07-01 18:42:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (371,NULL,9,'Subject for Tell a Friend','2021-12-06 17:42:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (372,NULL,2,'Subject for Phone Call','2021-11-06 12:26:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (373,NULL,1,'Subject for Meeting','2022-09-21 08:59:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (374,NULL,22,'Subject for Print/Merge Document','2022-08-01 22:38:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (375,NULL,55,'Subject for Interview','2022-01-05 13:18:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (376,NULL,9,'Subject for Tell a Friend','2021-12-09 20:13:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (377,NULL,55,'Subject for Interview','2021-11-21 13:54:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (378,NULL,2,'Subject for Phone Call','2021-10-15 18:59:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (379,NULL,1,'Subject for Meeting','2021-10-25 13:09:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (380,NULL,9,'Subject for Tell a Friend','2021-12-20 15:01:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (381,NULL,2,'Subject for Phone Call','2021-11-18 13:18:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (382,NULL,1,'Subject for Meeting','2022-07-14 20:23:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (383,NULL,1,'Subject for Meeting','2022-09-10 06:59:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (384,NULL,55,'Subject for Interview','2022-01-24 14:15:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (385,NULL,2,'Subject for Phone Call','2022-05-11 19:44:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (386,NULL,9,'Subject for Tell a Friend','2022-01-07 07:35:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (387,NULL,22,'Subject for Print/Merge Document','2022-01-27 05:06:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (388,NULL,9,'Subject for Tell a Friend','2022-01-24 11:49:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (389,NULL,1,'Subject for Meeting','2022-08-14 00:34:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (390,NULL,55,'Subject for Interview','2021-12-12 06:16:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (391,NULL,55,'Subject for Interview','2022-04-12 02:59:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (392,NULL,9,'Subject for Tell a Friend','2022-01-08 15:36:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (393,NULL,55,'Subject for Interview','2022-10-05 11:40:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (394,NULL,55,'Subject for Interview','2022-05-23 21:34:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (395,NULL,22,'Subject for Print/Merge Document','2022-07-08 10:09:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (396,NULL,22,'Subject for Print/Merge Document','2022-06-07 06:50:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (397,NULL,55,'Subject for Interview','2022-04-28 21:58:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (398,NULL,1,'Subject for Meeting','2022-03-29 04:32:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (399,NULL,22,'Subject for Print/Merge Document','2022-05-28 15:01:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (400,NULL,22,'Subject for Print/Merge Document','2022-08-24 17:58:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (401,NULL,22,'Subject for Print/Merge Document','2022-08-22 07:50:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (402,NULL,55,'Subject for Interview','2022-02-20 00:37:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (403,NULL,55,'Subject for Interview','2022-09-01 06:30:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (404,NULL,9,'Subject for Tell a Friend','2022-09-18 07:09:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (405,NULL,1,'Subject for Meeting','2021-12-12 19:44:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (406,NULL,2,'Subject for Phone Call','2022-05-10 21:01:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (407,NULL,55,'Subject for Interview','2022-08-19 17:56:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (408,NULL,22,'Subject for Print/Merge Document','2022-02-24 07:58:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (409,NULL,2,'Subject for Phone Call','2022-04-14 07:35:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (410,NULL,2,'Subject for Phone Call','2021-11-15 01:51:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (411,NULL,55,'Subject for Interview','2021-12-12 12:28:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (412,NULL,22,'Subject for Print/Merge Document','2021-11-21 20:33:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (413,NULL,9,'Subject for Tell a Friend','2022-02-27 18:33:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (414,NULL,55,'Subject for Interview','2022-04-22 08:26:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (415,NULL,9,'Subject for Tell a Friend','2021-10-16 11:09:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (416,NULL,1,'Subject for Meeting','2021-11-24 02:26:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (417,NULL,2,'Subject for Phone Call','2022-02-27 10:41:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (418,NULL,1,'Subject for Meeting','2022-09-25 00:22:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (419,NULL,9,'Subject for Tell a Friend','2022-03-09 23:48:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (420,NULL,55,'Subject for Interview','2022-06-25 21:47:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (421,NULL,22,'Subject for Print/Merge Document','2022-05-22 08:29:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (422,NULL,9,'Subject for Tell a Friend','2022-09-09 16:05:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (423,NULL,2,'Subject for Phone Call','2022-08-02 01:15:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (424,NULL,55,'Subject for Interview','2022-09-17 21:38:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (425,NULL,2,'Subject for Phone Call','2022-05-06 17:29:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (426,NULL,2,'Subject for Phone Call','2022-04-04 18:01:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (427,NULL,9,'Subject for Tell a Friend','2021-11-24 21:14:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (428,NULL,1,'Subject for Meeting','2022-04-02 17:24:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (429,NULL,22,'Subject for Print/Merge Document','2022-05-06 21:34:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (430,NULL,22,'Subject for Print/Merge Document','2022-05-29 05:09:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (431,NULL,22,'Subject for Print/Merge Document','2022-01-21 16:20:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (432,NULL,9,'Subject for Tell a Friend','2022-07-03 16:24:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (433,NULL,1,'Subject for Meeting','2022-01-22 01:22:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (434,NULL,22,'Subject for Print/Merge Document','2021-11-04 15:34:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (435,NULL,1,'Subject for Meeting','2022-03-26 10:38:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (436,NULL,22,'Subject for Print/Merge Document','2022-01-17 20:48:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (437,NULL,9,'Subject for Tell a Friend','2022-04-04 04:13:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (438,NULL,1,'Subject for Meeting','2022-05-19 10:17:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (439,NULL,22,'Subject for Print/Merge Document','2022-04-04 04:41:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (440,NULL,1,'Subject for Meeting','2022-07-28 12:07:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (441,NULL,22,'Subject for Print/Merge Document','2022-02-26 10:21:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (442,NULL,1,'Subject for Meeting','2022-03-14 12:42:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (443,NULL,55,'Subject for Interview','2022-04-25 02:09:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (444,NULL,9,'Subject for Tell a Friend','2022-08-04 20:29:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (445,NULL,2,'Subject for Phone Call','2022-03-11 21:23:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (446,NULL,22,'Subject for Print/Merge Document','2022-08-08 19:39:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (447,NULL,2,'Subject for Phone Call','2022-04-25 07:19:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (448,NULL,9,'Subject for Tell a Friend','2022-09-27 01:40:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (449,NULL,1,'Subject for Meeting','2022-04-25 09:22:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (450,NULL,9,'Subject for Tell a Friend','2021-11-17 11:33:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (451,1,6,'$ 125 April Mailer 1','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (452,2,6,'$ 50 Online: Save the Penguins','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (453,3,6,'£ 25 April Mailer 1','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (454,4,6,'$ 50 Online: Save the Penguins','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (455,5,6,'$ 50 Online: Save the Penguins','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (456,6,6,'$ 500 April Mailer 1','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (457,7,6,'$ 1750 Online: Save the Penguins','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (458,8,6,'$ 50 Online: Save the Penguins','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (459,9,6,'$ 10 Online: Help CiviCRM','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (460,10,6,'$ 250 Online: Help CiviCRM','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (461,11,6,'¥ 500 ','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (462,12,6,'$ 50 Online: Save the Penguins','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (463,13,6,'$ 50 ','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (464,14,6,'$ 50 ','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (465,15,6,'$ 25 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (466,16,6,'$ 25 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (467,17,6,'$ 25 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (468,18,6,'$ 25 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (469,19,6,'$ 25 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (470,20,6,'$ 25 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (471,21,6,'$ 25 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (472,22,6,'$ 25 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (473,23,6,'$ 25 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (474,24,6,'$ 25 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (475,25,6,'$ 25 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (476,26,6,'$ 10 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (477,27,6,'$ 10 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (478,28,6,'$ 10 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (479,29,6,'$ 10 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (480,30,6,'$ 10 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (481,31,6,'€ 5 Recurring contribution','2022-12-12 03:42:25',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (482,1,7,'General','2022-10-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (483,2,7,'Student','2022-10-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (484,3,7,'General','2022-10-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (485,4,7,'Student','2022-10-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (486,5,7,'General','2020-09-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (487,6,7,'Student','2022-10-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (488,7,7,'General','2022-10-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (489,8,7,'Student','2022-10-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (490,9,7,'General','2022-10-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (491,10,7,'General','2020-08-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (492,11,7,'Lifetime','2022-10-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (493,12,7,'Student','2022-10-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (494,13,7,'General','2022-09-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (495,14,7,'Student','2022-09-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (496,15,7,'General','2020-06-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (497,16,7,'Student','2022-09-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (498,17,7,'General','2022-09-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (499,18,7,'Student','2022-09-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (500,19,7,'General','2022-09-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (501,20,7,'General','2020-05-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (502,21,7,'General','2022-09-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (503,22,7,'Lifetime','2022-09-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (504,23,7,'General','2022-09-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (505,24,7,'Student','2022-09-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (506,25,7,'Student','2021-09-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (507,26,7,'Student','2022-09-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (508,27,7,'General','2022-09-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (509,28,7,'Student','2022-09-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (510,29,7,'General','2022-09-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (511,30,7,'Student','2021-09-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (512,32,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (513,33,6,'$ 50.00 - Student Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (514,34,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (515,35,6,'$ 50.00 - Student Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (516,36,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (517,37,6,'$ 50.00 - Student Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (518,38,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (519,39,6,'$ 50.00 - Student Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (520,40,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (521,41,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (522,42,6,'$ 1200.00 - Lifetime Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (523,43,6,'$ 50.00 - Student Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (524,44,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (525,45,6,'$ 50.00 - Student Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (526,46,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (527,47,6,'$ 50.00 - Student Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (528,48,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (529,49,6,'$ 50.00 - Student Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (530,50,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (531,51,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (532,52,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (533,53,6,'$ 1200.00 - Lifetime Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (534,54,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (535,55,6,'$ 50.00 - Student Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (536,56,6,'$ 50.00 - Student Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (537,57,6,'$ 50.00 - Student Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (538,58,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (539,59,6,'$ 50.00 - Student Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (540,60,6,'$ 100.00 - General Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (541,61,6,'$ 50.00 - Student Membership: Offline signup','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (543,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (544,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (545,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (546,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (547,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (548,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (549,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (550,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (551,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (552,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (553,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (554,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (555,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (556,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (557,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (558,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (559,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (560,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (561,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (562,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (563,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (564,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (565,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (566,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (567,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (568,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (569,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (570,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (571,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (572,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (573,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (574,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (575,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (576,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (577,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (578,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (579,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (580,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (581,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (582,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (583,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (584,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (585,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (586,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (587,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (588,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (589,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (590,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (591,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (592,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,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (593,63,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (594,64,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (595,65,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (596,66,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (597,67,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (598,68,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (599,69,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (600,70,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (601,71,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (602,72,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (603,73,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (604,74,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (605,75,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (606,76,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (607,77,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (608,78,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (609,79,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (610,80,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (611,81,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (612,82,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (613,83,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (614,84,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (615,85,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (616,86,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (617,87,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (618,88,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (619,89,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (620,90,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (621,91,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (622,92,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (623,93,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (624,94,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (625,95,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (626,96,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (627,97,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (628,98,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (629,99,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (630,100,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (631,101,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (632,102,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (633,103,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (634,104,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (635,105,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (636,106,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (637,107,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (638,108,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (639,109,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (640,110,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (641,111,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'), - (642,112,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-12 03:42:25',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-12 03:42:25','2022-10-12 03:42:25'); + (1,NULL,9,'Subject for Tell a Friend','2021-12-07 19:35:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (2,NULL,2,'Subject for Phone Call','2022-07-05 21:06:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (3,NULL,9,'Subject for Tell a Friend','2022-08-02 05:52:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (4,NULL,22,'Subject for Print/Merge Document','2022-08-26 15:49:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (5,NULL,9,'Subject for Tell a Friend','2022-09-12 13:06:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (6,NULL,9,'Subject for Tell a Friend','2022-06-12 14:05:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (7,NULL,2,'Subject for Phone Call','2022-02-20 20:23:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (8,NULL,22,'Subject for Print/Merge Document','2021-11-24 22:52:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (9,NULL,2,'Subject for Phone Call','2021-10-29 05:16:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (10,NULL,2,'Subject for Phone Call','2022-03-18 13:50:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (11,NULL,1,'Subject for Meeting','2022-06-04 16:29:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (12,NULL,22,'Subject for Print/Merge Document','2022-04-05 05:37:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (13,NULL,1,'Subject for Meeting','2022-05-09 03:42:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (14,NULL,9,'Subject for Tell a Friend','2022-06-13 06:00:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (15,NULL,9,'Subject for Tell a Friend','2022-07-11 10:09:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (16,NULL,55,'Subject for Interview','2021-11-17 09:23:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (17,NULL,2,'Subject for Phone Call','2022-09-22 11:19:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (18,NULL,1,'Subject for Meeting','2022-03-09 05:38:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (19,NULL,2,'Subject for Phone Call','2022-02-10 00:41:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (20,NULL,9,'Subject for Tell a Friend','2022-10-05 12:08:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (21,NULL,9,'Subject for Tell a Friend','2022-05-04 09:33:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (22,NULL,1,'Subject for Meeting','2022-05-21 04:20:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (23,NULL,2,'Subject for Phone Call','2021-12-07 11:16:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (24,NULL,1,'Subject for Meeting','2022-08-09 00:11:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (25,NULL,2,'Subject for Phone Call','2022-09-05 03:55:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (26,NULL,1,'Subject for Meeting','2022-07-06 08:38:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (27,NULL,1,'Subject for Meeting','2022-04-08 19:00:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (28,NULL,2,'Subject for Phone Call','2022-05-21 15:07:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (29,NULL,1,'Subject for Meeting','2022-06-13 06:46:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (30,NULL,1,'Subject for Meeting','2022-05-26 15:25:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (31,NULL,22,'Subject for Print/Merge Document','2022-08-01 10:27:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (32,NULL,2,'Subject for Phone Call','2021-12-01 07:25:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (33,NULL,9,'Subject for Tell a Friend','2021-10-27 13:26:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (34,NULL,55,'Subject for Interview','2022-02-28 14:32:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (35,NULL,22,'Subject for Print/Merge Document','2022-01-29 17:37:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (36,NULL,9,'Subject for Tell a Friend','2022-06-02 04:15:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (37,NULL,22,'Subject for Print/Merge Document','2021-12-07 09:05:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (38,NULL,9,'Subject for Tell a Friend','2022-09-08 20:49:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (39,NULL,22,'Subject for Print/Merge Document','2021-11-11 21:31:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (40,NULL,2,'Subject for Phone Call','2022-08-05 20:17:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (41,NULL,9,'Subject for Tell a Friend','2022-01-09 01:42:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (42,NULL,22,'Subject for Print/Merge Document','2022-01-20 18:31:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (43,NULL,22,'Subject for Print/Merge Document','2022-05-31 16:10:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (44,NULL,9,'Subject for Tell a Friend','2022-01-21 08:04:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (45,NULL,1,'Subject for Meeting','2022-07-28 15:07:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (46,NULL,1,'Subject for Meeting','2022-09-07 10:04:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (47,NULL,9,'Subject for Tell a Friend','2022-09-11 08:34:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (48,NULL,1,'Subject for Meeting','2022-05-29 14:17:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (49,NULL,9,'Subject for Tell a Friend','2022-09-29 16:58:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (50,NULL,1,'Subject for Meeting','2022-09-27 04:56:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (51,NULL,2,'Subject for Phone Call','2022-05-28 04:02:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (52,NULL,2,'Subject for Phone Call','2022-08-28 07:01:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (53,NULL,55,'Subject for Interview','2022-02-15 09:41:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (54,NULL,1,'Subject for Meeting','2022-05-02 23:20:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (55,NULL,22,'Subject for Print/Merge Document','2021-10-28 14:07:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (56,NULL,55,'Subject for Interview','2022-09-28 05:00:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (57,NULL,9,'Subject for Tell a Friend','2022-03-29 23:57:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (58,NULL,1,'Subject for Meeting','2022-09-24 06:58:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (59,NULL,2,'Subject for Phone Call','2022-05-06 12:10:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (60,NULL,2,'Subject for Phone Call','2022-05-22 10:07:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (61,NULL,1,'Subject for Meeting','2022-02-18 19:56:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (62,NULL,1,'Subject for Meeting','2021-11-09 20:16:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (63,NULL,2,'Subject for Phone Call','2022-06-16 06:03:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (64,NULL,1,'Subject for Meeting','2022-03-20 04:02:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (65,NULL,22,'Subject for Print/Merge Document','2022-02-01 18:33:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (66,NULL,9,'Subject for Tell a Friend','2022-02-15 15:16:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (67,NULL,55,'Subject for Interview','2022-02-24 21:55:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (68,NULL,1,'Subject for Meeting','2022-07-13 11:07:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (69,NULL,2,'Subject for Phone Call','2021-12-29 09:46:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (70,NULL,1,'Subject for Meeting','2022-02-11 21:21:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (71,NULL,22,'Subject for Print/Merge Document','2022-08-12 05:19:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (72,NULL,2,'Subject for Phone Call','2021-10-31 15:20:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (73,NULL,22,'Subject for Print/Merge Document','2022-09-19 04:58:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (74,NULL,55,'Subject for Interview','2022-06-17 12:08:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (75,NULL,22,'Subject for Print/Merge Document','2022-09-18 08:15:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (76,NULL,2,'Subject for Phone Call','2022-03-28 00:54:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (77,NULL,22,'Subject for Print/Merge Document','2022-09-20 20:52:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (78,NULL,55,'Subject for Interview','2021-12-29 20:00:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (79,NULL,55,'Subject for Interview','2022-08-09 22:18:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (80,NULL,22,'Subject for Print/Merge Document','2021-12-07 17:10:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (81,NULL,2,'Subject for Phone Call','2022-04-06 13:48:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (82,NULL,22,'Subject for Print/Merge Document','2022-03-31 12:58:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (83,NULL,1,'Subject for Meeting','2022-10-08 23:15:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (84,NULL,22,'Subject for Print/Merge Document','2022-05-18 02:50:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (85,NULL,2,'Subject for Phone Call','2022-04-06 14:16:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (86,NULL,22,'Subject for Print/Merge Document','2022-10-09 09:45:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (87,NULL,1,'Subject for Meeting','2022-01-12 09:20:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (88,NULL,1,'Subject for Meeting','2022-06-04 19:53:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (89,NULL,55,'Subject for Interview','2022-10-16 08:30:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (90,NULL,9,'Subject for Tell a Friend','2022-06-12 18:11:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (91,NULL,9,'Subject for Tell a Friend','2022-02-14 13:12:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (92,NULL,9,'Subject for Tell a Friend','2022-05-05 19:46:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (93,NULL,1,'Subject for Meeting','2022-07-15 18:23:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (94,NULL,22,'Subject for Print/Merge Document','2021-12-27 08:03:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (95,NULL,55,'Subject for Interview','2022-09-17 15:53:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (96,NULL,1,'Subject for Meeting','2022-06-24 19:28:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (97,NULL,1,'Subject for Meeting','2022-06-23 13:14:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (98,NULL,2,'Subject for Phone Call','2022-06-08 15:46:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (99,NULL,2,'Subject for Phone Call','2022-03-18 14:15:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (100,NULL,2,'Subject for Phone Call','2021-12-17 10:54:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (101,NULL,1,'Subject for Meeting','2022-09-02 08:48:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (102,NULL,2,'Subject for Phone Call','2021-11-15 22:22:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (103,NULL,55,'Subject for Interview','2022-08-23 13:32:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (104,NULL,2,'Subject for Phone Call','2022-10-10 06:54:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (105,NULL,55,'Subject for Interview','2022-03-17 15:18:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (106,NULL,9,'Subject for Tell a Friend','2022-06-07 04:21:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (107,NULL,55,'Subject for Interview','2021-11-21 18:08:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (108,NULL,9,'Subject for Tell a Friend','2021-10-22 16:44:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (109,NULL,2,'Subject for Phone Call','2022-05-18 04:08:25',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (110,NULL,9,'Subject for Tell a Friend','2022-03-05 07:02:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (111,NULL,22,'Subject for Print/Merge Document','2022-02-23 20:10:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (112,NULL,9,'Subject for Tell a Friend','2022-09-18 07:23:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (113,NULL,22,'Subject for Print/Merge Document','2022-09-29 20:03:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (114,NULL,55,'Subject for Interview','2022-02-19 15:30:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (115,NULL,55,'Subject for Interview','2021-12-02 07:42:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (116,NULL,1,'Subject for Meeting','2022-07-24 12:37:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (117,NULL,2,'Subject for Phone Call','2022-07-25 14:51:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (118,NULL,9,'Subject for Tell a Friend','2022-03-24 11:43:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (119,NULL,1,'Subject for Meeting','2022-06-07 20:17:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (120,NULL,9,'Subject for Tell a Friend','2022-02-03 16:44:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (121,NULL,9,'Subject for Tell a Friend','2021-10-29 20:38:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (122,NULL,55,'Subject for Interview','2022-01-13 09:45:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (123,NULL,9,'Subject for Tell a Friend','2022-01-10 15:32:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (124,NULL,22,'Subject for Print/Merge Document','2022-02-12 19:12:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (125,NULL,1,'Subject for Meeting','2022-02-27 21:16:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (126,NULL,9,'Subject for Tell a Friend','2022-07-05 11:08:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (127,NULL,2,'Subject for Phone Call','2022-09-23 16:23:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (128,NULL,55,'Subject for Interview','2022-06-11 20:21:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (129,NULL,1,'Subject for Meeting','2022-08-11 14:32:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (130,NULL,1,'Subject for Meeting','2022-08-27 19:34:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (131,NULL,22,'Subject for Print/Merge Document','2022-06-13 12:21:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (132,NULL,2,'Subject for Phone Call','2022-03-24 12:20:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (133,NULL,55,'Subject for Interview','2022-04-11 23:25:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (134,NULL,1,'Subject for Meeting','2022-02-22 04:19:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (135,NULL,2,'Subject for Phone Call','2022-07-03 09:48:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (136,NULL,22,'Subject for Print/Merge Document','2022-10-08 20:15:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (137,NULL,22,'Subject for Print/Merge Document','2022-05-03 06:08:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (138,NULL,55,'Subject for Interview','2021-11-30 22:41:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (139,NULL,9,'Subject for Tell a Friend','2021-11-28 10:22:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (140,NULL,55,'Subject for Interview','2021-11-18 06:11:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (141,NULL,55,'Subject for Interview','2022-02-06 05:52:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (142,NULL,9,'Subject for Tell a Friend','2022-05-01 09:02:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (143,NULL,1,'Subject for Meeting','2022-07-25 01:07:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (144,NULL,2,'Subject for Phone Call','2022-05-19 07:42:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (145,NULL,55,'Subject for Interview','2022-04-17 06:25:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (146,NULL,9,'Subject for Tell a Friend','2022-10-04 10:28:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (147,NULL,9,'Subject for Tell a Friend','2022-08-19 22:41:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (148,NULL,1,'Subject for Meeting','2022-09-26 04:38:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (149,NULL,1,'Subject for Meeting','2022-10-02 21:31:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (150,NULL,2,'Subject for Phone Call','2021-12-05 07:16:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (151,NULL,1,'Subject for Meeting','2021-11-07 03:11:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (152,NULL,22,'Subject for Print/Merge Document','2022-04-17 00:54:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (153,NULL,55,'Subject for Interview','2022-05-03 02:47:08',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (154,NULL,22,'Subject for Print/Merge Document','2022-09-20 02:01:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (155,NULL,1,'Subject for Meeting','2022-09-28 05:16:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (156,NULL,9,'Subject for Tell a Friend','2021-11-19 22:17:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (157,NULL,1,'Subject for Meeting','2021-10-19 21:29:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (158,NULL,1,'Subject for Meeting','2022-03-18 00:28:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (159,NULL,9,'Subject for Tell a Friend','2022-05-11 18:47:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (160,NULL,1,'Subject for Meeting','2022-03-13 01:23:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (161,NULL,55,'Subject for Interview','2022-10-17 09:54:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (162,NULL,2,'Subject for Phone Call','2022-02-09 02:50:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (163,NULL,55,'Subject for Interview','2021-12-14 22:43:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (164,NULL,55,'Subject for Interview','2022-02-19 19:33:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (165,NULL,2,'Subject for Phone Call','2021-10-31 00:24:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (166,NULL,55,'Subject for Interview','2022-08-01 18:09:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (167,NULL,1,'Subject for Meeting','2022-03-16 15:38:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (168,NULL,1,'Subject for Meeting','2021-11-21 06:32:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (169,NULL,55,'Subject for Interview','2022-03-30 11:36:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (170,NULL,22,'Subject for Print/Merge Document','2022-03-24 22:14:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (171,NULL,22,'Subject for Print/Merge Document','2022-07-07 19:55:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (172,NULL,1,'Subject for Meeting','2021-11-20 12:20:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (173,NULL,22,'Subject for Print/Merge Document','2022-03-24 19:06:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (174,NULL,9,'Subject for Tell a Friend','2022-01-26 07:54:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (175,NULL,22,'Subject for Print/Merge Document','2022-08-27 06:21:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (176,NULL,9,'Subject for Tell a Friend','2022-07-04 10:04:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (177,NULL,55,'Subject for Interview','2022-02-14 18:29:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (178,NULL,1,'Subject for Meeting','2022-05-29 05:37:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (179,NULL,2,'Subject for Phone Call','2022-03-09 08:20:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (180,NULL,1,'Subject for Meeting','2022-09-03 15:07:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (181,NULL,55,'Subject for Interview','2022-03-29 04:14:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (182,NULL,22,'Subject for Print/Merge Document','2022-09-18 12:20:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (183,NULL,55,'Subject for Interview','2022-09-12 20:33:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (184,NULL,1,'Subject for Meeting','2022-07-30 19:31:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (185,NULL,55,'Subject for Interview','2022-06-07 09:41:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (186,NULL,55,'Subject for Interview','2022-09-13 18:10:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (187,NULL,55,'Subject for Interview','2022-02-04 10:29:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (188,NULL,55,'Subject for Interview','2022-03-11 23:43:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (189,NULL,2,'Subject for Phone Call','2021-11-12 01:05:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (190,NULL,2,'Subject for Phone Call','2022-07-19 21:24:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (191,NULL,55,'Subject for Interview','2022-04-19 03:39:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (192,NULL,22,'Subject for Print/Merge Document','2022-06-14 02:32:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (193,NULL,1,'Subject for Meeting','2022-01-13 23:23:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (194,NULL,22,'Subject for Print/Merge Document','2022-06-01 15:18:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (195,NULL,55,'Subject for Interview','2022-03-23 14:29:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (196,NULL,2,'Subject for Phone Call','2022-09-14 05:37:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (197,NULL,2,'Subject for Phone Call','2022-02-01 05:42:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (198,NULL,1,'Subject for Meeting','2022-01-16 18:26:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (199,NULL,9,'Subject for Tell a Friend','2022-02-10 04:07:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (200,NULL,55,'Subject for Interview','2022-02-02 13:33:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (201,NULL,1,'Subject for Meeting','2021-12-18 11:04:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (202,NULL,1,'Subject for Meeting','2021-12-29 07:43:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (203,NULL,9,'Subject for Tell a Friend','2022-07-21 03:38:03',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (204,NULL,55,'Subject for Interview','2022-06-19 12:42:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (205,NULL,1,'Subject for Meeting','2022-04-27 16:32:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (206,NULL,1,'Subject for Meeting','2022-02-22 02:08:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (207,NULL,9,'Subject for Tell a Friend','2022-09-14 15:07:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (208,NULL,2,'Subject for Phone Call','2022-07-22 18:09:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (209,NULL,22,'Subject for Print/Merge Document','2022-02-14 07:45:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (210,NULL,2,'Subject for Phone Call','2022-04-18 02:34:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (211,NULL,1,'Subject for Meeting','2022-04-24 20:44:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (212,NULL,1,'Subject for Meeting','2022-07-09 03:34:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (213,NULL,22,'Subject for Print/Merge Document','2022-02-26 14:53:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (214,NULL,22,'Subject for Print/Merge Document','2022-04-28 00:05:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (215,NULL,1,'Subject for Meeting','2022-03-10 18:58:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (216,NULL,22,'Subject for Print/Merge Document','2022-02-08 09:59:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'), + (217,NULL,2,'Subject for Phone Call','2022-05-02 01:12:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (218,NULL,22,'Subject for Print/Merge Document','2022-08-18 13:09:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (219,NULL,2,'Subject for Phone Call','2022-09-13 21:37:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (220,NULL,9,'Subject for Tell a Friend','2022-03-29 22:08:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (221,NULL,2,'Subject for Phone Call','2021-10-30 09:07:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (222,NULL,1,'Subject for Meeting','2022-01-26 09:27:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (223,NULL,2,'Subject for Phone Call','2021-12-22 06:15:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (224,NULL,22,'Subject for Print/Merge Document','2022-06-22 21:42:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (225,NULL,22,'Subject for Print/Merge Document','2021-10-18 11:10:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (226,NULL,1,'Subject for Meeting','2022-04-04 18:29:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (227,NULL,9,'Subject for Tell a Friend','2022-09-12 14:31:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (228,NULL,55,'Subject for Interview','2022-10-07 17:11:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (229,NULL,55,'Subject for Interview','2022-09-06 12:17:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (230,NULL,22,'Subject for Print/Merge Document','2022-07-06 02:04:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (231,NULL,9,'Subject for Tell a Friend','2022-06-20 03:42:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (232,NULL,55,'Subject for Interview','2022-04-12 08:20:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (233,NULL,55,'Subject for Interview','2021-11-14 03:32:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (234,NULL,1,'Subject for Meeting','2022-05-23 11:46:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (235,NULL,2,'Subject for Phone Call','2022-04-04 17:40:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (236,NULL,9,'Subject for Tell a Friend','2022-08-21 16:25:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (237,NULL,1,'Subject for Meeting','2022-07-09 01:48:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (238,NULL,1,'Subject for Meeting','2022-06-03 20:12:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (239,NULL,1,'Subject for Meeting','2022-10-02 23:45:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (240,NULL,1,'Subject for Meeting','2022-03-19 22:46:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (241,NULL,55,'Subject for Interview','2022-01-29 02:55:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (242,NULL,55,'Subject for Interview','2022-07-25 10:02:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (243,NULL,55,'Subject for Interview','2022-07-25 04:04:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (244,NULL,2,'Subject for Phone Call','2022-06-08 00:19:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (245,NULL,22,'Subject for Print/Merge Document','2022-08-01 20:24:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (246,NULL,2,'Subject for Phone Call','2022-08-09 00:35:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (247,NULL,22,'Subject for Print/Merge Document','2022-10-12 15:13:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (248,NULL,1,'Subject for Meeting','2022-08-26 13:05:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (249,NULL,1,'Subject for Meeting','2022-01-07 21:16:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (250,NULL,2,'Subject for Phone Call','2022-10-04 06:54:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (251,NULL,9,'Subject for Tell a Friend','2022-08-02 22:49:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (252,NULL,22,'Subject for Print/Merge Document','2022-03-28 12:48:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (253,NULL,22,'Subject for Print/Merge Document','2021-10-25 21:18:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (254,NULL,55,'Subject for Interview','2022-02-04 18:34:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (255,NULL,55,'Subject for Interview','2022-01-31 03:26:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (256,NULL,22,'Subject for Print/Merge Document','2021-10-24 08:21:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (257,NULL,1,'Subject for Meeting','2022-06-12 07:04:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (258,NULL,2,'Subject for Phone Call','2022-08-06 02:37:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (259,NULL,9,'Subject for Tell a Friend','2022-02-06 04:28:06',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (260,NULL,1,'Subject for Meeting','2022-06-19 06:35:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (261,NULL,2,'Subject for Phone Call','2022-02-16 02:26:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (262,NULL,55,'Subject for Interview','2022-03-27 04:36:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (263,NULL,1,'Subject for Meeting','2022-03-18 14:36:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (264,NULL,2,'Subject for Phone Call','2022-04-13 01:32:30',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (265,NULL,2,'Subject for Phone Call','2021-12-29 07:51:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (266,NULL,1,'Subject for Meeting','2022-08-12 10:15:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (267,NULL,22,'Subject for Print/Merge Document','2021-10-25 13:15:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (268,NULL,2,'Subject for Phone Call','2022-10-07 15:27:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (269,NULL,9,'Subject for Tell a Friend','2022-03-04 14:09:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (270,NULL,1,'Subject for Meeting','2022-07-14 04:07:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (271,NULL,9,'Subject for Tell a Friend','2021-12-06 00:35:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (272,NULL,9,'Subject for Tell a Friend','2022-04-21 14:13:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (273,NULL,2,'Subject for Phone Call','2022-09-04 02:09:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (274,NULL,1,'Subject for Meeting','2021-11-12 02:12:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (275,NULL,9,'Subject for Tell a Friend','2021-12-02 12:42:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (276,NULL,9,'Subject for Tell a Friend','2022-07-12 17:45:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (277,NULL,9,'Subject for Tell a Friend','2022-06-28 16:42:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (278,NULL,55,'Subject for Interview','2022-03-06 22:23:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (279,NULL,55,'Subject for Interview','2022-10-08 10:51:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (280,NULL,9,'Subject for Tell a Friend','2022-03-22 20:23:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (281,NULL,9,'Subject for Tell a Friend','2022-07-22 07:20:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (282,NULL,9,'Subject for Tell a Friend','2022-04-22 18:32:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (283,NULL,1,'Subject for Meeting','2022-03-04 09:32:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (284,NULL,2,'Subject for Phone Call','2022-01-02 16:16:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (285,NULL,22,'Subject for Print/Merge Document','2022-06-14 06:36:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (286,NULL,9,'Subject for Tell a Friend','2022-07-02 11:18:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (287,NULL,1,'Subject for Meeting','2022-02-13 17:23:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (288,NULL,2,'Subject for Phone Call','2022-02-06 23:41:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (289,NULL,22,'Subject for Print/Merge Document','2022-10-06 18:38:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (290,NULL,22,'Subject for Print/Merge Document','2022-03-09 03:59:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (291,NULL,2,'Subject for Phone Call','2021-10-29 15:56:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (292,NULL,22,'Subject for Print/Merge Document','2021-12-26 13:27:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (293,NULL,22,'Subject for Print/Merge Document','2022-01-13 06:06:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (294,NULL,9,'Subject for Tell a Friend','2022-02-06 08:36:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (295,NULL,1,'Subject for Meeting','2022-03-31 02:51:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (296,NULL,55,'Subject for Interview','2021-12-01 15:50:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (297,NULL,22,'Subject for Print/Merge Document','2021-11-12 15:29:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (298,NULL,2,'Subject for Phone Call','2022-07-19 21:56:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (299,NULL,2,'Subject for Phone Call','2022-08-05 10:35:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (300,NULL,9,'Subject for Tell a Friend','2022-10-05 04:28:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (301,NULL,9,'Subject for Tell a Friend','2022-03-07 11:49:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (302,NULL,2,'Subject for Phone Call','2022-09-12 07:04:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (303,NULL,22,'Subject for Print/Merge Document','2022-04-10 20:16:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (304,NULL,1,'Subject for Meeting','2022-04-02 00:16:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (305,NULL,2,'Subject for Phone Call','2022-07-02 21:06:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (306,NULL,9,'Subject for Tell a Friend','2022-06-09 02:58:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (307,NULL,55,'Subject for Interview','2021-11-01 22:31:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (308,NULL,22,'Subject for Print/Merge Document','2022-08-03 06:13:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (309,NULL,2,'Subject for Phone Call','2021-11-16 19:45:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (310,NULL,22,'Subject for Print/Merge Document','2022-07-20 08:34:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (311,NULL,9,'Subject for Tell a Friend','2022-08-17 05:41:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (312,NULL,2,'Subject for Phone Call','2022-07-04 10:38:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (313,NULL,55,'Subject for Interview','2022-02-18 22:26:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (314,NULL,2,'Subject for Phone Call','2022-06-02 12:42:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (315,NULL,55,'Subject for Interview','2022-06-15 05:39:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (316,NULL,1,'Subject for Meeting','2022-09-06 21:30:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (317,NULL,9,'Subject for Tell a Friend','2022-02-14 09:39:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (318,NULL,22,'Subject for Print/Merge Document','2022-04-15 22:58:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (319,NULL,1,'Subject for Meeting','2022-04-21 17:51:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (320,NULL,22,'Subject for Print/Merge Document','2022-02-04 18:47:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (321,NULL,22,'Subject for Print/Merge Document','2022-03-28 20:07:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (322,NULL,55,'Subject for Interview','2022-06-08 08:44:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (323,NULL,1,'Subject for Meeting','2022-05-07 14:13:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (324,NULL,9,'Subject for Tell a Friend','2021-11-15 09:01:20',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (325,NULL,55,'Subject for Interview','2022-08-17 08:19:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (326,NULL,1,'Subject for Meeting','2022-03-23 16:58:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (327,NULL,2,'Subject for Phone Call','2022-02-15 20:46:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (328,NULL,2,'Subject for Phone Call','2021-11-07 04:16:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (329,NULL,9,'Subject for Tell a Friend','2021-11-08 13:40:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (330,NULL,1,'Subject for Meeting','2022-06-10 01:40:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (331,NULL,55,'Subject for Interview','2021-12-01 07:46:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (332,NULL,1,'Subject for Meeting','2022-01-22 21:48:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (333,NULL,55,'Subject for Interview','2021-11-25 02:19:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (334,NULL,1,'Subject for Meeting','2022-09-27 14:01:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (335,NULL,55,'Subject for Interview','2022-03-19 04:43:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (336,NULL,1,'Subject for Meeting','2022-04-10 12:16:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (337,NULL,1,'Subject for Meeting','2022-09-10 06:21:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (338,NULL,55,'Subject for Interview','2022-06-17 16:07:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (339,NULL,1,'Subject for Meeting','2022-09-25 21:27:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (340,NULL,2,'Subject for Phone Call','2022-04-12 08:22:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (341,NULL,55,'Subject for Interview','2022-09-18 10:19:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (342,NULL,55,'Subject for Interview','2022-04-03 17:34:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (343,NULL,55,'Subject for Interview','2021-12-25 17:15:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (344,NULL,22,'Subject for Print/Merge Document','2022-01-24 22:22:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (345,NULL,22,'Subject for Print/Merge Document','2022-08-24 03:05:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (346,NULL,2,'Subject for Phone Call','2022-07-22 17:22:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (347,NULL,9,'Subject for Tell a Friend','2022-06-10 14:35:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (348,NULL,1,'Subject for Meeting','2021-12-27 15:54:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (349,NULL,1,'Subject for Meeting','2022-09-29 19:39:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (350,NULL,9,'Subject for Tell a Friend','2022-06-09 09:42:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (351,NULL,9,'Subject for Tell a Friend','2022-03-03 13:28:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (352,NULL,22,'Subject for Print/Merge Document','2022-07-13 19:11:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (353,NULL,2,'Subject for Phone Call','2022-06-11 02:01:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (354,NULL,55,'Subject for Interview','2022-02-05 01:07:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (355,NULL,9,'Subject for Tell a Friend','2022-03-23 11:11:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (356,NULL,22,'Subject for Print/Merge Document','2022-09-23 07:20:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (357,NULL,1,'Subject for Meeting','2022-10-09 22:52:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (358,NULL,55,'Subject for Interview','2021-10-29 06:10:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (359,NULL,2,'Subject for Phone Call','2022-06-04 08:09:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (360,NULL,2,'Subject for Phone Call','2022-09-26 11:08:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (361,NULL,55,'Subject for Interview','2022-09-22 04:10:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (362,NULL,22,'Subject for Print/Merge Document','2022-09-23 02:08:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (363,NULL,55,'Subject for Interview','2022-05-22 05:20:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (364,NULL,9,'Subject for Tell a Friend','2022-09-08 10:22:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (365,NULL,9,'Subject for Tell a Friend','2022-04-04 20:09:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (366,NULL,2,'Subject for Phone Call','2022-09-16 19:07:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (367,NULL,2,'Subject for Phone Call','2022-05-19 04:35:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (368,NULL,2,'Subject for Phone Call','2022-08-19 06:48:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (369,NULL,55,'Subject for Interview','2022-06-28 02:12:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (370,NULL,2,'Subject for Phone Call','2021-12-15 00:07:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (371,NULL,2,'Subject for Phone Call','2022-04-18 10:32:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (372,NULL,55,'Subject for Interview','2021-11-15 12:01:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (373,NULL,22,'Subject for Print/Merge Document','2022-04-29 11:30:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (374,NULL,9,'Subject for Tell a Friend','2022-05-07 06:54:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (375,NULL,9,'Subject for Tell a Friend','2022-07-12 09:01:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (376,NULL,55,'Subject for Interview','2022-01-30 23:06:05',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (377,NULL,9,'Subject for Tell a Friend','2022-01-06 06:22:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (378,NULL,1,'Subject for Meeting','2022-09-28 13:33:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (379,NULL,9,'Subject for Tell a Friend','2021-11-27 11:51:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (380,NULL,1,'Subject for Meeting','2022-01-06 04:20:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (381,NULL,55,'Subject for Interview','2021-10-19 00:43:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (382,NULL,1,'Subject for Meeting','2022-04-13 15:43:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (383,NULL,2,'Subject for Phone Call','2022-07-31 22:44:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (384,NULL,22,'Subject for Print/Merge Document','2022-01-14 03:37:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (385,NULL,2,'Subject for Phone Call','2022-02-04 22:58:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (386,NULL,22,'Subject for Print/Merge Document','2022-07-13 22:36:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (387,NULL,9,'Subject for Tell a Friend','2022-06-28 14:37:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (388,NULL,9,'Subject for Tell a Friend','2021-11-04 14:38:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (389,NULL,1,'Subject for Meeting','2021-12-20 09:40:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (390,NULL,1,'Subject for Meeting','2021-12-16 17:28:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (391,NULL,1,'Subject for Meeting','2022-06-27 22:22:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (392,NULL,22,'Subject for Print/Merge Document','2022-10-12 19:26:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (393,NULL,55,'Subject for Interview','2022-09-03 18:31:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (394,NULL,9,'Subject for Tell a Friend','2022-04-08 15:32:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (395,NULL,55,'Subject for Interview','2022-01-20 03:30:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (396,NULL,2,'Subject for Phone Call','2022-06-17 10:55:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (397,NULL,22,'Subject for Print/Merge Document','2022-10-03 11:40:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (398,NULL,55,'Subject for Interview','2022-02-21 00:35:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (399,NULL,2,'Subject for Phone Call','2022-01-22 18:08:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (400,NULL,1,'Subject for Meeting','2022-01-09 00:14:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (401,NULL,22,'Subject for Print/Merge Document','2021-11-04 03:04:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (402,NULL,1,'Subject for Meeting','2022-06-21 18:55:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (403,NULL,55,'Subject for Interview','2022-05-31 21:30:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (404,NULL,1,'Subject for Meeting','2022-09-12 23:09:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (405,NULL,1,'Subject for Meeting','2022-10-01 20:29:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (406,NULL,55,'Subject for Interview','2022-05-26 15:42:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (407,NULL,1,'Subject for Meeting','2022-06-17 21:29:58',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (408,NULL,2,'Subject for Phone Call','2022-05-09 13:25:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (409,NULL,1,'Subject for Meeting','2022-03-31 18:17:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (410,NULL,1,'Subject for Meeting','2022-07-21 00:43:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (411,NULL,22,'Subject for Print/Merge Document','2022-05-18 00:39:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (412,NULL,1,'Subject for Meeting','2022-02-02 13:12:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (413,NULL,9,'Subject for Tell a Friend','2022-07-15 14:46:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (414,NULL,22,'Subject for Print/Merge Document','2022-07-19 06:39:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (415,NULL,2,'Subject for Phone Call','2022-07-07 05:50:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (416,NULL,1,'Subject for Meeting','2021-10-24 04:03:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (417,NULL,9,'Subject for Tell a Friend','2022-01-08 10:06:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (418,NULL,55,'Subject for Interview','2021-12-12 06:11:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (419,NULL,22,'Subject for Print/Merge Document','2022-06-01 19:14:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (420,NULL,22,'Subject for Print/Merge Document','2022-09-16 13:14:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (421,NULL,2,'Subject for Phone Call','2022-06-07 15:44:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (422,NULL,22,'Subject for Print/Merge Document','2022-05-21 03:38:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (423,NULL,1,'Subject for Meeting','2021-11-13 21:21:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (424,NULL,2,'Subject for Phone Call','2022-01-26 18:25:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (425,NULL,55,'Subject for Interview','2022-08-30 23:35:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (426,NULL,22,'Subject for Print/Merge Document','2022-04-22 06:59:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (427,NULL,2,'Subject for Phone Call','2022-02-10 16:37:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (428,NULL,22,'Subject for Print/Merge Document','2022-02-13 18:23:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (429,NULL,9,'Subject for Tell a Friend','2022-03-11 21:16:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (430,NULL,55,'Subject for Interview','2022-01-27 18:53:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (431,NULL,1,'Subject for Meeting','2022-07-12 09:13:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (432,NULL,2,'Subject for Phone Call','2022-02-19 17:37:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (433,NULL,55,'Subject for Interview','2022-07-02 18:40:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (434,NULL,2,'Subject for Phone Call','2022-08-22 16:29:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (435,NULL,9,'Subject for Tell a Friend','2021-12-29 01:20:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (436,NULL,9,'Subject for Tell a Friend','2022-09-13 14:41:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (437,NULL,1,'Subject for Meeting','2022-03-07 22:48:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (438,NULL,22,'Subject for Print/Merge Document','2022-04-21 23:40:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (439,NULL,22,'Subject for Print/Merge Document','2022-03-10 09:05:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (440,NULL,2,'Subject for Phone Call','2022-08-25 15:34:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (441,NULL,55,'Subject for Interview','2021-11-12 10:12:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (442,NULL,22,'Subject for Print/Merge Document','2022-03-26 00:57:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (443,NULL,2,'Subject for Phone Call','2022-08-22 19:34:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (444,NULL,55,'Subject for Interview','2022-09-20 22:59:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (445,NULL,1,'Subject for Meeting','2022-07-15 20:48:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (446,NULL,55,'Subject for Interview','2022-10-11 23:17:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (447,NULL,55,'Subject for Interview','2022-02-06 01:54:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (448,NULL,2,'Subject for Phone Call','2022-07-21 16:36:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (449,NULL,9,'Subject for Tell a Friend','2021-11-05 05:16:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (450,NULL,22,'Subject for Print/Merge Document','2022-05-13 18:25:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (451,1,6,'$ 125 April Mailer 1','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (452,2,6,'$ 50 Online: Save the Penguins','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (453,3,6,'£ 25 April Mailer 1','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (454,4,6,'$ 50 Online: Save the Penguins','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (455,5,6,'$ 50 Online: Save the Penguins','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (456,6,6,'$ 500 April Mailer 1','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (457,7,6,'$ 1750 Online: Save the Penguins','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (458,8,6,'$ 50 Online: Save the Penguins','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (459,9,6,'$ 10 Online: Help CiviCRM','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (460,10,6,'$ 250 Online: Help CiviCRM','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (461,11,6,'¥ 500 ','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (462,12,6,'$ 50 Online: Save the Penguins','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (463,13,6,'$ 50 ','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (464,14,6,'$ 50 ','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (465,15,6,'$ 25 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (466,16,6,'$ 25 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (467,17,6,'$ 25 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (468,18,6,'$ 25 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (469,19,6,'$ 25 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (470,20,6,'$ 25 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (471,21,6,'$ 25 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (472,22,6,'$ 25 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (473,23,6,'$ 25 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (474,24,6,'$ 25 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (475,25,6,'$ 25 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (476,26,6,'$ 10 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (477,27,6,'$ 10 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (478,28,6,'$ 10 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (479,29,6,'$ 10 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (480,30,6,'$ 10 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (481,31,6,'€ 5 Recurring contribution','2022-12-17 14:12:07',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (482,1,7,'General','2022-10-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (483,2,7,'Student','2022-10-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (484,3,7,'General','2022-10-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (485,4,7,'Student','2022-10-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (486,5,7,'Student','2021-10-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (487,6,7,'Student','2022-10-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (488,7,7,'General','2022-10-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (489,8,7,'Student','2022-10-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (490,9,7,'General','2022-10-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (491,10,7,'General','2020-08-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (492,11,7,'Lifetime','2022-10-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (493,12,7,'Student','2022-10-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (494,13,7,'General','2022-10-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (495,14,7,'Student','2022-10-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (496,15,7,'Student','2021-10-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (497,16,7,'Student','2022-10-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (498,17,7,'General','2022-10-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (499,18,7,'Student','2022-09-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (500,19,7,'General','2022-09-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (501,20,7,'General','2020-05-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (502,21,7,'General','2022-09-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (503,22,7,'Lifetime','2022-09-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (504,23,7,'General','2022-09-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (505,24,7,'Student','2022-09-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (506,25,7,'Student','2021-09-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (507,26,7,'Student','2022-09-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (508,27,7,'General','2022-09-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (509,28,7,'Student','2022-09-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (510,29,7,'General','2022-09-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (511,30,7,'Student','2021-09-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (512,32,6,'$ 100.00 - General Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (513,33,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (514,34,6,'$ 100.00 - General Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (515,35,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (516,36,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (517,37,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (518,38,6,'$ 100.00 - General Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (519,39,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (520,40,6,'$ 100.00 - General Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (521,41,6,'$ 100.00 - General Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (522,42,6,'$ 1200.00 - Lifetime Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (523,43,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (524,44,6,'$ 100.00 - General Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (525,45,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (526,46,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (527,47,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (528,48,6,'$ 100.00 - General Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (529,49,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (530,50,6,'$ 100.00 - General Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (531,51,6,'$ 100.00 - General Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (532,52,6,'$ 100.00 - General Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (533,53,6,'$ 1200.00 - Lifetime Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (534,54,6,'$ 100.00 - General Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (535,55,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (536,56,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (537,57,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (538,58,6,'$ 100.00 - General Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (539,59,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (540,60,6,'$ 100.00 - General Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (541,61,6,'$ 50.00 - Student Membership: Offline signup','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (543,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (544,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (545,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (546,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (547,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (548,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (549,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (550,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (551,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (552,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (553,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (554,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (555,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (556,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (557,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (558,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (559,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (560,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (561,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (562,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (563,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (564,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (565,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (566,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (567,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (568,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (569,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (570,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (571,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (572,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (573,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (574,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (575,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (576,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (577,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (578,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (579,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (580,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (581,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (582,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (583,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (584,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (585,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (586,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (587,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (588,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (589,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (590,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (591,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (592,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,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (593,63,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (594,64,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (595,65,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (596,66,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (597,67,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (598,68,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (599,69,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (600,70,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (601,71,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (602,72,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (603,73,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (604,74,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (605,75,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (606,76,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (607,77,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (608,78,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (609,79,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (610,80,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (611,81,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (612,82,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (613,83,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (614,84,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (615,85,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (616,86,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (617,87,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (618,88,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (619,89,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (620,90,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (621,91,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (622,92,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (623,93,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (624,94,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (625,95,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (626,96,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (627,97,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (628,98,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (629,99,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (630,100,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (631,101,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (632,102,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (633,103,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (634,104,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (635,105,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (636,106,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (637,107,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (638,108,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (639,109,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (640,110,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (641,111,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'), + (642,112,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2022-10-17 14:12:07',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:12:07','2022-10-17 14:12:07'); /*!40000 ALTER TABLE `civicrm_activity` ENABLE KEYS */; UNLOCK TABLES; @@ -813,952 +813,964 @@ UNLOCK TABLES; LOCK TABLES `civicrm_activity_contact` WRITE; /*!40000 ALTER TABLE `civicrm_activity_contact` DISABLE KEYS */; INSERT INTO `civicrm_activity_contact` (`id`, `activity_id`, `contact_id`, `record_type_id`) VALUES - (119,68,1,3), - (232,131,1,3), - (293,163,1,3), - (726,405,1,3), - (902,547,1,2), - (10,6,2,3), - (94,54,2,3), - (236,133,2,3), - (281,157,2,3), - (806,451,2,2), - (634,354,3,3), - (686,382,3,3), - (754,420,3,3), - (898,543,3,2), - (72,42,4,3), - (407,229,4,3), - (622,348,4,3), - (807,452,4,2), - (810,455,4,2), - (938,583,4,2), - (520,291,5,3), - (202,115,6,3), - (492,276,6,3), - (552,310,6,3), - (759,423,6,3), - (808,453,6,2), - (946,591,6,2), - (210,120,7,3), - (277,155,7,3), - (374,210,7,3), - (405,228,7,3), - (461,258,7,3), - (705,392,7,3), - (722,403,7,3), - (32,19,8,3), - (248,140,8,3), - (809,454,8,2), - (263,148,9,3), - (709,394,9,3), - (300,167,10,3), - (433,244,10,3), - (595,334,10,3), - (640,357,10,3), - (224,127,11,3), - (735,410,11,3), - (851,496,11,2), - (881,526,11,2), - (364,205,12,3), - (389,219,12,3), - (746,416,12,3), - (763,425,12,3), - (929,574,12,2), - (191,109,13,3), - (429,241,13,3), - (466,261,13,3), - (56,33,14,3), - (447,251,14,3), - (646,361,14,3), - (799,447,14,3), - (801,448,14,3), - (28,17,15,3), - (112,64,15,3), - (226,128,15,3), - (496,279,15,3), - (853,498,15,2), - (883,528,15,2), - (425,239,16,3), - (678,378,16,3), - (757,422,16,3), - (811,456,16,2), - (74,43,17,3), - (80,46,17,3), - (409,230,17,3), - (483,271,17,3), - (565,318,17,3), - (694,386,17,3), - (724,404,17,3), - (740,413,17,3), - (308,172,18,3), - (579,326,18,3), - (630,352,18,3), - (737,411,18,3), - (174,99,19,3), - (538,302,19,3), - (690,384,19,3), - (812,457,19,2), - (222,126,20,3), - (676,377,20,3), - (794,444,21,3), - (5,3,22,3), - (216,123,22,3), - (573,323,22,3), - (601,337,22,3), - (37,22,23,3), - (104,59,23,3), - (526,294,23,3), - (581,327,23,3), - (730,407,23,3), - (39,23,24,3), - (98,56,24,3), - (166,94,24,3), - (380,213,24,3), - (449,252,24,3), - (83,48,25,3), - (147,84,25,3), - (317,177,25,3), - (529,296,25,3), - (682,380,25,3), - (65,38,26,3), - (275,154,26,3), - (591,332,26,3), - (607,340,26,3), - (628,351,26,3), - (206,118,27,3), - (242,137,27,3), - (376,211,27,3), - (391,220,27,3), - (550,309,27,3), - (298,166,28,3), - (366,206,28,3), - (663,370,28,3), - (246,139,29,3), - (269,151,29,3), - (840,485,29,2), - (870,515,29,2), - (189,108,30,3), - (334,188,30,3), - (208,119,31,3), - (858,503,31,2), - (888,533,31,2), - (129,74,32,3), - (605,339,32,3), - (728,406,32,3), - (742,414,32,3), - (803,449,32,3), - (818,463,32,2), - (819,464,32,2), - (848,493,32,2), - (878,523,32,2), - (257,145,33,3), - (393,221,33,3), - (457,256,33,3), - (665,371,33,3), - (692,385,33,3), - (703,391,33,3), - (713,397,33,3), - (124,71,34,3), - (230,130,34,3), - (615,344,34,3), - (815,460,34,2), - (187,107,35,3), - (441,248,35,3), - (626,350,35,3), - (784,438,35,3), - (48,28,36,3), - (291,162,36,3), - (315,176,36,3), - (353,199,36,3), - (139,80,37,3), - (402,226,37,3), - (159,90,38,3), - (437,246,38,3), - (661,369,38,3), - (667,372,38,3), - (684,381,38,3), - (752,419,38,3), - (34,20,39,3), - (89,51,39,3), - (106,60,39,3), - (474,266,39,3), - (504,283,39,3), - (609,341,39,3), - (769,428,39,3), - (163,92,40,3), - (325,182,40,3), - (360,203,40,3), - (542,304,40,3), - (942,587,40,2), - (132,76,41,3), - (306,171,41,3), - (922,567,41,2), - (839,484,42,2), - (869,514,42,2), - (439,247,43,3), - (464,260,43,3), - (761,424,43,3), - (817,462,43,2), - (2,1,44,3), - (134,77,44,3), - (200,114,44,3), - (435,245,44,3), - (486,273,44,3), - (643,359,44,3), - (947,592,44,2), - (310,173,45,3), - (508,285,45,3), - (597,335,45,3), - (837,482,45,2), - (867,512,45,2), - (181,103,46,3), - (161,91,47,3), - (253,143,47,3), - (296,165,47,3), - (904,549,47,2), - (155,88,48,3), - (411,231,48,3), - (453,254,48,3), - (688,383,48,3), - (792,443,48,3), - (443,249,49,3), - (575,324,49,3), - (655,366,49,3), - (420,236,50,3), - (476,267,50,3), - (498,280,50,3), - (921,566,50,2), - (102,58,51,3), - (169,96,51,3), - (395,222,51,3), - (506,284,51,3), - (562,316,51,3), - (114,65,52,3), - (218,124,52,3), - (342,192,52,3), - (624,349,52,3), - (669,373,52,3), - (933,578,52,2), - (415,233,53,3), - (518,290,53,3), - (866,511,53,2), - (896,541,53,2), - (336,189,54,3), - (589,331,54,3), - (934,579,54,2), - (63,37,55,3), - (92,53,55,3), - (255,144,55,3), - (459,257,55,3), - (603,338,55,3), - (372,209,56,3), - (382,214,56,3), - (587,330,56,3), - (767,427,56,3), - (842,487,56,2), - (872,517,56,2), - (901,546,56,2), - (620,347,57,3), - (748,417,57,3), - (943,588,57,2), - (21,13,58,3), - (212,121,58,3), - (370,208,58,3), - (932,577,58,2), - (331,186,59,3), - (357,201,59,3), - (479,269,59,3), - (820,465,59,2), - (821,466,59,2), - (822,467,59,2), - (823,468,59,2), - (824,469,59,2), - (825,470,59,2), - (826,471,59,2), - (827,472,59,2), - (828,473,59,2), - (829,474,59,2), - (830,475,59,2), - (362,204,60,3), - (638,356,60,3), - (657,367,60,3), - (774,432,60,3), - (26,16,61,3), - (141,81,61,3), - (417,234,61,3), - (577,325,61,3), - (744,415,61,3), - (925,570,61,2), - (30,18,62,3), - (214,122,62,3), - (699,389,62,3), - (53,31,63,3), - (468,262,63,3), - (348,196,64,3), - (787,440,64,3), - (261,147,65,3), - (514,288,65,3), - (841,486,65,2), - (871,516,65,2), - (239,135,66,3), - (632,353,66,3), - (67,39,67,3), - (271,152,67,3), - (397,223,67,3), - (913,558,67,2), - (157,89,68,3), - (455,255,68,3), - (849,494,68,2), - (879,524,68,2), - (674,376,69,3), - (720,402,69,3), - (776,433,69,3), - (198,113,70,3), - (268,151,70,2), - (270,152,70,2), - (272,153,70,2), - (274,154,70,2), - (276,155,70,2), - (278,156,70,2), - (280,157,70,2), - (282,158,70,2), - (284,159,70,2), - (286,160,70,2), - (288,161,70,2), - (290,162,70,2), - (292,163,70,2), - (294,164,70,2), - (295,165,70,2), - (297,166,70,2), - (299,167,70,2), - (301,168,70,2), - (303,169,70,2), - (304,170,70,2), - (305,171,70,2), - (307,172,70,2), - (309,173,70,2), - (311,174,70,2), - (313,175,70,2), - (314,176,70,2), - (316,177,70,2), - (318,178,70,2), - (319,179,70,2), - (320,180,70,2), - (322,181,70,2), - (324,182,70,2), - (326,183,70,2), - (327,184,70,2), - (328,185,70,2), - (330,186,70,2), - (332,187,70,2), - (333,188,70,2), - (335,189,70,2), - (337,190,70,2), - (339,191,70,2), - (341,192,70,2), - (343,193,70,2), - (344,194,70,2), - (346,195,70,2), - (347,196,70,2), - (349,197,70,2), - (351,198,70,2), - (352,199,70,2), - (354,200,70,2), - (356,201,70,2), - (358,202,70,2), - (359,203,70,2), - (361,204,70,2), - (363,205,70,2), - (365,206,70,2), - (367,207,70,2), - (369,208,70,2), - (371,209,70,2), - (373,210,70,2), - (375,211,70,2), - (377,212,70,2), - (379,213,70,2), - (381,214,70,2), - (383,215,70,2), - (385,216,70,2), - (386,217,70,2), - (387,218,70,2), - (388,219,70,2), - (390,220,70,2), - (392,221,70,2), - (394,222,70,2), - (396,223,70,2), - (398,224,70,2), - (400,225,70,2), - (401,226,70,2), - (403,227,70,2), - (404,228,70,2), - (406,229,70,2), - (408,230,70,2), - (410,231,70,2), - (412,232,70,2), - (414,233,70,2), - (416,234,70,2), - (418,235,70,2), - (419,236,70,2), - (421,237,70,2), - (423,238,70,2), - (424,239,70,2), - (426,240,70,2), - (428,241,70,2), - (430,242,70,2), - (431,243,70,2), - (432,244,70,2), - (434,245,70,2), - (436,246,70,2), - (438,247,70,2), - (440,248,70,2), - (442,249,70,2), - (444,250,70,2), - (446,251,70,2), - (448,252,70,2), - (450,253,70,2), - (452,254,70,2), - (454,255,70,2), - (456,256,70,2), - (458,257,70,2), - (460,258,70,2), - (462,259,70,2), - (463,260,70,2), - (465,261,70,2), - (467,262,70,2), - (469,263,70,2), - (470,264,70,2), - (471,265,70,2), - (473,266,70,2), - (475,267,70,2), - (477,268,70,2), - (478,269,70,2), - (480,270,70,2), - (482,271,70,2), - (484,272,70,2), - (485,273,70,2), - (487,274,70,2), - (489,275,70,2), - (491,276,70,2), - (493,277,70,2), - (494,278,70,2), - (495,279,70,2), - (497,280,70,2), - (499,281,70,2), - (501,282,70,2), - (503,283,70,2), - (505,284,70,2), - (507,285,70,2), - (509,286,70,2), - (511,287,70,2), - (513,288,70,2), - (515,289,70,2), - (517,290,70,2), - (519,291,70,2), - (521,292,70,2), - (523,293,70,2), - (525,294,70,2), - (527,295,70,2), - (528,296,70,2), - (530,297,70,2), - (532,298,70,2), - (533,299,70,2), - (534,300,70,2), - (782,437,71,3), - (816,461,71,2), - (136,78,72,3), - (279,156,72,3), - (522,292,72,3), - (554,311,72,3), - (560,315,72,3), - (567,319,72,3), - (593,333,72,3), - (285,159,73,3), - (350,197,73,3), - (244,138,74,3), - (355,200,74,3), - (613,343,74,3), - (805,450,74,3), - (61,36,75,3), - (544,305,75,3), - (558,314,75,3), - (585,329,75,3), - (618,346,75,3), - (790,442,75,3), - (945,590,75,2), - (69,40,76,3), - (427,240,76,3), - (512,287,76,3), - (715,398,76,3), - (178,101,77,3), - (234,132,77,3), - (220,125,78,3), - (265,149,78,3), - (378,212,78,3), - (535,301,78,2), - (537,302,78,2), - (539,303,78,2), - (541,304,78,2), - (543,305,78,2), - (545,306,78,2), - (546,307,78,2), - (547,307,78,3), - (548,308,78,2), - (549,309,78,2), - (551,310,78,2), - (553,311,78,2), - (555,312,78,2), - (556,313,78,2), - (557,314,78,2), - (559,315,78,2), - (561,316,78,2), - (563,317,78,2), - (564,318,78,2), - (566,319,78,2), - (568,320,78,2), - (569,321,78,2), - (570,322,78,2), - (572,323,78,2), - (574,324,78,2), - (576,325,78,2), - (578,326,78,2), - (580,327,78,2), - (582,328,78,2), - (584,329,78,2), - (586,330,78,2), - (588,331,78,2), - (590,332,78,2), - (592,333,78,2), - (594,334,78,2), - (596,335,78,2), - (598,336,78,2), - (600,337,78,2), - (602,338,78,2), - (604,339,78,2), - (606,340,78,2), - (608,341,78,2), - (610,342,78,2), - (612,343,78,2), - (614,344,78,2), - (616,345,78,2), - (617,346,78,2), - (619,347,78,2), - (621,348,78,2), - (623,349,78,2), - (625,350,78,2), - (627,351,78,2), - (629,352,78,2), - (631,353,78,2), - (633,354,78,2), - (635,355,78,2), - (637,356,78,2), - (639,357,78,2), - (641,358,78,2), - (642,359,78,2), - (644,360,78,2), - (645,361,78,2), - (647,362,78,2), - (649,363,78,2), - (650,364,78,2), - (652,365,78,2), - (654,366,78,2), - (656,367,78,2), - (658,368,78,2), - (660,369,78,2), - (662,370,78,2), - (664,371,78,2), - (666,372,78,2), - (668,373,78,2), - (670,374,78,2), - (671,375,78,2), - (673,376,78,2), - (675,377,78,2), - (677,378,78,2), - (679,379,78,2), - (681,380,78,2), - (683,381,78,2), - (685,382,78,2), - (687,383,78,2), - (689,384,78,2), - (691,385,78,2), - (693,386,78,2), - (695,387,78,2), - (696,388,78,2), - (698,389,78,2), - (700,390,78,2), - (702,391,78,2), - (704,392,78,2), - (706,393,78,2), - (708,394,78,2), - (710,395,78,2), - (711,396,78,2), - (712,397,78,2), - (714,398,78,2), - (716,399,78,2), - (717,400,78,2), - (718,401,78,2), - (719,402,78,2), - (721,403,78,2), - (723,404,78,2), - (725,405,78,2), - (727,406,78,2), - (729,407,78,2), - (731,408,78,2), - (732,409,78,2), - (733,409,78,3), - (734,410,78,2), - (736,411,78,2), - (738,412,78,2), - (739,413,78,2), - (741,414,78,2), - (743,415,78,2), - (745,416,78,2), - (747,417,78,2), - (749,418,78,2), - (751,419,78,2), - (753,420,78,2), - (755,421,78,2), - (756,422,78,2), - (758,423,78,2), - (760,424,78,2), - (762,425,78,2), - (764,426,78,2), - (766,427,78,2), - (768,428,78,2), - (770,429,78,2), - (771,430,78,2), - (772,431,78,2), - (773,432,78,2), - (775,433,78,2), - (777,434,78,2), - (778,435,78,2), - (780,436,78,2), - (781,437,78,2), - (783,438,78,2), - (785,439,78,2), - (786,440,78,2), - (788,441,78,2), - (789,442,78,2), - (791,443,78,2), - (793,444,78,2), - (795,445,78,2), - (797,446,78,2), - (798,447,78,2), - (800,448,78,2), - (802,449,78,2), - (804,450,78,2), - (117,67,79,3), - (481,270,79,3), - (490,275,79,3), - (611,342,79,3), - (7,4,80,3), - (41,24,80,3), - (672,375,80,3), - (143,82,81,3), - (267,150,81,3), - (289,161,81,3), - (911,556,81,2), - (145,83,82,3), - (451,253,82,3), - (813,458,82,2), - (864,509,82,2), - (894,539,82,2), - (413,232,83,3), - (540,303,83,3), - (697,388,83,3), - (302,168,84,3), - (323,181,84,3), - (510,286,84,3), - (599,336,84,3), - (126,72,85,3), - (153,87,85,3), - (472,265,85,3), - (500,281,85,3), - (273,153,86,3), - (368,207,86,3), - (384,215,86,3), - (536,301,86,3), - (571,322,86,3), - (923,568,86,2), - (78,45,87,3), - (122,70,87,3), - (176,100,87,3), - (250,141,87,3), - (312,174,87,3), - (321,180,87,3), - (516,289,88,3), - (531,297,88,3), - (914,559,88,2), - (14,9,89,3), - (228,129,89,3), - (259,146,89,3), - (422,237,89,3), - (796,445,89,3), - (76,44,90,3), - (149,85,90,3), - (338,190,90,3), - (85,49,91,3), - (100,57,91,3), - (172,98,91,3), - (194,111,91,3), - (707,393,92,3), - (765,426,92,3), - (814,459,92,2), - (909,554,92,2), - (865,510,93,2), - (895,540,93,2), - (109,62,94,3), - (329,185,94,3), - (524,293,94,3), - (636,355,94,3), - (926,571,94,2), - (16,10,95,3), - (18,11,95,3), - (87,50,95,3), - (340,191,95,3), - (651,364,95,3), - (23,14,96,3), - (51,30,96,3), - (59,35,96,3), - (96,55,96,3), - (345,194,96,3), - (488,274,96,3), - (659,368,96,3), - (908,553,96,2), - (196,112,97,3), - (779,435,97,3), - (855,500,97,2), - (885,530,97,2), - (183,104,98,3), - (445,250,98,3), - (502,282,98,3), - (680,379,98,3), - (750,418,98,3), - (44,26,99,3), - (701,390,99,3), - (831,476,99,2), - (832,477,99,2), - (833,478,99,2), - (834,479,99,2), - (835,480,99,2), - (151,86,100,3), - (287,160,100,3), - (399,224,100,3), - (860,505,100,2), - (890,535,100,2), - (46,27,101,3), - (283,158,101,3), - (583,328,101,3), - (648,362,101,3), - (653,365,101,3), - (836,481,103,2), - (843,488,103,2), - (873,518,103,2), - (920,565,105,2), - (917,562,106,2), - (919,564,111,2), - (941,586,116,2), - (935,580,117,2), - (899,544,118,2), - (916,561,119,2), - (844,489,120,2), - (874,519,120,2), - (907,552,120,2), - (906,551,123,2), - (918,563,124,2), - (928,573,132,2), - (857,502,133,2), - (887,532,133,2), - (845,490,135,2), - (875,520,135,2), - (927,572,135,2), - (903,548,142,2), - (910,555,144,2), - (936,581,145,2), - (856,501,147,2), - (886,531,147,2), - (931,576,148,2), - (850,495,149,2), - (880,525,149,2), - (863,508,151,2), - (893,538,151,2), - (944,589,157,2), - (940,585,159,2), - (847,492,162,2), - (877,522,162,2), - (937,582,163,2), - (859,504,166,2), - (889,534,166,2), - (915,560,167,2), - (861,506,169,2), - (891,536,169,2), - (838,483,171,2), - (868,513,171,2), - (846,491,180,2), - (876,521,180,2), - (900,545,181,2), - (924,569,184,2), - (939,584,186,2), - (912,557,187,2), - (862,507,188,2), - (892,537,188,2), - (1,1,189,2), - (3,2,189,2), - (4,3,189,2), - (6,4,189,2), - (8,5,189,2), - (9,6,189,2), - (11,7,189,2), - (12,8,189,2), - (13,9,189,2), - (15,10,189,2), - (17,11,189,2), - (19,12,189,2), - (20,13,189,2), - (22,14,189,2), - (24,15,189,2), - (25,16,189,2), - (27,17,189,2), - (29,18,189,2), - (31,19,189,2), - (33,20,189,2), - (35,21,189,2), - (36,22,189,2), - (38,23,189,2), - (40,24,189,2), - (42,25,189,2), - (43,26,189,2), - (45,27,189,2), - (47,28,189,2), - (49,29,189,2), - (50,30,189,2), - (52,31,189,2), - (54,32,189,2), - (55,33,189,2), - (57,34,189,2), - (58,35,189,2), - (60,36,189,2), - (62,37,189,2), - (64,38,189,2), - (66,39,189,2), - (68,40,189,2), - (70,41,189,2), - (71,42,189,2), - (73,43,189,2), - (75,44,189,2), - (77,45,189,2), - (79,46,189,2), - (81,47,189,2), - (82,48,189,2), - (84,49,189,2), - (86,50,189,2), - (88,51,189,2), - (90,52,189,2), - (91,53,189,2), - (93,54,189,2), - (95,55,189,2), - (97,56,189,2), - (99,57,189,2), - (101,58,189,2), - (103,59,189,2), - (105,60,189,2), - (107,61,189,2), - (108,62,189,2), - (110,63,189,2), - (111,64,189,2), - (113,65,189,2), - (115,66,189,2), - (116,67,189,2), - (118,68,189,2), - (120,69,189,2), - (121,70,189,2), - (123,71,189,2), - (125,72,189,2), - (127,73,189,2), - (128,74,189,2), - (130,75,189,2), - (131,76,189,2), - (133,77,189,2), - (135,78,189,2), - (137,79,189,2), - (138,80,189,2), - (140,81,189,2), - (142,82,189,2), - (144,83,189,2), - (146,84,189,2), - (148,85,189,2), - (150,86,189,2), - (152,87,189,2), - (154,88,189,2), - (156,89,189,2), - (158,90,189,2), - (160,91,189,2), - (162,92,189,2), - (164,93,189,2), - (165,94,189,2), - (167,95,189,2), - (168,96,189,2), - (170,97,189,2), - (171,98,189,2), - (173,99,189,2), - (175,100,189,2), - (177,101,189,2), - (179,102,189,2), - (180,103,189,2), - (182,104,189,2), - (184,105,189,2), - (185,106,189,2), - (186,107,189,2), - (188,108,189,2), - (190,109,189,2), - (192,110,189,2), - (193,111,189,2), - (195,112,189,2), - (197,113,189,2), - (199,114,189,2), - (201,115,189,2), - (203,116,189,2), - (204,117,189,2), - (205,118,189,2), - (207,119,189,2), - (209,120,189,2), - (211,121,189,2), - (213,122,189,2), - (215,123,189,2), - (217,124,189,2), - (219,125,189,2), - (221,126,189,2), - (223,127,189,2), - (225,128,189,2), - (227,129,189,2), - (229,130,189,2), - (231,131,189,2), - (233,132,189,2), - (235,133,189,2), - (237,134,189,2), - (238,135,189,2), - (240,136,189,2), - (241,137,189,2), - (243,138,189,2), - (245,139,189,2), - (247,140,189,2), - (249,141,189,2), - (251,142,189,2), - (252,143,189,2), - (254,144,189,2), - (256,145,189,2), - (258,146,189,2), - (260,147,189,2), - (262,148,189,2), - (264,149,189,2), - (266,150,189,2), - (852,497,189,2), - (882,527,189,2), - (930,575,190,2), - (854,499,197,2), - (884,529,197,2), - (905,550,202,2); + (552,304,1,3), + (51,27,2,3), + (184,102,2,3), + (414,228,2,3), + (427,235,2,3), + (468,258,2,3), + (633,348,2,3), + (818,451,2,2), + (149,83,3,3), + (244,134,3,3), + (732,402,3,3), + (955,588,3,2), + (808,445,4,3), + (819,452,4,2), + (822,455,4,2), + (861,494,4,2), + (891,524,4,2), + (953,586,4,2), + (20,11,5,3), + (503,276,5,3), + (716,393,5,3), + (769,423,5,3), + (781,430,5,3), + (507,278,6,3), + (820,453,6,2), + (13,7,7,3), + (170,95,7,3), + (224,123,7,3), + (524,287,7,3), + (568,313,7,3), + (785,432,7,3), + (915,548,7,2), + (284,156,8,3), + (341,187,8,3), + (406,223,8,3), + (472,260,8,3), + (821,454,8,2), + (55,29,9,3), + (240,132,9,3), + (328,180,9,3), + (359,197,9,3), + (361,198,9,3), + (425,234,9,3), + (713,391,9,3), + (339,186,10,3), + (499,274,10,3), + (649,357,10,3), + (155,87,11,3), + (300,164,11,3), + (377,206,11,3), + (194,107,12,3), + (227,125,12,3), + (666,366,12,3), + (64,34,13,3), + (222,122,13,3), + (416,229,13,3), + (664,365,13,3), + (771,424,13,3), + (952,585,13,2), + (262,144,14,3), + (292,160,14,3), + (631,347,14,3), + (651,358,14,3), + (740,406,14,3), + (779,429,14,3), + (135,74,15,3), + (375,205,15,3), + (801,441,15,3), + (816,449,15,3), + (956,589,15,2), + (272,149,16,3), + (322,177,16,3), + (324,178,16,3), + (511,280,16,3), + (513,281,16,3), + (574,316,16,3), + (595,328,16,3), + (699,383,16,3), + (823,456,16,2), + (947,580,16,2), + (198,109,17,3), + (463,255,17,3), + (623,342,17,3), + (642,353,17,3), + (653,359,17,3), + (478,263,18,3), + (871,504,18,2), + (901,534,18,2), + (174,97,19,3), + (210,116,19,3), + (276,151,19,3), + (519,284,19,3), + (824,457,19,2), + (95,52,20,3), + (451,248,20,3), + (543,299,20,3), + (685,376,20,3), + (729,400,20,3), + (937,570,20,2), + (57,30,21,3), + (349,191,21,3), + (599,330,21,3), + (601,331,21,3), + (936,569,22,2), + (37,20,23,3), + (384,210,23,3), + (546,301,23,2), + (548,302,23,2), + (550,303,23,2), + (551,304,23,2), + (553,305,23,2), + (555,306,23,2), + (557,307,23,2), + (559,308,23,2), + (560,309,23,2), + (562,310,23,2), + (563,311,23,2), + (565,312,23,2), + (567,313,23,2), + (569,314,23,2), + (571,315,23,2), + (573,316,23,2), + (575,317,23,2), + (577,318,23,2), + (578,319,23,2), + (580,320,23,2), + (581,321,23,2), + (582,322,23,2), + (584,323,23,2), + (586,324,23,2), + (588,325,23,2), + (590,326,23,2), + (592,327,23,2), + (594,328,23,2), + (596,329,23,2), + (598,330,23,2), + (600,331,23,2), + (602,332,23,2), + (604,333,23,2), + (606,334,23,2), + (608,335,23,2), + (609,335,23,3), + (610,336,23,2), + (612,337,23,2), + (614,338,23,2), + (616,339,23,2), + (618,340,23,2), + (620,341,23,2), + (622,342,23,2), + (624,343,23,2), + (625,343,23,3), + (626,344,23,2), + (627,345,23,2), + (628,346,23,2), + (630,347,23,2), + (632,348,23,2), + (634,349,23,2), + (636,350,23,2), + (638,351,23,2), + (640,352,23,2), + (641,353,23,2), + (643,354,23,2), + (645,355,23,2), + (647,356,23,2), + (648,357,23,2), + (650,358,23,2), + (652,359,23,2), + (654,360,23,2), + (656,361,23,2), + (658,362,23,2), + (659,363,23,2), + (661,364,23,2), + (663,365,23,2), + (665,366,23,2), + (667,367,23,2), + (669,368,23,2), + (671,369,23,2), + (673,370,23,2), + (675,371,23,2), + (677,372,23,2), + (679,373,23,2), + (680,374,23,2), + (682,375,23,2), + (684,376,23,2), + (686,377,23,2), + (688,378,23,2), + (690,379,23,2), + (692,380,23,2), + (694,381,23,2), + (696,382,23,2), + (698,383,23,2), + (700,384,23,2), + (701,385,23,2), + (703,386,23,2), + (704,387,23,2), + (706,388,23,2), + (708,389,23,2), + (710,390,23,2), + (712,391,23,2), + (714,392,23,2), + (715,393,23,2), + (717,394,23,2), + (719,395,23,2), + (721,396,23,2), + (723,397,23,2), + (724,398,23,2), + (726,399,23,2), + (728,400,23,2), + (730,401,23,2), + (731,402,23,2), + (733,403,23,2), + (735,404,23,2), + (737,405,23,2), + (739,406,23,2), + (741,407,23,2), + (743,408,23,2), + (745,409,23,2), + (747,410,23,2), + (749,411,23,2), + (750,412,23,2), + (752,413,23,2), + (754,414,23,2), + (755,415,23,2), + (757,416,23,2), + (759,417,23,2), + (761,418,23,2), + (763,419,23,2), + (764,420,23,2), + (765,421,23,2), + (767,422,23,2), + (768,423,23,2), + (770,424,23,2), + (772,425,23,2), + (774,426,23,2), + (775,427,23,2), + (777,428,23,2), + (778,429,23,2), + (780,430,23,2), + (782,431,23,2), + (784,432,23,2), + (786,433,23,2), + (787,433,23,3), + (788,434,23,2), + (790,435,23,2), + (792,436,23,2), + (794,437,23,2), + (796,438,23,2), + (797,439,23,2), + (798,440,23,2), + (800,441,23,2), + (802,442,23,2), + (803,443,23,2), + (805,444,23,2), + (807,445,23,2), + (809,446,23,2), + (811,447,23,2), + (813,448,23,2), + (815,449,23,2), + (817,450,23,2), + (266,146,24,3), + (314,172,24,3), + (443,243,24,3), + (33,18,25,3), + (93,51,25,3), + (159,89,25,3), + (165,92,25,3), + (435,239,25,3), + (722,396,25,3), + (793,436,25,3), + (125,68,26,3), + (200,110,26,3), + (660,363,26,3), + (727,399,26,3), + (152,85,27,3), + (246,135,27,3), + (448,246,27,3), + (637,350,27,3), + (855,488,27,2), + (885,518,27,2), + (357,196,28,3), + (619,340,28,3), + (762,418,28,3), + (870,503,28,2), + (900,533,28,2), + (934,567,28,2), + (268,147,29,3), + (371,203,29,3), + (579,319,29,3), + (83,46,30,3), + (288,158,30,3), + (343,188,30,3), + (495,272,30,3), + (561,309,30,3), + (108,59,31,3), + (116,63,31,3), + (369,202,31,3), + (920,553,31,2), + (49,26,32,3), + (402,221,32,3), + (691,379,32,3), + (830,463,32,2), + (831,464,32,2), + (87,48,33,3), + (123,67,33,3), + (260,143,33,3), + (355,195,33,3), + (812,447,33,3), + (930,563,33,2), + (827,460,34,2), + (11,6,35,3), + (250,138,36,3), + (655,360,37,3), + (79,44,38,3), + (282,155,38,3), + (445,244,38,3), + (505,277,38,3), + (570,314,38,3), + (670,368,38,3), + (489,269,39,3), + (549,302,39,3), + (576,317,39,3), + (127,69,40,3), + (138,76,40,3), + (753,413,40,3), + (865,498,40,2), + (895,528,40,2), + (47,25,41,3), + (218,120,41,3), + (317,174,41,3), + (365,200,41,3), + (482,265,41,3), + (310,169,42,3), + (400,220,42,3), + (776,427,42,3), + (922,555,42,2), + (188,104,43,3), + (681,374,43,3), + (718,394,43,3), + (829,462,43,2), + (913,546,43,2), + (235,129,44,3), + (404,222,44,3), + (470,259,44,3), + (617,339,44,3), + (950,583,44,2), + (629,346,45,3), + (856,489,45,2), + (886,519,45,2), + (60,32,46,3), + (274,150,47,3), + (27,15,48,3), + (85,47,48,3), + (487,268,48,3), + (530,291,48,3), + (587,324,48,3), + (593,327,48,3), + (766,421,48,3), + (806,444,48,3), + (4,2,49,3), + (254,140,49,3), + (522,286,49,3), + (662,364,49,3), + (335,184,50,3), + (41,22,51,3), + (146,81,51,3), + (212,117,51,3), + (491,270,51,3), + (497,273,51,3), + (541,298,51,3), + (707,388,51,3), + (921,554,51,2), + (121,66,52,3), + (161,90,52,3), + (231,127,52,3), + (67,36,53,3), + (216,119,53,3), + (547,301,53,3), + (589,325,53,3), + (2,1,54,3), + (367,201,54,3), + (556,306,54,3), + (866,499,54,2), + (896,529,54,2), + (178,99,55,3), + (345,189,55,3), + (373,204,55,3), + (534,294,55,3), + (35,19,56,3), + (167,93,56,3), + (423,233,56,3), + (597,329,56,3), + (795,437,56,3), + (290,159,57,3), + (398,219,57,3), + (572,315,57,3), + (773,425,57,3), + (110,60,58,3), + (853,486,58,2), + (883,516,58,2), + (9,5,59,3), + (286,157,59,3), + (419,231,59,3), + (693,380,59,3), + (832,465,59,2), + (833,466,59,2), + (834,467,59,2), + (835,468,59,2), + (836,469,59,2), + (837,470,59,2), + (838,471,59,2), + (839,472,59,2), + (840,473,59,2), + (841,474,59,2), + (842,475,59,2), + (112,61,60,3), + (738,405,60,3), + (814,448,60,3), + (143,79,61,3), + (554,305,61,3), + (689,378,61,3), + (748,410,61,3), + (352,193,62,3), + (493,271,62,3), + (639,351,62,3), + (45,24,63,3), + (851,484,63,2), + (881,514,63,2), + (176,98,64,3), + (270,148,64,3), + (302,165,64,3), + (304,166,64,3), + (476,262,64,3), + (501,275,64,3), + (31,17,65,3), + (62,33,65,3), + (99,54,65,3), + (910,543,65,2), + (75,41,66,3), + (233,128,66,3), + (439,241,66,3), + (783,431,66,3), + (810,446,66,3), + (264,145,67,3), + (294,161,67,3), + (515,282,67,3), + (102,56,68,3), + (141,78,68,3), + (421,232,68,3), + (480,264,68,3), + (613,337,68,3), + (683,375,68,3), + (429,236,69,3), + (517,283,69,3), + (536,295,69,3), + (545,300,69,3), + (621,341,69,3), + (742,407,69,3), + (789,434,69,3), + (320,176,70,3), + (687,377,70,3), + (73,40,71,3), + (106,58,71,3), + (828,461,71,2), + (157,88,72,3), + (395,217,72,3), + (457,251,72,3), + (509,279,72,3), + (919,552,72,2), + (1,1,73,2), + (3,2,73,2), + (5,3,73,2), + (7,4,73,2), + (8,5,73,2), + (10,6,73,2), + (12,7,73,2), + (14,8,73,2), + (15,9,73,2), + (17,10,73,2), + (18,10,73,3), + (19,11,73,2), + (21,12,73,2), + (22,13,73,2), + (24,14,73,2), + (26,15,73,2), + (28,16,73,2), + (30,17,73,2), + (32,18,73,2), + (34,19,73,2), + (36,20,73,2), + (38,21,73,2), + (40,22,73,2), + (42,23,73,2), + (44,24,73,2), + (46,25,73,2), + (48,26,73,2), + (50,27,73,2), + (52,28,73,2), + (54,29,73,2), + (56,30,73,2), + (58,31,73,2), + (59,32,73,2), + (61,33,73,2), + (63,34,73,2), + (65,35,73,2), + (66,36,73,2), + (68,37,73,2), + (69,38,73,2), + (71,39,73,2), + (72,40,73,2), + (74,41,73,2), + (76,42,73,2), + (77,43,73,2), + (78,44,73,2), + (80,45,73,2), + (82,46,73,2), + (84,47,73,2), + (86,48,73,2), + (88,49,73,2), + (90,50,73,2), + (92,51,73,2), + (94,52,73,2), + (96,53,73,2), + (98,54,73,2), + (100,55,73,2), + (101,56,73,2), + (103,57,73,2), + (105,58,73,2), + (107,59,73,2), + (109,60,73,2), + (111,61,73,2), + (113,62,73,2), + (115,63,73,2), + (117,64,73,2), + (119,65,73,2), + (120,66,73,2), + (122,67,73,2), + (124,68,73,2), + (126,69,73,2), + (128,70,73,2), + (130,71,73,2), + (131,72,73,2), + (133,73,73,2), + (134,74,73,2), + (136,75,73,2), + (137,76,73,2), + (139,77,73,2), + (140,78,73,2), + (142,79,73,2), + (144,80,73,2), + (145,81,73,2), + (147,82,73,2), + (148,83,73,2), + (150,84,73,2), + (151,85,73,2), + (153,86,73,2), + (154,87,73,2), + (156,88,73,2), + (158,89,73,2), + (160,90,73,2), + (162,91,73,2), + (164,92,73,2), + (166,93,73,2), + (168,94,73,2), + (169,95,73,2), + (171,96,73,2), + (173,97,73,2), + (175,98,73,2), + (177,99,73,2), + (179,100,73,2), + (181,101,73,2), + (183,102,73,2), + (185,103,73,2), + (187,104,73,2), + (189,105,73,2), + (191,106,73,2), + (193,107,73,2), + (195,108,73,2), + (197,109,73,2), + (199,110,73,2), + (201,111,73,2), + (202,112,73,2), + (204,113,73,2), + (205,114,73,2), + (207,115,73,2), + (209,116,73,2), + (211,117,73,2), + (213,118,73,2), + (215,119,73,2), + (217,120,73,2), + (219,121,73,2), + (221,122,73,2), + (223,123,73,2), + (225,124,73,2), + (226,125,73,2), + (228,126,73,2), + (230,127,73,2), + (232,128,73,2), + (234,129,73,2), + (236,130,73,2), + (238,131,73,2), + (239,132,73,2), + (241,133,73,2), + (243,134,73,2), + (245,135,73,2), + (247,136,73,2), + (248,137,73,2), + (249,138,73,2), + (251,139,73,2), + (253,140,73,2), + (255,141,73,2), + (257,142,73,2), + (259,143,73,2), + (261,144,73,2), + (263,145,73,2), + (265,146,73,2), + (267,147,73,2), + (269,148,73,2), + (271,149,73,2), + (273,150,73,2), + (410,226,73,3), + (437,240,73,3), + (854,487,73,2), + (884,517,73,2), + (927,560,73,2), + (192,106,74,3), + (252,139,74,3), + (330,181,74,3), + (674,370,74,3), + (453,249,75,3), + (702,385,75,3), + (709,389,75,3), + (25,14,76,3), + (605,333,76,3), + (70,38,77,3), + (190,105,77,3), + (392,215,77,3), + (484,266,77,3), + (751,412,77,3), + (931,564,77,2), + (104,57,78,3), + (711,390,78,3), + (53,28,79,3), + (279,153,79,3), + (538,296,79,3), + (43,23,80,3), + (97,53,80,3), + (412,227,80,3), + (441,242,80,3), + (461,254,80,3), + (611,336,80,3), + (182,101,81,3), + (526,288,81,3), + (734,403,81,3), + (114,62,82,3), + (296,162,82,3), + (644,354,82,3), + (825,458,82,2), + (81,45,83,3), + (229,126,83,3), + (433,238,83,3), + (203,112,84,3), + (298,163,84,3), + (746,409,84,3), + (925,558,84,2), + (466,257,85,3), + (558,307,85,3), + (566,312,85,3), + (591,326,85,3), + (657,361,85,3), + (208,115,86,3), + (306,167,86,3), + (326,179,86,3), + (431,237,86,3), + (928,561,86,2), + (206,114,87,3), + (214,118,87,3), + (308,168,87,3), + (744,408,87,3), + (799,440,87,3), + (941,574,87,2), + (379,207,88,3), + (615,338,88,3), + (678,372,88,3), + (695,381,88,3), + (736,404,88,3), + (791,435,88,3), + (337,185,89,3), + (646,355,89,3), + (758,416,89,3), + (760,417,89,3), + (6,3,90,3), + (29,16,90,3), + (172,96,90,3), + (196,108,90,3), + (388,212,90,3), + (603,332,90,3), + (867,500,90,2), + (897,530,90,2), + (564,311,91,3), + (607,334,91,3), + (940,573,91,2), + (118,64,92,3), + (333,183,92,3), + (347,190,92,3), + (381,208,92,3), + (826,459,92,2), + (23,13,93,3), + (186,103,93,3), + (363,199,93,3), + (672,369,93,3), + (16,9,94,3), + (89,49,94,3), + (91,50,94,3), + (129,70,94,3), + (635,349,94,3), + (697,382,94,3), + (869,502,94,2), + (899,532,94,2), + (948,581,94,2), + (132,72,95,3), + (242,133,95,3), + (258,142,95,3), + (705,387,95,3), + (725,398,95,3), + (386,211,96,3), + (668,367,96,3), + (720,395,96,3), + (938,571,96,2), + (180,100,97,3), + (237,130,97,3), + (256,141,97,3), + (275,151,97,2), + (277,152,97,2), + (278,153,97,2), + (280,154,97,2), + (281,155,97,2), + (283,156,97,2), + (285,157,97,2), + (287,158,97,2), + (289,159,97,2), + (291,160,97,2), + (293,161,97,2), + (295,162,97,2), + (297,163,97,2), + (299,164,97,2), + (301,165,97,2), + (303,166,97,2), + (305,167,97,2), + (307,168,97,2), + (309,169,97,2), + (311,170,97,2), + (312,171,97,2), + (313,172,97,2), + (315,173,97,2), + (316,174,97,2), + (318,175,97,2), + (319,176,97,2), + (321,177,97,2), + (323,178,97,2), + (325,179,97,2), + (327,180,97,2), + (329,181,97,2), + (331,182,97,2), + (332,183,97,2), + (334,184,97,2), + (336,185,97,2), + (338,186,97,2), + (340,187,97,2), + (342,188,97,2), + (344,189,97,2), + (346,190,97,2), + (348,191,97,2), + (350,192,97,2), + (351,193,97,2), + (353,194,97,2), + (354,195,97,2), + (356,196,97,2), + (358,197,97,2), + (360,198,97,2), + (362,199,97,2), + (364,200,97,2), + (366,201,97,2), + (368,202,97,2), + (370,203,97,2), + (372,204,97,2), + (374,205,97,2), + (376,206,97,2), + (378,207,97,2), + (380,208,97,2), + (382,209,97,2), + (383,210,97,2), + (385,211,97,2), + (387,212,97,2), + (389,213,97,2), + (390,214,97,2), + (391,215,97,2), + (393,216,97,2), + (394,217,97,2), + (396,218,97,2), + (397,219,97,2), + (399,220,97,2), + (401,221,97,2), + (403,222,97,2), + (405,223,97,2), + (407,224,97,2), + (408,225,97,2), + (409,226,97,2), + (411,227,97,2), + (413,228,97,2), + (415,229,97,2), + (417,230,97,2), + (418,231,97,2), + (420,232,97,2), + (422,233,97,2), + (424,234,97,2), + (426,235,97,2), + (428,236,97,2), + (430,237,97,2), + (432,238,97,2), + (434,239,97,2), + (436,240,97,2), + (438,241,97,2), + (440,242,97,2), + (442,243,97,2), + (444,244,97,2), + (446,245,97,2), + (447,246,97,2), + (449,247,97,2), + (450,248,97,2), + (452,249,97,2), + (454,250,97,2), + (455,250,97,3), + (456,251,97,2), + (458,252,97,2), + (459,253,97,2), + (460,254,97,2), + (462,255,97,2), + (464,256,97,2), + (465,257,97,2), + (467,258,97,2), + (469,259,97,2), + (471,260,97,2), + (473,261,97,2), + (475,262,97,2), + (477,263,97,2), + (479,264,97,2), + (481,265,97,2), + (483,266,97,2), + (485,267,97,2), + (486,268,97,2), + (488,269,97,2), + (490,270,97,2), + (492,271,97,2), + (494,272,97,2), + (496,273,97,2), + (498,274,97,2), + (500,275,97,2), + (502,276,97,2), + (504,277,97,2), + (506,278,97,2), + (508,279,97,2), + (510,280,97,2), + (512,281,97,2), + (514,282,97,2), + (516,283,97,2), + (518,284,97,2), + (520,285,97,2), + (521,286,97,2), + (523,287,97,2), + (525,288,97,2), + (527,289,97,2), + (528,290,97,2), + (529,291,97,2), + (531,292,97,2), + (532,293,97,2), + (533,294,97,2), + (535,295,97,2), + (537,296,97,2), + (539,297,97,2), + (540,298,97,2), + (542,299,97,2), + (544,300,97,2), + (918,551,97,2), + (220,121,98,3), + (676,371,98,3), + (804,443,98,3), + (163,91,99,3), + (585,323,99,3), + (843,476,99,2), + (844,477,99,2), + (845,478,99,2), + (846,479,99,2), + (847,480,99,2), + (756,415,100,3), + (935,568,100,2), + (39,21,101,3), + (474,261,101,3), + (583,322,101,3), + (942,575,101,2), + (848,481,103,2), + (864,497,104,2), + (894,527,104,2), + (873,506,106,2), + (903,536,106,2), + (945,578,106,2), + (914,547,107,2), + (877,510,108,2), + (907,540,108,2), + (872,505,111,2), + (902,535,111,2), + (911,544,115,2), + (912,545,117,2), + (958,591,119,2), + (878,511,121,2), + (908,541,121,2), + (939,572,122,2), + (933,566,123,2), + (923,556,127,2), + (850,483,128,2), + (880,513,128,2), + (959,592,128,2), + (944,577,132,2), + (954,587,135,2), + (874,507,136,2), + (904,537,136,2), + (957,590,136,2), + (916,549,138,2), + (924,557,143,2), + (929,562,144,2), + (946,579,149,2), + (932,565,154,2), + (863,496,157,2), + (893,526,157,2), + (876,509,171,2), + (906,539,171,2), + (949,582,173,2), + (917,550,174,2), + (951,584,179,2), + (926,559,183,2), + (868,501,185,2), + (898,531,185,2), + (857,490,186,2), + (887,520,186,2), + (943,576,186,2), + (849,482,187,2), + (879,512,187,2), + (862,495,189,2), + (892,525,189,2), + (852,485,190,2), + (882,515,190,2), + (860,493,192,2), + (890,523,192,2), + (859,492,194,2), + (889,522,194,2), + (875,508,196,2), + (905,538,196,2), + (858,491,199,2), + (888,521,199,2); /*!40000 ALTER TABLE `civicrm_activity_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -1769,186 +1781,186 @@ UNLOCK TABLES; LOCK TABLES `civicrm_address` WRITE; /*!40000 ALTER TABLE `civicrm_address` DISABLE KEYS */; INSERT INTO `civicrm_address` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `street_address`, `street_number`, `street_number_suffix`, `street_number_predirectional`, `street_name`, `street_type`, `street_number_postdirectional`, `street_unit`, `supplemental_address_1`, `supplemental_address_2`, `supplemental_address_3`, `city`, `county_id`, `state_province_id`, `postal_code_suffix`, `postal_code`, `usps_adc`, `country_id`, `geo_code_1`, `geo_code_2`, `manual_geo_code`, `timezone`, `name`, `master_id`) VALUES - (1,180,1,1,0,'126V College Path N',126,'V',NULL,'College','Path','N',NULL,NULL,NULL,NULL,'Haysville',1,1015,NULL,'67060',NULL,1228,37.552425,-97.34785,0,NULL,NULL,NULL), - (2,152,1,1,0,'290D Bay St N',290,'D',NULL,'Bay','St','N',NULL,NULL,NULL,NULL,'Snow',1,1035,NULL,'74567',NULL,1228,34.454702,-95.41013,0,NULL,NULL,NULL), - (3,193,1,1,0,'124K Dowlen St SW',124,'K',NULL,'Dowlen','St','SW',NULL,NULL,NULL,NULL,'The Lakes',1,1027,NULL,'88905',NULL,1228,35.927901,-114.972061,0,NULL,NULL,NULL), - (4,91,1,1,0,'146F College Ln SE',146,'F',NULL,'College','Ln','SE',NULL,NULL,NULL,NULL,'Essig',1,1022,NULL,'56030',NULL,1228,44.325833,-94.605226,0,NULL,NULL,NULL), - (5,153,1,1,0,'978X Van Ness Ln SE',978,'X',NULL,'Van Ness','Ln','SE',NULL,NULL,NULL,NULL,'Anson',1,1018,NULL,'04911',NULL,1228,44.78029,-69.93424,0,NULL,NULL,NULL), - (6,189,1,1,0,'371S Lincoln St S',371,'S',NULL,'Lincoln','St','S',NULL,NULL,NULL,NULL,'Orono',1,1018,NULL,'04473',NULL,1228,44.889249,-68.68177,0,NULL,NULL,NULL), - (7,10,1,1,0,'40C College Ave S',40,'C',NULL,'College','Ave','S',NULL,NULL,NULL,NULL,'Warfield',1,1045,NULL,'23889',NULL,1228,36.912369,-77.75239,0,NULL,NULL,NULL), - (8,120,1,1,0,'683U Bay Ln N',683,'U',NULL,'Bay','Ln','N',NULL,NULL,NULL,NULL,'Brownwood',1,1042,NULL,'76801',NULL,1228,31.73003,-99.00605,0,NULL,NULL,NULL), - (9,201,1,1,0,'289B Jackson Ln N',289,'B',NULL,'Jackson','Ln','N',NULL,NULL,NULL,NULL,'Sparta',1,1034,NULL,'43350',NULL,1228,40.394773,-82.69952,0,NULL,NULL,NULL), - (10,38,1,1,0,'110K College Way E',110,'K',NULL,'College','Way','E',NULL,NULL,NULL,NULL,'Polkton',1,1032,NULL,'28135',NULL,1228,35.043566,-80.21272,0,NULL,NULL,NULL), - (11,181,1,1,0,'381W Pine Ln N',381,'W',NULL,'Pine','Ln','N',NULL,NULL,NULL,NULL,'Richburg',1,1039,NULL,'29729',NULL,1228,34.692002,-81.00536,0,NULL,NULL,NULL), - (12,16,1,1,0,'206B Green Path SE',206,'B',NULL,'Green','Path','SE',NULL,NULL,NULL,NULL,'De Ruyter',1,1031,NULL,'13052',NULL,1228,42.728977,-75.86633,0,NULL,NULL,NULL), - (13,53,1,1,0,'87O Northpoint Way SE',87,'O',NULL,'Northpoint','Way','SE',NULL,NULL,NULL,NULL,'Aibonito',1,1056,NULL,'00609',NULL,1228,18.142002,-66.273278,0,NULL,NULL,NULL), - (14,79,1,1,0,'999B El Camino Way SW',999,'B',NULL,'El Camino','Way','SW',NULL,NULL,NULL,NULL,'Bolingbrook',1,1012,NULL,'60440',NULL,1228,41.703097,-88.07462,0,NULL,NULL,NULL), - (15,101,1,1,0,'531J Caulder Path NW',531,'J',NULL,'Caulder','Path','NW',NULL,NULL,NULL,NULL,'Northvale',1,1029,NULL,'07647',NULL,1228,41.009414,-73.94849,0,NULL,NULL,NULL), - (16,68,1,1,0,'865U Northpoint Ave N',865,'U',NULL,'Northpoint','Ave','N',NULL,NULL,NULL,NULL,'Port Richey',1,1008,NULL,'34668',NULL,1228,28.30073,-82.69698,0,NULL,NULL,NULL), - (17,113,1,1,0,'799O Green Rd SW',799,'O',NULL,'Green','Rd','SW',NULL,NULL,NULL,NULL,'Dieterich',1,1012,NULL,'62424',NULL,1228,39.01077,-88.428,0,NULL,NULL,NULL), - (18,66,1,1,0,'51W Bay Path SE',51,'W',NULL,'Bay','Path','SE',NULL,NULL,NULL,NULL,'Plattsmouth',1,1026,NULL,'68048',NULL,1228,40.999245,-95.91589,0,NULL,NULL,NULL), - (19,27,1,1,0,'966E Jackson Path SW',966,'E',NULL,'Jackson','Path','SW',NULL,NULL,NULL,NULL,'Plymouth',1,1031,NULL,'13832',NULL,1228,42.650584,-75.65761,0,NULL,NULL,NULL), - (20,109,1,1,0,'88E Woodbridge Pl SW',88,'E',NULL,'Woodbridge','Pl','SW',NULL,NULL,NULL,NULL,'Crescent Valley',1,1027,NULL,'89821',NULL,1228,40.450972,-116.51585,0,NULL,NULL,NULL), - (21,62,1,1,0,'201O Dowlen Way SE',201,'O',NULL,'Dowlen','Way','SE',NULL,NULL,NULL,NULL,'Keysville',1,1045,NULL,'23947',NULL,1228,37.029877,-78.4643,0,NULL,NULL,NULL), - (22,95,1,1,0,'127H Pine Pl SW',127,'H',NULL,'Pine','Pl','SW',NULL,NULL,NULL,NULL,'Manitou Beach',1,1021,NULL,'49253',NULL,1228,41.974999,-84.27972,0,NULL,NULL,NULL), - (23,166,1,1,0,'96R Cadell Dr NW',96,'R',NULL,'Cadell','Dr','NW',NULL,NULL,NULL,NULL,'Mehama',1,1036,NULL,'97384',NULL,1228,44.790267,-122.618719,0,NULL,NULL,NULL), - (24,20,1,1,0,'368D States Ave NW',368,'D',NULL,'States','Ave','NW',NULL,NULL,NULL,NULL,'Clearwater',1,1008,NULL,'33755',NULL,1228,27.979114,-82.78166,0,NULL,NULL,NULL), - (25,42,1,1,0,'510R Cadell Pl W',510,'R',NULL,'Cadell','Pl','W',NULL,NULL,NULL,NULL,'Redford',1,1021,NULL,'48239',NULL,1228,42.379436,-83.29105,0,NULL,NULL,NULL), - (26,110,1,1,0,'856Z States Way NE',856,'Z',NULL,'States','Way','NE',NULL,NULL,NULL,NULL,'Port Penn',1,1007,NULL,'19731',NULL,1228,39.518164,-75.57656,0,NULL,NULL,NULL), - (27,97,1,1,0,'729D College St S',729,'D',NULL,'College','St','S',NULL,NULL,NULL,NULL,'Cedar Key',1,1008,NULL,'32625',NULL,1228,29.178171,-83.02243,0,NULL,NULL,NULL), - (28,103,1,1,0,'562O Green Way NE',562,'O',NULL,'Green','Way','NE',NULL,NULL,NULL,NULL,'Cowlesville',1,1031,NULL,'14037',NULL,1228,42.814667,-78.46076,0,NULL,NULL,NULL), - (29,142,1,1,0,'362Y Maple Ave SW',362,'Y',NULL,'Maple','Ave','SW',NULL,NULL,NULL,NULL,'Amboy',1,1012,NULL,'61310',NULL,1228,41.707588,-89.34371,0,NULL,NULL,NULL), - (30,147,1,1,0,'738I Northpoint Rd SE',738,'I',NULL,'Northpoint','Rd','SE',NULL,NULL,NULL,NULL,'Tranquility',1,1029,NULL,'07879',NULL,1228,40.955934,-74.788108,0,NULL,NULL,NULL), - (31,71,1,1,0,'687T Woodbridge Way N',687,'T',NULL,'Woodbridge','Way','N',NULL,NULL,NULL,NULL,'Westport',1,1040,NULL,'57481',NULL,1228,45.663385,-98.62274,0,NULL,NULL,NULL), - (32,86,1,1,0,'208F Maple Ln SE',208,'F',NULL,'Maple','Ln','SE',NULL,NULL,NULL,NULL,'Wasco',1,1036,NULL,'97065',NULL,1228,45.585405,-120.69234,0,NULL,NULL,NULL), - (33,135,1,1,0,'381W States Ln NE',381,'W',NULL,'States','Ln','NE',NULL,NULL,NULL,NULL,'Zap',1,1033,NULL,'58580',NULL,1228,47.281173,-101.9254,0,NULL,NULL,NULL), - (34,82,1,1,0,'155Y Green Path W',155,'Y',NULL,'Green','Path','W',NULL,NULL,NULL,NULL,'Valley Forge',1,1037,NULL,'19484',NULL,1228,40.211896,-75.35586,0,NULL,NULL,NULL), - (35,119,1,1,0,'539W Lincoln St NE',539,'W',NULL,'Lincoln','St','NE',NULL,NULL,NULL,NULL,'Nashwauk',1,1022,NULL,'55769',NULL,1228,47.406731,-93.1645,0,NULL,NULL,NULL), - (36,70,1,1,0,'519T States Rd N',519,'T',NULL,'States','Rd','N',NULL,NULL,NULL,NULL,'Martin',1,1016,NULL,'41649',NULL,1228,37.568873,-82.75937,0,NULL,NULL,NULL), - (37,22,1,1,0,'383B Caulder Dr SE',383,'B',NULL,'Caulder','Dr','SE',NULL,NULL,NULL,NULL,'Potosi',1,1048,NULL,'53820',NULL,1228,42.695285,-90.69309,0,NULL,NULL,NULL), - (38,73,1,1,0,'384A Lincoln Rd SE',384,'A',NULL,'Lincoln','Rd','SE',NULL,NULL,NULL,NULL,'Portis',1,1015,NULL,'67474',NULL,1228,39.579664,-98.70224,0,NULL,NULL,NULL), - (39,164,1,1,0,'315G Caulder Ave N',315,'G',NULL,'Caulder','Ave','N',NULL,NULL,NULL,NULL,'Navajo',1,1030,NULL,'87378',NULL,1228,35.902329,-109.031853,0,NULL,NULL,NULL), - (40,45,1,1,0,'120Q Jackson Pl W',120,'Q',NULL,'Jackson','Pl','W',NULL,NULL,NULL,NULL,'Santa Clarita',1,1004,NULL,'91387',NULL,1228,34.421537,-118.419181,0,NULL,NULL,NULL), - (41,21,1,1,0,'86V Lincoln Dr W',86,'V',NULL,'Lincoln','Dr','W',NULL,NULL,NULL,NULL,'Medinah',1,1012,NULL,'60157',NULL,1228,41.970628,-88.05606,0,NULL,NULL,NULL), - (42,90,1,1,0,'777K Jackson Blvd N',777,'K',NULL,'Jackson','Blvd','N',NULL,NULL,NULL,NULL,'Westford',1,1044,NULL,'05494',NULL,1228,44.608283,-73.00979,0,NULL,NULL,NULL), - (43,191,1,1,0,'169E Woodbridge St SE',169,'E',NULL,'Woodbridge','St','SE',NULL,NULL,NULL,NULL,'Norristown',1,1037,NULL,'19401',NULL,1228,40.123708,-75.33843,0,NULL,NULL,NULL), - (44,149,1,1,0,'9C Pine Blvd SE',9,'C',NULL,'Pine','Blvd','SE',NULL,NULL,NULL,NULL,'Milwaukee',1,1048,NULL,'53204',NULL,1228,43.017414,-87.92625,0,NULL,NULL,NULL), - (45,106,1,1,0,'958E Northpoint St W',958,'E',NULL,'Northpoint','St','W',NULL,NULL,NULL,NULL,'Denver',1,1005,NULL,'80274',NULL,1228,39.743934,-104.987577,0,NULL,NULL,NULL), - (46,49,1,1,0,'689J Cadell St SE',689,'J',NULL,'Cadell','St','SE',NULL,NULL,NULL,NULL,'Palm Harbor',1,1008,NULL,'34685',NULL,1228,28.099485,-82.69532,0,NULL,NULL,NULL), - (47,57,1,1,0,'239Z Martin Luther King Ln S',239,'Z',NULL,'Martin Luther King','Ln','S',NULL,NULL,NULL,NULL,'Bear Creek',1,1000,NULL,'35543',NULL,1228,34.247898,-87.72171,0,NULL,NULL,NULL), - (48,200,1,1,0,'191G Green Pl SE',191,'G',NULL,'Green','Pl','SE',NULL,NULL,NULL,NULL,'Sumiton',1,1000,NULL,'35148',NULL,1228,33.753474,-87.04756,0,NULL,NULL,NULL), - (49,55,1,1,0,'503T Beech Blvd W',503,'T',NULL,'Beech','Blvd','W',NULL,NULL,NULL,NULL,'Le Roy',1,1031,NULL,'14482',NULL,1228,42.979887,-77.97053,0,NULL,NULL,NULL), - (50,4,1,1,0,'558H Cadell Rd N',558,'H',NULL,'Cadell','Rd','N',NULL,NULL,NULL,NULL,'Three Rivers',1,1004,NULL,'93271',NULL,1228,36.431565,-118.86296,0,NULL,NULL,NULL), - (51,5,1,1,0,'998G Beech Way SE',998,'G',NULL,'Beech','Way','SE',NULL,NULL,NULL,NULL,'Cedar Rapids',1,1014,NULL,'52407',NULL,1228,42.079415,-91.599215,0,NULL,NULL,NULL), - (52,40,1,1,0,'830F Northpoint Ave E',830,'F',NULL,'Northpoint','Ave','E',NULL,NULL,NULL,NULL,'South Lebanon',1,1034,NULL,'45065',NULL,1228,39.371242,-84.21132,0,NULL,NULL,NULL), - (53,96,1,1,0,'271R Pine Blvd S',271,'R',NULL,'Pine','Blvd','S',NULL,NULL,NULL,NULL,'Benedict',1,1033,NULL,'58716',NULL,1228,47.82781,-101.08118,0,NULL,NULL,NULL), - (54,88,1,1,0,'396B Van Ness Blvd N',396,'B',NULL,'Van Ness','Blvd','N',NULL,NULL,NULL,NULL,'Tallahassee',1,1008,NULL,'32316',NULL,1228,30.479347,-84.346204,0,NULL,NULL,NULL), - (55,123,1,1,0,'56T Caulder Blvd W',56,'T',NULL,'Caulder','Blvd','W',NULL,NULL,NULL,NULL,'South Jordan',1,1043,NULL,'84095',NULL,1228,40.561598,-111.96088,0,NULL,NULL,NULL), - (56,104,1,1,0,'177X Pine Ave SE',177,'X',NULL,'Pine','Ave','SE',NULL,NULL,NULL,NULL,'Manchester',1,1028,NULL,'03103',NULL,1228,42.967684,-71.44828,0,NULL,NULL,NULL), - (57,144,1,1,0,'92F Van Ness Ln W',92,'F',NULL,'Van Ness','Ln','W',NULL,NULL,NULL,NULL,'Whitestown',1,1013,NULL,'46075',NULL,1228,40.007024,-86.34405,0,NULL,NULL,NULL), - (58,128,1,1,0,'442X Martin Luther King Way S',442,'X',NULL,'Martin Luther King','Way','S',NULL,NULL,NULL,NULL,'Windsor',1,1024,NULL,'65360',NULL,1228,38.525725,-93.51705,0,NULL,NULL,NULL), - (59,182,1,1,0,'39S Main Path W',39,'S',NULL,'Main','Path','W',NULL,NULL,NULL,NULL,'Bayfield',1,1048,NULL,'54814',NULL,1228,46.856701,-90.85401,0,NULL,NULL,NULL), - (60,51,1,1,0,'314X Main Blvd SE',314,'X',NULL,'Main','Blvd','SE',NULL,NULL,NULL,NULL,'Cassel',1,1004,NULL,'96016',NULL,1228,40.929301,-121.55711,0,NULL,NULL,NULL), - (61,112,1,1,0,'541L Lincoln St N',541,'L',NULL,'Lincoln','St','N',NULL,NULL,NULL,NULL,'Glenwood City',1,1048,NULL,'54013',NULL,1228,45.06461,-92.18504,0,NULL,NULL,NULL), - (62,85,1,1,0,'93L Pine Rd SE',93,'L',NULL,'Pine','Rd','SE',NULL,NULL,NULL,NULL,'New Eagle',1,1037,NULL,'15067',NULL,1228,40.207526,-79.95304,0,NULL,NULL,NULL), - (63,195,1,1,0,'323S Martin Luther King Path W',323,'S',NULL,'Martin Luther King','Path','W',NULL,NULL,NULL,NULL,'McConnells',1,1039,NULL,'29726',NULL,1228,34.861633,-81.22788,0,NULL,NULL,NULL), - (64,163,1,1,0,'879A States Rd SW',879,'A',NULL,'States','Rd','SW',NULL,NULL,NULL,NULL,'Fort Washington',1,1019,NULL,'20744',NULL,1228,38.756347,-76.99034,0,NULL,NULL,NULL), - (65,172,1,1,0,'841I Pine Ave S',841,'I',NULL,'Pine','Ave','S',NULL,NULL,NULL,NULL,'Milford',1,1037,NULL,'18337',NULL,1228,41.320904,-74.88565,0,NULL,NULL,NULL), - (66,167,1,1,0,'813Y Jackson St S',813,'Y',NULL,'Jackson','St','S',NULL,NULL,NULL,NULL,'Fort Yates',1,1033,NULL,'58538',NULL,1228,46.062798,-100.72114,0,NULL,NULL,NULL), - (67,159,3,1,0,'952E Caulder Way N',952,'E',NULL,'Caulder','Way','N',NULL,'Community Relations',NULL,NULL,'Kealia',1,1010,NULL,'96751',NULL,1228,22.111837,-159.31283,0,NULL,NULL,NULL), - (68,140,2,1,0,'952E Caulder Way N',952,'E',NULL,'Caulder','Way','N',NULL,'Community Relations',NULL,NULL,'Kealia',1,1010,NULL,'96751',NULL,1228,22.111837,-159.31283,0,NULL,NULL,67), - (69,80,3,1,0,'259K Bay Way N',259,'K',NULL,'Bay','Way','N',NULL,'Subscriptions Dept',NULL,NULL,'Glenn',1,1004,NULL,'95943',NULL,1228,39.605289,-122.03231,0,NULL,NULL,NULL), - (70,95,2,0,0,'259K Bay Way N',259,'K',NULL,'Bay','Way','N',NULL,'Subscriptions Dept',NULL,NULL,'Glenn',1,1004,NULL,'95943',NULL,1228,39.605289,-122.03231,0,NULL,NULL,69), - (71,199,3,1,0,'581E Maple Ln E',581,'E',NULL,'Maple','Ln','E',NULL,'c/o PO Plus',NULL,NULL,'Clementon',1,1029,NULL,'08021',NULL,1228,39.810485,-74.99574,0,NULL,NULL,NULL), - (72,183,3,1,0,'778W Dowlen Ave S',778,'W',NULL,'Dowlen','Ave','S',NULL,'Churchgate',NULL,NULL,'Fonda',1,1031,NULL,'12068',NULL,1228,42.953913,-74.37883,0,NULL,NULL,NULL), - (73,124,3,1,0,'275S Maple Pl SE',275,'S',NULL,'Maple','Pl','SE',NULL,'Editorial Dept',NULL,NULL,'Rockford',1,1012,NULL,'61109',NULL,1228,42.213439,-89.05595,0,NULL,NULL,NULL), - (74,201,2,0,0,'275S Maple Pl SE',275,'S',NULL,'Maple','Pl','SE',NULL,'Editorial Dept',NULL,NULL,'Rockford',1,1012,NULL,'61109',NULL,1228,42.213439,-89.05595,0,NULL,NULL,73), - (75,18,3,1,0,'295V Maple Ln NW',295,'V',NULL,'Maple','Ln','NW',NULL,'c/o OPDC',NULL,NULL,'Huttonsville',1,1047,NULL,'26273',NULL,1228,38.671662,-79.98029,0,NULL,NULL,NULL), - (76,16,2,0,0,'295V Maple Ln NW',295,'V',NULL,'Maple','Ln','NW',NULL,'c/o OPDC',NULL,NULL,'Huttonsville',1,1047,NULL,'26273',NULL,1228,38.671662,-79.98029,0,NULL,NULL,75), - (77,14,3,1,0,'536O College Blvd NW',536,'O',NULL,'College','Blvd','NW',NULL,'Churchgate',NULL,NULL,'Lafitte',1,1017,NULL,'70067',NULL,1228,29.652752,-90.1012,0,NULL,NULL,NULL), - (78,25,3,1,0,'611T Beech Way NW',611,'T',NULL,'Beech','Way','NW',NULL,'Churchgate',NULL,NULL,'Roark',1,1016,NULL,'40979',NULL,1228,37.016332,-83.51075,0,NULL,NULL,NULL), - (79,197,2,1,0,'611T Beech Way NW',611,'T',NULL,'Beech','Way','NW',NULL,'Churchgate',NULL,NULL,'Roark',1,1016,NULL,'40979',NULL,1228,37.016332,-83.51075,0,NULL,NULL,78), - (80,98,3,1,0,'324P Cadell Way SE',324,'P',NULL,'Cadell','Way','SE',NULL,'c/o OPDC',NULL,NULL,'Bristow',1,1035,NULL,'74010',NULL,1228,35.843486,-96.38183,0,NULL,NULL,NULL), - (81,66,2,0,0,'324P Cadell Way SE',324,'P',NULL,'Cadell','Way','SE',NULL,'c/o OPDC',NULL,NULL,'Bristow',1,1035,NULL,'74010',NULL,1228,35.843486,-96.38183,0,NULL,NULL,80), - (82,145,3,1,0,'703S States Rd N',703,'S',NULL,'States','Rd','N',NULL,'Attn: Accounting',NULL,NULL,'Wilmington',1,1007,NULL,'19898',NULL,1228,39.564499,-75.597047,0,NULL,NULL,NULL), - (83,19,2,1,0,'703S States Rd N',703,'S',NULL,'States','Rd','N',NULL,'Attn: Accounting',NULL,NULL,'Wilmington',1,1007,NULL,'19898',NULL,1228,39.564499,-75.597047,0,NULL,NULL,82), - (84,67,3,1,0,'206A College Path NW',206,'A',NULL,'College','Path','NW',NULL,'Subscriptions Dept',NULL,NULL,'Raymondville',1,1031,NULL,'13678',NULL,1228,44.828685,-74.979811,0,NULL,NULL,NULL), - (85,87,2,1,0,'206A College Path NW',206,'A',NULL,'College','Path','NW',NULL,'Subscriptions Dept',NULL,NULL,'Raymondville',1,1031,NULL,'13678',NULL,1228,44.828685,-74.979811,0,NULL,NULL,84), - (86,177,3,1,0,'535I Woodbridge Path SE',535,'I',NULL,'Woodbridge','Path','SE',NULL,'Subscriptions Dept',NULL,NULL,'Church Point',1,1017,NULL,'70525',NULL,1228,30.414588,-92.21772,0,NULL,NULL,NULL), - (87,79,2,0,0,'535I Woodbridge Path SE',535,'I',NULL,'Woodbridge','Path','SE',NULL,'Subscriptions Dept',NULL,NULL,'Church Point',1,1017,NULL,'70525',NULL,1228,30.414588,-92.21772,0,NULL,NULL,86), - (88,76,3,1,0,'984T Green Ln NE',984,'T',NULL,'Green','Ln','NE',NULL,'Mailstop 101',NULL,NULL,'Crothersville',1,1013,NULL,'47229',NULL,1228,38.802486,-85.84894,0,NULL,NULL,NULL), - (89,119,2,0,0,'984T Green Ln NE',984,'T',NULL,'Green','Ln','NE',NULL,'Mailstop 101',NULL,NULL,'Crothersville',1,1013,NULL,'47229',NULL,1228,38.802486,-85.84894,0,NULL,NULL,88), - (90,184,3,1,0,'504Z Beech St S',504,'Z',NULL,'Beech','St','S',NULL,'Urgent',NULL,NULL,'Edinburg',1,1012,NULL,'62531',NULL,1228,39.66363,-89.39224,0,NULL,NULL,NULL), - (91,151,2,1,0,'504Z Beech St S',504,'Z',NULL,'Beech','St','S',NULL,'Urgent',NULL,NULL,'Edinburg',1,1012,NULL,'62531',NULL,1228,39.66363,-89.39224,0,NULL,NULL,90), - (92,115,3,1,0,'300F College Ln N',300,'F',NULL,'College','Ln','N',NULL,'Donor Relations',NULL,NULL,'Hickory',1,1032,NULL,'28603',NULL,1228,35.679876,-81.287181,0,NULL,NULL,NULL), - (93,35,3,1,0,'642Y El Camino Dr S',642,'Y',NULL,'El Camino','Dr','S',NULL,'Mailstop 101',NULL,NULL,'Clarksville',1,1045,NULL,'23927',NULL,1228,36.61665,-78.54018,0,NULL,NULL,NULL), - (94,132,3,1,0,'389Z College St E',389,'Z',NULL,'College','St','E',NULL,'Receiving',NULL,NULL,'Owensville',1,1034,NULL,'45160',NULL,1228,39.121637,-84.13927,0,NULL,NULL,NULL), - (95,12,2,1,0,'389Z College St E',389,'Z',NULL,'College','St','E',NULL,'Receiving',NULL,NULL,'Owensville',1,1034,NULL,'45160',NULL,1228,39.121637,-84.13927,0,NULL,NULL,94), - (96,130,3,1,0,'792O Cadell Way W',792,'O',NULL,'Cadell','Way','W',NULL,'Cuffe Parade',NULL,NULL,'Groton',1,1020,NULL,'01471',NULL,1228,42.446396,-71.459405,0,NULL,NULL,NULL), - (97,190,3,1,0,'857E Cadell Blvd S',857,'E',NULL,'Cadell','Blvd','S',NULL,'Mailstop 101',NULL,NULL,'Syracuse',1,1031,NULL,'13251',NULL,1228,43.02143,-76.197701,0,NULL,NULL,NULL), - (98,158,2,1,0,'857E Cadell Blvd S',857,'E',NULL,'Cadell','Blvd','S',NULL,'Mailstop 101',NULL,NULL,'Syracuse',1,1031,NULL,'13251',NULL,1228,43.02143,-76.197701,0,NULL,NULL,97), - (99,52,3,1,0,'726P Woodbridge Ave NW',726,'P',NULL,'Woodbridge','Ave','NW',NULL,'Attn: Accounting',NULL,NULL,'Weaver',1,1000,NULL,'36277',NULL,1228,33.754308,-85.81991,0,NULL,NULL,NULL), - (100,146,2,1,0,'726P Woodbridge Ave NW',726,'P',NULL,'Woodbridge','Ave','NW',NULL,'Attn: Accounting',NULL,NULL,'Weaver',1,1000,NULL,'36277',NULL,1228,33.754308,-85.81991,0,NULL,NULL,99), - (101,194,1,1,0,'239Z Martin Luther King Ln S',239,'Z',NULL,'Martin Luther King','Ln','S',NULL,NULL,NULL,NULL,'Bear Creek',1,1000,NULL,'35543',NULL,1228,34.247898,-87.72171,0,NULL,NULL,47), - (102,56,1,1,0,'239Z Martin Luther King Ln S',239,'Z',NULL,'Martin Luther King','Ln','S',NULL,NULL,NULL,NULL,'Bear Creek',1,1000,NULL,'35543',NULL,1228,34.247898,-87.72171,0,NULL,NULL,47), - (103,72,1,1,0,'239Z Martin Luther King Ln S',239,'Z',NULL,'Martin Luther King','Ln','S',NULL,NULL,NULL,NULL,'Bear Creek',1,1000,NULL,'35543',NULL,1228,34.247898,-87.72171,0,NULL,NULL,47), - (104,84,1,1,0,'237W El Camino Rd E',237,'W',NULL,'El Camino','Rd','E',NULL,NULL,NULL,NULL,'Saint Stephens Church',1,1045,NULL,'23148',NULL,1228,37.837177,-77.05555,0,NULL,NULL,NULL), - (105,143,1,1,0,'191G Green Pl SE',191,'G',NULL,'Green','Pl','SE',NULL,NULL,NULL,NULL,'Sumiton',1,1000,NULL,'35148',NULL,1228,33.753474,-87.04756,0,NULL,NULL,48), - (106,58,1,1,0,'191G Green Pl SE',191,'G',NULL,'Green','Pl','SE',NULL,NULL,NULL,NULL,'Sumiton',1,1000,NULL,'35148',NULL,1228,33.753474,-87.04756,0,NULL,NULL,48), - (107,100,1,1,0,'191G Green Pl SE',191,'G',NULL,'Green','Pl','SE',NULL,NULL,NULL,NULL,'Sumiton',1,1000,NULL,'35148',NULL,1228,33.753474,-87.04756,0,NULL,NULL,48), - (108,60,1,1,0,'191G Green Pl SE',191,'G',NULL,'Green','Pl','SE',NULL,NULL,NULL,NULL,'Sumiton',1,1000,NULL,'35148',NULL,1228,33.753474,-87.04756,0,NULL,NULL,48), - (109,54,1,1,0,'503T Beech Blvd W',503,'T',NULL,'Beech','Blvd','W',NULL,NULL,NULL,NULL,'Le Roy',1,1031,NULL,'14482',NULL,1228,42.979887,-77.97053,0,NULL,NULL,49), - (110,175,1,1,0,'503T Beech Blvd W',503,'T',NULL,'Beech','Blvd','W',NULL,NULL,NULL,NULL,'Le Roy',1,1031,NULL,'14482',NULL,1228,42.979887,-77.97053,0,NULL,NULL,49), - (111,157,1,1,0,'503T Beech Blvd W',503,'T',NULL,'Beech','Blvd','W',NULL,NULL,NULL,NULL,'Le Roy',1,1031,NULL,'14482',NULL,1228,42.979887,-77.97053,0,NULL,NULL,49), - (112,23,1,1,0,'116H Woodbridge Blvd S',116,'H',NULL,'Woodbridge','Blvd','S',NULL,NULL,NULL,NULL,'Gordon',1,1009,NULL,'31031',NULL,1228,32.891499,-83.32748,0,NULL,NULL,NULL), - (113,174,1,1,0,'558H Cadell Rd N',558,'H',NULL,'Cadell','Rd','N',NULL,NULL,NULL,NULL,'Three Rivers',1,1004,NULL,'93271',NULL,1228,36.431565,-118.86296,0,NULL,NULL,50), - (114,37,1,1,0,'558H Cadell Rd N',558,'H',NULL,'Cadell','Rd','N',NULL,NULL,NULL,NULL,'Three Rivers',1,1004,NULL,'93271',NULL,1228,36.431565,-118.86296,0,NULL,NULL,50), - (115,12,1,0,0,'558H Cadell Rd N',558,'H',NULL,'Cadell','Rd','N',NULL,NULL,NULL,NULL,'Three Rivers',1,1004,NULL,'93271',NULL,1228,36.431565,-118.86296,0,NULL,NULL,50), - (116,197,1,0,0,'23C Bay Rd W',23,'C',NULL,'Bay','Rd','W',NULL,NULL,NULL,NULL,'South Otselic',1,1031,NULL,'13155',NULL,1228,42.662648,-75.76265,0,NULL,NULL,NULL), - (117,141,1,1,0,'998G Beech Way SE',998,'G',NULL,'Beech','Way','SE',NULL,NULL,NULL,NULL,'Cedar Rapids',1,1014,NULL,'52407',NULL,1228,42.079415,-91.599215,0,NULL,NULL,51), - (118,170,1,1,0,'998G Beech Way SE',998,'G',NULL,'Beech','Way','SE',NULL,NULL,NULL,NULL,'Cedar Rapids',1,1014,NULL,'52407',NULL,1228,42.079415,-91.599215,0,NULL,NULL,51), - (119,179,1,1,0,'998G Beech Way SE',998,'G',NULL,'Beech','Way','SE',NULL,NULL,NULL,NULL,'Cedar Rapids',1,1014,NULL,'52407',NULL,1228,42.079415,-91.599215,0,NULL,NULL,51), - (120,140,1,0,0,'998G Beech Way SE',998,'G',NULL,'Beech','Way','SE',NULL,NULL,NULL,NULL,'Cedar Rapids',1,1014,NULL,'52407',NULL,1228,42.079415,-91.599215,0,NULL,NULL,51), - (121,89,1,1,0,'830F Northpoint Ave E',830,'F',NULL,'Northpoint','Ave','E',NULL,NULL,NULL,NULL,'South Lebanon',1,1034,NULL,'45065',NULL,1228,39.371242,-84.21132,0,NULL,NULL,52), - (122,43,1,1,0,'830F Northpoint Ave E',830,'F',NULL,'Northpoint','Ave','E',NULL,NULL,NULL,NULL,'South Lebanon',1,1034,NULL,'45065',NULL,1228,39.371242,-84.21132,0,NULL,NULL,52), - (123,13,1,1,0,'830F Northpoint Ave E',830,'F',NULL,'Northpoint','Ave','E',NULL,NULL,NULL,NULL,'South Lebanon',1,1034,NULL,'45065',NULL,1228,39.371242,-84.21132,0,NULL,NULL,52), - (124,160,1,1,0,'830F Northpoint Ave E',830,'F',NULL,'Northpoint','Ave','E',NULL,NULL,NULL,NULL,'South Lebanon',1,1034,NULL,'45065',NULL,1228,39.371242,-84.21132,0,NULL,NULL,52), - (125,2,1,1,0,'271R Pine Blvd S',271,'R',NULL,'Pine','Blvd','S',NULL,NULL,NULL,NULL,'Benedict',1,1033,NULL,'58716',NULL,1228,47.82781,-101.08118,0,NULL,NULL,53), - (126,19,1,0,0,'271R Pine Blvd S',271,'R',NULL,'Pine','Blvd','S',NULL,NULL,NULL,NULL,'Benedict',1,1033,NULL,'58716',NULL,1228,47.82781,-101.08118,0,NULL,NULL,53), - (127,47,1,1,0,'271R Pine Blvd S',271,'R',NULL,'Pine','Blvd','S',NULL,NULL,NULL,NULL,'Benedict',1,1033,NULL,'58716',NULL,1228,47.82781,-101.08118,0,NULL,NULL,53), - (128,129,1,1,0,'538H Van Ness Path W',538,'H',NULL,'Van Ness','Path','W',NULL,NULL,NULL,NULL,'Milwaukee',1,1048,NULL,'53234',NULL,1228,43.017412,-87.569664,0,NULL,NULL,NULL), - (129,188,1,1,0,'396B Van Ness Blvd N',396,'B',NULL,'Van Ness','Blvd','N',NULL,NULL,NULL,NULL,'Tallahassee',1,1008,NULL,'32316',NULL,1228,30.479347,-84.346204,0,NULL,NULL,54), - (130,61,1,1,0,'396B Van Ness Blvd N',396,'B',NULL,'Van Ness','Blvd','N',NULL,NULL,NULL,NULL,'Tallahassee',1,1008,NULL,'32316',NULL,1228,30.479347,-84.346204,0,NULL,NULL,54), - (131,94,1,1,0,'396B Van Ness Blvd N',396,'B',NULL,'Van Ness','Blvd','N',NULL,NULL,NULL,NULL,'Tallahassee',1,1008,NULL,'32316',NULL,1228,30.479347,-84.346204,0,NULL,NULL,54), - (132,105,1,1,0,'396B Van Ness Blvd N',396,'B',NULL,'Van Ness','Blvd','N',NULL,NULL,NULL,NULL,'Tallahassee',1,1008,NULL,'32316',NULL,1228,30.479347,-84.346204,0,NULL,NULL,54), - (133,169,1,1,0,'56T Caulder Blvd W',56,'T',NULL,'Caulder','Blvd','W',NULL,NULL,NULL,NULL,'South Jordan',1,1043,NULL,'84095',NULL,1228,40.561598,-111.96088,0,NULL,NULL,55), - (134,36,1,1,0,'56T Caulder Blvd W',56,'T',NULL,'Caulder','Blvd','W',NULL,NULL,NULL,NULL,'South Jordan',1,1043,NULL,'84095',NULL,1228,40.561598,-111.96088,0,NULL,NULL,55), - (135,121,1,1,0,'56T Caulder Blvd W',56,'T',NULL,'Caulder','Blvd','W',NULL,NULL,NULL,NULL,'South Jordan',1,1043,NULL,'84095',NULL,1228,40.561598,-111.96088,0,NULL,NULL,55), - (136,75,1,1,0,'56T Caulder Blvd W',56,'T',NULL,'Caulder','Blvd','W',NULL,NULL,NULL,NULL,'South Jordan',1,1043,NULL,'84095',NULL,1228,40.561598,-111.96088,0,NULL,NULL,55), - (137,7,1,1,0,'177X Pine Ave SE',177,'X',NULL,'Pine','Ave','SE',NULL,NULL,NULL,NULL,'Manchester',1,1028,NULL,'03103',NULL,1228,42.967684,-71.44828,0,NULL,NULL,56), - (138,134,1,1,0,'177X Pine Ave SE',177,'X',NULL,'Pine','Ave','SE',NULL,NULL,NULL,NULL,'Manchester',1,1028,NULL,'03103',NULL,1228,42.967684,-71.44828,0,NULL,NULL,56), - (139,171,1,1,0,'177X Pine Ave SE',177,'X',NULL,'Pine','Ave','SE',NULL,NULL,NULL,NULL,'Manchester',1,1028,NULL,'03103',NULL,1228,42.967684,-71.44828,0,NULL,NULL,56), - (140,139,1,1,0,'468X Pine St N',468,'X',NULL,'Pine','St','N',NULL,NULL,NULL,NULL,'Sondheimer',1,1017,NULL,'71276',NULL,1228,32.582205,-91.11541,0,NULL,NULL,NULL), - (141,158,1,0,0,'92F Van Ness Ln W',92,'F',NULL,'Van Ness','Ln','W',NULL,NULL,NULL,NULL,'Whitestown',1,1013,NULL,'46075',NULL,1228,40.007024,-86.34405,0,NULL,NULL,57), - (142,155,1,1,0,'92F Van Ness Ln W',92,'F',NULL,'Van Ness','Ln','W',NULL,NULL,NULL,NULL,'Whitestown',1,1013,NULL,'46075',NULL,1228,40.007024,-86.34405,0,NULL,NULL,57), - (143,87,1,0,0,'92F Van Ness Ln W',92,'F',NULL,'Van Ness','Ln','W',NULL,NULL,NULL,NULL,'Whitestown',1,1013,NULL,'46075',NULL,1228,40.007024,-86.34405,0,NULL,NULL,57), - (144,30,1,1,0,'92F Van Ness Ln W',92,'F',NULL,'Van Ness','Ln','W',NULL,NULL,NULL,NULL,'Whitestown',1,1013,NULL,'46075',NULL,1228,40.007024,-86.34405,0,NULL,NULL,57), - (145,77,1,1,0,'442X Martin Luther King Way S',442,'X',NULL,'Martin Luther King','Way','S',NULL,NULL,NULL,NULL,'Windsor',1,1024,NULL,'65360',NULL,1228,38.525725,-93.51705,0,NULL,NULL,58), - (146,156,1,1,0,'442X Martin Luther King Way S',442,'X',NULL,'Martin Luther King','Way','S',NULL,NULL,NULL,NULL,'Windsor',1,1024,NULL,'65360',NULL,1228,38.525725,-93.51705,0,NULL,NULL,58), - (147,125,1,1,0,'442X Martin Luther King Way S',442,'X',NULL,'Martin Luther King','Way','S',NULL,NULL,NULL,NULL,'Windsor',1,1024,NULL,'65360',NULL,1228,38.525725,-93.51705,0,NULL,NULL,58), - (148,99,1,1,0,'442X Martin Luther King Way S',442,'X',NULL,'Martin Luther King','Way','S',NULL,NULL,NULL,NULL,'Windsor',1,1024,NULL,'65360',NULL,1228,38.525725,-93.51705,0,NULL,NULL,58), - (149,146,1,0,0,'39S Main Path W',39,'S',NULL,'Main','Path','W',NULL,NULL,NULL,NULL,'Bayfield',1,1048,NULL,'54814',NULL,1228,46.856701,-90.85401,0,NULL,NULL,59), - (150,63,1,1,0,'39S Main Path W',39,'S',NULL,'Main','Path','W',NULL,NULL,NULL,NULL,'Bayfield',1,1048,NULL,'54814',NULL,1228,46.856701,-90.85401,0,NULL,NULL,59), - (151,41,1,1,0,'39S Main Path W',39,'S',NULL,'Main','Path','W',NULL,NULL,NULL,NULL,'Bayfield',1,1048,NULL,'54814',NULL,1228,46.856701,-90.85401,0,NULL,NULL,59), - (152,26,1,1,0,'39S Main Path W',39,'S',NULL,'Main','Path','W',NULL,NULL,NULL,NULL,'Bayfield',1,1048,NULL,'54814',NULL,1228,46.856701,-90.85401,0,NULL,NULL,59), - (153,65,1,1,0,'314X Main Blvd SE',314,'X',NULL,'Main','Blvd','SE',NULL,NULL,NULL,NULL,'Cassel',1,1004,NULL,'96016',NULL,1228,40.929301,-121.55711,0,NULL,NULL,60), - (154,161,1,1,0,'314X Main Blvd SE',314,'X',NULL,'Main','Blvd','SE',NULL,NULL,NULL,NULL,'Cassel',1,1004,NULL,'96016',NULL,1228,40.929301,-121.55711,0,NULL,NULL,60), - (155,59,1,1,0,'314X Main Blvd SE',314,'X',NULL,'Main','Blvd','SE',NULL,NULL,NULL,NULL,'Cassel',1,1004,NULL,'96016',NULL,1228,40.929301,-121.55711,0,NULL,NULL,60), - (156,148,1,1,0,'910S Beech Path SE',910,'S',NULL,'Beech','Path','SE',NULL,NULL,NULL,NULL,'La Crosse',1,1045,NULL,'23950',NULL,1228,36.678507,-78.08098,0,NULL,NULL,NULL), - (157,17,1,1,0,'541L Lincoln St N',541,'L',NULL,'Lincoln','St','N',NULL,NULL,NULL,NULL,'Glenwood City',1,1048,NULL,'54013',NULL,1228,45.06461,-92.18504,0,NULL,NULL,61), - (158,33,1,1,0,'541L Lincoln St N',541,'L',NULL,'Lincoln','St','N',NULL,NULL,NULL,NULL,'Glenwood City',1,1048,NULL,'54013',NULL,1228,45.06461,-92.18504,0,NULL,NULL,61), - (159,50,1,1,0,'541L Lincoln St N',541,'L',NULL,'Lincoln','St','N',NULL,NULL,NULL,NULL,'Glenwood City',1,1048,NULL,'54013',NULL,1228,45.06461,-92.18504,0,NULL,NULL,61), - (160,136,1,1,0,'541L Lincoln St N',541,'L',NULL,'Lincoln','St','N',NULL,NULL,NULL,NULL,'Glenwood City',1,1048,NULL,'54013',NULL,1228,45.06461,-92.18504,0,NULL,NULL,61), - (161,137,1,1,0,'93L Pine Rd SE',93,'L',NULL,'Pine','Rd','SE',NULL,NULL,NULL,NULL,'New Eagle',1,1037,NULL,'15067',NULL,1228,40.207526,-79.95304,0,NULL,NULL,62), - (162,168,1,1,0,'93L Pine Rd SE',93,'L',NULL,'Pine','Rd','SE',NULL,NULL,NULL,NULL,'New Eagle',1,1037,NULL,'15067',NULL,1228,40.207526,-79.95304,0,NULL,NULL,62), - (163,44,1,1,0,'93L Pine Rd SE',93,'L',NULL,'Pine','Rd','SE',NULL,NULL,NULL,NULL,'New Eagle',1,1037,NULL,'15067',NULL,1228,40.207526,-79.95304,0,NULL,NULL,62), - (164,196,1,1,0,'93L Pine Rd SE',93,'L',NULL,'Pine','Rd','SE',NULL,NULL,NULL,NULL,'New Eagle',1,1037,NULL,'15067',NULL,1228,40.207526,-79.95304,0,NULL,NULL,62), - (165,117,1,1,0,'323S Martin Luther King Path W',323,'S',NULL,'Martin Luther King','Path','W',NULL,NULL,NULL,NULL,'McConnells',1,1039,NULL,'29726',NULL,1228,34.861633,-81.22788,0,NULL,NULL,63), - (166,198,1,1,0,'323S Martin Luther King Path W',323,'S',NULL,'Martin Luther King','Path','W',NULL,NULL,NULL,NULL,'McConnells',1,1039,NULL,'29726',NULL,1228,34.861633,-81.22788,0,NULL,NULL,63), - (167,187,1,1,0,'323S Martin Luther King Path W',323,'S',NULL,'Martin Luther King','Path','W',NULL,NULL,NULL,NULL,'McConnells',1,1039,NULL,'29726',NULL,1228,34.861633,-81.22788,0,NULL,NULL,63), - (168,92,1,1,0,'561M El Camino Rd W',561,'M',NULL,'El Camino','Rd','W',NULL,NULL,NULL,NULL,'West Fork',1,1003,NULL,'72774',NULL,1228,35.896307,-94.19661,0,NULL,NULL,NULL), - (169,6,1,1,0,'879A States Rd SW',879,'A',NULL,'States','Rd','SW',NULL,NULL,NULL,NULL,'Fort Washington',1,1019,NULL,'20744',NULL,1228,38.756347,-76.99034,0,NULL,NULL,64), - (170,118,1,1,0,'879A States Rd SW',879,'A',NULL,'States','Rd','SW',NULL,NULL,NULL,NULL,'Fort Washington',1,1019,NULL,'20744',NULL,1228,38.756347,-76.99034,0,NULL,NULL,64), - (171,173,1,1,0,'879A States Rd SW',879,'A',NULL,'States','Rd','SW',NULL,NULL,NULL,NULL,'Fort Washington',1,1019,NULL,'20744',NULL,1228,38.756347,-76.99034,0,NULL,NULL,64), - (172,64,1,1,0,'139Z Cadell Ln E',139,'Z',NULL,'Cadell','Ln','E',NULL,NULL,NULL,NULL,'New York',1,1031,NULL,'10036',NULL,1228,40.759511,-73.99019,0,NULL,NULL,NULL), - (173,176,1,1,0,'841I Pine Ave S',841,'I',NULL,'Pine','Ave','S',NULL,NULL,NULL,NULL,'Milford',1,1037,NULL,'18337',NULL,1228,41.320904,-74.88565,0,NULL,NULL,65), - (174,74,1,1,0,'841I Pine Ave S',841,'I',NULL,'Pine','Ave','S',NULL,NULL,NULL,NULL,'Milford',1,1037,NULL,'18337',NULL,1228,41.320904,-74.88565,0,NULL,NULL,65), - (175,133,1,1,0,'841I Pine Ave S',841,'I',NULL,'Pine','Ave','S',NULL,NULL,NULL,NULL,'Milford',1,1037,NULL,'18337',NULL,1228,41.320904,-74.88565,0,NULL,NULL,65), - (176,29,1,1,0,'841I Pine Ave S',841,'I',NULL,'Pine','Ave','S',NULL,NULL,NULL,NULL,'Milford',1,1037,NULL,'18337',NULL,1228,41.320904,-74.88565,0,NULL,NULL,65), - (177,102,1,1,0,'813Y Jackson St S',813,'Y',NULL,'Jackson','St','S',NULL,NULL,NULL,NULL,'Fort Yates',1,1033,NULL,'58538',NULL,1228,46.062798,-100.72114,0,NULL,NULL,66), - (178,178,1,1,0,'813Y Jackson St S',813,'Y',NULL,'Jackson','St','S',NULL,NULL,NULL,NULL,'Fort Yates',1,1033,NULL,'58538',NULL,1228,46.062798,-100.72114,0,NULL,NULL,66), - (179,127,1,1,0,'813Y Jackson St S',813,'Y',NULL,'Jackson','St','S',NULL,NULL,NULL,NULL,'Fort Yates',1,1033,NULL,'58538',NULL,1228,46.062798,-100.72114,0,NULL,NULL,66), - (180,32,1,1,0,'813Y Jackson St S',813,'Y',NULL,'Jackson','St','S',NULL,NULL,NULL,NULL,'Fort Yates',1,1033,NULL,'58538',NULL,1228,46.062798,-100.72114,0,NULL,NULL,66), + (1,30,1,1,0,'393A Jackson Blvd N',393,'A',NULL,'Jackson','Blvd','N',NULL,NULL,NULL,NULL,'Ford',1,1015,NULL,'67842',NULL,1228,37.549041,-99.74869,0,NULL,NULL,NULL), + (2,125,1,1,0,'894N Cadell Rd SW',894,'N',NULL,'Cadell','Rd','SW',NULL,NULL,NULL,NULL,'Birmingham',1,1000,NULL,'35220',NULL,1228,33.544622,-86.929208,0,NULL,NULL,NULL), + (3,27,1,1,0,'423K Dowlen Pl N',423,'K',NULL,'Dowlen','Pl','N',NULL,NULL,NULL,NULL,'Trenton',1,1029,NULL,'08625',NULL,1228,40.206709,-74.75643,0,NULL,NULL,NULL), + (4,153,1,1,0,'543P Second Dr W',543,'P',NULL,'Second','Dr','W',NULL,NULL,NULL,NULL,'Hollis Center',1,1018,NULL,'04042',NULL,1228,43.611238,-70.63265,0,NULL,NULL,NULL), + (5,181,1,1,0,'73Q Van Ness Ave S',73,'Q',NULL,'Van Ness','Ave','S',NULL,NULL,NULL,NULL,'Page',1,1033,NULL,'58064',NULL,1228,47.151891,-97.60401,0,NULL,NULL,NULL), + (6,4,1,1,0,'591Y Northpoint Way SW',591,'Y',NULL,'Northpoint','Way','SW',NULL,NULL,NULL,NULL,'Maybrook',1,1031,NULL,'12543',NULL,1228,41.484988,-74.2161,0,NULL,NULL,NULL), + (7,40,1,1,0,'326J Bay Path SW',326,'J',NULL,'Bay','Path','SW',NULL,NULL,NULL,NULL,'Inglefield',1,1013,NULL,'47618',NULL,1228,37.997128,-87.574963,0,NULL,NULL,NULL), + (8,123,1,1,0,'83B College Pl SW',83,'B',NULL,'College','Pl','SW',NULL,NULL,NULL,NULL,'Aurora',1,1032,NULL,'27806',NULL,1228,35.308035,-76.79019,0,NULL,NULL,NULL), + (9,160,1,1,0,'833Z Dowlen Path NW',833,'Z',NULL,'Dowlen','Path','NW',NULL,NULL,NULL,NULL,'Jasper',1,1000,NULL,'35504',NULL,1228,33.883566,-87.2125,0,NULL,NULL,NULL), + (10,57,1,1,0,'413Y Cadell Ln W',413,'Y',NULL,'Cadell','Ln','W',NULL,NULL,NULL,NULL,'Cologne',1,1022,NULL,'55322',NULL,1228,44.768762,-93.77839,0,NULL,NULL,NULL), + (11,139,1,1,0,'397W Jackson St SW',397,'W',NULL,'Jackson','St','SW',NULL,NULL,NULL,NULL,'Boyd',1,1042,NULL,'76023',NULL,1228,33.068301,-97.59099,0,NULL,NULL,NULL), + (12,44,1,1,0,'219N El Camino Dr S',219,'N',NULL,'El Camino','Dr','S',NULL,NULL,NULL,NULL,'Bloomington',1,1026,NULL,'68929',NULL,1228,40.121789,-99.04457,0,NULL,NULL,NULL), + (13,6,1,1,0,'199N Caulder Rd N',199,'N',NULL,'Caulder','Rd','N',NULL,NULL,NULL,NULL,'Hustonville',1,1016,NULL,'40437',NULL,1228,37.431549,-84.81256,0,NULL,NULL,NULL), + (14,100,1,1,0,'94N Dowlen Path SW',94,'N',NULL,'Dowlen','Path','SW',NULL,NULL,NULL,NULL,'Cut Off',1,1017,NULL,'70345',NULL,1228,29.523897,-90.34043,0,NULL,NULL,NULL), + (15,75,1,1,0,'864Y Green Ave E',864,'Y',NULL,'Green','Ave','E',NULL,NULL,NULL,NULL,'Wheeling',1,1012,NULL,'60090',NULL,1228,42.131526,-87.92958,0,NULL,NULL,NULL), + (16,65,1,1,0,'582U Jackson Rd NE',582,'U',NULL,'Jackson','Rd','NE',NULL,NULL,NULL,NULL,'Temple',1,1018,NULL,'04984',NULL,1228,44.688292,-70.23773,0,NULL,NULL,NULL), + (17,149,1,1,0,'385D Second Rd W',385,'D',NULL,'Second','Rd','W',NULL,NULL,NULL,NULL,'Whittier',1,1004,NULL,'90612',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL), + (18,87,1,1,0,'525K Pine Ave E',525,'K',NULL,'Pine','Ave','E',NULL,NULL,NULL,NULL,'Freeburg',1,1012,NULL,'62243',NULL,1228,38.425949,-89.90389,0,NULL,NULL,NULL), + (19,73,1,1,0,'10S College Pl W',10,'S',NULL,'College','Pl','W',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75255',NULL,1228,32.669783,-96.614921,0,NULL,NULL,NULL), + (20,16,1,1,0,'38T Northpoint Ln E',38,'T',NULL,'Northpoint','Ln','E',NULL,NULL,NULL,NULL,'Lansford',1,1037,NULL,'18232',NULL,1228,40.832477,-75.88198,0,NULL,NULL,NULL), + (21,145,1,1,0,'297H Lincoln Dr NE',297,'H',NULL,'Lincoln','Dr','NE',NULL,NULL,NULL,NULL,'New Windsor',1,1012,NULL,'61465',NULL,1228,41.200936,-90.45631,0,NULL,NULL,NULL), + (22,15,1,1,0,'292S Lincoln Blvd SW',292,'S',NULL,'Lincoln','Blvd','SW',NULL,NULL,NULL,NULL,'Lebam',1,1046,NULL,'98554',NULL,1228,46.561375,-123.54788,0,NULL,NULL,NULL), + (23,196,1,1,0,'789Y Caulder Ln W',789,'Y',NULL,'Caulder','Ln','W',NULL,NULL,NULL,NULL,'Blairstown',1,1014,NULL,'52209',NULL,1228,41.911228,-92.08549,0,NULL,NULL,NULL), + (24,201,1,1,0,'828U Lincoln Ln E',828,'U',NULL,'Lincoln','Ln','E',NULL,NULL,NULL,NULL,'Pershing',1,1013,NULL,'47370',NULL,1228,39.861314,-85.147437,0,NULL,NULL,NULL), + (25,108,1,1,0,'930E Main Rd N',930,'E',NULL,'Main','Rd','N',NULL,NULL,NULL,NULL,'Saint Bonifacius',1,1022,NULL,'55375',NULL,1228,44.906512,-93.7439,0,NULL,NULL,NULL), + (26,132,1,1,0,'180Y Woodbridge St SW',180,'Y',NULL,'Woodbridge','St','SW',NULL,NULL,NULL,NULL,'Kansas City',1,1024,NULL,'64161',NULL,1228,39.164953,-94.4669,0,NULL,NULL,NULL), + (27,151,1,1,0,'435F Caulder Ln E',435,'F',NULL,'Caulder','Ln','E',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75220',NULL,1228,32.867977,-96.86306,0,NULL,NULL,NULL), + (28,29,1,1,0,'536A Woodbridge Path SW',536,'A',NULL,'Woodbridge','Path','SW',NULL,NULL,NULL,NULL,'Blue Bell',1,1037,NULL,'19422',NULL,1228,40.157526,-75.27816,0,NULL,NULL,NULL), + (29,143,1,1,0,'377Y Northpoint Pl S',377,'Y',NULL,'Northpoint','Pl','S',NULL,NULL,NULL,NULL,'Tyler',1,1042,NULL,'75708',NULL,1228,32.40331,-95.22276,0,NULL,NULL,NULL), + (30,166,1,1,0,'29Z Lincoln Way N',29,'Z',NULL,'Lincoln','Way','N',NULL,NULL,NULL,NULL,'Duluth',1,1022,NULL,'55808',NULL,1228,46.674141,-92.2276,0,NULL,NULL,NULL), + (31,60,1,1,0,'913W Cadell Ave N',913,'W',NULL,'Cadell','Ave','N',NULL,NULL,NULL,NULL,'Milford',1,1021,NULL,'48380',NULL,1228,42.586597,-83.66826,0,NULL,NULL,NULL), + (32,80,1,1,0,'323G Van Ness St W',323,'G',NULL,'Van Ness','St','W',NULL,NULL,NULL,NULL,'Carnelian Bay',1,1004,NULL,'96140',NULL,1228,39.223151,-120.08627,0,NULL,NULL,NULL), + (33,161,1,1,0,'609T Lincoln Rd NW',609,'T',NULL,'Lincoln','Rd','NW',NULL,NULL,NULL,NULL,'Fontanet',1,1013,NULL,'47851',NULL,1228,39.573663,-87.24536,0,NULL,NULL,NULL), + (34,177,1,1,0,'100C Pine Blvd S',100,'C',NULL,'Pine','Blvd','S',NULL,NULL,NULL,NULL,'Maydelle',1,1042,NULL,'75772',NULL,1228,31.800846,-95.300142,0,NULL,NULL,NULL), + (35,78,1,1,0,'134T College Path W',134,'T',NULL,'College','Path','W',NULL,NULL,NULL,NULL,'Deer Park',1,1046,NULL,'99006',NULL,1228,47.966471,-117.48145,0,NULL,NULL,NULL), + (36,28,1,1,0,'891E Dowlen Ln NW',891,'E',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'Yucaipa',1,1004,NULL,'92399',NULL,1228,34.033564,-117.03776,0,NULL,NULL,NULL), + (37,147,1,1,0,'487I Beech St SE',487,'I',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'San Sebastian',1,1056,NULL,'00685',NULL,1228,18.332595,-66.98104,0,NULL,NULL,NULL), + (38,173,1,1,0,'198E Main Dr SW',198,'E',NULL,'Main','Dr','SW',NULL,NULL,NULL,NULL,'Brice',1,1034,NULL,'43109',NULL,1228,39.916574,-82.83218,0,NULL,NULL,NULL), + (39,141,1,1,0,'53P Main St S',53,'P',NULL,'Main','St','S',NULL,NULL,NULL,NULL,'Blaine',1,1046,NULL,'98231',NULL,1228,48.814753,-121.988548,0,NULL,NULL,NULL), + (40,38,1,1,0,'308H Beech Ln E',308,'H',NULL,'Beech','Ln','E',NULL,NULL,NULL,NULL,'Pearl River',1,1017,NULL,'70452',NULL,1228,30.401481,-89.76917,0,NULL,NULL,NULL), + (41,192,1,1,0,'673T El Camino Pl SW',673,'T',NULL,'El Camino','Pl','SW',NULL,NULL,NULL,NULL,'Jasper',1,1000,NULL,'35501',NULL,1228,33.828412,-87.27632,0,NULL,NULL,NULL), + (42,39,1,1,0,'32Q Beech Ave S',32,'Q',NULL,'Beech','Ave','S',NULL,NULL,NULL,NULL,'Plattenville',1,1017,NULL,'70393',NULL,1228,29.995157,-91.02586,0,NULL,NULL,NULL), + (43,116,1,1,0,'676B Dowlen Ln N',676,'B',NULL,'Dowlen','Ln','N',NULL,NULL,NULL,NULL,'Elmo',1,1043,NULL,'84521',NULL,1228,39.367253,-110.78956,0,NULL,NULL,NULL), + (44,33,1,1,0,'901G Maple Pl S',901,'G',NULL,'Maple','Pl','S',NULL,NULL,NULL,NULL,'Ipswich',1,1020,NULL,'01938',NULL,1228,42.682965,-70.84007,0,NULL,NULL,NULL), + (45,89,1,1,0,'874T Caulder Pl NW',874,'T',NULL,'Caulder','Pl','NW',NULL,NULL,NULL,NULL,'Portsmouth',1,1014,NULL,'51565',NULL,1228,41.650114,-95.52275,0,NULL,NULL,NULL), + (46,35,1,1,0,'936J College Blvd SW',936,'J',NULL,'College','Blvd','SW',NULL,NULL,NULL,NULL,'Savoy',1,1042,NULL,'75499',NULL,1228,33.602194,-96.365174,0,NULL,NULL,NULL), + (47,169,1,1,0,'162U Martin Luther King Ln W',162,'U',NULL,'Martin Luther King','Ln','W',NULL,NULL,NULL,NULL,'Bernard',1,1014,NULL,'52032',NULL,1228,42.273028,-90.81319,0,NULL,NULL,NULL), + (48,20,1,1,0,'354Y Jackson Ave NW',354,'Y',NULL,'Jackson','Ave','NW',NULL,NULL,NULL,NULL,'Fresh Meadows',1,1031,NULL,'11365',NULL,1228,40.738983,-73.79209,0,NULL,NULL,NULL), + (49,84,1,1,0,'331T Woodbridge Ave SE',331,'T',NULL,'Woodbridge','Ave','SE',NULL,NULL,NULL,NULL,'Evanston',1,1012,NULL,'60209',NULL,1228,42.04973,-87.679408,0,NULL,NULL,NULL), + (50,31,1,1,0,'714A Northpoint Path S',714,'A',NULL,'Northpoint','Path','S',NULL,NULL,NULL,NULL,'Columbia',1,1039,NULL,'29201',NULL,1228,33.998454,-81.03519,0,NULL,NULL,NULL), + (51,32,1,1,0,'649S Second Pl NE',649,'S',NULL,'Second','Pl','NE',NULL,NULL,NULL,NULL,'Lake Station',1,1013,NULL,'46405',NULL,1228,41.570086,-87.26447,0,NULL,NULL,NULL), + (52,113,1,1,0,'823R Van Ness Way N',823,'R',NULL,'Van Ness','Way','N',NULL,NULL,NULL,NULL,'Alton',1,1024,NULL,'65606',NULL,1228,36.679742,-91.36286,0,NULL,NULL,NULL), + (53,34,1,1,0,'796Q Second Path S',796,'Q',NULL,'Second','Path','S',NULL,NULL,NULL,NULL,'Wichita',1,1015,NULL,'67218',NULL,1228,37.670092,-97.27953,0,NULL,NULL,NULL), + (54,92,1,1,0,'900O Second Blvd S',900,'O',NULL,'Second','Blvd','S',NULL,NULL,NULL,NULL,'Stratford',1,1014,NULL,'50294',NULL,1228,42.266846,-93.927086,0,NULL,NULL,NULL), + (55,88,1,1,0,'526D College Way SW',526,'D',NULL,'College','Way','SW',NULL,NULL,NULL,NULL,'Lanesboro',1,1022,NULL,'55949',NULL,1228,43.70844,-91.95965,0,NULL,NULL,NULL), + (56,42,1,1,0,'821A Green Way SE',821,'A',NULL,'Green','Way','SE',NULL,NULL,NULL,NULL,'Cory',1,1005,NULL,'81414',NULL,1228,38.788697,-107.986174,0,NULL,NULL,NULL), + (57,43,1,1,0,'182V Main Ave SW',182,'V',NULL,'Main','Ave','SW',NULL,NULL,NULL,NULL,'Collinsville',1,1012,NULL,'62234',NULL,1228,38.679282,-89.99407,0,NULL,NULL,NULL), + (58,188,1,1,0,'578L Maple St N',578,'L',NULL,'Maple','St','N',NULL,NULL,NULL,NULL,'Pasadena',1,1004,NULL,'91102',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL), + (59,119,1,1,0,'214T Jackson Path NW',214,'T',NULL,'Jackson','Path','NW',NULL,NULL,NULL,NULL,'Devine',1,1042,NULL,'78016',NULL,1228,29.158899,-98.933,0,NULL,NULL,NULL), + (60,22,1,1,0,'228L Woodbridge Way W',228,'L',NULL,'Woodbridge','Way','W',NULL,NULL,NULL,NULL,'Bellows Falls',1,1044,NULL,'05101',NULL,1228,43.156451,-72.4729,0,NULL,NULL,NULL), + (61,71,1,1,0,'482X Van Ness Way S',482,'X',NULL,'Van Ness','Way','S',NULL,NULL,NULL,NULL,'Woodsboro',1,1019,NULL,'21798',NULL,1228,39.540623,-77.30606,0,NULL,NULL,NULL), + (62,9,1,1,0,'828M College Dr NW',828,'M',NULL,'College','Dr','NW',NULL,NULL,NULL,NULL,'Oakley',1,1012,NULL,'62552',NULL,1228,39.869841,-88.81261,0,NULL,NULL,NULL), + (63,103,1,1,0,'967M Woodbridge Way N',967,'M',NULL,'Woodbridge','Way','N',NULL,NULL,NULL,NULL,'Carrollton',1,1009,NULL,'30166',NULL,1228,33.571329,-85.030663,0,NULL,NULL,NULL), + (64,86,1,1,0,'102Y Cadell St E',102,'Y',NULL,'Cadell','St','E',NULL,NULL,NULL,NULL,'Oakboro',1,1032,NULL,'28129',NULL,1228,35.232542,-80.33123,0,NULL,NULL,NULL), + (65,13,1,1,0,'486G Maple Path SE',486,'G',NULL,'Maple','Path','SE',NULL,NULL,NULL,NULL,'Carlisle',1,1031,NULL,'12031',NULL,1228,42.770985,-74.44694,0,NULL,NULL,NULL), + (66,25,1,1,0,'467B Green Path E',467,'B',NULL,'Green','Path','E',NULL,NULL,NULL,NULL,'Portland',1,1036,NULL,'97217',NULL,1228,45.574439,-122.68665,0,NULL,NULL,NULL), + (67,162,1,1,0,'5M Van Ness Ave SW',5,'M',NULL,'Van Ness','Ave','SW',NULL,NULL,NULL,NULL,'Forestville',1,1004,NULL,'95436',NULL,1228,38.495857,-122.90636,0,NULL,NULL,NULL), + (68,184,1,1,0,'969V Cadell Dr S',969,'V',NULL,'Cadell','Dr','S',NULL,NULL,NULL,NULL,'East Longmeadow',1,1020,NULL,'01028',NULL,1228,42.066795,-72.5102,0,NULL,NULL,NULL), + (69,17,3,1,0,'235U Maple Ln S',235,'U',NULL,'Maple','Ln','S',NULL,'Receiving',NULL,NULL,'Hatch',1,1043,NULL,'84735',NULL,1228,37.61127,-112.55601,0,NULL,NULL,NULL), + (70,23,2,1,0,'235U Maple Ln S',235,'U',NULL,'Maple','Ln','S',NULL,'Receiving',NULL,NULL,'Hatch',1,1043,NULL,'84735',NULL,1228,37.61127,-112.55601,0,NULL,NULL,69), + (71,154,3,1,0,'548W Second Way N',548,'W',NULL,'Second','Way','N',NULL,'Cuffe Parade',NULL,NULL,'Fort Wayne',1,1013,NULL,'46863',NULL,1228,41.093763,-85.070713,0,NULL,NULL,NULL), + (72,123,2,0,0,'548W Second Way N',548,'W',NULL,'Second','Way','N',NULL,'Cuffe Parade',NULL,NULL,'Fort Wayne',1,1013,NULL,'46863',NULL,1228,41.093763,-85.070713,0,NULL,NULL,71), + (73,170,3,1,0,'615G Northpoint Ln W',615,'G',NULL,'Northpoint','Ln','W',NULL,'Community Relations',NULL,NULL,'Isle La Motte',1,1044,NULL,'05463',NULL,1228,44.866344,-73.33081,0,NULL,NULL,NULL), + (74,114,3,1,0,'935I Green Ave SE',935,'I',NULL,'Green','Ave','SE',NULL,'Editorial Dept',NULL,NULL,'Perryman',1,1019,NULL,'21002',NULL,1228,39.487519,-76.199871,0,NULL,NULL,NULL), + (75,105,3,1,0,'587E Woodbridge Rd N',587,'E',NULL,'Woodbridge','Rd','N',NULL,'Editorial Dept',NULL,NULL,'Alda',1,1026,NULL,'68810',NULL,1228,40.860494,-98.47051,0,NULL,NULL,NULL), + (76,7,3,1,0,'101J Cadell Rd E',101,'J',NULL,'Cadell','Rd','E',NULL,'Attn: Development',NULL,NULL,'Cando',1,1033,NULL,'58324',NULL,1228,48.485321,-99.2076,0,NULL,NULL,NULL), + (77,26,3,1,0,'753D Beech Pl E',753,'D',NULL,'Beech','Pl','E',NULL,'Mailstop 101',NULL,NULL,'Haralson',1,1009,NULL,'30229',NULL,1228,33.232156,-84.56854,0,NULL,NULL,NULL), + (78,45,2,1,0,'753D Beech Pl E',753,'D',NULL,'Beech','Pl','E',NULL,'Mailstop 101',NULL,NULL,'Haralson',1,1009,NULL,'30229',NULL,1228,33.232156,-84.56854,0,NULL,NULL,77), + (79,146,3,1,0,'998K Main Ln NE',998,'K',NULL,'Main','Ln','NE',NULL,'Mailstop 101',NULL,NULL,'Fillmore',1,1012,NULL,'62032',NULL,1228,39.114972,-89.28092,0,NULL,NULL,NULL), + (80,155,2,1,0,'998K Main Ln NE',998,'K',NULL,'Main','Ln','NE',NULL,'Mailstop 101',NULL,NULL,'Fillmore',1,1012,NULL,'62032',NULL,1228,39.114972,-89.28092,0,NULL,NULL,79), + (81,24,3,1,0,'252Q Northpoint Ln W',252,'Q',NULL,'Northpoint','Ln','W',NULL,'Churchgate',NULL,NULL,'Hamlet',1,1013,NULL,'46532',NULL,1228,41.411513,-86.61127,0,NULL,NULL,NULL), + (82,21,3,1,0,'114S Woodbridge St NW',114,'S',NULL,'Woodbridge','St','NW',NULL,'c/o PO Plus',NULL,NULL,'Sadieville',1,1016,NULL,'40370',NULL,1228,38.399525,-84.53353,0,NULL,NULL,NULL), + (83,157,2,1,0,'114S Woodbridge St NW',114,'S',NULL,'Woodbridge','St','NW',NULL,'c/o PO Plus',NULL,NULL,'Sadieville',1,1016,NULL,'40370',NULL,1228,38.399525,-84.53353,0,NULL,NULL,82), + (84,66,3,1,0,'984R Cadell St N',984,'R',NULL,'Cadell','St','N',NULL,'Donor Relations',NULL,NULL,'Mount Airy',1,1019,NULL,'21771',NULL,1228,39.381295,-77.15867,0,NULL,NULL,NULL), + (85,115,2,1,0,'984R Cadell St N',984,'R',NULL,'Cadell','St','N',NULL,'Donor Relations',NULL,NULL,'Mount Airy',1,1019,NULL,'21771',NULL,1228,39.381295,-77.15867,0,NULL,NULL,84), + (86,109,3,1,0,'507Z Second Path SW',507,'Z',NULL,'Second','Path','SW',NULL,'Editorial Dept',NULL,NULL,'Salt Lake City',1,1043,NULL,'84119',NULL,1228,40.696596,-111.95239,0,NULL,NULL,NULL), + (87,193,2,1,0,'507Z Second Path SW',507,'Z',NULL,'Second','Path','SW',NULL,'Editorial Dept',NULL,NULL,'Salt Lake City',1,1043,NULL,'84119',NULL,1228,40.696596,-111.95239,0,NULL,NULL,86), + (88,124,3,1,0,'942C El Camino St E',942,'C',NULL,'El Camino','St','E',NULL,'Payables Dept.',NULL,NULL,'Dorton',1,1016,NULL,'41520',NULL,1228,37.279027,-82.57732,0,NULL,NULL,NULL), + (89,169,2,0,0,'942C El Camino St E',942,'C',NULL,'El Camino','St','E',NULL,'Payables Dept.',NULL,NULL,'Dorton',1,1016,NULL,'41520',NULL,1228,37.279027,-82.57732,0,NULL,NULL,88), + (90,133,3,1,0,'629K Van Ness Blvd W',629,'K',NULL,'Van Ness','Blvd','W',NULL,'c/o OPDC',NULL,NULL,'Hughesville',1,1037,NULL,'17737',NULL,1228,41.268721,-76.69048,0,NULL,NULL,NULL), + (91,112,2,1,0,'629K Van Ness Blvd W',629,'K',NULL,'Van Ness','Blvd','W',NULL,'c/o OPDC',NULL,NULL,'Hughesville',1,1037,NULL,'17737',NULL,1228,41.268721,-76.69048,0,NULL,NULL,90), + (92,140,3,1,0,'498R Pine Way E',498,'R',NULL,'Pine','Way','E',NULL,'c/o OPDC',NULL,NULL,'Lithia',1,1008,NULL,'33547',NULL,1228,27.788498,-82.1508,0,NULL,NULL,NULL), + (93,3,3,1,0,'794V Main Blvd W',794,'V',NULL,'Main','Blvd','W',NULL,'Subscriptions Dept',NULL,NULL,'Dickinson',1,1042,NULL,'77537',NULL,1228,29.469835,-95.005317,0,NULL,NULL,NULL), + (94,180,3,1,0,'566U Dowlen Path N',566,'U',NULL,'Dowlen','Path','N',NULL,'Editorial Dept',NULL,NULL,'Lebanon',1,1037,NULL,'17042',NULL,1228,40.31977,-76.42344,0,NULL,NULL,NULL), + (95,177,2,0,0,'566U Dowlen Path N',566,'U',NULL,'Dowlen','Path','N',NULL,'Editorial Dept',NULL,NULL,'Lebanon',1,1037,NULL,'17042',NULL,1228,40.31977,-76.42344,0,NULL,NULL,94), + (96,150,3,1,0,'539U College Ln S',539,'U',NULL,'College','Ln','S',NULL,'Receiving',NULL,NULL,'Murtaugh',1,1011,NULL,'83344',NULL,1228,42.444159,-114.12157,0,NULL,NULL,NULL), + (97,201,2,0,0,'539U College Ln S',539,'U',NULL,'College','Ln','S',NULL,'Receiving',NULL,NULL,'Murtaugh',1,1011,NULL,'83344',NULL,1228,42.444159,-114.12157,0,NULL,NULL,96), + (98,62,3,1,0,'620E Lincoln St E',620,'E',NULL,'Lincoln','St','E',NULL,'Payables Dept.',NULL,NULL,'Naples',1,1008,NULL,'34110',NULL,1228,26.28828,-81.78726,0,NULL,NULL,NULL), + (99,153,2,0,0,'620E Lincoln St E',620,'E',NULL,'Lincoln','St','E',NULL,'Payables Dept.',NULL,NULL,'Naples',1,1008,NULL,'34110',NULL,1228,26.28828,-81.78726,0,NULL,NULL,98), + (100,55,3,1,0,'683J Northpoint Dr NW',683,'J',NULL,'Northpoint','Dr','NW',NULL,'Churchgate',NULL,NULL,'Greenough',1,1025,NULL,'59836',NULL,1228,47.015705,-113.42635,0,NULL,NULL,NULL), + (101,52,1,1,0,'331T Woodbridge Ave SE',331,'T',NULL,'Woodbridge','Ave','SE',NULL,NULL,NULL,NULL,'Evanston',1,1012,NULL,'60209',NULL,1228,42.04973,-87.679408,0,NULL,NULL,49), + (102,54,1,1,0,'331T Woodbridge Ave SE',331,'T',NULL,'Woodbridge','Ave','SE',NULL,NULL,NULL,NULL,'Evanston',1,1012,NULL,'60209',NULL,1228,42.04973,-87.679408,0,NULL,NULL,49), + (103,102,1,1,0,'331T Woodbridge Ave SE',331,'T',NULL,'Woodbridge','Ave','SE',NULL,NULL,NULL,NULL,'Evanston',1,1012,NULL,'60209',NULL,1228,42.04973,-87.679408,0,NULL,NULL,49), + (104,20,1,0,0,'331T Woodbridge Ave SE',331,'T',NULL,'Woodbridge','Ave','SE',NULL,NULL,NULL,NULL,'Evanston',1,1012,NULL,'60209',NULL,1228,42.04973,-87.679408,0,NULL,NULL,49), + (105,14,1,1,0,'714A Northpoint Path S',714,'A',NULL,'Northpoint','Path','S',NULL,NULL,NULL,NULL,'Columbia',1,1039,NULL,'29201',NULL,1228,33.998454,-81.03519,0,NULL,NULL,50), + (106,72,1,1,0,'714A Northpoint Path S',714,'A',NULL,'Northpoint','Path','S',NULL,NULL,NULL,NULL,'Columbia',1,1039,NULL,'29201',NULL,1228,33.998454,-81.03519,0,NULL,NULL,50), + (107,167,1,1,0,'714A Northpoint Path S',714,'A',NULL,'Northpoint','Path','S',NULL,NULL,NULL,NULL,'Columbia',1,1039,NULL,'29201',NULL,1228,33.998454,-81.03519,0,NULL,NULL,50), + (108,183,1,1,0,'236X Northpoint Ln SE',236,'X',NULL,'Northpoint','Ln','SE',NULL,NULL,NULL,NULL,'Tatum',1,1039,NULL,'29594',NULL,1228,34.645047,-79.58188,0,NULL,NULL,NULL), + (109,155,1,0,0,'649S Second Pl NE',649,'S',NULL,'Second','Pl','NE',NULL,NULL,NULL,NULL,'Lake Station',1,1013,NULL,'46405',NULL,1228,41.570086,-87.26447,0,NULL,NULL,51), + (110,11,1,1,0,'649S Second Pl NE',649,'S',NULL,'Second','Pl','NE',NULL,NULL,NULL,NULL,'Lake Station',1,1013,NULL,'46405',NULL,1228,41.570086,-87.26447,0,NULL,NULL,51), + (111,190,1,1,0,'649S Second Pl NE',649,'S',NULL,'Second','Pl','NE',NULL,NULL,NULL,NULL,'Lake Station',1,1013,NULL,'46405',NULL,1228,41.570086,-87.26447,0,NULL,NULL,51), + (112,176,1,1,0,'649S Second Pl NE',649,'S',NULL,'Second','Pl','NE',NULL,NULL,NULL,NULL,'Lake Station',1,1013,NULL,'46405',NULL,1228,41.570086,-87.26447,0,NULL,NULL,51), + (113,45,1,0,0,'823R Van Ness Way N',823,'R',NULL,'Van Ness','Way','N',NULL,NULL,NULL,NULL,'Alton',1,1024,NULL,'65606',NULL,1228,36.679742,-91.36286,0,NULL,NULL,52), + (114,68,1,1,0,'823R Van Ness Way N',823,'R',NULL,'Van Ness','Way','N',NULL,NULL,NULL,NULL,'Alton',1,1024,NULL,'65606',NULL,1228,36.679742,-91.36286,0,NULL,NULL,52), + (115,127,1,1,0,'823R Van Ness Way N',823,'R',NULL,'Van Ness','Way','N',NULL,NULL,NULL,NULL,'Alton',1,1024,NULL,'65606',NULL,1228,36.679742,-91.36286,0,NULL,NULL,52), + (116,101,1,1,0,'823R Van Ness Way N',823,'R',NULL,'Van Ness','Way','N',NULL,NULL,NULL,NULL,'Alton',1,1024,NULL,'65606',NULL,1228,36.679742,-91.36286,0,NULL,NULL,52), + (117,19,1,1,0,'796Q Second Path S',796,'Q',NULL,'Second','Path','S',NULL,NULL,NULL,NULL,'Wichita',1,1015,NULL,'67218',NULL,1228,37.670092,-97.27953,0,NULL,NULL,53), + (118,96,1,1,0,'796Q Second Path S',796,'Q',NULL,'Second','Path','S',NULL,NULL,NULL,NULL,'Wichita',1,1015,NULL,'67218',NULL,1228,37.670092,-97.27953,0,NULL,NULL,53), + (119,59,1,1,0,'796Q Second Path S',796,'Q',NULL,'Second','Path','S',NULL,NULL,NULL,NULL,'Wichita',1,1015,NULL,'67218',NULL,1228,37.670092,-97.27953,0,NULL,NULL,53), + (120,5,1,1,0,'880N Martin Luther King Blvd S',880,'N',NULL,'Martin Luther King','Blvd','S',NULL,NULL,NULL,NULL,'Seminole',1,1008,NULL,'33776',NULL,1228,27.853151,-82.82712,0,NULL,NULL,NULL), + (121,171,1,1,0,'900O Second Blvd S',900,'O',NULL,'Second','Blvd','S',NULL,NULL,NULL,NULL,'Stratford',1,1014,NULL,'50294',NULL,1228,42.266846,-93.927086,0,NULL,NULL,54), + (122,172,1,1,0,'900O Second Blvd S',900,'O',NULL,'Second','Blvd','S',NULL,NULL,NULL,NULL,'Stratford',1,1014,NULL,'50294',NULL,1228,42.266846,-93.927086,0,NULL,NULL,54), + (123,47,1,1,0,'900O Second Blvd S',900,'O',NULL,'Second','Blvd','S',NULL,NULL,NULL,NULL,'Stratford',1,1014,NULL,'50294',NULL,1228,42.266846,-93.927086,0,NULL,NULL,54), + (124,168,1,1,0,'900O Second Blvd S',900,'O',NULL,'Second','Blvd','S',NULL,NULL,NULL,NULL,'Stratford',1,1014,NULL,'50294',NULL,1228,42.266846,-93.927086,0,NULL,NULL,54), + (125,12,1,1,0,'526D College Way SW',526,'D',NULL,'College','Way','SW',NULL,NULL,NULL,NULL,'Lanesboro',1,1022,NULL,'55949',NULL,1228,43.70844,-91.95965,0,NULL,NULL,55), + (126,186,1,1,0,'526D College Way SW',526,'D',NULL,'College','Way','SW',NULL,NULL,NULL,NULL,'Lanesboro',1,1022,NULL,'55949',NULL,1228,43.70844,-91.95965,0,NULL,NULL,55), + (127,138,1,1,0,'526D College Way SW',526,'D',NULL,'College','Way','SW',NULL,NULL,NULL,NULL,'Lanesboro',1,1022,NULL,'55949',NULL,1228,43.70844,-91.95965,0,NULL,NULL,55), + (128,106,1,1,0,'526D College Way SW',526,'D',NULL,'College','Way','SW',NULL,NULL,NULL,NULL,'Lanesboro',1,1022,NULL,'55949',NULL,1228,43.70844,-91.95965,0,NULL,NULL,55), + (129,120,1,1,0,'821A Green Way SE',821,'A',NULL,'Green','Way','SE',NULL,NULL,NULL,NULL,'Cory',1,1005,NULL,'81414',NULL,1228,38.788697,-107.986174,0,NULL,NULL,56), + (130,97,1,1,0,'821A Green Way SE',821,'A',NULL,'Green','Way','SE',NULL,NULL,NULL,NULL,'Cory',1,1005,NULL,'81414',NULL,1228,38.788697,-107.986174,0,NULL,NULL,56), + (131,76,1,1,0,'821A Green Way SE',821,'A',NULL,'Green','Way','SE',NULL,NULL,NULL,NULL,'Cory',1,1005,NULL,'81414',NULL,1228,38.788697,-107.986174,0,NULL,NULL,56), + (132,163,1,1,0,'708H Main Ave S',708,'H',NULL,'Main','Ave','S',NULL,NULL,NULL,NULL,'Hamilton',1,1009,NULL,'31811',NULL,1228,32.722333,-84.95803,0,NULL,NULL,NULL), + (133,193,1,0,0,'182V Main Ave SW',182,'V',NULL,'Main','Ave','SW',NULL,NULL,NULL,NULL,'Collinsville',1,1012,NULL,'62234',NULL,1228,38.679282,-89.99407,0,NULL,NULL,57), + (134,99,1,1,0,'182V Main Ave SW',182,'V',NULL,'Main','Ave','SW',NULL,NULL,NULL,NULL,'Collinsville',1,1012,NULL,'62234',NULL,1228,38.679282,-89.99407,0,NULL,NULL,57), + (135,85,1,1,0,'182V Main Ave SW',182,'V',NULL,'Main','Ave','SW',NULL,NULL,NULL,NULL,'Collinsville',1,1012,NULL,'62234',NULL,1228,38.679282,-89.99407,0,NULL,NULL,57), + (136,77,1,1,0,'634T Jackson Dr NE',634,'T',NULL,'Jackson','Dr','NE',NULL,NULL,NULL,NULL,'Birmingham',1,1000,NULL,'35281',NULL,1228,33.544622,-86.929208,0,NULL,NULL,NULL), + (137,118,1,1,0,'578L Maple St N',578,'L',NULL,'Maple','St','N',NULL,NULL,NULL,NULL,'Pasadena',1,1004,NULL,'91102',NULL,1228,33.786594,-118.298662,0,NULL,NULL,58), + (138,82,1,1,0,'578L Maple St N',578,'L',NULL,'Maple','St','N',NULL,NULL,NULL,NULL,'Pasadena',1,1004,NULL,'91102',NULL,1228,33.786594,-118.298662,0,NULL,NULL,58), + (139,90,1,1,0,'578L Maple St N',578,'L',NULL,'Maple','St','N',NULL,NULL,NULL,NULL,'Pasadena',1,1004,NULL,'91102',NULL,1228,33.786594,-118.298662,0,NULL,NULL,58), + (140,83,1,1,0,'144C Pine Ln E',144,'C',NULL,'Pine','Ln','E',NULL,NULL,NULL,NULL,'Otto',1,1031,NULL,'14766',NULL,1228,42.357543,-78.807283,0,NULL,NULL,NULL), + (141,137,1,1,0,'214T Jackson Path NW',214,'T',NULL,'Jackson','Path','NW',NULL,NULL,NULL,NULL,'Devine',1,1042,NULL,'78016',NULL,1228,29.158899,-98.933,0,NULL,NULL,59), + (142,122,1,1,0,'214T Jackson Path NW',214,'T',NULL,'Jackson','Path','NW',NULL,NULL,NULL,NULL,'Devine',1,1042,NULL,'78016',NULL,1228,29.158899,-98.933,0,NULL,NULL,59), + (143,95,1,1,0,'214T Jackson Path NW',214,'T',NULL,'Jackson','Path','NW',NULL,NULL,NULL,NULL,'Devine',1,1042,NULL,'78016',NULL,1228,29.158899,-98.933,0,NULL,NULL,59), + (144,117,1,1,0,'841O Dowlen Ave S',841,'O',NULL,'Dowlen','Ave','S',NULL,NULL,NULL,NULL,'Gatzke',1,1022,NULL,'56724',NULL,1228,48.445999,-95.74148,0,NULL,NULL,NULL), + (145,144,1,1,0,'228L Woodbridge Way W',228,'L',NULL,'Woodbridge','Way','W',NULL,NULL,NULL,NULL,'Bellows Falls',1,1044,NULL,'05101',NULL,1228,43.156451,-72.4729,0,NULL,NULL,60), + (146,63,1,1,0,'228L Woodbridge Way W',228,'L',NULL,'Woodbridge','Way','W',NULL,NULL,NULL,NULL,'Bellows Falls',1,1044,NULL,'05101',NULL,1228,43.156451,-72.4729,0,NULL,NULL,60), + (147,18,1,1,0,'228L Woodbridge Way W',228,'L',NULL,'Woodbridge','Way','W',NULL,NULL,NULL,NULL,'Bellows Falls',1,1044,NULL,'05101',NULL,1228,43.156451,-72.4729,0,NULL,NULL,60), + (148,129,1,1,0,'196R Second Rd W',196,'R',NULL,'Second','Rd','W',NULL,NULL,NULL,NULL,'Woodhull',1,1031,NULL,'14898',NULL,1228,42.065376,-77.42392,0,NULL,NULL,NULL), + (149,74,1,1,0,'482X Van Ness Way S',482,'X',NULL,'Van Ness','Way','S',NULL,NULL,NULL,NULL,'Woodsboro',1,1019,NULL,'21798',NULL,1228,39.540623,-77.30606,0,NULL,NULL,61), + (150,53,1,1,0,'482X Van Ness Way S',482,'X',NULL,'Van Ness','Way','S',NULL,NULL,NULL,NULL,'Woodsboro',1,1019,NULL,'21798',NULL,1228,39.540623,-77.30606,0,NULL,NULL,61), + (151,110,1,1,0,'482X Van Ness Way S',482,'X',NULL,'Van Ness','Way','S',NULL,NULL,NULL,NULL,'Woodsboro',1,1019,NULL,'21798',NULL,1228,39.540623,-77.30606,0,NULL,NULL,61), + (152,200,1,1,0,'482X Van Ness Way S',482,'X',NULL,'Van Ness','Way','S',NULL,NULL,NULL,NULL,'Woodsboro',1,1019,NULL,'21798',NULL,1228,39.540623,-77.30606,0,NULL,NULL,61), + (153,56,1,1,0,'828M College Dr NW',828,'M',NULL,'College','Dr','NW',NULL,NULL,NULL,NULL,'Oakley',1,1012,NULL,'62552',NULL,1228,39.869841,-88.81261,0,NULL,NULL,62), + (154,50,1,1,0,'828M College Dr NW',828,'M',NULL,'College','Dr','NW',NULL,NULL,NULL,NULL,'Oakley',1,1012,NULL,'62552',NULL,1228,39.869841,-88.81261,0,NULL,NULL,62), + (155,51,1,1,0,'828M College Dr NW',828,'M',NULL,'College','Dr','NW',NULL,NULL,NULL,NULL,'Oakley',1,1012,NULL,'62552',NULL,1228,39.869841,-88.81261,0,NULL,NULL,62), + (156,79,1,1,0,'715B Northpoint Path NE',715,'B',NULL,'Northpoint','Path','NE',NULL,NULL,NULL,NULL,'Arlington',1,1020,NULL,'02474',NULL,1228,42.419496,-71.15635,0,NULL,NULL,NULL), + (157,107,1,1,0,'967M Woodbridge Way N',967,'M',NULL,'Woodbridge','Way','N',NULL,NULL,NULL,NULL,'Carrollton',1,1009,NULL,'30166',NULL,1228,33.571329,-85.030663,0,NULL,NULL,63), + (158,41,1,1,0,'967M Woodbridge Way N',967,'M',NULL,'Woodbridge','Way','N',NULL,NULL,NULL,NULL,'Carrollton',1,1009,NULL,'30166',NULL,1228,33.571329,-85.030663,0,NULL,NULL,63), + (159,98,1,1,0,'967M Woodbridge Way N',967,'M',NULL,'Woodbridge','Way','N',NULL,NULL,NULL,NULL,'Carrollton',1,1009,NULL,'30166',NULL,1228,33.571329,-85.030663,0,NULL,NULL,63), + (160,165,1,1,0,'967M Woodbridge Way N',967,'M',NULL,'Woodbridge','Way','N',NULL,NULL,NULL,NULL,'Carrollton',1,1009,NULL,'30166',NULL,1228,33.571329,-85.030663,0,NULL,NULL,63), + (161,131,1,1,0,'102Y Cadell St E',102,'Y',NULL,'Cadell','St','E',NULL,NULL,NULL,NULL,'Oakboro',1,1032,NULL,'28129',NULL,1228,35.232542,-80.33123,0,NULL,NULL,64), + (162,115,1,0,0,'102Y Cadell St E',102,'Y',NULL,'Cadell','St','E',NULL,NULL,NULL,NULL,'Oakboro',1,1032,NULL,'28129',NULL,1228,35.232542,-80.33123,0,NULL,NULL,64), + (163,81,1,1,0,'102Y Cadell St E',102,'Y',NULL,'Cadell','St','E',NULL,NULL,NULL,NULL,'Oakboro',1,1032,NULL,'28129',NULL,1228,35.232542,-80.33123,0,NULL,NULL,64), + (164,187,1,1,0,'102Y Cadell St E',102,'Y',NULL,'Cadell','St','E',NULL,NULL,NULL,NULL,'Oakboro',1,1032,NULL,'28129',NULL,1228,35.232542,-80.33123,0,NULL,NULL,64), + (165,164,1,1,0,'486G Maple Path SE',486,'G',NULL,'Maple','Path','SE',NULL,NULL,NULL,NULL,'Carlisle',1,1031,NULL,'12031',NULL,1228,42.770985,-74.44694,0,NULL,NULL,65), + (166,70,1,1,0,'486G Maple Path SE',486,'G',NULL,'Maple','Path','SE',NULL,NULL,NULL,NULL,'Carlisle',1,1031,NULL,'12031',NULL,1228,42.770985,-74.44694,0,NULL,NULL,65), + (167,67,1,1,0,'486G Maple Path SE',486,'G',NULL,'Maple','Path','SE',NULL,NULL,NULL,NULL,'Carlisle',1,1031,NULL,'12031',NULL,1228,42.770985,-74.44694,0,NULL,NULL,65), + (168,111,1,1,0,'392B Pine Path NE',392,'B',NULL,'Pine','Path','NE',NULL,NULL,NULL,NULL,'Keller',1,1042,NULL,'76248',NULL,1228,32.92704,-97.2506,0,NULL,NULL,NULL), + (169,64,1,1,0,'467B Green Path E',467,'B',NULL,'Green','Path','E',NULL,NULL,NULL,NULL,'Portland',1,1036,NULL,'97217',NULL,1228,45.574439,-122.68665,0,NULL,NULL,66), + (170,195,1,1,0,'467B Green Path E',467,'B',NULL,'Green','Path','E',NULL,NULL,NULL,NULL,'Portland',1,1036,NULL,'97217',NULL,1228,45.574439,-122.68665,0,NULL,NULL,66), + (171,130,1,1,0,'467B Green Path E',467,'B',NULL,'Green','Path','E',NULL,NULL,NULL,NULL,'Portland',1,1036,NULL,'97217',NULL,1228,45.574439,-122.68665,0,NULL,NULL,66), + (172,175,1,1,0,'467B Green Path E',467,'B',NULL,'Green','Path','E',NULL,NULL,NULL,NULL,'Portland',1,1036,NULL,'97217',NULL,1228,45.574439,-122.68665,0,NULL,NULL,66), + (173,121,1,1,0,'5M Van Ness Ave SW',5,'M',NULL,'Van Ness','Ave','SW',NULL,NULL,NULL,NULL,'Forestville',1,1004,NULL,'95436',NULL,1228,38.495857,-122.90636,0,NULL,NULL,67), + (174,37,1,1,0,'5M Van Ness Ave SW',5,'M',NULL,'Van Ness','Ave','SW',NULL,NULL,NULL,NULL,'Forestville',1,1004,NULL,'95436',NULL,1228,38.495857,-122.90636,0,NULL,NULL,67), + (175,197,1,1,0,'5M Van Ness Ave SW',5,'M',NULL,'Van Ness','Ave','SW',NULL,NULL,NULL,NULL,'Forestville',1,1004,NULL,'95436',NULL,1228,38.495857,-122.90636,0,NULL,NULL,67), + (176,156,1,1,0,'390P Woodbridge Ln SE',390,'P',NULL,'Woodbridge','Ln','SE',NULL,NULL,NULL,NULL,'Cookeville',1,1041,NULL,'38503',NULL,1228,36.141824,-85.454779,0,NULL,NULL,NULL), + (177,191,1,1,0,'969V Cadell Dr S',969,'V',NULL,'Cadell','Dr','S',NULL,NULL,NULL,NULL,'East Longmeadow',1,1020,NULL,'01028',NULL,1228,42.066795,-72.5102,0,NULL,NULL,68), + (178,104,1,1,0,'969V Cadell Dr S',969,'V',NULL,'Cadell','Dr','S',NULL,NULL,NULL,NULL,'East Longmeadow',1,1020,NULL,'01028',NULL,1228,42.066795,-72.5102,0,NULL,NULL,68), + (179,91,1,1,0,'969V Cadell Dr S',969,'V',NULL,'Cadell','Dr','S',NULL,NULL,NULL,NULL,'East Longmeadow',1,1020,NULL,'01028',NULL,1228,42.066795,-72.5102,0,NULL,NULL,68), + (180,8,1,1,0,'969V Cadell Dr S',969,'V',NULL,'Cadell','Dr','S',NULL,NULL,NULL,NULL,'East Longmeadow',1,1020,NULL,'01028',NULL,1228,42.066795,-72.5102,0,NULL,NULL,68), (181,NULL,1,1,1,'14S El Camino Way E',14,'S',NULL,'El Camino','Way',NULL,NULL,NULL,NULL,NULL,'Collinsville',NULL,1006,NULL,'6022',NULL,1228,41.8328,-72.9253,0,NULL,NULL,NULL), (182,NULL,1,1,1,'11B Woodbridge Path SW',11,'B',NULL,'Woodbridge','Path',NULL,NULL,NULL,NULL,NULL,'Dayton',NULL,1034,NULL,'45417',NULL,1228,39.7531,-84.2471,0,NULL,NULL,NULL), (183,NULL,1,1,1,'581O Lincoln Dr SW',581,'O',NULL,'Lincoln','Dr',NULL,NULL,NULL,NULL,NULL,'Santa Fe',NULL,1030,NULL,'87594',NULL,1228,35.5212,-105.982,0,NULL,NULL,NULL); @@ -2061,208 +2073,208 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contact` WRITE; /*!40000 ALTER TABLE `civicrm_contact` DISABLE KEYS */; INSERT INTO `civicrm_contact` (`id`, `contact_type`, `contact_sub_type`, `do_not_email`, `do_not_phone`, `do_not_mail`, `do_not_sms`, `do_not_trade`, `is_opt_out`, `legal_identifier`, `external_identifier`, `sort_name`, `display_name`, `nick_name`, `legal_name`, `image_URL`, `preferred_communication_method`, `preferred_language`, `preferred_mail_format`, `hash`, `api_key`, `source`, `first_name`, `middle_name`, `last_name`, `prefix_id`, `suffix_id`, `formal_title`, `communication_style_id`, `email_greeting_id`, `email_greeting_custom`, `email_greeting_display`, `postal_greeting_id`, `postal_greeting_custom`, `postal_greeting_display`, `addressee_id`, `addressee_custom`, `addressee_display`, `job_title`, `gender_id`, `birth_date`, `is_deceased`, `deceased_date`, `household_name`, `primary_contact_id`, `organization_name`, `sic_code`, `user_unique_id`, `employer_id`, `is_deleted`, `created_date`, `modified_date`) VALUES - (1,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Default Organization','Default Organization',NULL,'Default Organization',NULL,NULL,NULL,'Both',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'Default Organization',NULL,NULL,NULL,0,NULL,'2022-10-12 03:42:18'), - (2,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wattson-Olsen, Kiara','Mrs. Kiara Wattson-Olsen',NULL,NULL,NULL,'3',NULL,'Both','3749117481',NULL,'Sample Data','Kiara','T','Wattson-Olsen',1,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Mrs. Kiara Wattson-Olsen',NULL,1,'1976-10-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (3,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Díaz, Rodrigo','Rodrigo Díaz III',NULL,NULL,NULL,'5',NULL,'Both','1921232492',NULL,'Sample Data','Rodrigo','L','Díaz',NULL,4,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Díaz III',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (4,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper-González family','Cooper-González family',NULL,NULL,NULL,NULL,NULL,'Both','4105067308',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper-González family',5,NULL,'Dear Cooper-González family',2,NULL,'Cooper-González family',NULL,NULL,NULL,0,NULL,'Cooper-González family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (5,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Samson family','Samson family',NULL,NULL,NULL,'5',NULL,'Both','333421926',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samson family',5,NULL,'Dear Samson family',2,NULL,'Samson family',NULL,NULL,NULL,0,NULL,'Samson family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (6,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Grant-Jensen, Carylon','Ms. Carylon Grant-Jensen',NULL,NULL,NULL,'4',NULL,'Both','3386288895',NULL,'Sample Data','Carylon','','Grant-Jensen',2,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Ms. Carylon Grant-Jensen',NULL,1,'1981-07-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (7,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Dimitrov, Kathleen','Dr. Kathleen Dimitrov',NULL,NULL,NULL,'4',NULL,'Both','2670436723',NULL,'Sample Data','Kathleen','','Dimitrov',4,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Dr. Kathleen Dimitrov',NULL,NULL,'1985-02-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (8,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Roberts, Winford','Dr. Winford Roberts II',NULL,NULL,NULL,NULL,NULL,'Both','675793909',NULL,'Sample Data','Winford','M','Roberts',4,3,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Dr. Winford Roberts II',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (9,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'dwilson@example.info','dwilson@example.info',NULL,NULL,NULL,NULL,NULL,'Both','4101011476',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear dwilson@example.info',1,NULL,'Dear dwilson@example.info',1,NULL,'dwilson@example.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (10,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Adams, Sonny','Sonny Adams',NULL,NULL,NULL,NULL,NULL,'Both','39922319',NULL,'Sample Data','Sonny','Y','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Sonny Adams',NULL,2,'1978-05-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (11,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Grant, Winford','Winford Grant',NULL,NULL,NULL,NULL,NULL,'Both','431528979',NULL,'Sample Data','Winford','L','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Grant',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (12,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper-González, Herminia','Herminia Cooper-González',NULL,NULL,NULL,NULL,NULL,'Both','217983606',NULL,'Sample Data','Herminia','Q','Cooper-González',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Cooper-González',NULL,1,'2006-03-31',0,NULL,NULL,NULL,'Progressive Sustainability Partners',NULL,NULL,132,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (13,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson-Ivanov, Laree','Dr. Laree Jameson-Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','293671732',NULL,'Sample Data','Laree','','Jameson-Ivanov',4,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Dr. Laree Jameson-Ivanov',NULL,1,'1975-07-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (14,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Local Sustainability Fellowship','Local Sustainability Fellowship',NULL,NULL,NULL,NULL,NULL,'Both','3048393678',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Sustainability Fellowship',NULL,NULL,NULL,0,NULL,NULL,NULL,'Local Sustainability Fellowship',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (15,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Bachman, Omar','Mr. Omar Bachman',NULL,NULL,NULL,'1',NULL,'Both','4035622769',NULL,'Sample Data','Omar','O','Bachman',3,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Mr. Omar Bachman',NULL,2,'1936-11-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (16,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Dimitrov, Sonny','Mr. Sonny Dimitrov II',NULL,NULL,NULL,'2',NULL,'Both','2683326100',NULL,'Sample Data','Sonny','J','Dimitrov',3,3,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Mr. Sonny Dimitrov II',NULL,NULL,'1942-03-15',0,NULL,NULL,NULL,'Maple Software Systems',NULL,NULL,18,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (17,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Bachman, Betty','Betty Bachman',NULL,NULL,NULL,'1',NULL,'Both','2914699083',NULL,'Sample Data','Betty','K','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Bachman',NULL,NULL,'1983-10-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (18,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Maple Software Systems','Maple Software Systems',NULL,NULL,NULL,NULL,NULL,'Both','334767824',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Maple Software Systems',NULL,NULL,NULL,0,NULL,NULL,16,'Maple Software Systems',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (19,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Olsen, Rebekah','Mrs. Rebekah Olsen',NULL,NULL,NULL,NULL,NULL,'Both','174179615',NULL,'Sample Data','Rebekah','U','Olsen',1,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Mrs. Rebekah Olsen',NULL,1,'1975-04-25',0,NULL,NULL,NULL,'Wilmington Health Trust',NULL,NULL,145,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (20,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'santinapatel@fishmail.co.nz','santinapatel@fishmail.co.nz',NULL,NULL,NULL,'2',NULL,'Both','498671060',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear santinapatel@fishmail.co.nz',1,NULL,'Dear santinapatel@fishmail.co.nz',1,NULL,'santinapatel@fishmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,'Friends Music Services',NULL,NULL,199,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (21,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'js.blackwell@infomail.co.pl','js.blackwell@infomail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','3444463260',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear js.blackwell@infomail.co.pl',1,NULL,'Dear js.blackwell@infomail.co.pl',1,NULL,'js.blackwell@infomail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (22,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Norris','Norris Bachman',NULL,NULL,NULL,NULL,NULL,'Both','2902131761',NULL,'Sample Data','Norris','H','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Bachman',NULL,2,'1970-10-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (23,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'McReynolds, Teresa','Ms. Teresa McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','2267068970',NULL,'Sample Data','Teresa','','McReynolds',2,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Ms. Teresa McReynolds',NULL,NULL,'1954-03-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (24,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Smith, Rosario','Dr. Rosario Smith',NULL,NULL,NULL,NULL,NULL,'Both','701125213',NULL,'Sample Data','Rosario','','Smith',4,NULL,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Dr. Rosario Smith',NULL,2,'1984-03-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (25,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Global Sustainability Academy','Global Sustainability Academy',NULL,NULL,NULL,'1',NULL,'Both','3313309619',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Sustainability Academy',NULL,NULL,NULL,0,NULL,NULL,197,'Global Sustainability Academy',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (26,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'prenticem@fakemail.co.pl','prenticem@fakemail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','4174413294',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear prenticem@fakemail.co.pl',1,NULL,'Dear prenticem@fakemail.co.pl',1,NULL,'prenticem@fakemail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (27,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cooper, Ray','Dr. Ray Cooper',NULL,NULL,NULL,NULL,NULL,'Both','707495177',NULL,'Sample Data','Ray','','Cooper',4,NULL,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Dr. Ray Cooper',NULL,2,'1932-11-13',1,'2022-01-19',NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (28,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Bryon','Mr. Bryon Lee',NULL,NULL,NULL,NULL,NULL,'Both','369670244',NULL,'Sample Data','Bryon','','Lee',3,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Mr. Bryon Lee',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (29,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Truman','Truman Díaz Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2337329082',NULL,'Sample Data','Truman','','Díaz',NULL,2,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Díaz Sr.',NULL,2,'1970-01-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (30,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'McReynolds, Landon','Dr. Landon McReynolds',NULL,NULL,NULL,'3',NULL,'Both','4041236160',NULL,'Sample Data','Landon','V','McReynolds',4,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Dr. Landon McReynolds',NULL,2,'1978-04-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (31,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'leea32@fishmail.biz','leea32@fishmail.biz',NULL,NULL,NULL,'2',NULL,'Both','1686458901',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear leea32@fishmail.biz',1,NULL,'Dear leea32@fishmail.biz',1,NULL,'leea32@fishmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (32,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'González, Sanford','Dr. Sanford González',NULL,NULL,NULL,NULL,NULL,'Both','216196838',NULL,'Sample Data','Sanford','','González',4,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Dr. Sanford González',NULL,NULL,'1971-03-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (33,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'bachman.shad@spamalot.net','bachman.shad@spamalot.net',NULL,NULL,NULL,'1',NULL,'Both','3817325967',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear bachman.shad@spamalot.net',1,NULL,'Dear bachman.shad@spamalot.net',1,NULL,'bachman.shad@spamalot.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (34,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Zope, Norris','Mr. Norris Zope',NULL,NULL,NULL,NULL,NULL,'Both','707573451',NULL,'Sample Data','Norris','Q','Zope',3,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Mr. Norris Zope',NULL,2,'1972-01-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (35,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Progressive Agriculture Trust','Progressive Agriculture Trust',NULL,NULL,NULL,NULL,NULL,'Both','1361496018',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Progressive Agriculture Trust',NULL,NULL,NULL,0,NULL,NULL,114,'Progressive Agriculture Trust',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (36,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Landon','Dr. Landon Łąchowski',NULL,NULL,NULL,'2',NULL,'Both','2326904439',NULL,'Sample Data','Landon','P','Łąchowski',4,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Dr. Landon Łąchowski',NULL,2,'1991-03-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (37,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cooper-González, Barry','Dr. Barry Cooper-González Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3800711435',NULL,'Sample Data','Barry','H','Cooper-González',4,1,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Dr. Barry Cooper-González Jr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (38,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Reynolds, Barry','Mr. Barry Reynolds II',NULL,NULL,NULL,'3',NULL,'Both','3819576802',NULL,'Sample Data','Barry','N','Reynolds',3,3,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Mr. Barry Reynolds II',NULL,2,'1953-03-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (39,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Herminia','Herminia Wilson',NULL,NULL,NULL,NULL,NULL,'Both','1306948243',NULL,'Sample Data','Herminia','H','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Wilson',NULL,1,'1972-01-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (40,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson-Ivanov family','Jameson-Ivanov family',NULL,NULL,NULL,NULL,NULL,'Both','2836885419',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson-Ivanov family',5,NULL,'Dear Jameson-Ivanov family',2,NULL,'Jameson-Ivanov family',NULL,NULL,NULL,0,NULL,'Jameson-Ivanov family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (41,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'prentice.rosario52@notmail.biz','prentice.rosario52@notmail.biz',NULL,NULL,NULL,'4',NULL,'Both','2697277111',NULL,'Sample Data',NULL,NULL,NULL,4,2,NULL,NULL,1,NULL,'Dear prentice.rosario52@notmail.biz',1,NULL,'Dear prentice.rosario52@notmail.biz',1,NULL,'prentice.rosario52@notmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (42,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'adams.brigette@spamalot.co.pl','adams.brigette@spamalot.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','3040803646',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear adams.brigette@spamalot.co.pl',1,NULL,'Dear adams.brigette@spamalot.co.pl',1,NULL,'adams.brigette@spamalot.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (43,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson-Ivanov, Damaris','Damaris Jameson-Ivanov',NULL,NULL,NULL,'2',NULL,'Both','1143614889',NULL,'Sample Data','Damaris','','Jameson-Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Damaris Jameson-Ivanov',NULL,NULL,'1982-04-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (44,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Rebekah','Rebekah Nielsen',NULL,NULL,NULL,'4',NULL,'Both','310511379',NULL,'Sample Data','Rebekah','','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Rebekah Nielsen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (45,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Brzęczysław','Brzęczysław Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','1026883277',NULL,'Sample Data','Brzęczysław','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Jacobs',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (46,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Bachman, Kacey','Ms. Kacey Bachman',NULL,NULL,NULL,NULL,NULL,'Both','1702405256',NULL,'Sample Data','Kacey','M','Bachman',2,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Ms. Kacey Bachman',NULL,NULL,'1996-04-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (47,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Olsen, Santina','Dr. Santina Olsen',NULL,NULL,NULL,'5',NULL,'Both','3876725059',NULL,'Sample Data','Santina','','Olsen',4,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Dr. Santina Olsen',NULL,NULL,'1983-05-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (48,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'cjacobs@notmail.com','cjacobs@notmail.com',NULL,NULL,NULL,'1',NULL,'Both','235116123',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear cjacobs@notmail.com',1,NULL,'Dear cjacobs@notmail.com',1,NULL,'cjacobs@notmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (49,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Alida','Ms. Alida Olsen',NULL,NULL,NULL,NULL,NULL,'Both','3405234870',NULL,'Sample Data','Alida','E','Olsen',2,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Ms. Alida Olsen',NULL,1,'1941-11-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (50,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Valene','Valene Bachman',NULL,NULL,NULL,NULL,NULL,'Both','4000615529',NULL,'Sample Data','Valene','I','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Valene Bachman',NULL,1,'2014-11-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (51,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Terry family','Terry family',NULL,NULL,NULL,NULL,NULL,'Both','558108751',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terry family',5,NULL,'Dear Terry family',2,NULL,'Terry family',NULL,NULL,NULL,0,NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (52,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Global Agriculture Fellowship','Global Agriculture Fellowship',NULL,NULL,NULL,NULL,NULL,'Both','224351396',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Agriculture Fellowship',NULL,NULL,NULL,0,NULL,NULL,146,'Global Agriculture Fellowship',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (53,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Blackwell, Delana','Mrs. Delana Blackwell',NULL,NULL,NULL,'1',NULL,'Both','1631178499',NULL,'Sample Data','Delana','','Blackwell',1,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Mrs. Delana Blackwell',NULL,1,'1935-01-17',1,'2022-07-06',NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (54,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski-McReynolds, Nicole','Mrs. Nicole Łąchowski-McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','516489960',NULL,'Sample Data','Nicole','','Łąchowski-McReynolds',1,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Mrs. Nicole Łąchowski-McReynolds',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (55,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds family','McReynolds family',NULL,NULL,NULL,'2',NULL,'Both','3032680972',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear McReynolds family',5,NULL,'Dear McReynolds family',2,NULL,'McReynolds family',NULL,NULL,NULL,0,NULL,'McReynolds family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (56,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Brent','Brent Deforest III',NULL,NULL,NULL,'1',NULL,'Both','368083228',NULL,'Sample Data','Brent','J','Deforest',NULL,4,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Deforest III',NULL,NULL,'2007-03-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (57,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Deforest family','Deforest family',NULL,NULL,NULL,'5',NULL,'Both','3235379039',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Deforest family',5,NULL,'Dear Deforest family',2,NULL,'Deforest family',NULL,NULL,NULL,0,NULL,'Deforest family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (58,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds-Cooper, Princess','Princess Reynolds-Cooper',NULL,NULL,NULL,NULL,NULL,'Both','3447461272',NULL,'Sample Data','Princess','D','Reynolds-Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Reynolds-Cooper',NULL,1,'2007-05-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (59,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Kathleen','Kathleen Terry',NULL,NULL,NULL,NULL,NULL,'Both','1992671393',NULL,'Sample Data','Kathleen','P','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Kathleen Terry',NULL,NULL,'1981-08-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (60,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Reynolds, Allen','Dr. Allen Reynolds Sr.',NULL,NULL,NULL,NULL,NULL,'Both','3330814148',NULL,'Sample Data','Allen','','Reynolds',4,2,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Dr. Allen Reynolds Sr.',NULL,2,'1970-05-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (61,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Beula','Beula Samson',NULL,NULL,NULL,'1',NULL,'Both','1224450330',NULL,'Sample Data','Beula','P','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Samson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (62,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Barry','Dr. Barry Samson',NULL,NULL,NULL,NULL,NULL,'Both','100370241',NULL,'Sample Data','Barry','','Samson',4,NULL,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Dr. Barry Samson',NULL,NULL,'1952-04-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (63,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Sonny','Sonny Prentice',NULL,NULL,NULL,NULL,NULL,'Both','2645636632',NULL,'Sample Data','Sonny','','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Sonny Prentice',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (64,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jensen, Kenny','Dr. Kenny Jensen',NULL,NULL,NULL,NULL,NULL,'Both','1218055932',NULL,'Sample Data','Kenny','','Jensen',4,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Dr. Kenny Jensen',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (65,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Kathlyn','Kathlyn Terry',NULL,NULL,NULL,'4',NULL,'Both','1733215709',NULL,'Sample Data','Kathlyn','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Kathlyn Terry',NULL,1,'1971-12-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (66,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Jerome','Mr. Jerome Robertson Jr.',NULL,NULL,NULL,'5',NULL,'Both','3716406144',NULL,'Sample Data','Jerome','K','Robertson',3,1,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Mr. Jerome Robertson Jr.',NULL,2,NULL,0,NULL,NULL,NULL,'Local Agriculture School',NULL,NULL,98,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (67,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'New York Peace Fellowship','New York Peace Fellowship',NULL,NULL,NULL,NULL,NULL,'Both','3109264798',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'New York Peace Fellowship',NULL,NULL,NULL,0,NULL,NULL,87,'New York Peace Fellowship',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (68,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Maxwell','Maxwell Patel Jr.',NULL,NULL,NULL,'5',NULL,'Both','1864121617',NULL,'Sample Data','Maxwell','','Patel',NULL,1,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Patel Jr.',NULL,2,'1994-08-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (69,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Kiara','Mrs. Kiara Zope',NULL,NULL,NULL,NULL,NULL,'Both','2982636057',NULL,'Sample Data','Kiara','','Zope',1,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Mrs. Kiara Zope',NULL,1,'1953-10-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (70,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams, Mei','Mei Adams',NULL,NULL,NULL,'2',NULL,'Both','407770009',NULL,'Sample Data','Mei','','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei Adams',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (71,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Herminia','Mrs. Herminia Smith',NULL,NULL,NULL,NULL,NULL,'Both','1861121228',NULL,'Sample Data','Herminia','','Smith',1,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Mrs. Herminia Smith',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (72,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Deforest, Nicole','Nicole Deforest',NULL,NULL,NULL,NULL,NULL,'Both','1032723918',NULL,'Sample Data','Nicole','','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Deforest',NULL,1,'2009-02-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (73,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Sharyn','Sharyn Olsen',NULL,NULL,NULL,'4',NULL,'Both','3193579661',NULL,'Sample Data','Sharyn','A','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Olsen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (74,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'dazd@airmail.info','dazd@airmail.info',NULL,NULL,NULL,'3',NULL,'Both','958335449',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear dazd@airmail.info',1,NULL,'Dear dazd@airmail.info',1,NULL,'dazd@airmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (75,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Łąchowski, Ashley','Ashley Łąchowski II',NULL,NULL,NULL,NULL,NULL,'Both','2118847074',NULL,'Sample Data','Ashley','S','Łąchowski',NULL,3,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Łąchowski II',NULL,NULL,'1978-06-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (76,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Crothersville Poetry Fund','Crothersville Poetry Fund',NULL,NULL,NULL,'5',NULL,'Both','2462778108',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Crothersville Poetry Fund',NULL,NULL,NULL,0,NULL,NULL,119,'Crothersville Poetry Fund',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (77,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samson-Zope, Junko','Dr. Junko Samson-Zope',NULL,NULL,NULL,NULL,NULL,'Both','3893572470',NULL,'Sample Data','Junko','','Samson-Zope',4,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Dr. Junko Samson-Zope',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (78,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Adams, Rolando','Dr. Rolando Adams Sr.',NULL,NULL,NULL,'1',NULL,'Both','1733849809',NULL,'Sample Data','Rolando','','Adams',4,2,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Dr. Rolando Adams Sr.',NULL,2,'1993-11-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (79,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Jay','Jay Lee',NULL,NULL,NULL,NULL,NULL,'Both','378929971',NULL,'Sample Data','Jay','U','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Lee',NULL,2,NULL,1,NULL,NULL,NULL,'Louisiana Software Fund',NULL,NULL,177,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (80,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Glenn Literacy Network','Glenn Literacy Network',NULL,NULL,NULL,NULL,NULL,'Both','3513856195',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Glenn Literacy Network',NULL,NULL,NULL,0,NULL,NULL,95,'Glenn Literacy Network',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (81,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'prenticer@testing.biz','prenticer@testing.biz',NULL,NULL,NULL,NULL,NULL,'Both','365381712',NULL,'Sample Data',NULL,NULL,NULL,4,3,NULL,NULL,1,NULL,'Dear prenticer@testing.biz',1,NULL,'Dear prenticer@testing.biz',1,NULL,'prenticer@testing.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (82,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Teresa','Teresa Roberts',NULL,NULL,NULL,NULL,NULL,'Both','1933430312',NULL,'Sample Data','Teresa','A','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Roberts',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (83,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Brittney','Brittney Díaz',NULL,NULL,NULL,'5',NULL,'Both','2710372052',NULL,'Sample Data','Brittney','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Díaz',NULL,1,'1952-07-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (84,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Patel, Irvin','Dr. Irvin Patel III',NULL,NULL,NULL,NULL,NULL,'Both','1842023876',NULL,'Sample Data','Irvin','','Patel',4,4,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Dr. Irvin Patel III',NULL,NULL,'1933-02-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (85,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Nielsen family','Nielsen family',NULL,NULL,NULL,'4',NULL,'Both','766698874',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Nielsen family',5,NULL,'Dear Nielsen family',2,NULL,'Nielsen family',NULL,NULL,NULL,0,NULL,'Nielsen family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (86,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'kbarkley85@airmail.net','kbarkley85@airmail.net',NULL,NULL,NULL,'4',NULL,'Both','3975645957',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear kbarkley85@airmail.net',1,NULL,'Dear kbarkley85@airmail.net',1,NULL,'kbarkley85@airmail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (87,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds-Cooper, Andrew','Andrew McReynolds-Cooper Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1519458078',NULL,'Sample Data','Andrew','Q','McReynolds-Cooper',NULL,2,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew McReynolds-Cooper Sr.',NULL,2,NULL,0,NULL,NULL,NULL,'New York Peace Fellowship',NULL,NULL,67,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (88,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Samson family','Samson family',NULL,NULL,NULL,'4',NULL,'Both','333421926',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samson family',5,NULL,'Dear Samson family',2,NULL,'Samson family',NULL,NULL,NULL,0,NULL,'Samson family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (89,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Ivanov, Rebekah','Mrs. Rebekah Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','3058531629',NULL,'Sample Data','Rebekah','I','Ivanov',1,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Mrs. Rebekah Ivanov',NULL,NULL,'1959-11-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (90,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'McReynolds, Roland','Roland McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','587223413',NULL,'Sample Data','Roland','J','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland McReynolds',NULL,2,'1974-02-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (91,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terrell, Allan','Dr. Allan Terrell Sr.',NULL,NULL,NULL,NULL,NULL,'Both','349299524',NULL,'Sample Data','Allan','','Terrell',4,2,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Dr. Allan Terrell Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (92,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Yadav, Elbert','Elbert Yadav',NULL,NULL,NULL,NULL,NULL,'Both','2557263059',NULL,'Sample Data','Elbert','S','Yadav',NULL,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Yadav',NULL,NULL,'1954-11-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (93,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Sherman','Sherman Ivanov',NULL,NULL,NULL,'5',NULL,'Both','1050939382',NULL,'Sample Data','Sherman','D','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Sherman Ivanov',NULL,NULL,'1965-04-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (94,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Samson, Irvin','Mr. Irvin Samson',NULL,NULL,NULL,NULL,NULL,'Both','493594784',NULL,'Sample Data','Irvin','','Samson',3,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Mr. Irvin Samson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (95,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samuels, Maxwell','Dr. Maxwell Samuels Jr.',NULL,NULL,NULL,NULL,NULL,'Both','445599950',NULL,'Sample Data','Maxwell','J','Samuels',4,1,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Dr. Maxwell Samuels Jr.',NULL,2,'1948-04-18',0,NULL,NULL,NULL,'Glenn Literacy Network',NULL,NULL,80,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (96,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Olsen family','Olsen family',NULL,NULL,NULL,'4',NULL,'Both','1990073228',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Olsen family',5,NULL,'Dear Olsen family',2,NULL,'Olsen family',NULL,NULL,NULL,0,NULL,'Olsen family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (97,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Herminia','Ms. Herminia Bachman',NULL,NULL,NULL,'3',NULL,'Both','2587007542',NULL,'Sample Data','Herminia','','Bachman',2,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Ms. Herminia Bachman',NULL,NULL,'1959-11-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (98,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Local Agriculture School','Local Agriculture School',NULL,NULL,NULL,'5',NULL,'Both','2587889672',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Agriculture School',NULL,NULL,NULL,0,NULL,NULL,66,'Local Agriculture School',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (99,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Shad','Shad Zope',NULL,NULL,NULL,NULL,NULL,'Both','2740120938',NULL,'Sample Data','Shad','R','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Zope',NULL,2,'1965-11-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (100,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds-Cooper, Allan','Allan Reynolds-Cooper',NULL,NULL,NULL,NULL,NULL,'Both','2941591200',NULL,'Sample Data','Allan','X','Reynolds-Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Reynolds-Cooper',NULL,2,'2006-04-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (101,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'brigettec26@spamalot.co.pl','brigettec26@spamalot.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','4019272622',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear brigettec26@spamalot.co.pl',1,NULL,'Dear brigettec26@spamalot.co.pl',1,NULL,'brigettec26@spamalot.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (102,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Junko','Junko González',NULL,NULL,NULL,NULL,NULL,'Both','1095741341',NULL,'Sample Data','Junko','','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko González',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (103,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Cruz, Jina','Jina Cruz',NULL,NULL,NULL,NULL,NULL,'Both','657562191',NULL,'Sample Data','Jina','A','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Cruz',NULL,NULL,'1957-04-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (104,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav-Dimitrov family','Yadav-Dimitrov family',NULL,NULL,NULL,'2',NULL,'Both','1238493961',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Yadav-Dimitrov family',5,NULL,'Dear Yadav-Dimitrov family',2,NULL,'Yadav-Dimitrov family',NULL,NULL,NULL,0,NULL,'Yadav-Dimitrov family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (105,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samson, Alida','Alida Samson',NULL,NULL,NULL,'3',NULL,'Both','2947957852',NULL,'Sample Data','Alida','L','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Samson',NULL,1,'1993-04-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (106,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samuels, Clint','Clint Samuels Sr.',NULL,NULL,NULL,'3',NULL,'Both','1165497253',NULL,'Sample Data','Clint','B','Samuels',NULL,2,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Samuels Sr.',NULL,2,'1969-11-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (107,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Juliann','Ms. Juliann Terry',NULL,NULL,NULL,NULL,NULL,'Both','3154715143',NULL,'Sample Data','Juliann','L','Terry',2,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Ms. Juliann Terry',NULL,1,'1974-09-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (108,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Deforest, Jerome','Mr. Jerome Deforest',NULL,NULL,NULL,NULL,NULL,'Both','2454827874',NULL,'Sample Data','Jerome','W','Deforest',3,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Mr. Jerome Deforest',NULL,2,'1981-07-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (109,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Sharyn','Ms. Sharyn Grant',NULL,NULL,NULL,NULL,NULL,'Both','920947472',NULL,'Sample Data','Sharyn','P','Grant',2,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Ms. Sharyn Grant',NULL,NULL,'1950-12-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (110,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Jones, Carylon','Carylon Jones',NULL,NULL,NULL,'2',NULL,'Both','559355137',NULL,'Sample Data','Carylon','Q','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Jones',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (111,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Wattson, Alexia','Alexia Wattson',NULL,NULL,NULL,NULL,NULL,'Both','2082974153',NULL,'Sample Data','Alexia','Z','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Wattson',NULL,1,'1968-03-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (112,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman family','Bachman family',NULL,NULL,NULL,NULL,NULL,'Both','1714131215',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Bachman family',5,NULL,'Dear Bachman family',2,NULL,'Bachman family',NULL,NULL,NULL,0,NULL,'Bachman family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (113,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'meiz@airmail.co.uk','meiz@airmail.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','638142775',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear meiz@airmail.co.uk',1,NULL,'Dear meiz@airmail.co.uk',1,NULL,'meiz@airmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (114,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Zope, Juliann','Mrs. Juliann Zope',NULL,NULL,NULL,NULL,NULL,'Both','2334217579',NULL,'Sample Data','Juliann','A','Zope',1,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Mrs. Juliann Zope',NULL,1,NULL,0,NULL,NULL,NULL,'Progressive Agriculture Trust',NULL,NULL,35,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (115,'Organization',NULL,1,1,0,0,1,0,NULL,NULL,'College Legal Center','College Legal Center',NULL,NULL,NULL,'3',NULL,'Both','1406258499',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'College Legal Center',NULL,NULL,NULL,0,NULL,NULL,NULL,'College Legal Center',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (116,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Patel, Juliann','Juliann Patel',NULL,NULL,NULL,'4',NULL,'Both','3429628302',NULL,'Sample Data','Juliann','A','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Patel',NULL,NULL,'1942-06-01',1,'2022-08-29',NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (117,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav, Beula','Beula Yadav',NULL,NULL,NULL,'2',NULL,'Both','852214760',NULL,'Sample Data','Beula','M','Yadav',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Yadav',NULL,1,'1968-06-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (118,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jensen, Sonny','Dr. Sonny Jensen',NULL,NULL,NULL,'2',NULL,'Both','2008494811',NULL,'Sample Data','Sonny','Z','Jensen',4,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Dr. Sonny Jensen',NULL,NULL,'1988-04-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (119,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Teresa','Dr. Teresa Zope',NULL,NULL,NULL,NULL,NULL,'Both','2553065969',NULL,'Sample Data','Teresa','','Zope',4,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Dr. Teresa Zope',NULL,1,NULL,0,NULL,NULL,NULL,'Crothersville Poetry Fund',NULL,NULL,76,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (120,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Esta','Dr. Esta Deforest',NULL,NULL,NULL,NULL,NULL,'Both','2058701056',NULL,'Sample Data','Esta','X','Deforest',4,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Dr. Esta Deforest',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (121,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Łąchowski, Andrew','Andrew Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','1575830932',NULL,'Sample Data','Andrew','N','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Łąchowski',NULL,2,'1985-05-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (122,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Betty','Betty Cruz',NULL,NULL,NULL,NULL,NULL,'Both','1094549317',NULL,'Sample Data','Betty','M','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Cruz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (123,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Łąchowski family','Łąchowski family',NULL,NULL,NULL,'3',NULL,'Both','2407077255',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Łąchowski family',5,NULL,'Dear Łąchowski family',2,NULL,'Łąchowski family',NULL,NULL,NULL,0,NULL,'Łąchowski family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (124,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Friends Software Initiative','Friends Software Initiative',NULL,NULL,NULL,'4',NULL,'Both','3784873352',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Software Initiative',NULL,NULL,NULL,0,NULL,NULL,201,'Friends Software Initiative',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (125,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'zope.alida@mymail.info','zope.alida@mymail.info',NULL,NULL,NULL,NULL,NULL,'Both','3636562480',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear zope.alida@mymail.info',1,NULL,'Dear zope.alida@mymail.info',1,NULL,'zope.alida@mymail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (126,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samson, Clint','Mr. Clint Samson III',NULL,NULL,NULL,'1',NULL,'Both','1111759709',NULL,'Sample Data','Clint','','Samson',3,4,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Mr. Clint Samson III',NULL,2,'1988-01-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (127,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'gonzlezt@fakemail.net','gonzlezt@fakemail.net',NULL,NULL,NULL,NULL,NULL,'Both','2267253331',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear gonzlezt@fakemail.net',1,NULL,'Dear gonzlezt@fakemail.net',1,NULL,'gonzlezt@fakemail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (128,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Zope family','Zope family',NULL,NULL,NULL,'5',NULL,'Both','1649131487',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Zope family',5,NULL,'Dear Zope family',2,NULL,'Zope family',NULL,NULL,NULL,0,NULL,'Zope family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (129,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'claudioo50@mymail.co.uk','claudioo50@mymail.co.uk',NULL,NULL,NULL,'2',NULL,'Both','802306484',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear claudioo50@mymail.co.uk',1,NULL,'Dear claudioo50@mymail.co.uk',1,NULL,'claudioo50@mymail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (130,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Cadell Technology School','Cadell Technology School',NULL,NULL,NULL,'2',NULL,'Both','3530899191',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Cadell Technology School',NULL,NULL,NULL,0,NULL,NULL,150,'Cadell Technology School',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (131,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wilson, Lincoln','Lincoln Wilson III',NULL,NULL,NULL,NULL,NULL,'Both','904190316',NULL,'Sample Data','Lincoln','','Wilson',NULL,4,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Lincoln Wilson III',NULL,2,'1979-08-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (132,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Progressive Sustainability Partners','Progressive Sustainability Partners',NULL,NULL,NULL,NULL,NULL,'Both','583850659',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Progressive Sustainability Partners',NULL,NULL,NULL,0,NULL,NULL,12,'Progressive Sustainability Partners',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (133,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Andrew','Andrew Díaz',NULL,NULL,NULL,NULL,NULL,'Both','2189664098',NULL,'Sample Data','Andrew','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Díaz',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (134,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav-Dimitrov, Miguel','Miguel Yadav-Dimitrov',NULL,NULL,NULL,'3',NULL,'Both','257306529',NULL,'Sample Data','Miguel','','Yadav-Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Yadav-Dimitrov',NULL,2,'1992-05-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (135,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Josefa','Josefa Nielsen',NULL,NULL,NULL,'5',NULL,'Both','3267028471',NULL,'Sample Data','Josefa','','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Nielsen',NULL,1,'1997-03-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (136,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Bachman, Roland','Mr. Roland Bachman II',NULL,NULL,NULL,'1',NULL,'Both','3134974036',NULL,'Sample Data','Roland','','Bachman',3,3,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Mr. Roland Bachman II',NULL,NULL,'1968-09-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (137,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Cruz-Nielsen, Mei','Dr. Mei Cruz-Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','545038527',NULL,'Sample Data','Mei','A','Cruz-Nielsen',4,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Dr. Mei Cruz-Nielsen',NULL,1,'1992-01-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (138,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Olsen, Brent','Dr. Brent Olsen',NULL,NULL,NULL,'5',NULL,'Both','2746838479',NULL,'Sample Data','Brent','','Olsen',4,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Dr. Brent Olsen',NULL,2,'1986-03-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (139,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav, Roland','Roland Yadav',NULL,NULL,NULL,'1',NULL,'Both','3708380918',NULL,'Sample Data','Roland','','Yadav',NULL,NULL,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland Yadav',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (140,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Rodrigo','Rodrigo Samson Sr.',NULL,NULL,NULL,'1',NULL,'Both','2189738630',NULL,'Sample Data','Rodrigo','','Samson',NULL,2,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Samson Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,'Hawaii Family Academy',NULL,NULL,159,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (141,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper-Samson, Alida','Dr. Alida Cooper-Samson',NULL,NULL,NULL,NULL,NULL,'Both','4278839577',NULL,'Sample Data','Alida','','Cooper-Samson',4,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Dr. Alida Cooper-Samson',NULL,1,'1970-02-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (142,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Lawerence','Lawerence Terry II',NULL,NULL,NULL,'4',NULL,'Both','3242324001',NULL,'Sample Data','Lawerence','','Terry',NULL,3,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence Terry II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (143,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Lincoln','Dr. Lincoln Cooper Sr.',NULL,NULL,NULL,NULL,NULL,'Both','374468394',NULL,'Sample Data','Lincoln','A','Cooper',4,2,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Dr. Lincoln Cooper Sr.',NULL,2,'1963-05-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (144,'Household',NULL,0,1,0,0,1,0,NULL,NULL,'McReynolds-Cooper family','McReynolds-Cooper family',NULL,NULL,NULL,NULL,NULL,'Both','2666497667',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear McReynolds-Cooper family',5,NULL,'Dear McReynolds-Cooper family',2,NULL,'McReynolds-Cooper family',NULL,NULL,NULL,0,NULL,'McReynolds-Cooper family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (145,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Wilmington Health Trust','Wilmington Health Trust',NULL,NULL,NULL,NULL,NULL,'Both','3648984868',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Wilmington Health Trust',NULL,NULL,NULL,0,NULL,NULL,19,'Wilmington Health Trust',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (146,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice, Junko','Junko Prentice',NULL,NULL,NULL,'3',NULL,'Both','1179006212',NULL,'Sample Data','Junko','','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko Prentice',NULL,NULL,NULL,0,NULL,NULL,NULL,'Global Agriculture Fellowship',NULL,NULL,52,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (147,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Merrie','Merrie Díaz',NULL,NULL,NULL,NULL,NULL,'Both','2834257935',NULL,'Sample Data','Merrie','N','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Díaz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (148,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Terry, Elbert','Elbert Terry',NULL,NULL,NULL,'5',NULL,'Both','2300910688',NULL,'Sample Data','Elbert','V','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Terry',NULL,2,'1964-03-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (149,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Iris','Mrs. Iris Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','2441740392',NULL,'Sample Data','Iris','R','Ivanov',1,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Mrs. Iris Ivanov',NULL,1,'1996-06-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (150,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terrell, Teddy','Teddy Terrell',NULL,NULL,NULL,'3',NULL,'Both','829330438',NULL,'Sample Data','Teddy','','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Terrell',NULL,NULL,'2000-08-23',0,NULL,NULL,NULL,'Cadell Technology School',NULL,NULL,130,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (151,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'terrell.q.arlyne@fakemail.org','terrell.q.arlyne@fakemail.org',NULL,NULL,NULL,NULL,NULL,'Both','3054857429',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear terrell.q.arlyne@fakemail.org',1,NULL,'Dear terrell.q.arlyne@fakemail.org',1,NULL,'terrell.q.arlyne@fakemail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,'Edinburg Environmental Collective',NULL,NULL,184,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (152,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Deforest, Rebekah','Dr. Rebekah Deforest',NULL,NULL,NULL,NULL,NULL,'Both','164121561',NULL,'Sample Data','Rebekah','','Deforest',4,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Dr. Rebekah Deforest',NULL,NULL,'1947-05-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (153,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Barry','Mr. Barry Müller',NULL,NULL,NULL,'4',NULL,'Both','1377313598',NULL,'Sample Data','Barry','U','Müller',3,NULL,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Mr. Barry Müller',NULL,2,'1935-09-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (154,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'González, Jed','Dr. Jed González II',NULL,NULL,NULL,'2',NULL,'Both','517806702',NULL,'Sample Data','Jed','','González',4,3,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Dr. Jed González II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (155,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds-Cooper, Irvin','Irvin McReynolds-Cooper Jr.',NULL,NULL,NULL,'4',NULL,'Both','2421928773',NULL,'Sample Data','Irvin','Y','McReynolds-Cooper',NULL,1,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Irvin McReynolds-Cooper Jr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (156,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Irvin','Irvin Zope',NULL,NULL,NULL,NULL,NULL,'Both','1828686361',NULL,'Sample Data','Irvin','','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Irvin Zope',NULL,NULL,'2006-06-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (157,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'McReynolds, Scott','Scott McReynolds Sr.',NULL,NULL,NULL,'5',NULL,'Both','1769704842',NULL,'Sample Data','Scott','','McReynolds',NULL,2,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott McReynolds Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (158,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Laree','Laree Cooper',NULL,NULL,NULL,'4',NULL,'Both','4213061637',NULL,'Sample Data','Laree','E','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Laree Cooper',NULL,1,'1961-05-21',0,NULL,NULL,NULL,'Syracuse Development Services',NULL,NULL,190,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (159,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Hawaii Family Academy','Hawaii Family Academy',NULL,NULL,NULL,'3',NULL,'Both','3438940487',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Hawaii Family Academy',NULL,NULL,NULL,0,NULL,NULL,140,'Hawaii Family Academy',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (160,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jameson, Rosario','Rosario Jameson III',NULL,NULL,NULL,'5',NULL,'Both','1768572446',NULL,'Sample Data','Rosario','','Jameson',NULL,4,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Jameson III',NULL,NULL,'1977-08-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (161,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terry, Iris','Dr. Iris Terry',NULL,NULL,NULL,NULL,NULL,'Both','2685110672',NULL,'Sample Data','Iris','','Terry',4,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Dr. Iris Terry',NULL,1,'1987-06-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (162,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wagner, Landon','Landon Wagner Sr.',NULL,NULL,NULL,'2',NULL,'Both','2517566731',NULL,'Sample Data','Landon','J','Wagner',NULL,2,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Wagner Sr.',NULL,2,'1946-08-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (163,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen family','Jensen family',NULL,NULL,NULL,'2',NULL,'Both','797435572',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jensen family',5,NULL,'Dear Jensen family',2,NULL,'Jensen family',NULL,NULL,NULL,0,NULL,'Jensen family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (164,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'González, Megan','Megan González',NULL,NULL,NULL,NULL,NULL,'Both','558876545',NULL,'Sample Data','Megan','Y','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan González',NULL,1,'1973-04-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (165,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Scott','Dr. Scott Samuels III',NULL,NULL,NULL,NULL,NULL,'Both','3378188824',NULL,'Sample Data','Scott','','Samuels',4,4,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Dr. Scott Samuels III',NULL,2,'1995-10-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (166,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Nielsen, Maxwell','Maxwell Nielsen III',NULL,NULL,NULL,'1',NULL,'Both','1889021515',NULL,'Sample Data','Maxwell','','Nielsen',NULL,4,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Nielsen III',NULL,2,'1999-02-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (167,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'González family','González family',NULL,NULL,NULL,NULL,NULL,'Both','3263723758',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear González family',5,NULL,'Dear González family',2,NULL,'González family',NULL,NULL,NULL,0,NULL,'González family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (168,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'nielsen.d.landon@infomail.org','nielsen.d.landon@infomail.org',NULL,NULL,NULL,NULL,NULL,'Both','3957845928',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear nielsen.d.landon@infomail.org',1,NULL,'Dear nielsen.d.landon@infomail.org',1,NULL,'nielsen.d.landon@infomail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (169,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Laree','Laree Łąchowski',NULL,NULL,NULL,'2',NULL,'Both','938436888',NULL,'Sample Data','Laree','L','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Laree Łąchowski',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (170,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samson, Megan','Megan Samson',NULL,NULL,NULL,NULL,NULL,'Both','4028113417',NULL,'Sample Data','Megan','','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Samson',NULL,NULL,'2007-02-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (171,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav-Dimitrov, Carlos','Carlos Yadav-Dimitrov II',NULL,NULL,NULL,'2',NULL,'Both','117169981',NULL,'Sample Data','Carlos','','Yadav-Dimitrov',NULL,3,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Yadav-Dimitrov II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (172,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz family','Díaz family',NULL,NULL,NULL,'1',NULL,'Both','2169249835',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Díaz family',5,NULL,'Dear Díaz family',2,NULL,'Díaz family',NULL,NULL,NULL,0,NULL,'Díaz family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (173,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jensen, Kathleen','Ms. Kathleen Jensen',NULL,NULL,NULL,'2',NULL,'Both','2413791663',NULL,'Sample Data','Kathleen','','Jensen',2,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Ms. Kathleen Jensen',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (174,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'González, Junko','Mrs. Junko González',NULL,NULL,NULL,'1',NULL,'Both','1095741341',NULL,'Sample Data','Junko','U','González',1,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Mrs. Junko González',NULL,1,NULL,0,NULL,NULL,NULL,'Dowlen Poetry Collective',NULL,NULL,183,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (175,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'McReynolds, Sanford','Sanford McReynolds II',NULL,NULL,NULL,'1',NULL,'Both','3735097811',NULL,'Sample Data','Sanford','Y','McReynolds',NULL,3,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford McReynolds II',NULL,2,'2011-09-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (176,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'djacobs-daz@airmail.com','djacobs-daz@airmail.com',NULL,NULL,NULL,NULL,NULL,'Both','4205905129',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear djacobs-daz@airmail.com',1,NULL,'Dear djacobs-daz@airmail.com',1,NULL,'djacobs-daz@airmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (177,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Louisiana Software Fund','Louisiana Software Fund',NULL,NULL,NULL,'2',NULL,'Both','449741223',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Louisiana Software Fund',NULL,NULL,NULL,0,NULL,NULL,79,'Louisiana Software Fund',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (178,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'González, Kathlyn','Kathlyn González',NULL,NULL,NULL,'2',NULL,'Both','2470134483',NULL,'Sample Data','Kathlyn','','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Kathlyn González',NULL,NULL,'2003-04-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (179,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Kenny','Kenny Samson',NULL,NULL,NULL,NULL,NULL,'Both','1958901038',NULL,'Sample Data','Kenny','M','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Samson',NULL,NULL,'1987-08-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (180,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Ivey','Ivey Cooper',NULL,NULL,NULL,NULL,NULL,'Both','4197158146',NULL,'Sample Data','Ivey','J','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Cooper',NULL,1,'1934-06-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (181,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Rolando','Rolando Reynolds',NULL,NULL,NULL,'3',NULL,'Both','1271547729',NULL,'Sample Data','Rolando','','Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Reynolds',NULL,NULL,'1985-05-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (182,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice family','Prentice family',NULL,NULL,NULL,NULL,NULL,'Both','3313623671',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Prentice family',5,NULL,'Dear Prentice family',2,NULL,'Prentice family',NULL,NULL,NULL,0,NULL,'Prentice family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (183,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Dowlen Poetry Collective','Dowlen Poetry Collective',NULL,NULL,NULL,NULL,NULL,'Both','663324392',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Dowlen Poetry Collective',NULL,NULL,NULL,0,NULL,NULL,174,'Dowlen Poetry Collective',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (184,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Edinburg Environmental Collective','Edinburg Environmental Collective',NULL,NULL,NULL,NULL,NULL,'Both','863593161',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Edinburg Environmental Collective',NULL,NULL,NULL,0,NULL,NULL,151,'Edinburg Environmental Collective',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (185,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'gonzleza@testmail.biz','gonzleza@testmail.biz',NULL,NULL,NULL,NULL,NULL,'Both','4162704626',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear gonzleza@testmail.biz',1,NULL,'Dear gonzleza@testmail.biz',1,NULL,'gonzleza@testmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (186,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'González, Elina','Elina González',NULL,NULL,NULL,'3',NULL,'Both','1905192862',NULL,'Sample Data','Elina','S','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Elina González',NULL,NULL,'1946-10-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (187,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'jayy@mymail.co.uk','jayy@mymail.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','1933452064',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear jayy@mymail.co.uk',1,NULL,'Dear jayy@mymail.co.uk',1,NULL,'jayy@mymail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (188,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Samson, Elizabeth','Ms. Elizabeth Samson',NULL,NULL,NULL,'5',NULL,'Both','2428742753',NULL,'Sample Data','Elizabeth','','Samson',2,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Ms. Elizabeth Samson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (189,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Barry','Barry Adams Sr.',NULL,NULL,NULL,'4',NULL,'Both','1282794695',NULL,'Sample Data','Barry','I','Adams',NULL,2,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Barry Adams Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (190,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Syracuse Development Services','Syracuse Development Services',NULL,NULL,NULL,'1',NULL,'Both','3646899690',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Syracuse Development Services',NULL,NULL,NULL,0,NULL,NULL,158,'Syracuse Development Services',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (191,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Megan','Megan Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','3130984438',NULL,'Sample Data','Megan','C','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Jacobs',NULL,1,'1988-08-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (192,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'patel.ray@testing.co.pl','patel.ray@testing.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','911294092',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear patel.ray@testing.co.pl',1,NULL,'Dear patel.ray@testing.co.pl',1,NULL,'patel.ray@testing.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (193,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Felisha','Mrs. Felisha Lee',NULL,NULL,NULL,NULL,NULL,'Both','1634353334',NULL,'Sample Data','Felisha','','Lee',1,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Mrs. Felisha Lee',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:22'), - (194,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Valene','Valene Deforest',NULL,NULL,NULL,NULL,NULL,'Both','2243502587',NULL,'Sample Data','Valene','','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Valene Deforest',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (195,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav family','Yadav family',NULL,NULL,NULL,'4',NULL,'Both','1777336212',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Yadav family',5,NULL,'Dear Yadav family',2,NULL,'Yadav family',NULL,NULL,NULL,0,NULL,'Yadav family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (196,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Roland','Roland Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','2600465555',NULL,'Sample Data','Roland','','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland Nielsen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (197,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'cooper.l.bob50@infomail.co.uk','cooper.l.bob50@infomail.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','1232810180',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear cooper.l.bob50@infomail.co.uk',1,NULL,'Dear cooper.l.bob50@infomail.co.uk',1,NULL,'cooper.l.bob50@infomail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,'Global Sustainability Academy',NULL,NULL,25,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (198,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav, Errol','Errol Yadav',NULL,NULL,NULL,NULL,NULL,'Both','502679845',NULL,'Sample Data','Errol','V','Yadav',NULL,NULL,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Yadav',NULL,2,'2009-10-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (199,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Friends Music Services','Friends Music Services',NULL,NULL,NULL,NULL,NULL,'Both','2698246175',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Music Services',NULL,NULL,NULL,0,NULL,NULL,20,'Friends Music Services',NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (200,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Reynolds-Cooper family','Reynolds-Cooper family',NULL,NULL,NULL,NULL,NULL,'Both','4164938917',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Reynolds-Cooper family',5,NULL,'Dear Reynolds-Cooper family',2,NULL,'Reynolds-Cooper family',NULL,NULL,NULL,0,NULL,'Reynolds-Cooper family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (201,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'carylonwagner3@lol.biz','carylonwagner3@lol.biz',NULL,NULL,NULL,'3',NULL,'Both','3996253920',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear carylonwagner3@lol.biz',1,NULL,'Dear carylonwagner3@lol.biz',1,NULL,'carylonwagner3@lol.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,'Friends Software Initiative',NULL,NULL,124,0,'2022-10-12 03:42:22','2022-10-12 03:42:23'), - (202,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Jenny','Jenny Lee',NULL,NULL,NULL,NULL,'en_US','Both','f864673edd631b4d0765a38ce1cd5dfa',NULL,NULL,'Jenny',NULL,'Lee',NULL,NULL,NULL,1,1,NULL,'Dear Jenny',1,NULL,'Dear Jenny',1,NULL,'Jenny Lee','Volunteer coordinator',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-12 03:42:24','2022-10-12 03:42:24'); + (1,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Default Organization','Default Organization',NULL,'Default Organization',NULL,NULL,NULL,'Both',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'Default Organization',NULL,NULL,NULL,0,NULL,'2022-10-17 14:12:01'), + (2,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'dimitrov.eleonor@fakemail.org','dimitrov.eleonor@fakemail.org',NULL,NULL,NULL,'1',NULL,'Both','3398332436',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear dimitrov.eleonor@fakemail.org',1,NULL,'Dear dimitrov.eleonor@fakemail.org',1,NULL,'dimitrov.eleonor@fakemail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (3,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Dickinson Literacy Association','Dickinson Literacy Association',NULL,NULL,NULL,'2',NULL,'Both','3882250220',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Dickinson Literacy Association',NULL,NULL,NULL,0,NULL,NULL,NULL,'Dickinson Literacy Association',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (4,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Kandace','Ms. Kandace Bachman',NULL,NULL,NULL,NULL,NULL,'Both','1110048410',NULL,'Sample Data','Kandace','J','Bachman',2,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Ms. Kandace Bachman',NULL,1,'1991-05-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (5,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Brzęczysław','Mr. Brzęczysław Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','1026883277',NULL,'Sample Data','Brzęczysław','D','Jacobs',3,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Mr. Brzęczysław Jacobs',NULL,2,'1996-05-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (6,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Lashawnda','Ms. Lashawnda Samson',NULL,NULL,NULL,NULL,NULL,'Both','1918471490',NULL,'Sample Data','Lashawnda','R','Samson',2,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Ms. Lashawnda Samson',NULL,1,'1973-06-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (7,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Cando Software Solutions','Cando Software Solutions',NULL,NULL,NULL,NULL,NULL,'Both','1976345214',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Cando Software Solutions',NULL,NULL,NULL,0,NULL,NULL,NULL,'Cando Software Solutions',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (8,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Betty','Mrs. Betty Parker',NULL,NULL,NULL,NULL,NULL,'Both','3536451591',NULL,'Sample Data','Betty','M','Parker',1,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Mrs. Betty Parker',NULL,1,'1964-09-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (9,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels-Roberts family','Samuels-Roberts family',NULL,NULL,NULL,'1',NULL,'Both','437959137',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samuels-Roberts family',5,NULL,'Dear Samuels-Roberts family',2,NULL,'Samuels-Roberts family',NULL,NULL,NULL,0,NULL,'Samuels-Roberts family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (10,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Grant, Junko','Junko Grant',NULL,NULL,NULL,NULL,NULL,'Both','1134606119',NULL,'Sample Data','Junko','S','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko Grant',NULL,1,'1992-06-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (11,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Lashawnda','Lashawnda Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','1880205754',NULL,'Sample Data','Lashawnda','J','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Jacobs',NULL,1,'2007-07-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (12,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen-Zope, Kacey','Kacey Jensen-Zope',NULL,NULL,NULL,NULL,NULL,'Both','919657681',NULL,'Sample Data','Kacey','','Jensen-Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Kacey Jensen-Zope',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (13,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Müller-Jensen family','Müller-Jensen family',NULL,NULL,NULL,NULL,NULL,'Both','166343660',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Müller-Jensen family',5,NULL,'Dear Müller-Jensen family',2,NULL,'Müller-Jensen family',NULL,NULL,NULL,0,NULL,'Müller-Jensen family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (14,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Winford','Dr. Winford Yadav II',NULL,NULL,NULL,'3',NULL,'Both','3002231808',NULL,'Sample Data','Winford','Q','Yadav',4,3,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Dr. Winford Yadav II',NULL,NULL,'1956-04-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (15,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wagner, Kenny','Mr. Kenny Wagner',NULL,NULL,NULL,NULL,NULL,'Both','985588638',NULL,'Sample Data','Kenny','J','Wagner',3,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Mr. Kenny Wagner',NULL,2,'1967-02-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (16,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Brzęczysław','Brzęczysław Nielsen Sr.',NULL,NULL,NULL,'5',NULL,'Both','3387173587',NULL,'Sample Data','Brzęczysław','H','Nielsen',NULL,2,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Nielsen Sr.',NULL,2,'1937-07-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (17,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Hatch Family Network','Hatch Family Network',NULL,NULL,NULL,'4',NULL,'Both','2419227744',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Hatch Family Network',NULL,NULL,NULL,0,NULL,NULL,23,'Hatch Family Network',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (18,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Irvin','Irvin Robertson Sr.',NULL,NULL,NULL,NULL,NULL,'Both','3287904826',NULL,'Sample Data','Irvin','','Robertson',NULL,2,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Irvin Robertson Sr.',NULL,2,'2010-03-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (19,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Lashawnda','Mrs. Lashawnda Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','1880205754',NULL,'Sample Data','Lashawnda','S','Jacobs',1,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Mrs. Lashawnda Jacobs',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (20,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Prentice, Maxwell','Maxwell Prentice II',NULL,NULL,NULL,'5',NULL,'Both','1532112278',NULL,'Sample Data','Maxwell','K','Prentice',NULL,3,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Prentice II',NULL,2,'1982-09-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (21,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Kentucky Action Initiative','Kentucky Action Initiative',NULL,NULL,NULL,'4',NULL,'Both','1008702900',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Kentucky Action Initiative',NULL,NULL,NULL,0,NULL,NULL,157,'Kentucky Action Initiative',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (22,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Robertson family','Robertson family',NULL,NULL,NULL,'4',NULL,'Both','3444393980',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Robertson family',5,NULL,'Dear Robertson family',2,NULL,'Robertson family',NULL,NULL,NULL,0,NULL,'Robertson family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (23,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Bachman, Ashlie','Ms. Ashlie Bachman',NULL,NULL,NULL,NULL,NULL,'Both','628441271',NULL,'Sample Data','Ashlie','','Bachman',2,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ms. Ashlie Bachman',NULL,1,NULL,0,NULL,NULL,NULL,'Hatch Family Network',NULL,NULL,17,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (24,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Hamlet Advocacy Association','Hamlet Advocacy Association',NULL,NULL,NULL,'2',NULL,'Both','4262430821',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Hamlet Advocacy Association',NULL,NULL,NULL,0,NULL,NULL,NULL,'Hamlet Advocacy Association',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (25,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson family','Wilson family',NULL,NULL,NULL,'1',NULL,'Both','350510798',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wilson family',5,NULL,'Dear Wilson family',2,NULL,'Wilson family',NULL,NULL,NULL,0,NULL,'Wilson family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (26,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Beech Food Alliance','Beech Food Alliance',NULL,NULL,NULL,NULL,NULL,'Both','419816722',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Beech Food Alliance',NULL,NULL,NULL,0,NULL,NULL,45,'Beech Food Alliance',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (27,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Nicole','Nicole Roberts',NULL,NULL,NULL,'4',NULL,'Both','998604159',NULL,'Sample Data','Nicole','','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Roberts',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (28,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Samson, Kiara','Kiara Samson',NULL,NULL,NULL,'1',NULL,'Both','3226683552',NULL,'Sample Data','Kiara','C','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Samson',NULL,1,'1939-08-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (29,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'yadav.betty@notmail.co.in','yadav.betty@notmail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','1953724538',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear yadav.betty@notmail.co.in',1,NULL,'Dear yadav.betty@notmail.co.in',1,NULL,'yadav.betty@notmail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (30,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Rosario','Dr. Rosario Parker III',NULL,NULL,NULL,'4',NULL,'Both','3409685260',NULL,'Sample Data','Rosario','','Parker',4,4,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Dr. Rosario Parker III',NULL,2,'1947-09-15',0,NULL,NULL,NULL,'Northpoint Action Alliance',NULL,NULL,170,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (31,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Yadav family','Yadav family',NULL,NULL,NULL,NULL,NULL,'Both','1777336212',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Yadav family',5,NULL,'Dear Yadav family',2,NULL,'Yadav family',NULL,NULL,NULL,0,NULL,'Yadav family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (32,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs family','Jacobs family',NULL,NULL,NULL,'1',NULL,'Both','1498986649',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jacobs family',5,NULL,'Dear Jacobs family',2,NULL,'Jacobs family',NULL,NULL,NULL,0,NULL,'Jacobs family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (33,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'rh.dimitrov14@spamalot.co.in','rh.dimitrov14@spamalot.co.in',NULL,NULL,NULL,'3',NULL,'Both','1292675457',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear rh.dimitrov14@spamalot.co.in',1,NULL,'Dear rh.dimitrov14@spamalot.co.in',1,NULL,'rh.dimitrov14@spamalot.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (34,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Jacobs family','Jacobs family',NULL,NULL,NULL,NULL,NULL,'Both','1498986649',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jacobs family',5,NULL,'Dear Jacobs family',2,NULL,'Jacobs family',NULL,NULL,NULL,0,NULL,'Jacobs family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (35,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Scarlet','Ms. Scarlet Zope',NULL,NULL,NULL,NULL,NULL,'Both','3308177981',NULL,'Sample Data','Scarlet','W','Zope',2,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Ms. Scarlet Zope',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (36,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Deforest, Angelika','Mrs. Angelika Deforest',NULL,NULL,NULL,NULL,NULL,'Both','262591803',NULL,'Sample Data','Angelika','','Deforest',1,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Mrs. Angelika Deforest',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (37,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'McReynolds, Brigette','Brigette McReynolds',NULL,NULL,NULL,'4',NULL,'Both','393115724',NULL,'Sample Data','Brigette','','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette McReynolds',NULL,1,'2009-05-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (38,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Rolando','Mr. Rolando Jacobs',NULL,NULL,NULL,'3',NULL,'Both','102389698',NULL,'Sample Data','Rolando','D','Jacobs',3,NULL,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Mr. Rolando Jacobs',NULL,2,'1936-10-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (39,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wattson, Bryon','Dr. Bryon Wattson Sr.',NULL,NULL,NULL,'5',NULL,'Both','2375098324',NULL,'Sample Data','Bryon','','Wattson',4,2,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Dr. Bryon Wattson Sr.',NULL,NULL,'1954-09-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (40,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'robertsonb39@notmail.org','robertsonb39@notmail.org',NULL,NULL,NULL,NULL,NULL,'Both','4025600898',NULL,'Sample Data',NULL,NULL,NULL,3,3,NULL,NULL,1,NULL,'Dear robertsonb39@notmail.org',1,NULL,'Dear robertsonb39@notmail.org',1,NULL,'robertsonb39@notmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (41,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Clint','Dr. Clint Wattson',NULL,NULL,NULL,'3',NULL,'Both','4167597443',NULL,'Sample Data','Clint','S','Wattson',4,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Dr. Clint Wattson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (42,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Wagner family','Wagner family',NULL,NULL,NULL,'3',NULL,'Both','1570966486',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wagner family',5,NULL,'Dear Wagner family',2,NULL,'Wagner family',NULL,NULL,NULL,0,NULL,'Wagner family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (43,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Terry-Nielsen family','Terry-Nielsen family',NULL,NULL,NULL,NULL,NULL,'Both','938189046',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terry-Nielsen family',5,NULL,'Dear Terry-Nielsen family',2,NULL,'Terry-Nielsen family',NULL,NULL,NULL,0,NULL,'Terry-Nielsen family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (44,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Lashawnda','Dr. Lashawnda Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','591811788',NULL,'Sample Data','Lashawnda','A','Nielsen',4,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Dr. Lashawnda Nielsen',NULL,1,'1980-02-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (45,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Sharyn','Sharyn Barkley',NULL,NULL,NULL,NULL,NULL,'Both','3559961136',NULL,'Sample Data','Sharyn','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Barkley',NULL,1,NULL,0,NULL,NULL,NULL,'Beech Food Alliance',NULL,NULL,26,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (46,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Russell','Russell Wattson',NULL,NULL,NULL,'5',NULL,'Both','2184718409',NULL,'Sample Data','Russell','K','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Wattson',NULL,2,'1942-11-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (47,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terry, Shad','Shad Terry',NULL,NULL,NULL,NULL,NULL,'Both','3306428162',NULL,'Sample Data','Shad','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Terry',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (48,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Alexia','Mrs. Alexia Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','393680941',NULL,'Sample Data','Alexia','O','Ivanov',1,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Mrs. Alexia Ivanov',NULL,1,'1936-03-14',1,'2022-06-12',NULL,NULL,'Nebraska Environmental Trust',NULL,NULL,105,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (49,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'McReynolds, Daren','Daren McReynolds',NULL,NULL,NULL,'4',NULL,'Both','2885149914',NULL,'Sample Data','Daren','G','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren McReynolds',NULL,NULL,'1940-11-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (50,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Samuels-Roberts, Miguel','Miguel Samuels-Roberts Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2715061945',NULL,'Sample Data','Miguel','J','Samuels-Roberts',NULL,2,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Samuels-Roberts Sr.',NULL,NULL,'1985-09-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (51,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samuels-Roberts, Margaret','Margaret Samuels-Roberts',NULL,NULL,NULL,'3',NULL,'Both','3526501050',NULL,'Sample Data','Margaret','','Samuels-Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Samuels-Roberts',NULL,1,'2005-10-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (52,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'elizabethcooper@spamalot.biz','elizabethcooper@spamalot.biz',NULL,NULL,NULL,'3',NULL,'Both','2775529473',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear elizabethcooper@spamalot.biz',1,NULL,'Dear elizabethcooper@spamalot.biz',1,NULL,'elizabethcooper@spamalot.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (53,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Lee, Miguel','Miguel Lee',NULL,NULL,NULL,NULL,NULL,'Both','2016060544',NULL,'Sample Data','Miguel','','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Lee',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (54,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Kathleen','Dr. Kathleen Cooper',NULL,NULL,NULL,'2',NULL,'Both','2978095571',NULL,'Sample Data','Kathleen','K','Cooper',4,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Dr. Kathleen Cooper',NULL,1,'1985-08-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (55,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Greenough Sports Trust','Greenough Sports Trust',NULL,NULL,NULL,'3',NULL,'Both','367635129',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Greenough Sports Trust',NULL,NULL,NULL,0,NULL,NULL,NULL,'Greenough Sports Trust',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (56,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Roberts, Sonny','Sonny Roberts',NULL,NULL,NULL,NULL,NULL,'Both','624070005',NULL,'Sample Data','Sonny','O','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Sonny Roberts',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (57,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Merrie','Merrie Lee',NULL,NULL,NULL,'3',NULL,'Both','171642625',NULL,'Sample Data','Merrie','X','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Lee',NULL,NULL,'1999-05-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (58,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'jameson.betty@lol.net','jameson.betty@lol.net',NULL,NULL,NULL,NULL,NULL,'Both','1634930829',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jameson.betty@lol.net',1,NULL,'Dear jameson.betty@lol.net',1,NULL,'jameson.betty@lol.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (59,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jacobs, Bernadette','Bernadette Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','4086516301',NULL,'Sample Data','Bernadette','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Bernadette Jacobs',NULL,NULL,'1994-06-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (60,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Rolando','Dr. Rolando González Jr.',NULL,NULL,NULL,'5',NULL,'Both','4244693395',NULL,'Sample Data','Rolando','C','González',4,1,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Dr. Rolando González Jr.',NULL,2,'1968-08-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (61,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Roberts, Barry','Barry Roberts Sr.',NULL,NULL,NULL,'1',NULL,'Both','1797669693',NULL,'Sample Data','Barry','','Roberts',NULL,2,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Barry Roberts Sr.',NULL,2,NULL,1,'2021-11-09',NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (62,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Florida Agriculture Collective','Florida Agriculture Collective',NULL,NULL,NULL,'4',NULL,'Both','1666555205',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Florida Agriculture Collective',NULL,NULL,NULL,0,NULL,NULL,153,'Florida Agriculture Collective',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (63,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'robertson.g.omar@notmail.com','robertson.g.omar@notmail.com',NULL,NULL,NULL,'2',NULL,'Both','490270049',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear robertson.g.omar@notmail.com',1,NULL,'Dear robertson.g.omar@notmail.com',1,NULL,'robertson.g.omar@notmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (64,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Jina','Dr. Jina Wilson',NULL,NULL,NULL,'4',NULL,'Both','198440520',NULL,'Sample Data','Jina','A','Wilson',4,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Dr. Jina Wilson',NULL,1,'1987-05-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (65,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Jensen, Kathleen','Kathleen Jensen',NULL,NULL,NULL,NULL,NULL,'Both','2413791663',NULL,'Sample Data','Kathleen','D','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Kathleen Jensen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (66,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Mount Airy Environmental Partnership','Mount Airy Environmental Partnership',NULL,NULL,NULL,'2',NULL,'Both','2657495380',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Mount Airy Environmental Partnership',NULL,NULL,NULL,0,NULL,NULL,115,'Mount Airy Environmental Partnership',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (67,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller-Jensen, Erik','Erik Müller-Jensen Sr.',NULL,NULL,NULL,'5',NULL,'Both','1428853574',NULL,'Sample Data','Erik','','Müller-Jensen',NULL,2,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Müller-Jensen Sr.',NULL,2,'1984-09-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (68,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'barkley.q.carylon@mymail.com','barkley.q.carylon@mymail.com',NULL,NULL,NULL,NULL,NULL,'Both','1468776027',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear barkley.q.carylon@mymail.com',1,NULL,'Dear barkley.q.carylon@mymail.com',1,NULL,'barkley.q.carylon@mymail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (69,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'dimitrov.claudio@testing.biz','dimitrov.claudio@testing.biz',NULL,NULL,NULL,'5',NULL,'Both','1496537463',NULL,'Sample Data',NULL,NULL,NULL,3,4,NULL,NULL,1,NULL,'Dear dimitrov.claudio@testing.biz',1,NULL,'Dear dimitrov.claudio@testing.biz',1,NULL,'dimitrov.claudio@testing.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (70,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Müller-Jensen, Valene','Valene Müller-Jensen',NULL,NULL,NULL,'1',NULL,'Both','3608739337',NULL,'Sample Data','Valene','','Müller-Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Valene Müller-Jensen',NULL,1,'1986-08-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (71,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Lee family','Lee family',NULL,NULL,NULL,'4',NULL,'Both','845831176',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Lee family',5,NULL,'Dear Lee family',2,NULL,'Lee family',NULL,NULL,NULL,0,NULL,'Lee family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (72,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav, Justina','Dr. Justina Yadav',NULL,NULL,NULL,NULL,NULL,'Both','807357097',NULL,'Sample Data','Justina','N','Yadav',4,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Dr. Justina Yadav',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (73,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams, Rosario','Rosario Adams',NULL,NULL,NULL,NULL,NULL,'Both','628774619',NULL,'Sample Data','Rosario','O','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Adams',NULL,NULL,'1992-05-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (74,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov-Lee, Esta','Esta Ivanov-Lee',NULL,NULL,NULL,'5',NULL,'Both','1799004874',NULL,'Sample Data','Esta','','Ivanov-Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Esta Ivanov-Lee',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (75,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Lee, Magan','Magan Lee',NULL,NULL,NULL,NULL,NULL,'Both','1590654000',NULL,'Sample Data','Magan','','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Lee',NULL,1,'1946-04-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (76,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Kacey','Kacey Wagner',NULL,NULL,NULL,'1',NULL,'Both','1592802897',NULL,'Sample Data','Kacey','S','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Kacey Wagner',NULL,1,'2002-12-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (77,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terry, Maxwell','Maxwell Terry',NULL,NULL,NULL,'2',NULL,'Both','528410264',NULL,'Sample Data','Maxwell','R','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Terry',NULL,2,'1986-05-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (78,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Bob','Dr. Bob Roberts',NULL,NULL,NULL,'3',NULL,'Both','1182740119',NULL,'Sample Data','Bob','','Roberts',4,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Dr. Bob Roberts',NULL,2,'1993-06-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (79,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samuels, Allan','Mr. Allan Samuels',NULL,NULL,NULL,NULL,NULL,'Both','1133078427',NULL,'Sample Data','Allan','','Samuels',3,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Mr. Allan Samuels',NULL,NULL,'1959-07-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (80,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'jacobb@notmail.co.in','jacobb@notmail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','3329028433',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jacobb@notmail.co.in',1,NULL,'Dear jacobb@notmail.co.in',1,NULL,'jacobb@notmail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (81,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jameson, Brent','Dr. Brent Jameson',NULL,NULL,NULL,NULL,NULL,'Both','1398082986',NULL,'Sample Data','Brent','','Jameson',4,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Dr. Brent Jameson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (82,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Landon','Landon Terry',NULL,NULL,NULL,'3',NULL,'Both','530631152',NULL,'Sample Data','Landon','J','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Terry',NULL,2,'2007-07-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (83,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'terry.bob@fakemail.co.in','terry.bob@fakemail.co.in',NULL,NULL,NULL,'2',NULL,'Both','3240177931',NULL,'Sample Data',NULL,NULL,NULL,3,4,NULL,NULL,1,NULL,'Dear terry.bob@fakemail.co.in',1,NULL,'Dear terry.bob@fakemail.co.in',1,NULL,'terry.bob@fakemail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (84,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper family','Cooper family',NULL,NULL,NULL,NULL,NULL,'Both','1133003930',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper family',5,NULL,'Dear Cooper family',2,NULL,'Cooper family',NULL,NULL,NULL,0,NULL,'Cooper family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (85,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terry-Nielsen, Scarlet','Mrs. Scarlet Terry-Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','207621507',NULL,'Sample Data','Scarlet','','Terry-Nielsen',1,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Mrs. Scarlet Terry-Nielsen',NULL,1,'1998-04-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (86,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson family','Jameson family',NULL,NULL,NULL,NULL,NULL,'Both','2255649769',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson family',5,NULL,'Dear Jameson family',2,NULL,'Jameson family',NULL,NULL,NULL,0,NULL,'Jameson family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (87,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Toby','Dr. Toby Terry Jr.',NULL,NULL,NULL,NULL,NULL,'Both','363267620',NULL,'Sample Data','Toby','','Terry',4,1,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Dr. Toby Terry Jr.',NULL,2,'1947-03-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (88,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Zope family','Zope family',NULL,NULL,NULL,NULL,NULL,'Both','1649131487',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Zope family',5,NULL,'Dear Zope family',2,NULL,'Zope family',NULL,NULL,NULL,0,NULL,'Zope family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (89,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jones, Angelika','Dr. Angelika Jones',NULL,NULL,NULL,'4',NULL,'Both','2752368392',NULL,'Sample Data','Angelika','','Jones',4,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Dr. Angelika Jones',NULL,NULL,'1997-04-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (90,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Elina','Mrs. Elina Terry',NULL,NULL,NULL,NULL,NULL,'Both','2453833535',NULL,'Sample Data','Elina','','Terry',1,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Mrs. Elina Terry',NULL,NULL,'1990-10-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (91,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Parker, Jackson','Mr. Jackson Parker Jr.',NULL,NULL,NULL,'3',NULL,'Both','2328007188',NULL,'Sample Data','Jackson','','Parker',3,1,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Mr. Jackson Parker Jr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (92,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Terry family','Terry family',NULL,NULL,NULL,NULL,NULL,'Both','558108751',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terry family',5,NULL,'Dear Terry family',2,NULL,'Terry family',NULL,NULL,NULL,0,NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (93,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Alida','Alida Deforest',NULL,NULL,NULL,NULL,NULL,'Both','2092838501',NULL,'Sample Data','Alida','R','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Deforest',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (94,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'robertson.w.kenny@notmail.co.in','robertson.w.kenny@notmail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','1142436024',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear robertson.w.kenny@notmail.co.in',1,NULL,'Dear robertson.w.kenny@notmail.co.in',1,NULL,'robertson.w.kenny@notmail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (95,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Truman','Truman Jameson Jr.',NULL,NULL,NULL,NULL,NULL,'Both','4265431677',NULL,'Sample Data','Truman','T','Jameson',NULL,1,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Jameson Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (96,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'jacobs.herminia30@notmail.co.nz','jacobs.herminia30@notmail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','1168092985',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jacobs.herminia30@notmail.co.nz',1,NULL,'Dear jacobs.herminia30@notmail.co.nz',1,NULL,'jacobs.herminia30@notmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (97,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'alidaw24@fakemail.com','alidaw24@fakemail.com',NULL,NULL,NULL,'2',NULL,'Both','44641400',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear alidaw24@fakemail.com',1,NULL,'Dear alidaw24@fakemail.com',1,NULL,'alidaw24@fakemail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (98,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'eleonorwattson@infomail.co.nz','eleonorwattson@infomail.co.nz',NULL,NULL,NULL,'5',NULL,'Both','1692885952',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear eleonorwattson@infomail.co.nz',1,NULL,'Dear eleonorwattson@infomail.co.nz',1,NULL,'eleonorwattson@infomail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (99,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terry-Nielsen, Carylon','Carylon Terry-Nielsen',NULL,NULL,NULL,'4',NULL,'Both','3518647269',NULL,'Sample Data','Carylon','','Terry-Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Terry-Nielsen',NULL,1,'2010-04-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (100,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Deforest, Brzęczysław','Brzęczysław Deforest III',NULL,NULL,NULL,NULL,NULL,'Both','5133953',NULL,'Sample Data','Brzęczysław','Y','Deforest',NULL,4,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Deforest III',NULL,2,'1980-12-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (101,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Barkley, Sanford','Sanford Barkley',NULL,NULL,NULL,'1',NULL,'Both','975752860',NULL,'Sample Data','Sanford','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Barkley',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (102,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper, Miguel','Mr. Miguel Cooper',NULL,NULL,NULL,'5',NULL,'Both','1717220592',NULL,'Sample Data','Miguel','','Cooper',3,NULL,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Mr. Miguel Cooper',NULL,NULL,'1986-01-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (103,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Wattson family','Wattson family',NULL,NULL,NULL,NULL,NULL,'Both','2851339192',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wattson family',5,NULL,'Dear Wattson family',2,NULL,'Wattson family',NULL,NULL,NULL,0,NULL,'Wattson family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (104,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Russell','Dr. Russell Parker Jr.',NULL,NULL,NULL,'3',NULL,'Both','1852900847',NULL,'Sample Data','Russell','J','Parker',4,1,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Dr. Russell Parker Jr.',NULL,2,'1982-11-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (105,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Nebraska Environmental Trust','Nebraska Environmental Trust',NULL,NULL,NULL,'4',NULL,'Both','3783776320',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Nebraska Environmental Trust',NULL,NULL,NULL,0,NULL,NULL,48,'Nebraska Environmental Trust',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (106,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Zope, Jerome','Dr. Jerome Zope II',NULL,NULL,NULL,NULL,NULL,'Both','2135665674',NULL,'Sample Data','Jerome','','Zope',4,3,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Dr. Jerome Zope II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (107,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Wattson, Ashlie','Ashlie Wattson',NULL,NULL,NULL,'4',NULL,'Both','1891614450',NULL,'Sample Data','Ashlie','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Wattson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (108,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jameson, Margaret','Margaret Jameson',NULL,NULL,NULL,'2',NULL,'Both','1719938872',NULL,'Sample Data','Margaret','','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Jameson',NULL,1,'1971-05-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (109,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Second Advocacy Association','Second Advocacy Association',NULL,NULL,NULL,'1',NULL,'Both','1000089796',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Second Advocacy Association',NULL,NULL,NULL,0,NULL,NULL,193,'Second Advocacy Association',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (110,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Lee, Brittney','Dr. Brittney Lee',NULL,NULL,NULL,'3',NULL,'Both','3389044185',NULL,'Sample Data','Brittney','E','Lee',4,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Dr. Brittney Lee',NULL,1,'1980-03-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (111,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Jackson','Jackson Müller',NULL,NULL,NULL,NULL,NULL,'Both','2768075849',NULL,'Sample Data','Jackson','X','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Jackson Müller',NULL,2,'1986-05-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (112,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Patel, Toby','Mr. Toby Patel Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2618763021',NULL,'Sample Data','Toby','B','Patel',3,2,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Mr. Toby Patel Sr.',NULL,2,'1957-05-31',0,NULL,NULL,NULL,'Hughesville Advocacy Solutions',NULL,NULL,133,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (113,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Barkley family','Barkley family',NULL,NULL,NULL,'5',NULL,'Both','2888062109',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Barkley family',5,NULL,'Dear Barkley family',2,NULL,'Barkley family',NULL,NULL,NULL,0,NULL,'Barkley family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (114,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Perryman Advocacy Association','Perryman Advocacy Association',NULL,NULL,NULL,NULL,NULL,'Both','4207928892',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Perryman Advocacy Association',NULL,NULL,NULL,0,NULL,NULL,181,'Perryman Advocacy Association',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (115,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Troy','Troy Jameson Sr.',NULL,NULL,NULL,NULL,NULL,'Both','3854208942',NULL,'Sample Data','Troy','R','Jameson',NULL,2,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Jameson Sr.',NULL,NULL,'2007-11-01',0,NULL,NULL,NULL,'Mount Airy Environmental Partnership',NULL,NULL,66,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (116,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Kenny','Mr. Kenny Blackwell',NULL,NULL,NULL,'3',NULL,'Both','3636820526',NULL,'Sample Data','Kenny','','Blackwell',3,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Mr. Kenny Blackwell',NULL,2,'1947-04-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (117,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Magan','Dr. Magan Jameson',NULL,NULL,NULL,'5',NULL,'Both','3939980241',NULL,'Sample Data','Magan','','Jameson',4,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Dr. Magan Jameson',NULL,NULL,'1994-02-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (118,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terry, Jina','Jina Terry',NULL,NULL,NULL,'1',NULL,'Both','506826080',NULL,'Sample Data','Jina','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Terry',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (119,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson family','Jameson family',NULL,NULL,NULL,'3',NULL,'Both','2255649769',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson family',5,NULL,'Dear Jameson family',2,NULL,'Jameson family',NULL,NULL,NULL,0,NULL,'Jameson family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (120,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Junko','Junko Wagner',NULL,NULL,NULL,NULL,NULL,'Both','3731152037',NULL,'Sample Data','Junko','L','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko Wagner',NULL,1,'1963-12-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (121,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'McReynolds, Kathleen','Kathleen McReynolds',NULL,NULL,NULL,'1',NULL,'Both','3353878517',NULL,'Sample Data','Kathleen','V','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Kathleen McReynolds',NULL,1,'1960-08-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (122,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'jameson.sanford@lol.co.pl','jameson.sanford@lol.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','3955146633',NULL,'Sample Data',NULL,NULL,NULL,4,4,NULL,NULL,1,NULL,'Dear jameson.sanford@lol.co.pl',1,NULL,'Dear jameson.sanford@lol.co.pl',1,NULL,'jameson.sanford@lol.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (123,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Zope, Rolando','Dr. Rolando Zope Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1046286833',NULL,'Sample Data','Rolando','','Zope',4,2,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Dr. Rolando Zope Sr.',NULL,NULL,'1988-05-21',0,NULL,NULL,NULL,'Rural Development Services',NULL,NULL,154,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (124,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Dorton Arts Alliance','Dorton Arts Alliance',NULL,NULL,NULL,NULL,NULL,'Both','3684772536',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Dorton Arts Alliance',NULL,NULL,NULL,0,NULL,NULL,169,'Dorton Arts Alliance',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (125,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Carylon','Carylon Jameson',NULL,NULL,NULL,'4',NULL,'Both','232914878',NULL,'Sample Data','Carylon','','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Jameson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (126,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Toby','Toby Dimitrov Sr.',NULL,NULL,NULL,'2',NULL,'Both','4067537771',NULL,'Sample Data','Toby','C','Dimitrov',NULL,2,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Toby Dimitrov Sr.',NULL,2,'1944-09-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (127,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Barkley, Mei','Mei Barkley',NULL,NULL,NULL,NULL,NULL,'Both','2552189741',NULL,'Sample Data','Mei','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei Barkley',NULL,NULL,'2006-11-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (128,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wattson, Ivey','Dr. Ivey Wattson',NULL,NULL,NULL,NULL,NULL,'Both','1423152774',NULL,'Sample Data','Ivey','G','Wattson',4,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Dr. Ivey Wattson',NULL,1,'1971-07-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (129,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Robertson, Allen','Mr. Allen Robertson',NULL,NULL,NULL,NULL,NULL,'Both','4266356989',NULL,'Sample Data','Allen','X','Robertson',3,NULL,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Mr. Allen Robertson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (130,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Elina','Elina Wilson',NULL,NULL,NULL,NULL,NULL,'Both','2816657854',NULL,'Sample Data','Elina','S','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Elina Wilson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (131,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson, Sharyn','Dr. Sharyn Jameson',NULL,NULL,NULL,NULL,NULL,'Both','2205307194',NULL,'Sample Data','Sharyn','E','Jameson',4,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Dr. Sharyn Jameson',NULL,NULL,'1989-05-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (132,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Smith, Allan','Allan Smith',NULL,NULL,NULL,'3',NULL,'Both','2754664608',NULL,'Sample Data','Allan','','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Smith',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (133,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Hughesville Advocacy Solutions','Hughesville Advocacy Solutions',NULL,NULL,NULL,NULL,NULL,'Both','480447517',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Hughesville Advocacy Solutions',NULL,NULL,NULL,0,NULL,NULL,112,'Hughesville Advocacy Solutions',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (134,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'brentc@example.co.pl','brentc@example.co.pl',NULL,NULL,NULL,'1',NULL,'Both','1024550908',NULL,'Sample Data',NULL,NULL,NULL,NULL,3,NULL,NULL,1,NULL,'Dear brentc@example.co.pl',1,NULL,'Dear brentc@example.co.pl',1,NULL,'brentc@example.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (135,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'bryonw@mymail.net','bryonw@mymail.net',NULL,NULL,NULL,'3',NULL,'Both','3461425443',NULL,'Sample Data',NULL,NULL,NULL,3,3,NULL,NULL,1,NULL,'Dear bryonw@mymail.net',1,NULL,'Dear bryonw@mymail.net',1,NULL,'bryonw@mymail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (136,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Ivanov, Bryon','Bryon Ivanov Sr.',NULL,NULL,NULL,NULL,NULL,'Both','3060862852',NULL,'Sample Data','Bryon','','Ivanov',NULL,2,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Ivanov Sr.',NULL,NULL,'1955-06-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (137,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Sharyn','Sharyn Jameson',NULL,NULL,NULL,'4',NULL,'Both','2205307194',NULL,'Sample Data','Sharyn','','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Jameson',NULL,1,'1952-12-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (138,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Brent','Brent Zope Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3077360028',NULL,'Sample Data','Brent','Q','Zope',NULL,1,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Zope Jr.',NULL,NULL,'2007-10-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (139,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Santina','Santina Patel',NULL,NULL,NULL,'3',NULL,'Both','3765825557',NULL,'Sample Data','Santina','A','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Patel',NULL,NULL,'1939-01-04',1,'2022-06-06',NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (140,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Florida Culture Fund','Florida Culture Fund',NULL,NULL,NULL,NULL,NULL,'Both','4024751189',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Florida Culture Fund',NULL,NULL,NULL,0,NULL,NULL,NULL,'Florida Culture Fund',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (141,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Díaz, Heidi','Mrs. Heidi Díaz',NULL,NULL,NULL,'2',NULL,'Both','1139170520',NULL,'Sample Data','Heidi','P','Díaz',1,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Mrs. Heidi Díaz',NULL,1,'1971-08-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (142,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terrell, Billy','Mr. Billy Terrell',NULL,NULL,NULL,'2',NULL,'Both','1389531692',NULL,'Sample Data','Billy','A','Terrell',3,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Mr. Billy Terrell',NULL,2,'1961-12-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (143,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Landon','Landon Grant',NULL,NULL,NULL,NULL,NULL,'Both','2502173548',NULL,'Sample Data','Landon','','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Grant',NULL,NULL,'1942-06-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (144,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wagner-Robertson, Kiara','Kiara Wagner-Robertson',NULL,NULL,NULL,NULL,NULL,'Both','1052181395',NULL,'Sample Data','Kiara','','Wagner-Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Wagner-Robertson',NULL,1,'1978-06-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (145,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Roberts, Jay','Jay Roberts Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1552587597',NULL,'Sample Data','Jay','','Roberts',NULL,1,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Roberts Jr.',NULL,2,'1954-11-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (146,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Main Environmental Fund','Main Environmental Fund',NULL,NULL,NULL,'1',NULL,'Both','2574714516',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Main Environmental Fund',NULL,NULL,NULL,0,NULL,NULL,155,'Main Environmental Fund',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (147,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Truman','Truman Blackwell Jr.',NULL,NULL,NULL,'1',NULL,'Both','2198038053',NULL,'Sample Data','Truman','I','Blackwell',NULL,1,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Blackwell Jr.',NULL,NULL,'1972-03-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (148,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Grant, Scarlet','Mrs. Scarlet Grant',NULL,NULL,NULL,'2',NULL,'Both','188081876',NULL,'Sample Data','Scarlet','C','Grant',1,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Mrs. Scarlet Grant',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (149,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Jina','Jina Cooper',NULL,NULL,NULL,'3',NULL,'Both','259819324',NULL,'Sample Data','Jina','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Cooper',NULL,1,'1970-11-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (150,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Idaho Technology Partners','Idaho Technology Partners',NULL,NULL,NULL,NULL,NULL,'Both','3743943578',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Idaho Technology Partners',NULL,NULL,NULL,0,NULL,NULL,201,'Idaho Technology Partners',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (151,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Łąchowski, Miguel','Dr. Miguel Łąchowski',NULL,NULL,NULL,'4',NULL,'Both','93333880',NULL,'Sample Data','Miguel','W','Łąchowski',4,NULL,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Dr. Miguel Łąchowski',NULL,NULL,'1942-08-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (152,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terrell, Brzęczysław','Brzęczysław Terrell',NULL,NULL,NULL,'1',NULL,'Both','2155865046',NULL,'Sample Data','Brzęczysław','','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Terrell',NULL,2,'1941-03-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (153,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Junko','Junko Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','1008682261',NULL,'Sample Data','Junko','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko Blackwell',NULL,1,'1990-04-02',0,NULL,NULL,NULL,'Florida Agriculture Collective',NULL,NULL,62,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (154,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Rural Development Services','Rural Development Services',NULL,NULL,NULL,NULL,NULL,'Both','1857997574',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rural Development Services',NULL,NULL,NULL,0,NULL,NULL,123,'Rural Development Services',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (155,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Arlyne','Arlyne Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','3683142740',NULL,'Sample Data','Arlyne','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Jacobs',NULL,1,'1986-04-11',0,NULL,NULL,NULL,'Main Environmental Fund',NULL,NULL,146,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (156,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'McReynolds, Bryon','Bryon McReynolds Jr.',NULL,NULL,NULL,'3',NULL,'Both','2426531424',NULL,'Sample Data','Bryon','','McReynolds',NULL,1,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon McReynolds Jr.',NULL,2,'1986-04-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (157,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Parker, Elina','Ms. Elina Parker',NULL,NULL,NULL,NULL,NULL,'Both','2858301747',NULL,'Sample Data','Elina','X','Parker',2,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Ms. Elina Parker',NULL,1,'1995-09-14',0,NULL,NULL,NULL,'Kentucky Action Initiative',NULL,NULL,21,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (158,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Ivanov, Rodrigo','Mr. Rodrigo Ivanov III',NULL,NULL,NULL,NULL,NULL,'Both','2665620102',NULL,'Sample Data','Rodrigo','','Ivanov',3,4,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Mr. Rodrigo Ivanov III',NULL,2,'1958-06-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (159,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Scott','Scott Grant',NULL,NULL,NULL,'3',NULL,'Both','501213138',NULL,'Sample Data','Scott','','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Grant',NULL,NULL,'1958-12-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (160,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'patel.herminia@testing.com','patel.herminia@testing.com',NULL,NULL,NULL,'2',NULL,'Both','3581363241',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear patel.herminia@testing.com',1,NULL,'Dear patel.herminia@testing.com',1,NULL,'patel.herminia@testing.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (161,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'ivanov.felisha35@notmail.co.nz','ivanov.felisha35@notmail.co.nz',NULL,NULL,NULL,'1',NULL,'Both','1046738703',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear ivanov.felisha35@notmail.co.nz',1,NULL,'Dear ivanov.felisha35@notmail.co.nz',1,NULL,'ivanov.felisha35@notmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (162,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'McReynolds family','McReynolds family',NULL,NULL,NULL,'2',NULL,'Both','3032680972',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear McReynolds family',5,NULL,'Dear McReynolds family',2,NULL,'McReynolds family',NULL,NULL,NULL,0,NULL,'McReynolds family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (163,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Brent','Mr. Brent Wagner',NULL,NULL,NULL,NULL,NULL,'Both','2290384277',NULL,'Sample Data','Brent','','Wagner',3,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Mr. Brent Wagner',NULL,2,'1973-05-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (164,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jensen, Beula','Ms. Beula Jensen',NULL,NULL,NULL,NULL,NULL,'Both','1956895432',NULL,'Sample Data','Beula','B','Jensen',2,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Ms. Beula Jensen',NULL,1,'1989-11-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (165,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Maxwell','Maxwell Wattson',NULL,NULL,NULL,'3',NULL,'Both','1935352485',NULL,'Sample Data','Maxwell','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Wattson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (166,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Ivey','Ivey Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','4026790678',NULL,'Sample Data','Ivey','C','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Jacobs',NULL,1,'1999-10-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (167,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Brzęczysław','Mr. Brzęczysław Yadav',NULL,NULL,NULL,NULL,NULL,'Both','2171812768',NULL,'Sample Data','Brzęczysław','Z','Yadav',3,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Mr. Brzęczysław Yadav',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (168,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terry, Sherman','Sherman Terry',NULL,NULL,NULL,NULL,NULL,'Both','4119706907',NULL,'Sample Data','Sherman','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Sherman Terry',NULL,2,'1974-10-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (169,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terrell, Sherman','Dr. Sherman Terrell',NULL,NULL,NULL,'4',NULL,'Both','470401788',NULL,'Sample Data','Sherman','','Terrell',4,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Dr. Sherman Terrell',NULL,NULL,'1959-07-11',0,NULL,NULL,NULL,'Dorton Arts Alliance',NULL,NULL,124,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (170,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Northpoint Action Alliance','Northpoint Action Alliance',NULL,NULL,NULL,NULL,NULL,'Both','1773883354',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Northpoint Action Alliance',NULL,NULL,NULL,0,NULL,NULL,30,'Northpoint Action Alliance',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (171,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Terry, Angelika','Angelika Terry',NULL,NULL,NULL,'5',NULL,'Both','1807339903',NULL,'Sample Data','Angelika','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Terry',NULL,1,'1957-04-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (172,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'damarist57@infomail.com','damarist57@infomail.com',NULL,NULL,NULL,NULL,NULL,'Both','616183285',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear damarist57@infomail.com',1,NULL,'Dear damarist57@infomail.com',1,NULL,'damarist57@infomail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (173,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav, Sherman','Mr. Sherman Yadav',NULL,NULL,NULL,'2',NULL,'Both','2817791629',NULL,'Sample Data','Sherman','','Yadav',3,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Mr. Sherman Yadav',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (174,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'McReynolds, Santina','Santina McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','3055639463',NULL,'Sample Data','Santina','B','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina McReynolds',NULL,1,'1977-09-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (175,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Ray','Mr. Ray Wilson',NULL,NULL,NULL,NULL,NULL,'Both','1585243279',NULL,'Sample Data','Ray','','Wilson',3,NULL,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Mr. Ray Wilson',NULL,2,'1964-04-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (176,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'jacobs.maxwell37@notmail.co.nz','jacobs.maxwell37@notmail.co.nz',NULL,NULL,NULL,'3',NULL,'Both','281909830',NULL,'Sample Data',NULL,NULL,NULL,3,2,NULL,NULL,1,NULL,'Dear jacobs.maxwell37@notmail.co.nz',1,NULL,'Dear jacobs.maxwell37@notmail.co.nz',1,NULL,'jacobs.maxwell37@notmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (177,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Kathleen','Ms. Kathleen Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','2975176950',NULL,'Sample Data','Kathleen','Z','Blackwell',2,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Ms. Kathleen Blackwell',NULL,1,NULL,0,NULL,NULL,NULL,'Dowlen Health Center',NULL,NULL,180,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (178,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Arlyne','Ms. Arlyne Łąchowski',NULL,NULL,NULL,'4',NULL,'Both','558977178',NULL,'Sample Data','Arlyne','','Łąchowski',2,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Ms. Arlyne Łąchowski',NULL,1,'1951-02-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (179,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Roberts, Justina','Dr. Justina Roberts',NULL,NULL,NULL,'3',NULL,'Both','2863328604',NULL,'Sample Data','Justina','F','Roberts',4,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Dr. Justina Roberts',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (180,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Dowlen Health Center','Dowlen Health Center',NULL,NULL,NULL,'1',NULL,'Both','700818366',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Dowlen Health Center',NULL,NULL,NULL,0,NULL,NULL,177,'Dowlen Health Center',NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (181,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Landon','Dr. Landon Lee Jr.',NULL,NULL,NULL,'4',NULL,'Both','4144706447',NULL,'Sample Data','Landon','','Lee',4,1,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Dr. Landon Lee Jr.',NULL,2,'1940-04-07',0,NULL,NULL,NULL,'Perryman Advocacy Association',NULL,NULL,114,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (182,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Eleonor','Eleonor Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','2341250254',NULL,'Sample Data','Eleonor','B','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor Ivanov',NULL,NULL,'1984-11-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (183,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'ryadav73@sample.info','ryadav73@sample.info',NULL,NULL,NULL,'1',NULL,'Both','2347640070',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear ryadav73@sample.info',1,NULL,'Dear ryadav73@sample.info',1,NULL,'ryadav73@sample.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (184,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Parker family','Parker family',NULL,NULL,NULL,'5',NULL,'Both','425242179',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Parker family',5,NULL,'Dear Parker family',2,NULL,'Parker family',NULL,NULL,NULL,0,NULL,'Parker family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (185,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jones, Craig','Dr. Craig Jones',NULL,NULL,NULL,'2',NULL,'Both','1719665673',NULL,'Sample Data','Craig','G','Jones',4,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Dr. Craig Jones',NULL,NULL,'1968-02-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (186,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'zope.lashawnda@infomail.co.in','zope.lashawnda@infomail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','72700877',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear zope.lashawnda@infomail.co.in',1,NULL,'Dear zope.lashawnda@infomail.co.in',1,NULL,'zope.lashawnda@infomail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (187,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Allen','Allen Jameson',NULL,NULL,NULL,'1',NULL,'Both','3044297960',NULL,'Sample Data','Allen','','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Allen Jameson',NULL,NULL,'1949-09-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (188,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Terry family','Terry family',NULL,NULL,NULL,NULL,NULL,'Both','558108751',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terry family',5,NULL,'Dear Terry family',2,NULL,'Terry family',NULL,NULL,NULL,0,NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (189,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Princess','Princess Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','4281935840',NULL,'Sample Data','Princess','','Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Dimitrov',NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (190,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Omar','Omar Jacobs Jr.',NULL,NULL,NULL,NULL,NULL,'Both','916847831',NULL,'Sample Data','Omar','Q','Jacobs',NULL,1,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Omar Jacobs Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (191,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen-Parker, Angelika','Dr. Angelika Jensen-Parker',NULL,NULL,NULL,NULL,NULL,'Both','875723180',NULL,'Sample Data','Angelika','C','Jensen-Parker',4,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Dr. Angelika Jensen-Parker',NULL,1,'1969-08-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (192,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jensen, Ashley','Ashley Jensen',NULL,NULL,NULL,NULL,NULL,'Both','3241907591',NULL,'Sample Data','Ashley','C','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Jensen',NULL,NULL,'1953-01-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (193,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'megann@spamalot.co.nz','megann@spamalot.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','780120576',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear megann@spamalot.co.nz',1,NULL,'Dear megann@spamalot.co.nz',1,NULL,'megann@spamalot.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,'Second Advocacy Association',NULL,NULL,109,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (194,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Kiara','Dr. Kiara Deforest',NULL,NULL,NULL,NULL,NULL,'Both','324739737',NULL,'Sample Data','Kiara','','Deforest',4,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Dr. Kiara Deforest',NULL,1,'1939-03-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (195,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Winford','Winford Wilson II',NULL,NULL,NULL,'5',NULL,'Both','1400321963',NULL,'Sample Data','Winford','','Wilson',NULL,3,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Wilson II',NULL,2,'2005-09-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (196,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Rosario','Rosario Zope Jr.',NULL,NULL,NULL,NULL,NULL,'Both','2088711675',NULL,'Sample Data','Rosario','Q','Zope',NULL,1,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Zope Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:04'), + (197,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'mcreynoldst@fishmail.com','mcreynoldst@fishmail.com',NULL,NULL,NULL,NULL,NULL,'Both','1219870778',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear mcreynoldst@fishmail.com',1,NULL,'Dear mcreynoldst@fishmail.com',1,NULL,'mcreynoldst@fishmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (198,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Roberts, Irvin','Irvin Roberts',NULL,NULL,NULL,NULL,NULL,'Both','1941335260',NULL,'Sample Data','Irvin','S','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Irvin Roberts',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (199,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Brittney','Brittney Bachman',NULL,NULL,NULL,'2',NULL,'Both','2965404429',NULL,'Sample Data','Brittney','F','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Bachman',NULL,1,'1941-04-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (200,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Brzęczysław','Brzęczysław Lee',NULL,NULL,NULL,NULL,NULL,'Both','2392926300',NULL,'Sample Data','Brzęczysław','','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Lee',NULL,2,'1990-01-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (201,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Beula','Mrs. Beula Cooper',NULL,NULL,NULL,'4',NULL,'Both','413956326',NULL,'Sample Data','Beula','P','Cooper',1,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Mrs. Beula Cooper',NULL,1,'1987-02-07',0,NULL,NULL,NULL,'Idaho Technology Partners',NULL,NULL,150,0,'2022-10-17 14:12:04','2022-10-17 14:12:05'), + (202,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Jenny','Jenny Lee',NULL,NULL,NULL,NULL,'en_US','Both','98626fa9bd308071fbf969f415791833',NULL,NULL,'Jenny',NULL,'Lee',NULL,NULL,NULL,1,1,NULL,'Dear Jenny',1,NULL,'Dear Jenny',1,NULL,'Jenny Lee','Volunteer coordinator',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2022-10-17 14:12:06','2022-10-17 14:12:06'); /*!40000 ALTER TABLE `civicrm_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -2291,117 +2303,117 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution` WRITE; /*!40000 ALTER TABLE `civicrm_contribution` DISABLE KEYS */; INSERT INTO `civicrm_contribution` (`id`, `contact_id`, `financial_type_id`, `contribution_page_id`, `payment_instrument_id`, `receive_date`, `non_deductible_amount`, `total_amount`, `fee_amount`, `net_amount`, `trxn_id`, `invoice_id`, `invoice_number`, `currency`, `cancel_date`, `cancel_reason`, `receipt_date`, `thankyou_date`, `source`, `amount_level`, `contribution_recur_id`, `is_test`, `is_pay_later`, `contribution_status_id`, `address_id`, `check_number`, `campaign_id`, `creditnote_id`, `tax_amount`, `revenue_recognition_date`, `is_template`) VALUES - (1,2,1,NULL,4,'2012-10-12 03:42:25',0.00,125.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL,NULL,NULL,NULL,0), - (2,4,1,NULL,1,'2020-07-12 03:42:25',0.00,50.00,NULL,NULL,'P20901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (3,6,1,NULL,4,'2016-09-16 14:42:25',0.00,25.00,NULL,NULL,'GBP12',NULL,NULL,'GBP',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL,NULL,NULL,NULL,0), - (4,8,1,NULL,4,'2020-07-12 03:42:25',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'10552',NULL,NULL,NULL,NULL,0), - (5,4,1,NULL,1,'2020-07-12 03:42:25',0.00,50.00,NULL,NULL,'Q90901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (6,16,1,NULL,4,'2022-07-19 03:00:25',0.00,500.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL,NULL,NULL,NULL,0), - (7,19,1,NULL,1,'2022-10-10 03:42:25',0.00,1750.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'102',NULL,NULL,NULL,NULL,0), - (8,82,1,NULL,1,'2022-02-17 11:53:25',0.00,50.00,NULL,NULL,'P20193L2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (9,92,1,NULL,1,'2021-11-12 03:42:25',0.00,10.00,NULL,NULL,'P40232Y3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (10,34,1,NULL,1,'2018-05-20 05:42:25',0.00,250.00,NULL,NULL,'P20193L6',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (11,71,1,NULL,1,'2022-10-10 23:42:25',0.00,500.00,NULL,NULL,'PL71',NULL,NULL,'JPY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (12,43,1,NULL,1,'2021-07-11 17:09:05',0.00,50.00,NULL,NULL,'P291X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (13,32,1,NULL,1,'2022-07-12 00:00:00',0.00,50.00,NULL,NULL,'PL32I',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (14,32,1,NULL,1,'2022-08-12 00:00:00',0.00,50.00,NULL,NULL,'PL32II',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (15,59,1,NULL,1,'2021-07-12 03:42:25',0.00,25.00,NULL,NULL,'PL32I591',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (16,59,1,NULL,1,'2021-08-12 03:42:25',0.00,25.00,NULL,NULL,'PL32I592',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (17,59,1,NULL,1,'2021-09-12 03:42:25',0.00,25.00,NULL,NULL,'PL32I593',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (18,59,1,NULL,1,'2021-10-12 03:42:25',0.00,25.00,NULL,NULL,'PL32I594',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (19,59,1,NULL,1,'2021-11-12 03:42:25',0.00,25.00,NULL,NULL,'PL32I595',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (20,59,1,NULL,1,'2021-12-12 03:42:25',0.00,25.00,NULL,NULL,'PL32I596',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (21,59,1,NULL,1,'2022-01-12 03:42:25',0.00,25.00,NULL,NULL,'PL32I597',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (22,59,1,NULL,1,'2022-02-12 03:42:25',0.00,25.00,NULL,NULL,'PL32I598',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (23,59,1,NULL,1,'2022-03-12 03:42:25',0.00,25.00,NULL,NULL,'PL32I599',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (24,59,1,NULL,1,'2022-04-12 03:42:25',0.00,25.00,NULL,NULL,'PL32I5910',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (25,59,1,NULL,1,'2022-05-12 03:42:25',0.00,25.00,NULL,NULL,'PL32I5911',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (26,99,1,NULL,1,'2022-02-12 03:42:25',0.00,10.00,NULL,NULL,'PL32I991',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (27,99,1,NULL,1,'2022-03-12 03:42:25',0.00,10.00,NULL,NULL,'PL32I992',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (28,99,1,NULL,1,'2022-04-12 03:42:25',0.00,10.00,NULL,NULL,'PL32I993',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (29,99,1,NULL,1,'2022-05-12 03:42:25',0.00,10.00,NULL,NULL,'PL32I994',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (30,99,1,NULL,1,'2022-06-12 03:42:25',0.00,10.00,NULL,NULL,'PL32I995',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (31,103,1,NULL,1,'2022-09-12 03:42:25',0.00,5.00,NULL,NULL,'PL32I1031',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,3,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (32,45,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'6e2224ad0d746844',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (33,171,2,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'373e842190fa0368',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (34,42,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'53037968d57a387f',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (35,29,2,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'3d3c709c92e7e0f2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (36,65,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'b8aa91c7eb15d037',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (37,56,2,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'8b66dac767ee7871',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (38,103,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'6864d12d05169ae7',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (39,120,2,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'f0f5ad04f7cb5741',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (40,135,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'4b7f45743fb5860e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (41,180,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'41eacd41f9a0b272',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (42,162,2,NULL,1,'2022-10-12 03:42:25',0.00,1200.00,NULL,NULL,'53f33eb11f5b3d1e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (43,32,2,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'a9e3309da4bbd970',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (44,68,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'b6097dc388226ce3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (45,149,2,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'8b982992bc01534b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (46,11,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'03dfafd1e588a7e2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (47,189,2,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'cdc09d5f6f03caa1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (48,15,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'f07e3762262ad212',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (49,197,2,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'3f32e7a61d783a9b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (50,97,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'16373f4b799ac384',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (51,147,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'9c18890c7c9f1b39',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (52,133,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'40eb2187d4f6af17',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (53,31,2,NULL,1,'2022-10-12 03:42:25',0.00,1200.00,NULL,NULL,'a000c0ff91e50470',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (54,166,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'e1901a48e6e05650',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (55,100,2,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'bc5fb8cddb99d3d4',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (56,169,2,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'d5d0987561080221',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (57,188,2,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'614732fce6092aa6',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (58,151,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'a426201d305abc5e',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (59,82,2,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'207b5da583ccb515',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (60,93,2,NULL,1,'2022-10-12 03:42:25',0.00,100.00,NULL,NULL,'124f724237fa0ff0',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (61,53,2,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'2997dc029ca9360f',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (63,3,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'e8c99eef4983306c',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (64,118,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'70664232c0d3605c',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (65,181,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'5723dbe2b61a8912',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (66,56,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'32898234a5f90ff2',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (67,1,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'6e437443a8450832',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (68,142,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'f686e651dc98a4a5',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (69,47,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'1d71daf158d62aab',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (70,202,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'93f667e3c6e71db3',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (71,123,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'7e0c4a218ba286b5',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (72,120,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'274ecda7e0fa2a46',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (73,96,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'87cd7df88c8eeea2',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (74,92,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'b17de6f32cb75442',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (75,144,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'2185062074ad0959',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (76,81,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'843e07cdb2919a7f',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (77,187,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'be1ca79baa7a34d4',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (78,67,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'ba4e3f812ace0c73',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (79,88,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'8e178c50f1ba54e8',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (80,167,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'8aed98ca869b0100',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (81,119,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'0193ff158071ab98',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (82,106,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'d0984660ad43e19f',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (83,124,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'f77c8823a57266bf',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (84,111,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'2fa80e08fea2cb8a',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (85,105,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'8099c7b85f0939cc',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (86,50,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'03732f07032c63a1',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (87,41,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'ce90c61d077397dd',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (88,86,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'201a77a14c0ee865',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (89,184,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'bc82052d24c281ea',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (90,61,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'3272688dccc61204',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (91,94,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'487cd344909fa617',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (92,135,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'4d938862577e7a14',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (93,132,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'2179586066419327',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (94,12,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'89c4109d5fb8638c',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (95,190,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'4dabbd83605cfcac',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (96,148,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'5e5f55671b371dec',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (97,58,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'c3dd84abb2be59d6',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (98,52,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'f4c86727550ad346',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (99,54,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'1a734b70a4b98ae6',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (100,117,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'347bd8ac668b9c34',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (101,145,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'68b35347820b2d11',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (102,163,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'3918a9ee31212c92',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (103,4,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'2ec183318c6eecda',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (104,186,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'7689857c4df0795c',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (105,159,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'c1317ba3f815dbdf',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (106,116,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'ca5d5140f090f06b',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (107,40,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'c2e22b6b68179068',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (108,57,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'3d15bd25f25fdb63',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (109,157,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'6b8ebf184d70eba7',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (110,75,4,NULL,1,'2022-10-12 03:42:25',0.00,50.00,NULL,NULL,'e216512973ac6d57',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (111,6,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'388a2cba6551328e',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), - (112,44,4,NULL,1,'2022-10-12 03:42:25',0.00,800.00,NULL,NULL,'60e197f02df6da8b',NULL,NULL,'USD',NULL,NULL,'2022-10-12 03:42:25',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0); + (1,2,1,NULL,4,'2012-10-17 14:12:07',0.00,125.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL,NULL,NULL,NULL,0), + (2,4,1,NULL,1,'2020-07-17 14:12:07',0.00,50.00,NULL,NULL,'P20901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (3,6,1,NULL,4,'2016-09-22 01:12:07',0.00,25.00,NULL,NULL,'GBP12',NULL,NULL,'GBP',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL,NULL,NULL,NULL,0), + (4,8,1,NULL,4,'2020-07-17 14:12:07',0.00,50.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'10552',NULL,NULL,NULL,NULL,0), + (5,4,1,NULL,1,'2020-07-17 14:12:07',0.00,50.00,NULL,NULL,'Q90901X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (6,16,1,NULL,4,'2022-07-24 13:30:07',0.00,500.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'April Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL,NULL,NULL,NULL,0), + (7,19,1,NULL,1,'2022-10-15 14:12:07',0.00,1750.00,NULL,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,'102',NULL,NULL,NULL,NULL,0), + (8,82,1,NULL,1,'2022-02-22 22:23:07',0.00,50.00,NULL,NULL,'P20193L2',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (9,92,1,NULL,1,'2021-11-17 14:12:07',0.00,10.00,NULL,NULL,'P40232Y3',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (10,34,1,NULL,1,'2018-05-25 16:12:07',0.00,250.00,NULL,NULL,'P20193L6',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (11,71,1,NULL,1,'2022-10-16 10:12:07',0.00,500.00,NULL,NULL,'PL71',NULL,NULL,'JPY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (12,43,1,NULL,1,'2021-07-17 03:38:47',0.00,50.00,NULL,NULL,'P291X1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (13,32,1,NULL,1,'2022-07-17 00:00:00',0.00,50.00,NULL,NULL,'PL32I',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (14,32,1,NULL,1,'2022-08-17 00:00:00',0.00,50.00,NULL,NULL,'PL32II',NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (15,59,1,NULL,1,'2021-07-17 14:12:07',0.00,25.00,NULL,NULL,'PL32I591',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (16,59,1,NULL,1,'2021-08-17 14:12:07',0.00,25.00,NULL,NULL,'PL32I592',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (17,59,1,NULL,1,'2021-09-17 14:12:07',0.00,25.00,NULL,NULL,'PL32I593',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (18,59,1,NULL,1,'2021-10-17 14:12:07',0.00,25.00,NULL,NULL,'PL32I594',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (19,59,1,NULL,1,'2021-11-17 14:12:07',0.00,25.00,NULL,NULL,'PL32I595',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (20,59,1,NULL,1,'2021-12-17 14:12:07',0.00,25.00,NULL,NULL,'PL32I596',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (21,59,1,NULL,1,'2022-01-17 14:12:07',0.00,25.00,NULL,NULL,'PL32I597',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (22,59,1,NULL,1,'2022-02-17 14:12:07',0.00,25.00,NULL,NULL,'PL32I598',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (23,59,1,NULL,1,'2022-03-17 14:12:07',0.00,25.00,NULL,NULL,'PL32I599',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (24,59,1,NULL,1,'2022-04-17 14:12:07',0.00,25.00,NULL,NULL,'PL32I5910',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (25,59,1,NULL,1,'2022-05-17 14:12:07',0.00,25.00,NULL,NULL,'PL32I5911',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,1,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (26,99,1,NULL,1,'2022-02-17 14:12:07',0.00,10.00,NULL,NULL,'PL32I991',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (27,99,1,NULL,1,'2022-03-17 14:12:07',0.00,10.00,NULL,NULL,'PL32I992',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (28,99,1,NULL,1,'2022-04-17 14:12:07',0.00,10.00,NULL,NULL,'PL32I993',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (29,99,1,NULL,1,'2022-05-17 14:12:07',0.00,10.00,NULL,NULL,'PL32I994',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (30,99,1,NULL,1,'2022-06-17 14:12:07',0.00,10.00,NULL,NULL,'PL32I995',NULL,NULL,'CAD',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,2,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (31,103,1,NULL,1,'2022-09-17 14:12:07',0.00,5.00,NULL,NULL,'PL32I1031',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,'Recurring contribution',NULL,3,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (32,187,2,NULL,1,'2022-10-17 14:12:07',0.00,100.00,NULL,NULL,'746f1bb96cac9a16',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (33,128,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'b75bc255f2513aa8',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (34,63,2,NULL,1,'2022-10-17 14:12:07',0.00,100.00,NULL,NULL,'046baafaaa7ac3f7',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (35,190,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'8284e42ccef1208f',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (36,58,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'0d0d0750fbcabdff',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (37,73,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'ae85bac67f81decc',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (38,27,2,NULL,1,'2022-10-17 14:12:07',0.00,100.00,NULL,NULL,'14aefd6c66193220',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (39,45,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'c1329f169420c18d',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (40,186,2,NULL,1,'2022-10-17 14:12:07',0.00,100.00,NULL,NULL,'e6b5d67e51638d42',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (41,199,2,NULL,1,'2022-10-17 14:12:07',0.00,100.00,NULL,NULL,'1188dff99d3a68c4',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (42,194,2,NULL,1,'2022-10-17 14:12:07',0.00,1200.00,NULL,NULL,'cf12fecbbd9f1339',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (43,192,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'8593c2fb6cf28788',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (44,4,2,NULL,1,'2022-10-17 14:12:07',0.00,100.00,NULL,NULL,'5e38f02c7c96d145',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (45,189,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'8a3862936957f54b',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (46,157,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'6fe9a1ce1ef54fc7',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (47,104,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'a98f33faa4c67ba1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (48,40,2,NULL,1,'2022-10-17 14:12:07',0.00,100.00,NULL,NULL,'95e85a3688eee665',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (49,54,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'2fb2603f6f2531b0',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (50,90,2,NULL,1,'2022-10-17 14:12:07',0.00,100.00,NULL,NULL,'15ea0adbbea1c376',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (51,185,2,NULL,1,'2022-10-17 14:12:07',0.00,100.00,NULL,NULL,'e91c2ece6a6f88f1',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (52,94,2,NULL,1,'2022-10-17 14:12:07',0.00,100.00,NULL,NULL,'88eb1cae6770100d',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (53,28,2,NULL,1,'2022-10-17 14:12:07',0.00,1200.00,NULL,NULL,'14f93a5a1b8d169c',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (54,18,2,NULL,1,'2022-10-17 14:12:07',0.00,100.00,NULL,NULL,'3061c10574fc9b8d',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (55,111,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'93ee2ff4011fc42a',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (56,106,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'a32f896bf861bc80',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (57,136,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'3549326e7a234fbb',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (58,196,2,NULL,1,'2022-10-17 14:12:07',0.00,100.00,NULL,NULL,'6cb3d02b2e24c756',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (59,171,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'61e28aa002666a10',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (60,108,2,NULL,1,'2022-10-17 14:12:07',0.00,100.00,NULL,NULL,'1731d8057853eb57',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (61,121,2,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'3a14242568949e30',NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (63,65,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'0f67c3c2bc7509b1',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (64,115,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'263281f7ad854f87',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (65,117,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'ac742dacebf319af',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (66,43,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'ca55754459550325',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (67,107,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'7f28ab5b71dae87f',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (68,7,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'9df13fe900d32b87',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (69,138,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'e8cdb70006b25538',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (70,174,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'d8ab0d65844f1d3d',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (71,97,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'41e83424f703360e',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (72,72,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'4d951d293824151f',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (73,31,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'59af546ee742a096',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (74,51,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'1983c4bea87c95a7',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (75,42,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'dc34ff182e751206',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (76,127,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'eba3b11428bde079',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (77,143,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'002145a709a35aff',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (78,84,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'729cb464e06f6b4b',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (79,183,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'2d554aad27294001',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (80,73,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'fb47813deac2fd73',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (81,86,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'55a1e3b2065808ce',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (82,144,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'9ac761652cb5672b',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (83,33,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'d52467f47a6c4a35',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (84,77,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'383e822f0db4f0b3',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (85,154,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'47076c9f9b845fd1',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (86,123,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'1f60997792d841a4',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (87,28,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'b8f8a734ba4b01e0',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (88,100,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'d695d802dffdbd1a',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (89,22,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'2f7bdcb45904c541',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (90,20,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'4e08d2c2afd6d888',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (91,96,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'e80b514199fb1b96',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (92,122,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'8ddc63d21a3f7d12',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (93,91,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'07ab90e357596a7d',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (94,87,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'063cbc716a138b3e',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (95,101,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'e0a4adf0eb3807b3',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (96,186,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'9edcd2d289a6d3a5',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (97,132,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'b06290878ba42f3b',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (98,106,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'4d5137105edd3451',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (99,149,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'78f348403f153b46',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (100,16,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'096ad86444ea3836',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (101,94,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'5c4fba6d82d4022c',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (102,173,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'486c8a3a94a8157c',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (103,44,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'f3234de67df33706',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (104,179,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'51a7ab0a2135d6cb',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (105,13,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'78038366ff200600',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (106,4,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'1f5728fee8f654e4',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (107,135,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'eb0bc87aaa365e07',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (108,3,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'0e6b0061749fe04a',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (109,15,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'afc8427b69c05708',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (110,136,4,NULL,1,'2022-10-17 14:12:07',0.00,50.00,NULL,NULL,'6a0f776722ea36e6',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (111,119,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'7016bdb6aab95437',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0), + (112,128,4,NULL,1,'2022-10-17 14:12:07',0.00,800.00,NULL,NULL,'84635c9f38b43f68',NULL,NULL,'USD',NULL,NULL,'2022-10-17 14:12:07',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0); /*!40000 ALTER TABLE `civicrm_contribution` ENABLE KEYS */; UNLOCK TABLES; @@ -2434,9 +2446,9 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution_recur` WRITE; /*!40000 ALTER TABLE `civicrm_contribution_recur` DISABLE KEYS */; INSERT INTO `civicrm_contribution_recur` (`id`, `contact_id`, `amount`, `currency`, `frequency_unit`, `frequency_interval`, `installments`, `start_date`, `create_date`, `modified_date`, `cancel_date`, `cancel_reason`, `end_date`, `processor_id`, `payment_token_id`, `trxn_id`, `invoice_id`, `contribution_status_id`, `is_test`, `cycle_day`, `next_sched_contribution_date`, `failure_count`, `failure_retry_date`, `auto_renew`, `payment_processor_id`, `financial_type_id`, `payment_instrument_id`, `campaign_id`, `is_email_receipt`) VALUES - (1,59,25.00,'USD','month',1,12,'2021-07-12 03:42:25','2022-10-12 03:42:25','2022-10-12 03:42:25',NULL,'',NULL,'CLC45',NULL,'56799',NULL,1,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), - (2,99,10.00,'CAD','month',1,6,'2022-02-12 03:42:25','2022-10-12 03:42:25','2022-10-12 03:42:25','2022-09-12 03:42:25','No longer interested',NULL,'CLR35',NULL,'22799',NULL,3,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), - (3,103,5.00,'EUR','month',3,3,'2022-09-12 03:42:25','2022-10-12 03:42:25','2022-10-12 03:42:25',NULL,'',NULL,'EGR12',NULL,'44889',NULL,5,0,1,'2022-12-12 03:42:25',0,NULL,0,1,NULL,NULL,NULL,1); + (1,59,25.00,'USD','month',1,12,'2021-07-17 14:12:07','2022-10-17 14:12:07','2022-10-17 14:12:07',NULL,'',NULL,'CLC45',NULL,'56799',NULL,1,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), + (2,99,10.00,'CAD','month',1,6,'2022-02-17 14:12:07','2022-10-17 14:12:07','2022-10-17 14:12:07','2022-09-17 14:12:07','No longer interested',NULL,'CLR35',NULL,'22799',NULL,3,0,1,NULL,0,NULL,0,1,NULL,NULL,NULL,1), + (3,103,5.00,'EUR','month',3,3,'2022-09-17 14:12:07','2022-10-17 14:12:07','2022-10-17 14:12:07',NULL,'',NULL,'EGR12',NULL,'44889',NULL,5,0,1,'2022-12-17 14:12:07',0,NULL,0,1,NULL,NULL,NULL,1); /*!40000 ALTER TABLE `civicrm_contribution_recur` ENABLE KEYS */; UNLOCK TABLES; @@ -2447,8 +2459,8 @@ UNLOCK TABLES; LOCK TABLES `civicrm_contribution_soft` WRITE; /*!40000 ALTER TABLE `civicrm_contribution_soft` DISABLE KEYS */; INSERT INTO `civicrm_contribution_soft` (`id`, `contribution_id`, `contact_id`, `amount`, `currency`, `pcp_id`, `pcp_display_in_roll`, `pcp_roll_nickname`, `pcp_personal_note`, `soft_credit_type_id`) VALUES - (1,9,193,10.00,'USD',1,1,'Jones Family','Helping Hands',10), - (2,10,193,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10); + (1,9,125,10.00,'USD',1,1,'Jones Family','Helping Hands',10), + (2,10,125,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10); /*!40000 ALTER TABLE `civicrm_contribution_soft` ENABLE KEYS */; UNLOCK TABLES; @@ -3059,188 +3071,210 @@ LOCK TABLES `civicrm_email` WRITE; /*!40000 ALTER TABLE `civicrm_email` DISABLE KEYS */; INSERT INTO `civicrm_email` (`id`, `contact_id`, `location_type_id`, `email`, `is_primary`, `is_billing`, `on_hold`, `is_bulkmail`, `hold_date`, `reset_date`, `signature_text`, `signature_html`) VALUES (1,1,1,'fixme.domainemail@example.org',1,0,0,0,NULL,NULL,NULL,NULL), - (2,185,1,'gonzleza@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (3,152,1,'deforestr14@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (4,111,1,'alexiawattson46@sample.net',1,0,0,0,NULL,NULL,NULL,NULL), - (5,111,1,'alexiawattson@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (6,189,1,'barryadams18@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (7,189,1,'adamsb22@fakemail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (8,10,1,'adams.sonny@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (9,10,1,'adams.y.sonny50@example.net',0,0,0,0,NULL,NULL,NULL,NULL), - (10,81,1,'russellprentice@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (11,81,1,'prenticer@testing.biz',0,0,0,0,NULL,NULL,NULL,NULL), - (12,78,1,'rolandoa@example.com',1,0,0,0,NULL,NULL,NULL,NULL), - (13,201,1,'carylonwagner3@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (14,181,1,'rolandoreynolds@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (15,181,1,'rreynolds@testing.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (16,69,1,'kzope@notmail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (17,69,1,'kiaraz@fishmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (18,122,1,'cruzb@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (19,101,1,'brigettec26@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (20,68,1,'patel.maxwell@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (21,68,1,'patel.maxwell70@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (22,113,1,'mzope@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (23,113,1,'meiz@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (24,66,1,'robertson.jerome@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL), - (25,27,1,'rcooper@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (26,109,1,'sp.grant13@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (27,109,1,'grant.p.sharyn85@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (28,116,1,'juliannpatel76@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (29,116,1,'patelj79@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (30,95,1,'samuelsm94@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (31,95,1,'samuelsm@fakemail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (32,165,1,'samuels.scott@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (33,20,1,'santinapatel@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (34,42,1,'adams.brigette@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (35,110,1,'jones.q.carylon@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (36,97,1,'bachman.herminia@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (37,9,1,'dwilson@example.info',1,0,0,0,NULL,NULL,NULL,NULL), - (38,103,1,'cruz.jina@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (39,103,1,'jinacruz79@lol.com',0,0,0,0,NULL,NULL,NULL,NULL), - (40,142,1,'terry.lawerence@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (41,162,1,'wagnerl@sample.org',1,0,0,0,NULL,NULL,NULL,NULL), - (42,31,1,'lee.alexia@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (43,31,1,'leea32@fishmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), - (44,28,1,'lee.bryon@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (45,147,1,'daz.n.merrie@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (46,71,1,'herminiasmith32@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (47,71,1,'smith.herminia@testing.net',0,0,0,0,NULL,NULL,NULL,NULL), - (48,86,1,'kbarkley85@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (49,135,1,'nielsen.josefa@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (50,135,1,'nielsen.josefa48@airmail.info',0,0,0,0,NULL,NULL,NULL,NULL), - (51,82,1,'ta.roberts44@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL), - (52,82,1,'teresaroberts@sample.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (53,119,1,'zopet@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (54,39,1,'wilsonh54@example.org',1,0,0,0,NULL,NULL,NULL,NULL), - (55,39,1,'herminiaw@notmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (56,186,1,'es.gonzlez@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (57,22,1,'bachman.norris@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (58,22,1,'norrisb86@lol.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), - (59,73,1,'sa.olsen@example.org',1,0,0,0,NULL,NULL,NULL,NULL), - (60,73,1,'olsens@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL), - (61,48,1,'jacobsc@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (62,48,1,'cjacobs@notmail.com',0,0,0,0,NULL,NULL,NULL,NULL), - (63,164,1,'megangonzlez88@testing.net',1,0,0,0,NULL,NULL,NULL,NULL), - (64,192,1,'patel.ray@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (65,21,1,'js.blackwell@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL), - (66,21,1,'js.blackwell@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (67,131,1,'lincolnwilson69@fakemail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (68,90,1,'rolandmcreynolds@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (69,191,1,'jacobs.megan@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (70,191,1,'meganj13@sample.info',0,0,0,0,NULL,NULL,NULL,NULL), - (71,149,1,'ir.ivanov@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (72,149,1,'irisivanov23@fakemail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (73,106,1,'samuels.b.clint@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (74,151,1,'terrell.q.arlyne@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL), - (75,151,1,'terrell.q.arlyne@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL), - (76,84,1,'pateli58@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (77,84,1,'pateli@fakemail.info',0,0,0,0,NULL,NULL,NULL,NULL), - (78,60,1,'allenreynolds@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (79,143,1,'lincolncooper25@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (80,143,1,'cooper.lincoln93@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL), - (81,23,1,'mcreynolds.teresa17@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL), - (82,54,1,'chowski-mcreynoldsn@lol.org',1,0,0,0,NULL,NULL,NULL,NULL), - (83,54,1,'chowski-mcreynolds.nicole@lol.com',0,0,0,0,NULL,NULL,NULL,NULL), - (84,175,1,'mcreynoldss21@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (85,157,1,'scottmcreynolds@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (86,197,1,'cooper.bob17@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (87,197,1,'cooper.l.bob50@infomail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (88,174,1,'gonzlez.junko@lol.net',1,0,0,0,NULL,NULL,NULL,NULL), - (89,37,1,'barrycooper-gonzlez24@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (90,37,1,'cooper-gonzlez.h.barry@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (91,170,1,'megans@sample.com',1,0,0,0,NULL,NULL,NULL,NULL), - (92,170,1,'samsonm@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (93,43,1,'jameson-ivanov.damaris87@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (94,43,1,'damarisj@mymail.com',0,0,0,0,NULL,NULL,NULL,NULL), - (95,13,1,'lareejameson-ivanov81@testing.net',1,0,0,0,NULL,NULL,NULL,NULL), - (96,129,1,'claudioo@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (97,129,1,'claudioo50@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (98,19,1,'olsen.u.rebekah@testing.com',1,0,0,0,NULL,NULL,NULL,NULL), - (99,47,1,'olsens@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (100,188,1,'samsone88@lol.net',1,0,0,0,NULL,NULL,NULL,NULL), - (101,188,1,'elizabethsamson@airmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (102,61,1,'samsonb@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (103,94,1,'samsoni@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (104,94,1,'samson.irvin24@mymail.biz',0,0,0,0,NULL,NULL,NULL,NULL), - (105,169,1,'lareechowski54@example.org',1,0,0,0,NULL,NULL,NULL,NULL), - (106,169,1,'chowski.laree@testmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (107,36,1,'landon@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (108,36,1,'landon92@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL), - (109,121,1,'andrewchowski@sample.org',1,0,0,0,NULL,NULL,NULL,NULL), - (110,7,1,'dimitrovk46@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (111,171,1,'yadav-dimitrov.carlos@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (112,171,1,'yadav-dimitrovc@infomail.biz',0,0,0,0,NULL,NULL,NULL,NULL), - (113,155,1,'mcreynolds-cooperi@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (114,155,1,'iy.mcreynolds-cooper@notmail.net',0,0,0,0,NULL,NULL,NULL,NULL), - (115,87,1,'andrewmcreynolds-cooper@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (116,87,1,'mcreynolds-coopera76@airmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), - (117,156,1,'zope.irvin10@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), - (118,125,1,'zope.alida@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (119,26,1,'prenticem@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (120,41,1,'rprentice@testmail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (121,41,1,'prentice.rosario52@notmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), - (122,148,1,'ev.terry27@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (123,65,1,'kterry@testing.net',1,0,0,0,NULL,NULL,NULL,NULL), - (124,65,1,'terry.kathlyn@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), - (125,59,1,'kathleenterry@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (126,59,1,'kathleenterry@notmail.net',0,0,0,0,NULL,NULL,NULL,NULL), - (127,136,1,'rolandbachman15@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (128,136,1,'rolandb87@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (129,17,1,'bettyb@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (130,17,1,'bettyb21@example.info',0,0,0,0,NULL,NULL,NULL,NULL), - (131,33,1,'bachman.shad@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL), - (132,168,1,'nielsen.d.landon@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL), - (133,44,1,'rnielsen75@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (134,92,1,'yadav.elbert@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (135,117,1,'beulayadav@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), - (136,117,1,'yadav.beula66@notmail.net',0,0,0,0,NULL,NULL,NULL,NULL), - (137,187,1,'jyadav@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), - (138,187,1,'jayy@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), - (139,64,1,'kjensen74@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL), - (140,64,1,'kjensen33@infomail.biz',0,0,0,0,NULL,NULL,NULL,NULL), - (141,6,1,'carylong@fakemail.biz',1,0,0,0,NULL,NULL,NULL,NULL), - (142,118,1,'jensens@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL), - (143,29,1,'daz.truman@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL), - (144,176,1,'jacobs-daz.damaris@sample.com',1,0,0,0,NULL,NULL,NULL,NULL), - (145,176,1,'djacobs-daz@airmail.com',0,0,0,0,NULL,NULL,NULL,NULL), - (146,74,1,'dazd@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL), - (147,133,1,'daz.andrew@sample.net',1,0,0,0,NULL,NULL,NULL,NULL), - (148,133,1,'andrewd73@fakemail.biz',0,0,0,0,NULL,NULL,NULL,NULL), - (149,127,1,'gonzlezt@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL), - (150,159,3,'service@hawaiifamilyacademy.org',1,0,0,0,NULL,NULL,NULL,NULL), - (151,140,2,'rodrigosamson@hawaiifamilyacademy.org',1,0,0,0,NULL,NULL,NULL,NULL), - (152,80,3,'info@glennliteracy.org',1,0,0,0,NULL,NULL,NULL,NULL), - (153,95,2,'mj.samuels@glennliteracy.org',0,0,0,0,NULL,NULL,NULL,NULL), - (154,183,3,'service@dowlencollective.org',1,0,0,0,NULL,NULL,NULL,NULL), - (155,174,2,'junkog@dowlencollective.org',0,0,0,0,NULL,NULL,NULL,NULL), - (156,124,3,'service@friendssoftware.org',1,0,0,0,NULL,NULL,NULL,NULL), - (157,201,2,'@friendssoftware.org',0,0,0,0,NULL,NULL,NULL,NULL), - (158,14,3,'service@localfellowship.org',1,0,0,0,NULL,NULL,NULL,NULL), - (159,25,3,'contact@globalacademy.org',1,0,0,0,NULL,NULL,NULL,NULL), - (160,197,2,'@globalacademy.org',0,0,0,0,NULL,NULL,NULL,NULL), - (161,98,3,'contact@localagriculture.org',1,0,0,0,NULL,NULL,NULL,NULL), - (162,66,2,'robertsonj@localagriculture.org',0,0,0,0,NULL,NULL,NULL,NULL), - (163,145,3,'service@wilmingtonhealthtrust.org',1,0,0,0,NULL,NULL,NULL,NULL), - (164,19,2,'rebekaholsen43@wilmingtonhealthtrust.org',0,0,0,0,NULL,NULL,NULL,NULL), - (165,67,3,'info@nypeacefellowship.org',1,0,0,0,NULL,NULL,NULL,NULL), - (166,87,2,'mcreynolds-cooper.q.andrew@nypeacefellowship.org',0,0,0,0,NULL,NULL,NULL,NULL), - (167,177,3,'sales@louisianasoftwarefund.org',1,0,0,0,NULL,NULL,NULL,NULL), - (168,79,2,'jayl@louisianasoftwarefund.org',1,0,0,0,NULL,NULL,NULL,NULL), - (169,184,3,'contact@edinburgenvironmentalcollective.org',1,0,0,0,NULL,NULL,NULL,NULL), - (170,151,2,'58@edinburgenvironmentalcollective.org',0,0,0,0,NULL,NULL,NULL,NULL), - (171,115,3,'info@collegelegalcenter.org',1,0,0,0,NULL,NULL,NULL,NULL), - (172,35,3,'service@progressivetrust.org',1,0,0,0,NULL,NULL,NULL,NULL), - (173,114,2,'zope.juliann@progressivetrust.org',1,0,0,0,NULL,NULL,NULL,NULL), - (174,132,3,'service@progressivesustainability.org',1,0,0,0,NULL,NULL,NULL,NULL), - (175,12,2,'herminiacooper-gonzlez@progressivesustainability.org',1,0,0,0,NULL,NULL,NULL,NULL), - (176,130,3,'sales@cadelltechnologyschool.org',1,0,0,0,NULL,NULL,NULL,NULL), - (177,150,2,'teddyt@cadelltechnologyschool.org',1,0,0,0,NULL,NULL,NULL,NULL), - (178,52,3,'contact@globalagriculturefellowship.org',1,0,0,0,NULL,NULL,NULL,NULL), - (179,146,2,'prenticej31@globalagriculturefellowship.org',1,0,0,0,NULL,NULL,NULL,NULL), - (180,202,1,'jenny@example.com',1,0,0,0,NULL,NULL,NULL,NULL), - (181,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL), - (182,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL), - (183,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL); + (2,157,1,'parker.elina66@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (3,125,1,'carylonj23@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (4,125,1,'jameson.carylon28@example.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), + (5,58,1,'bettyj@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (6,58,1,'jameson.betty@lol.net',0,0,0,0,NULL,NULL,NULL,NULL), + (7,174,1,'mcreynoldss@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (8,174,1,'mcreynolds.b.santina@testing.info',0,0,0,0,NULL,NULL,NULL,NULL), + (9,134,1,'brentc@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (10,61,1,'broberts@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (11,36,1,'angelikadeforest@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (12,152,1,'bterrell45@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (13,152,1,'terrellb@infomail.info',0,0,0,0,NULL,NULL,NULL,NULL), + (14,181,1,'landonlee@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (15,4,1,'bachman.kandace49@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (16,4,1,'bachmank@testing.biz',0,0,0,0,NULL,NULL,NULL,NULL), + (17,10,1,'grant.junko92@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (18,189,1,'princessdimitrov82@testing.net',1,0,0,0,NULL,NULL,NULL,NULL), + (19,2,1,'dimitrov.eleonor@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (20,2,1,'dimitrov.eleonor@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL), + (21,112,1,'tb.patel@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (22,40,1,'robertsonb99@lol.info',1,0,0,0,NULL,NULL,NULL,NULL), + (23,40,1,'robertsonb39@notmail.org',0,0,0,0,NULL,NULL,NULL,NULL), + (24,48,1,'alexiaivanov42@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (25,178,1,'arlyne@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (26,135,1,'bwagner@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (27,135,1,'bryonw@mymail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (28,160,1,'patel.i.herminia26@example.net',1,0,0,0,NULL,NULL,NULL,NULL), + (29,160,1,'patel.herminia@testing.com',0,0,0,0,NULL,NULL,NULL,NULL), + (30,57,1,'merriel@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (31,159,1,'scottgrant@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (32,44,1,'nielsen.lashawnda52@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (33,44,1,'la.nielsen@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (34,128,1,'wattson.g.ivey36@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (35,6,1,'lashawndasamson45@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (36,100,1,'deforest.brzczysaw@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (37,100,1,'deforest.brzczysaw@notmail.org',0,0,0,0,NULL,NULL,NULL,NULL), + (38,179,1,'jf.roberts@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (39,69,1,'dimitrov.claudio@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (40,75,1,'lee.magan@lol.net',1,0,0,0,NULL,NULL,NULL,NULL), + (41,75,1,'mlee@infomail.biz',0,0,0,0,NULL,NULL,NULL,NULL), + (42,65,1,'kathleenjensen@lol.info',1,0,0,0,NULL,NULL,NULL,NULL), + (43,149,1,'jinacooper@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (44,149,1,'jcooper70@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (45,148,1,'scarletg@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (46,182,1,'ivanove96@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (47,73,1,'adams.rosario90@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (48,16,1,'brzczysawn19@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (49,145,1,'roberts.jay14@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (50,15,1,'wagnerk@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (51,196,1,'zoper90@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (52,201,1,'bp.cooper21@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL), + (53,201,1,'cooper.p.beula@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (54,108,1,'jameson.margaret95@lol.com',1,0,0,0,NULL,NULL,NULL,NULL), + (55,108,1,'jamesonm57@airmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (56,136,1,'ivanov.bryon@sample.info',1,0,0,0,NULL,NULL,NULL,NULL), + (57,29,1,'bettyy27@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (58,29,1,'yadav.betty@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (59,143,1,'grantl@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (60,60,1,'gonzlez.rolando@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (61,80,1,'jacobb@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (62,80,1,'jacobb@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (63,94,1,'robertson.w.kenny@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (64,194,1,'deforest.kiara56@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (65,161,1,'felishai33@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (66,161,1,'ivanov.felisha35@notmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), + (67,177,1,'blackwell.kathleen87@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (68,177,1,'kathleenb97@sample.com',0,0,0,0,NULL,NULL,NULL,NULL), + (69,198,1,'robertsi@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (70,198,1,'roberts.s.irvin@fakemail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (71,199,1,'brittneybachman@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (72,173,1,'yadav.sherman@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (73,192,1,'jensen.ashley@example.net',1,0,0,0,NULL,NULL,NULL,NULL), + (74,158,1,'rodrigoivanov@testing.net',1,0,0,0,NULL,NULL,NULL,NULL), + (75,158,1,'rodrigoi@example.net',0,0,0,0,NULL,NULL,NULL,NULL), + (76,33,1,'rh.dimitrov14@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (77,89,1,'jones.angelika@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (78,89,1,'ajones@fishmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (79,35,1,'zope.scarlet@testing.com',1,0,0,0,NULL,NULL,NULL,NULL), + (80,35,1,'scarletz91@fishmail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (81,169,1,'shermant@testmail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (82,169,1,'shermanterrell77@sample.org',0,0,0,0,NULL,NULL,NULL,NULL), + (83,20,1,'maxwellp@lol.com',1,0,0,0,NULL,NULL,NULL,NULL), + (84,52,1,'elizabethc@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (85,52,1,'elizabethcooper@spamalot.biz',0,0,0,0,NULL,NULL,NULL,NULL), + (86,54,1,'kathleencooper@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (87,183,1,'ryadav73@sample.info',1,0,0,0,NULL,NULL,NULL,NULL), + (88,14,1,'yadav.q.winford@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (89,14,1,'yadav.q.winford@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL), + (90,176,1,'jacobs.maxwell37@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (91,11,1,'lj.jacobs@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (92,190,1,'jacobs.q.omar@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (93,190,1,'omarjacobs5@infomail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (94,101,1,'barkley.sanford37@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (95,101,1,'sanfordbarkley@notmail.info',0,0,0,0,NULL,NULL,NULL,NULL), + (96,45,1,'sharynb@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (97,45,1,'sharynbarkley49@example.com',0,0,0,0,NULL,NULL,NULL,NULL), + (98,68,1,'cq.barkley70@fakemail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (99,68,1,'barkley.q.carylon@mymail.com',0,0,0,0,NULL,NULL,NULL,NULL), + (100,127,1,'meib@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (101,127,1,'meib@fakemail.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (102,19,1,'lashawndaj@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (103,96,1,'jacobs.herminia@testing.net',1,0,0,0,NULL,NULL,NULL,NULL), + (104,96,1,'jacobs.herminia30@notmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), + (105,171,1,'aterry@lol.com',1,0,0,0,NULL,NULL,NULL,NULL), + (106,171,1,'angelikaterry@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), + (107,172,1,'terry.damaris88@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (108,172,1,'damarist57@infomail.com',0,0,0,0,NULL,NULL,NULL,NULL), + (109,106,1,'zope.jerome@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (110,186,1,'zope.lashawnda@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (111,138,1,'zope.brent17@testmail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (112,138,1,'zope.brent@airmail.com',0,0,0,0,NULL,NULL,NULL,NULL), + (113,120,1,'wagner.l.junko68@testing.com',1,0,0,0,NULL,NULL,NULL,NULL), + (114,120,1,'jl.wagner@notmail.info',0,0,0,0,NULL,NULL,NULL,NULL), + (115,97,1,'alidaw24@fakemail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (116,76,1,'wagner.s.kacey31@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (117,76,1,'kaceywagner@lol.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), + (118,77,1,'mr.terry@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (119,193,1,'megannielsen@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (120,193,1,'megann@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), + (121,99,1,'terry-nielsen.carylon78@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (122,99,1,'carylonterry-nielsen41@testmail.com',0,0,0,0,NULL,NULL,NULL,NULL), + (123,85,1,'terry-nielsens@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL), + (124,83,1,'terry.bob@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (125,118,1,'terry.jina89@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (126,118,1,'jterry@fishmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL), + (127,82,1,'landonterry@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (128,90,1,'terry.elina@testing.org',1,0,0,0,NULL,NULL,NULL,NULL), + (129,90,1,'elinat@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL), + (130,117,1,'jameson.magan@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (131,137,1,'jamesons@sample.com',1,0,0,0,NULL,NULL,NULL,NULL), + (132,122,1,'jameson.sanford@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (133,129,1,'robertson.allen37@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (134,144,1,'kwagner-robertson@sample.info',1,0,0,0,NULL,NULL,NULL,NULL), + (135,144,1,'wagner-robertson.kiara@notmail.com',0,0,0,0,NULL,NULL,NULL,NULL), + (136,63,1,'robertson.g.omar@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (137,200,1,'brzczysawlee@sample.org',1,0,0,0,NULL,NULL,NULL,NULL), + (138,74,1,'estaivanov-lee@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL), + (139,74,1,'estai2@example.info',0,0,0,0,NULL,NULL,NULL,NULL), + (140,53,1,'lee.miguel@sample.com',1,0,0,0,NULL,NULL,NULL,NULL), + (141,53,1,'miguellee@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL), + (142,110,1,'lee.e.brittney@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (143,110,1,'leeb@mymail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (144,79,1,'allans@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (145,79,1,'samuels.allan@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (146,56,1,'so.roberts@sample.com',1,0,0,0,NULL,NULL,NULL,NULL), + (147,51,1,'samuels-roberts.margaret76@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (148,51,1,'margarets@fishmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL), + (149,165,1,'maxwellwattson@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (150,107,1,'wattsona49@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL), + (151,98,1,'eleonorwattson@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (152,187,1,'allenj@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (153,187,1,'jamesona@notmail.biz',0,0,0,0,NULL,NULL,NULL,NULL), + (154,131,1,'jamesons@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (155,131,1,'se.jameson56@mymail.biz',0,0,0,0,NULL,NULL,NULL,NULL), + (156,115,1,'jamesont11@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL), + (157,81,1,'jameson.brent21@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (158,111,1,'mllerj90@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL), + (159,70,1,'mller-jensenv@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL), + (160,70,1,'mller-jensen.valene@sample.org',0,0,0,0,NULL,NULL,NULL,NULL), + (161,67,1,'erikm73@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (162,175,1,'rwilson@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL), + (163,175,1,'rwilson@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL), + (164,64,1,'wilson.jina59@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (165,195,1,'winfordw69@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL), + (166,156,1,'mcreynoldsb6@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL), + (167,156,1,'mcreynoldsb43@infomail.org',0,0,0,0,NULL,NULL,NULL,NULL), + (168,197,1,'mcreynoldst@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL), + (169,104,1,'rj.parker@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL), + (170,104,1,'parkerr26@fakemail.net',0,0,0,0,NULL,NULL,NULL,NULL), + (171,91,1,'parker.jackson@example.info',1,0,0,0,NULL,NULL,NULL,NULL), + (172,17,3,'info@hatchnetwork.org',1,0,0,0,NULL,NULL,NULL,NULL), + (173,23,2,'bachmana@hatchnetwork.org',1,0,0,0,NULL,NULL,NULL,NULL), + (174,154,3,'service@ruralservices.org',1,0,0,0,NULL,NULL,NULL,NULL), + (175,123,2,'zope.rolando34@ruralservices.org',1,0,0,0,NULL,NULL,NULL,NULL), + (176,170,3,'info@northpointaction.org',1,0,0,0,NULL,NULL,NULL,NULL), + (177,30,2,'parker.rosario45@northpointaction.org',1,0,0,0,NULL,NULL,NULL,NULL), + (178,114,3,'feedback@perrymanadvocacyassociation.org',1,0,0,0,NULL,NULL,NULL,NULL), + (179,181,2,'lee.landon@perrymanadvocacyassociation.org',0,0,0,0,NULL,NULL,NULL,NULL), + (180,105,3,'info@nebraskaenvironmental.org',1,0,0,0,NULL,NULL,NULL,NULL), + (181,48,2,'alexiaivanov@nebraskaenvironmental.org',0,0,0,0,NULL,NULL,NULL,NULL), + (182,7,3,'sales@candosoftwaresolutions.org',1,0,0,0,NULL,NULL,NULL,NULL), + (183,26,3,'contact@beechalliance.org',1,0,0,0,NULL,NULL,NULL,NULL), + (184,45,2,'sharynb@beechalliance.org',0,0,0,0,NULL,NULL,NULL,NULL), + (185,146,3,'feedback@mainenvironmental.org',1,0,0,0,NULL,NULL,NULL,NULL), + (186,155,2,'jacobsa@mainenvironmental.org',1,0,0,0,NULL,NULL,NULL,NULL), + (187,24,3,'contact@hamletadvocacy.org',1,0,0,0,NULL,NULL,NULL,NULL), + (188,66,3,'sales@maenvironmentalpartnership.org',1,0,0,0,NULL,NULL,NULL,NULL), + (189,115,2,'troyj69@maenvironmentalpartnership.org',0,0,0,0,NULL,NULL,NULL,NULL), + (190,109,3,'contact@secondassociation.org',1,0,0,0,NULL,NULL,NULL,NULL), + (191,193,2,'@secondassociation.org',0,0,0,0,NULL,NULL,NULL,NULL), + (192,124,3,'service@dortonartsalliance.org',1,0,0,0,NULL,NULL,NULL,NULL), + (193,169,2,'terrells@dortonartsalliance.org',0,0,0,0,NULL,NULL,NULL,NULL), + (194,140,3,'feedback@floridaculturefund.org',1,0,0,0,NULL,NULL,NULL,NULL), + (195,180,3,'service@dowlenhealthcenter.org',1,0,0,0,NULL,NULL,NULL,NULL), + (196,177,2,'kz.blackwell@dowlenhealthcenter.org',0,0,0,0,NULL,NULL,NULL,NULL), + (197,150,3,'info@idahotechnology.org',1,0,0,0,NULL,NULL,NULL,NULL), + (198,201,2,'cooper.p.beula37@idahotechnology.org',0,0,0,0,NULL,NULL,NULL,NULL), + (199,62,3,'feedback@floridaagriculture.org',1,0,0,0,NULL,NULL,NULL,NULL), + (200,153,2,'blackwellj@floridaagriculture.org',1,0,0,0,NULL,NULL,NULL,NULL), + (201,55,3,'sales@greenoughsportstrust.org',1,0,0,0,NULL,NULL,NULL,NULL), + (202,202,1,'jenny@example.com',1,0,0,0,NULL,NULL,NULL,NULL), + (203,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL), + (204,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL), + (205,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_email` ENABLE KEYS */; UNLOCK TABLES; @@ -3368,43 +3402,43 @@ INSERT INTO `civicrm_entity_financial_trxn` (`id`, `entity_table`, `entity_id`, (64,'civicrm_financial_item',32,32,100.00), (65,'civicrm_contribution',34,33,100.00), (66,'civicrm_financial_item',33,33,100.00), - (67,'civicrm_contribution',36,34,100.00), + (67,'civicrm_contribution',38,34,100.00), (68,'civicrm_financial_item',34,34,100.00), - (69,'civicrm_contribution',38,35,100.00), + (69,'civicrm_contribution',40,35,100.00), (70,'civicrm_financial_item',35,35,100.00), - (71,'civicrm_contribution',40,36,100.00), + (71,'civicrm_contribution',41,36,100.00), (72,'civicrm_financial_item',36,36,100.00), - (73,'civicrm_contribution',41,37,100.00), + (73,'civicrm_contribution',44,37,100.00), (74,'civicrm_financial_item',37,37,100.00), - (75,'civicrm_contribution',44,38,100.00), + (75,'civicrm_contribution',48,38,100.00), (76,'civicrm_financial_item',38,38,100.00), - (77,'civicrm_contribution',46,39,100.00), + (77,'civicrm_contribution',50,39,100.00), (78,'civicrm_financial_item',39,39,100.00), - (79,'civicrm_contribution',48,40,100.00), + (79,'civicrm_contribution',51,40,100.00), (80,'civicrm_financial_item',40,40,100.00), - (81,'civicrm_contribution',50,41,100.00), + (81,'civicrm_contribution',52,41,100.00), (82,'civicrm_financial_item',41,41,100.00), - (83,'civicrm_contribution',51,42,100.00), + (83,'civicrm_contribution',54,42,100.00), (84,'civicrm_financial_item',42,42,100.00), - (85,'civicrm_contribution',52,43,100.00), + (85,'civicrm_contribution',58,43,100.00), (86,'civicrm_financial_item',43,43,100.00), - (87,'civicrm_contribution',54,44,100.00), + (87,'civicrm_contribution',60,44,100.00), (88,'civicrm_financial_item',44,44,100.00), - (89,'civicrm_contribution',58,45,100.00), - (90,'civicrm_financial_item',45,45,100.00), - (91,'civicrm_contribution',60,46,100.00), - (92,'civicrm_financial_item',46,46,100.00), - (93,'civicrm_contribution',33,47,50.00), + (89,'civicrm_contribution',33,45,50.00), + (90,'civicrm_financial_item',45,45,50.00), + (91,'civicrm_contribution',35,46,50.00), + (92,'civicrm_financial_item',46,46,50.00), + (93,'civicrm_contribution',36,47,50.00), (94,'civicrm_financial_item',47,47,50.00), - (95,'civicrm_contribution',35,48,50.00), + (95,'civicrm_contribution',37,48,50.00), (96,'civicrm_financial_item',48,48,50.00), - (97,'civicrm_contribution',37,49,50.00), + (97,'civicrm_contribution',39,49,50.00), (98,'civicrm_financial_item',49,49,50.00), - (99,'civicrm_contribution',39,50,50.00), + (99,'civicrm_contribution',43,50,50.00), (100,'civicrm_financial_item',50,50,50.00), - (101,'civicrm_contribution',43,51,50.00), + (101,'civicrm_contribution',45,51,50.00), (102,'civicrm_financial_item',51,51,50.00), - (103,'civicrm_contribution',45,52,50.00), + (103,'civicrm_contribution',46,52,50.00), (104,'civicrm_financial_item',52,52,50.00), (105,'civicrm_contribution',47,53,50.00), (106,'civicrm_financial_item',53,53,50.00), @@ -3534,126 +3568,120 @@ 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 - (18,'civicrm_contact',10,4), - (67,'civicrm_contact',11,5), - (4,'civicrm_contact',14,2), - (27,'civicrm_contact',16,5), - (84,'civicrm_contact',19,4), - (60,'civicrm_contact',21,4), - (61,'civicrm_contact',21,5), - (74,'civicrm_contact',23,4), - (33,'civicrm_contact',24,4), - (34,'civicrm_contact',24,5), - (101,'civicrm_contact',26,5), - (48,'civicrm_contact',28,4), - (117,'civicrm_contact',29,4), - (94,'civicrm_contact',30,4), - (95,'civicrm_contact',30,5), - (119,'civicrm_contact',32,4), - (107,'civicrm_contact',33,4), - (108,'civicrm_contact',33,5), - (55,'civicrm_contact',34,5), - (90,'civicrm_contact',36,4), - (91,'civicrm_contact',36,5), - (77,'civicrm_contact',37,5), - (52,'civicrm_contact',39,4), - (53,'civicrm_contact',39,5), - (42,'civicrm_contact',42,4), - (43,'civicrm_contact',42,5), - (81,'civicrm_contact',43,5), - (49,'civicrm_contact',46,5), - (56,'civicrm_contact',48,4), - (57,'civicrm_contact',48,5), - (28,'civicrm_contact',53,4), - (70,'civicrm_contact',56,4), - (73,'civicrm_contact',58,4), - (71,'civicrm_contact',60,4), - (72,'civicrm_contact',60,5), - (87,'civicrm_contact',61,4), - (102,'civicrm_contact',63,4), - (103,'civicrm_contact',63,5), - (115,'civicrm_contact',64,5), - (31,'civicrm_contact',66,4), - (32,'civicrm_contact',66,5), - (6,'civicrm_contact',67,3), - (30,'civicrm_contact',68,5), - (54,'civicrm_contact',70,5), - (118,'civicrm_contact',74,5), - (88,'civicrm_contact',75,4), - (89,'civicrm_contact',75,5), - (7,'civicrm_contact',76,2), - (29,'civicrm_contact',79,5), - (19,'civicrm_contact',81,4), - (20,'civicrm_contact',81,5), - (51,'civicrm_contact',82,5), - (13,'civicrm_contact',83,4), - (68,'civicrm_contact',84,4), - (69,'civicrm_contact',84,5), - (50,'civicrm_contact',86,4), - (62,'civicrm_contact',90,4), - (63,'civicrm_contact',90,5), - (112,'civicrm_contact',92,4), - (40,'civicrm_contact',93,4), - (41,'civicrm_contact',93,5), - (44,'civicrm_contact',97,5), - (5,'civicrm_contact',98,1), - (97,'civicrm_contact',99,4), - (98,'civicrm_contact',99,5), - (45,'civicrm_contact',103,5), - (85,'civicrm_contact',105,4), - (86,'civicrm_contact',105,5), - (66,'civicrm_contact',106,4), - (35,'civicrm_contact',109,4), - (14,'civicrm_contact',111,4), - (15,'civicrm_contact',111,5), - (64,'civicrm_contact',114,4), - (65,'civicrm_contact',114,5), - (8,'civicrm_contact',115,3), - (36,'civicrm_contact',116,5), - (116,'civicrm_contact',118,4), - (3,'civicrm_contact',124,1), - (25,'civicrm_contact',126,4), - (26,'civicrm_contact',126,5), - (82,'civicrm_contact',129,4), - (83,'civicrm_contact',129,5), - (9,'civicrm_contact',132,1), - (93,'civicrm_contact',134,4), - (106,'civicrm_contact',136,4), - (92,'civicrm_contact',139,5), - (78,'civicrm_contact',140,5), - (104,'civicrm_contact',148,4), - (12,'civicrm_contact',152,5), - (23,'civicrm_contact',154,5), - (96,'civicrm_contact',155,4), - (99,'civicrm_contact',156,4), - (100,'civicrm_contact',156,5), - (1,'civicrm_contact',159,2), - (80,'civicrm_contact',160,4), - (105,'civicrm_contact',161,5), - (46,'civicrm_contact',162,4), - (47,'civicrm_contact',162,5), - (37,'civicrm_contact',165,4), - (38,'civicrm_contact',165,5), - (39,'civicrm_contact',166,4), - (110,'civicrm_contact',168,4), - (111,'civicrm_contact',168,5), - (79,'civicrm_contact',170,5), - (75,'civicrm_contact',175,4), - (120,'civicrm_contact',178,5), - (24,'civicrm_contact',181,4), - (11,'civicrm_contact',185,4), - (16,'civicrm_contact',189,4), - (17,'civicrm_contact',189,5), - (10,'civicrm_contact',190,1), - (58,'civicrm_contact',192,4), - (59,'civicrm_contact',192,5), - (109,'civicrm_contact',196,5), - (76,'civicrm_contact',197,4), - (113,'civicrm_contact',198,4), - (114,'civicrm_contact',198,5), - (2,'civicrm_contact',199,3), - (21,'civicrm_contact',201,4), - (22,'civicrm_contact',201,5); + (19,'civicrm_contact',2,4), + (72,'civicrm_contact',5,5), + (113,'civicrm_contact',8,5), + (18,'civicrm_contact',10,5), + (69,'civicrm_contact',11,5), + (34,'civicrm_contact',16,5), + (1,'civicrm_contact',17,2), + (61,'civicrm_contact',20,5), + (5,'civicrm_contact',24,3), + (4,'civicrm_contact',26,1), + (48,'civicrm_contact',28,5), + (40,'civicrm_contact',29,5), + (60,'civicrm_contact',35,5), + (112,'civicrm_contact',37,5), + (52,'civicrm_contact',38,4), + (53,'civicrm_contact',39,4), + (54,'civicrm_contact',39,5), + (20,'civicrm_contact',40,5), + (101,'civicrm_contact',41,5), + (59,'civicrm_contact',49,4), + (98,'civicrm_contact',50,4), + (96,'civicrm_contact',53,4), + (62,'civicrm_contact',54,4), + (63,'civicrm_contact',54,5), + (24,'civicrm_contact',57,4), + (25,'civicrm_contact',57,5), + (13,'civicrm_contact',58,4), + (15,'civicrm_contact',61,5), + (10,'civicrm_contact',62,3), + (93,'civicrm_contact',63,4), + (94,'civicrm_contact',63,5), + (31,'civicrm_contact',65,4), + (6,'civicrm_contact',66,1), + (71,'civicrm_contact',68,5), + (29,'civicrm_contact',69,4), + (30,'civicrm_contact',69,5), + (106,'civicrm_contact',70,4), + (66,'civicrm_contact',72,4), + (67,'civicrm_contact',72,5), + (83,'civicrm_contact',77,4), + (46,'civicrm_contact',78,4), + (47,'civicrm_contact',78,5), + (97,'civicrm_contact',79,4), + (42,'civicrm_contact',80,4), + (87,'civicrm_contact',82,4), + (86,'civicrm_contact',83,4), + (55,'civicrm_contact',93,4), + (56,'civicrm_contact',93,5), + (73,'civicrm_contact',96,4), + (74,'civicrm_contact',96,5), + (82,'civicrm_contact',97,4), + (84,'civicrm_contact',99,4), + (85,'civicrm_contact',99,5), + (28,'civicrm_contact',100,4), + (70,'civicrm_contact',101,5), + (114,'civicrm_contact',104,4), + (3,'civicrm_contact',105,3), + (78,'civicrm_contact',106,4), + (37,'civicrm_contact',108,4), + (38,'civicrm_contact',108,5), + (104,'civicrm_contact',111,4), + (105,'civicrm_contact',111,5), + (103,'civicrm_contact',115,4), + (88,'civicrm_contact',117,4), + (89,'civicrm_contact',117,5), + (90,'civicrm_contact',122,4), + (7,'civicrm_contact',124,1), + (57,'civicrm_contact',126,4), + (58,'civicrm_contact',126,5), + (27,'civicrm_contact',128,5), + (91,'civicrm_contact',129,4), + (92,'civicrm_contact',129,5), + (14,'civicrm_contact',134,4), + (22,'civicrm_contact',135,4), + (23,'civicrm_contact',135,5), + (26,'civicrm_contact',139,5), + (8,'civicrm_contact',140,3), + (12,'civicrm_contact',142,5), + (35,'civicrm_contact',145,5), + (49,'civicrm_contact',147,4), + (50,'civicrm_contact',147,5), + (32,'civicrm_contact',148,5), + (39,'civicrm_contact',151,4), + (16,'civicrm_contact',152,4), + (110,'civicrm_contact',156,4), + (111,'civicrm_contact',156,5), + (11,'civicrm_contact',157,5), + (81,'civicrm_contact',163,4), + (99,'civicrm_contact',165,4), + (100,'civicrm_contact',165,5), + (41,'civicrm_contact',166,5), + (75,'civicrm_contact',168,4), + (76,'civicrm_contact',168,5), + (2,'civicrm_contact',170,1), + (77,'civicrm_contact',172,5), + (51,'civicrm_contact',173,5), + (107,'civicrm_contact',175,5), + (68,'civicrm_contact',176,5), + (44,'civicrm_contact',177,4), + (45,'civicrm_contact',177,5), + (21,'civicrm_contact',178,5), + (9,'civicrm_contact',180,1), + (17,'civicrm_contact',181,5), + (33,'civicrm_contact',182,5), + (64,'civicrm_contact',183,4), + (65,'civicrm_contact',183,5), + (79,'civicrm_contact',186,4), + (80,'civicrm_contact',186,5), + (102,'civicrm_contact',187,4), + (43,'civicrm_contact',194,5), + (108,'civicrm_contact',195,4), + (109,'civicrm_contact',195,5), + (36,'civicrm_contact',196,5), + (95,'civicrm_contact',200,5); /*!40000 ALTER TABLE `civicrm_entity_tag` ENABLE KEYS */; UNLOCK TABLES; @@ -3664,9 +3692,9 @@ UNLOCK TABLES; LOCK TABLES `civicrm_event` WRITE; /*!40000 ALTER TABLE `civicrm_event` DISABLE KEYS */; INSERT INTO `civicrm_event` (`id`, `title`, `summary`, `description`, `event_type_id`, `participant_listing_id`, `is_public`, `start_date`, `end_date`, `is_online_registration`, `registration_link_text`, `registration_start_date`, `registration_end_date`, `max_participants`, `event_full_text`, `is_monetary`, `financial_type_id`, `payment_processor`, `is_map`, `is_active`, `fee_label`, `is_show_location`, `loc_block_id`, `default_role_id`, `intro_text`, `footer_text`, `confirm_title`, `confirm_text`, `confirm_footer_text`, `is_email_confirm`, `confirm_email_text`, `confirm_from_name`, `confirm_from_email`, `cc_confirm`, `bcc_confirm`, `default_fee_id`, `default_discount_fee_id`, `thankyou_title`, `thankyou_text`, `thankyou_footer_text`, `is_pay_later`, `pay_later_text`, `pay_later_receipt`, `is_partial_payment`, `initial_amount_label`, `initial_amount_help_text`, `min_initial_amount`, `is_multiple_registrations`, `max_additional_participants`, `allow_same_participant_emails`, `has_waitlist`, `requires_approval`, `expiration_time`, `allow_selfcancelxfer`, `selfcancelxfer_time`, `waitlist_text`, `approval_req_text`, `is_template`, `template_title`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `is_confirm_enabled`, `parent_event_id`, `slot_label_id`, `dedupe_rule_group_id`, `is_billing_required`) VALUES - (1,'Fall Fundraiser Dinner','Kick up your heels at our Fall Fundraiser Dinner/Dance at Glen Echo Park! Come by yourself or bring a partner, friend or the entire family!','This event benefits our teen programs. Admission includes a full 3 course meal and wine or soft drinks. Grab your dancing shoes, bring the kids and come join the party!',3,1,1,'2023-04-12 17:00:00','2023-04-14 17:00:00',1,'Register Now',NULL,NULL,100,'Sorry! The Fall Fundraiser Dinner is full. Please call Jane at 204 222-1000 ext 33 if you want to be added to the waiting list.',1,4,NULL,1,1,'Dinner Contribution',1,1,1,'Fill in the information below to join as at this wonderful dinner event.',NULL,'Confirm Your Registration Information','Review the information below carefully.',NULL,1,'Contact the Development Department if you need to make any changes to your registration.','Fundraising Dept.','development@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!','

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

Please tell your friends and colleagues about this wonderful event.

','

Back to CiviCRM Home Page

',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0), - (2,'Summer Solstice Festival Day Concert','Festival Day is coming! Join us and help support your parks.','We will gather at noon, learn a song all together, and then join in a joyous procession to the pavilion. We will be one of many groups performing at this wonderful concert which benefits our city parks.',5,1,1,'2022-10-11 12:00:00','2022-10-11 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,0,1,'Festival Fee',1,2,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','

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

Please tell your friends and colleagues about the concert.

','

Back to CiviCRM Home Page

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

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

','

Back to CiviCRM Home Page

',0,NULL,NULL,0,NULL,NULL,NULL,0,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0), + (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,'2023-04-17 17:00:00','2023-04-19 17:00:00',1,'Register Now',NULL,NULL,100,'Sorry! The Fall Fundraiser Dinner is full. Please call Jane at 204 222-1000 ext 33 if you want to be added to the waiting list.',1,4,NULL,1,1,'Dinner Contribution',1,1,1,'Fill in the information below to join as at this wonderful dinner event.',NULL,'Confirm Your Registration Information','Review the information below carefully.',NULL,1,'Contact the Development Department if you need to make any changes to your registration.','Fundraising Dept.','development@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!','

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

Please tell your friends and colleagues about this wonderful event.

','

Back to CiviCRM Home Page

',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0), + (2,'Summer Solstice Festival Day Concert','Festival Day is coming! Join us and help support your parks.','We will gather at noon, learn a song all together, and then join in a joyous procession to the pavilion. We will be one of many groups performing at this wonderful concert which benefits our city parks.',5,1,1,'2022-10-16 12:00:00','2022-10-16 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,0,1,'Festival Fee',1,2,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','

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

Please tell your friends and colleagues about the concert.

','

Back to CiviCRM Home Page

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

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

','

Back to CiviCRM Home Page

',0,NULL,NULL,0,NULL,NULL,NULL,0,0,0,0,0,NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0), (4,NULL,NULL,NULL,4,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,0,0,0,NULL,0,0,NULL,NULL,1,'Free Meeting without Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0), (5,NULL,NULL,NULL,4,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,0,0,NULL,0,0,NULL,NULL,1,'Free Meeting with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0), (6,NULL,NULL,NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,4,NULL,0,1,'Conference Fee',1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,1,NULL,'Event Template Dept.','event_templates@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,0,1,0,0,NULL,0,0,NULL,NULL,1,'Paid Conference with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0); @@ -3749,117 +3777,117 @@ UNLOCK TABLES; LOCK TABLES `civicrm_financial_item` WRITE; /*!40000 ALTER TABLE `civicrm_financial_item` DISABLE KEYS */; INSERT INTO `civicrm_financial_item` (`id`, `created_date`, `transaction_date`, `contact_id`, `description`, `amount`, `currency`, `financial_account_id`, `status_id`, `entity_table`, `entity_id`) VALUES - (1,'2022-10-12 03:42:26','2012-10-12 03:42:25',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1), - (2,'2022-10-12 03:42:26','2020-07-12 03:42:25',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2), - (3,'2022-10-12 03:42:26','2016-09-16 14:42:25',6,'Contribution Amount',25.00,'GBP',1,1,'civicrm_line_item',3), - (4,'2022-10-12 03:42:26','2020-07-12 03:42:25',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4), - (5,'2022-10-12 03:42:26','2020-07-12 03:42:25',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',5), - (6,'2022-10-12 03:42:26','2022-07-19 03:00:25',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',6), - (7,'2022-10-12 03:42:26','2022-10-10 03:42:25',19,'Contribution Amount',1750.00,'USD',1,1,'civicrm_line_item',7), - (8,'2022-10-12 03:42:26','2022-02-17 11:53:25',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',8), - (9,'2022-10-12 03:42:26','2021-11-12 03:42:25',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',9), - (10,'2022-10-12 03:42:26','2018-05-20 05:42:25',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',10), - (11,'2022-10-12 03:42:26','2022-10-10 23:42:25',71,'Contribution Amount',500.00,'JPY',1,1,'civicrm_line_item',11), - (12,'2022-10-12 03:42:26','2021-07-11 17:09:05',43,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',12), - (13,'2022-10-12 03:42:26','2022-07-12 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',13), - (14,'2022-10-12 03:42:26','2022-08-12 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',14), - (15,'2022-10-12 03:42:26','2021-07-12 03:42:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',15), - (16,'2022-10-12 03:42:26','2021-08-12 03:42:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',16), - (17,'2022-10-12 03:42:26','2021-09-12 03:42:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',17), - (18,'2022-10-12 03:42:26','2021-10-12 03:42:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',18), - (19,'2022-10-12 03:42:26','2021-11-12 03:42:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',19), - (20,'2022-10-12 03:42:26','2021-12-12 03:42:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',20), - (21,'2022-10-12 03:42:26','2022-01-12 03:42:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',21), - (22,'2022-10-12 03:42:26','2022-02-12 03:42:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',22), - (23,'2022-10-12 03:42:26','2022-03-12 03:42:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',23), - (24,'2022-10-12 03:42:26','2022-04-12 03:42:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',24), - (25,'2022-10-12 03:42:26','2022-05-12 03:42:25',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',25), - (26,'2022-10-12 03:42:26','2022-02-12 03:42:25',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',26), - (27,'2022-10-12 03:42:26','2022-03-12 03:42:25',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',27), - (28,'2022-10-12 03:42:26','2022-04-12 03:42:25',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',28), - (29,'2022-10-12 03:42:26','2022-05-12 03:42:25',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',29), - (30,'2022-10-12 03:42:26','2022-06-12 03:42:25',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',30), - (31,'2022-10-12 03:42:26','2022-09-12 03:42:25',103,'Contribution Amount',5.00,'EUR',1,1,'civicrm_line_item',31), - (32,'2022-10-12 03:42:26','2022-10-12 03:42:25',45,'General',100.00,'USD',2,1,'civicrm_line_item',32), - (33,'2022-10-12 03:42:26','2022-10-12 03:42:25',42,'General',100.00,'USD',2,1,'civicrm_line_item',33), - (34,'2022-10-12 03:42:26','2022-10-12 03:42:25',65,'General',100.00,'USD',2,1,'civicrm_line_item',34), - (35,'2022-10-12 03:42:26','2022-10-12 03:42:25',103,'General',100.00,'USD',2,1,'civicrm_line_item',35), - (36,'2022-10-12 03:42:26','2022-10-12 03:42:25',135,'General',100.00,'USD',2,1,'civicrm_line_item',36), - (37,'2022-10-12 03:42:26','2022-10-12 03:42:25',180,'General',100.00,'USD',2,1,'civicrm_line_item',37), - (38,'2022-10-12 03:42:26','2022-10-12 03:42:25',68,'General',100.00,'USD',2,1,'civicrm_line_item',38), - (39,'2022-10-12 03:42:26','2022-10-12 03:42:25',11,'General',100.00,'USD',2,1,'civicrm_line_item',39), - (40,'2022-10-12 03:42:26','2022-10-12 03:42:25',15,'General',100.00,'USD',2,1,'civicrm_line_item',40), - (41,'2022-10-12 03:42:26','2022-10-12 03:42:25',97,'General',100.00,'USD',2,1,'civicrm_line_item',41), - (42,'2022-10-12 03:42:26','2022-10-12 03:42:25',147,'General',100.00,'USD',2,1,'civicrm_line_item',42), - (43,'2022-10-12 03:42:26','2022-10-12 03:42:25',133,'General',100.00,'USD',2,1,'civicrm_line_item',43), - (44,'2022-10-12 03:42:26','2022-10-12 03:42:25',166,'General',100.00,'USD',2,1,'civicrm_line_item',44), - (45,'2022-10-12 03:42:26','2022-10-12 03:42:25',151,'General',100.00,'USD',2,1,'civicrm_line_item',45), - (46,'2022-10-12 03:42:26','2022-10-12 03:42:25',93,'General',100.00,'USD',2,1,'civicrm_line_item',46), - (47,'2022-10-12 03:42:26','2022-10-12 03:42:25',171,'Student',50.00,'USD',2,1,'civicrm_line_item',47), - (48,'2022-10-12 03:42:26','2022-10-12 03:42:25',29,'Student',50.00,'USD',2,1,'civicrm_line_item',48), - (49,'2022-10-12 03:42:26','2022-10-12 03:42:25',56,'Student',50.00,'USD',2,1,'civicrm_line_item',49), - (50,'2022-10-12 03:42:26','2022-10-12 03:42:25',120,'Student',50.00,'USD',2,1,'civicrm_line_item',50), - (51,'2022-10-12 03:42:26','2022-10-12 03:42:25',32,'Student',50.00,'USD',2,1,'civicrm_line_item',51), - (52,'2022-10-12 03:42:26','2022-10-12 03:42:25',149,'Student',50.00,'USD',2,1,'civicrm_line_item',52), - (53,'2022-10-12 03:42:26','2022-10-12 03:42:25',189,'Student',50.00,'USD',2,1,'civicrm_line_item',53), - (54,'2022-10-12 03:42:26','2022-10-12 03:42:25',197,'Student',50.00,'USD',2,1,'civicrm_line_item',54), - (55,'2022-10-12 03:42:26','2022-10-12 03:42:25',100,'Student',50.00,'USD',2,1,'civicrm_line_item',55), - (56,'2022-10-12 03:42:26','2022-10-12 03:42:25',169,'Student',50.00,'USD',2,1,'civicrm_line_item',56), - (57,'2022-10-12 03:42:26','2022-10-12 03:42:25',188,'Student',50.00,'USD',2,1,'civicrm_line_item',57), - (58,'2022-10-12 03:42:26','2022-10-12 03:42:25',82,'Student',50.00,'USD',2,1,'civicrm_line_item',58), - (59,'2022-10-12 03:42:26','2022-10-12 03:42:25',53,'Student',50.00,'USD',2,1,'civicrm_line_item',59), - (60,'2022-10-12 03:42:26','2022-10-12 03:42:25',162,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',60), - (61,'2022-10-12 03:42:26','2022-10-12 03:42:25',31,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',61), - (62,'2022-10-12 03:42:26','2022-10-12 03:42:25',118,'Soprano',50.00,'USD',2,1,'civicrm_line_item',97), - (63,'2022-10-12 03:42:26','2022-10-12 03:42:25',1,'Soprano',50.00,'USD',2,1,'civicrm_line_item',98), - (64,'2022-10-12 03:42:26','2022-10-12 03:42:25',202,'Soprano',50.00,'USD',2,1,'civicrm_line_item',99), - (65,'2022-10-12 03:42:26','2022-10-12 03:42:25',96,'Soprano',50.00,'USD',2,1,'civicrm_line_item',100), - (66,'2022-10-12 03:42:26','2022-10-12 03:42:25',81,'Soprano',50.00,'USD',2,1,'civicrm_line_item',101), - (67,'2022-10-12 03:42:26','2022-10-12 03:42:25',88,'Soprano',50.00,'USD',2,1,'civicrm_line_item',102), - (68,'2022-10-12 03:42:26','2022-10-12 03:42:25',106,'Soprano',50.00,'USD',2,1,'civicrm_line_item',103), - (69,'2022-10-12 03:42:26','2022-10-12 03:42:25',105,'Soprano',50.00,'USD',2,1,'civicrm_line_item',104), - (70,'2022-10-12 03:42:26','2022-10-12 03:42:25',184,'Soprano',50.00,'USD',2,1,'civicrm_line_item',105), - (71,'2022-10-12 03:42:26','2022-10-12 03:42:25',135,'Soprano',50.00,'USD',2,1,'civicrm_line_item',106), - (72,'2022-10-12 03:42:26','2022-10-12 03:42:25',190,'Soprano',50.00,'USD',2,1,'civicrm_line_item',107), - (73,'2022-10-12 03:42:26','2022-10-12 03:42:25',52,'Soprano',50.00,'USD',2,1,'civicrm_line_item',108), - (74,'2022-10-12 03:42:26','2022-10-12 03:42:25',145,'Soprano',50.00,'USD',2,1,'civicrm_line_item',109), - (75,'2022-10-12 03:42:26','2022-10-12 03:42:25',186,'Soprano',50.00,'USD',2,1,'civicrm_line_item',110), - (76,'2022-10-12 03:42:26','2022-10-12 03:42:25',40,'Soprano',50.00,'USD',2,1,'civicrm_line_item',111), - (77,'2022-10-12 03:42:26','2022-10-12 03:42:25',75,'Soprano',50.00,'USD',2,1,'civicrm_line_item',112), - (78,'2022-10-12 03:42:26','2022-10-12 03:42:25',181,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63), - (79,'2022-10-12 03:42:26','2022-10-12 03:42:25',142,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64), - (80,'2022-10-12 03:42:26','2022-10-12 03:42:25',123,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',65), - (81,'2022-10-12 03:42:26','2022-10-12 03:42:25',92,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',66), - (82,'2022-10-12 03:42:26','2022-10-12 03:42:25',187,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',67), - (83,'2022-10-12 03:42:26','2022-10-12 03:42:25',167,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',68), - (84,'2022-10-12 03:42:26','2022-10-12 03:42:25',124,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',69), - (85,'2022-10-12 03:42:26','2022-10-12 03:42:25',50,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',70), - (86,'2022-10-12 03:42:26','2022-10-12 03:42:25',41,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',71), - (87,'2022-10-12 03:42:26','2022-10-12 03:42:25',61,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',72), - (88,'2022-10-12 03:42:26','2022-10-12 03:42:25',132,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',73), - (89,'2022-10-12 03:42:26','2022-10-12 03:42:25',148,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',74), - (90,'2022-10-12 03:42:26','2022-10-12 03:42:25',54,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',75), - (91,'2022-10-12 03:42:26','2022-10-12 03:42:25',163,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',76), - (92,'2022-10-12 03:42:26','2022-10-12 03:42:25',159,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',77), - (93,'2022-10-12 03:42:26','2022-10-12 03:42:25',57,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',78), - (94,'2022-10-12 03:42:26','2022-10-12 03:42:25',6,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',79), - (95,'2022-10-12 03:42:26','2022-10-12 03:42:25',44,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',80), - (96,'2022-10-12 03:42:26','2022-10-12 03:42:25',3,'Single',50.00,'USD',4,1,'civicrm_line_item',81), - (97,'2022-10-12 03:42:26','2022-10-12 03:42:25',56,'Single',50.00,'USD',4,1,'civicrm_line_item',82), - (98,'2022-10-12 03:42:26','2022-10-12 03:42:25',47,'Single',50.00,'USD',4,1,'civicrm_line_item',83), - (99,'2022-10-12 03:42:26','2022-10-12 03:42:25',120,'Single',50.00,'USD',4,1,'civicrm_line_item',84), - (100,'2022-10-12 03:42:26','2022-10-12 03:42:25',144,'Single',50.00,'USD',4,1,'civicrm_line_item',85), - (101,'2022-10-12 03:42:26','2022-10-12 03:42:25',67,'Single',50.00,'USD',4,1,'civicrm_line_item',86), - (102,'2022-10-12 03:42:26','2022-10-12 03:42:25',119,'Single',50.00,'USD',4,1,'civicrm_line_item',87), - (103,'2022-10-12 03:42:26','2022-10-12 03:42:25',111,'Single',50.00,'USD',4,1,'civicrm_line_item',88), - (104,'2022-10-12 03:42:26','2022-10-12 03:42:25',86,'Single',50.00,'USD',4,1,'civicrm_line_item',89), - (105,'2022-10-12 03:42:26','2022-10-12 03:42:25',94,'Single',50.00,'USD',4,1,'civicrm_line_item',90), - (106,'2022-10-12 03:42:26','2022-10-12 03:42:25',12,'Single',50.00,'USD',4,1,'civicrm_line_item',91), - (107,'2022-10-12 03:42:26','2022-10-12 03:42:25',58,'Single',50.00,'USD',4,1,'civicrm_line_item',92), - (108,'2022-10-12 03:42:26','2022-10-12 03:42:25',117,'Single',50.00,'USD',4,1,'civicrm_line_item',93), - (109,'2022-10-12 03:42:26','2022-10-12 03:42:25',4,'Single',50.00,'USD',4,1,'civicrm_line_item',94), - (110,'2022-10-12 03:42:26','2022-10-12 03:42:25',116,'Single',50.00,'USD',4,1,'civicrm_line_item',95), - (111,'2022-10-12 03:42:26','2022-10-12 03:42:25',157,'Single',50.00,'USD',4,1,'civicrm_line_item',96); + (1,'2022-10-17 14:12:07','2012-10-17 14:12:07',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1), + (2,'2022-10-17 14:12:07','2020-07-17 14:12:07',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2), + (3,'2022-10-17 14:12:07','2016-09-22 01:12:07',6,'Contribution Amount',25.00,'GBP',1,1,'civicrm_line_item',3), + (4,'2022-10-17 14:12:07','2020-07-17 14:12:07',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4), + (5,'2022-10-17 14:12:07','2020-07-17 14:12:07',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',5), + (6,'2022-10-17 14:12:07','2022-07-24 13:30:07',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',6), + (7,'2022-10-17 14:12:07','2022-10-15 14:12:07',19,'Contribution Amount',1750.00,'USD',1,1,'civicrm_line_item',7), + (8,'2022-10-17 14:12:07','2022-02-22 22:23:07',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',8), + (9,'2022-10-17 14:12:07','2021-11-17 14:12:07',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',9), + (10,'2022-10-17 14:12:07','2018-05-25 16:12:07',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',10), + (11,'2022-10-17 14:12:07','2022-10-16 10:12:07',71,'Contribution Amount',500.00,'JPY',1,1,'civicrm_line_item',11), + (12,'2022-10-17 14:12:07','2021-07-17 03:38:47',43,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',12), + (13,'2022-10-17 14:12:07','2022-07-17 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',13), + (14,'2022-10-17 14:12:07','2022-08-17 00:00:00',32,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',14), + (15,'2022-10-17 14:12:07','2021-07-17 14:12:07',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',15), + (16,'2022-10-17 14:12:07','2021-08-17 14:12:07',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',16), + (17,'2022-10-17 14:12:07','2021-09-17 14:12:07',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',17), + (18,'2022-10-17 14:12:07','2021-10-17 14:12:07',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',18), + (19,'2022-10-17 14:12:07','2021-11-17 14:12:07',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',19), + (20,'2022-10-17 14:12:07','2021-12-17 14:12:07',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',20), + (21,'2022-10-17 14:12:07','2022-01-17 14:12:07',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',21), + (22,'2022-10-17 14:12:07','2022-02-17 14:12:07',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',22), + (23,'2022-10-17 14:12:07','2022-03-17 14:12:07',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',23), + (24,'2022-10-17 14:12:07','2022-04-17 14:12:07',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',24), + (25,'2022-10-17 14:12:07','2022-05-17 14:12:07',59,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',25), + (26,'2022-10-17 14:12:07','2022-02-17 14:12:07',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',26), + (27,'2022-10-17 14:12:07','2022-03-17 14:12:07',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',27), + (28,'2022-10-17 14:12:07','2022-04-17 14:12:07',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',28), + (29,'2022-10-17 14:12:07','2022-05-17 14:12:07',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',29), + (30,'2022-10-17 14:12:07','2022-06-17 14:12:07',99,'Contribution Amount',10.00,'CAD',1,1,'civicrm_line_item',30), + (31,'2022-10-17 14:12:07','2022-09-17 14:12:07',103,'Contribution Amount',5.00,'EUR',1,1,'civicrm_line_item',31), + (32,'2022-10-17 14:12:07','2022-10-17 14:12:07',187,'General',100.00,'USD',2,1,'civicrm_line_item',32), + (33,'2022-10-17 14:12:07','2022-10-17 14:12:07',63,'General',100.00,'USD',2,1,'civicrm_line_item',33), + (34,'2022-10-17 14:12:07','2022-10-17 14:12:07',27,'General',100.00,'USD',2,1,'civicrm_line_item',34), + (35,'2022-10-17 14:12:07','2022-10-17 14:12:07',186,'General',100.00,'USD',2,1,'civicrm_line_item',35), + (36,'2022-10-17 14:12:07','2022-10-17 14:12:07',199,'General',100.00,'USD',2,1,'civicrm_line_item',36), + (37,'2022-10-17 14:12:07','2022-10-17 14:12:07',4,'General',100.00,'USD',2,1,'civicrm_line_item',37), + (38,'2022-10-17 14:12:07','2022-10-17 14:12:07',40,'General',100.00,'USD',2,1,'civicrm_line_item',38), + (39,'2022-10-17 14:12:07','2022-10-17 14:12:07',90,'General',100.00,'USD',2,1,'civicrm_line_item',39), + (40,'2022-10-17 14:12:07','2022-10-17 14:12:07',185,'General',100.00,'USD',2,1,'civicrm_line_item',40), + (41,'2022-10-17 14:12:07','2022-10-17 14:12:07',94,'General',100.00,'USD',2,1,'civicrm_line_item',41), + (42,'2022-10-17 14:12:07','2022-10-17 14:12:07',18,'General',100.00,'USD',2,1,'civicrm_line_item',42), + (43,'2022-10-17 14:12:07','2022-10-17 14:12:07',196,'General',100.00,'USD',2,1,'civicrm_line_item',43), + (44,'2022-10-17 14:12:07','2022-10-17 14:12:07',108,'General',100.00,'USD',2,1,'civicrm_line_item',44), + (45,'2022-10-17 14:12:07','2022-10-17 14:12:07',128,'Student',50.00,'USD',2,1,'civicrm_line_item',45), + (46,'2022-10-17 14:12:07','2022-10-17 14:12:07',190,'Student',50.00,'USD',2,1,'civicrm_line_item',46), + (47,'2022-10-17 14:12:07','2022-10-17 14:12:07',58,'Student',50.00,'USD',2,1,'civicrm_line_item',47), + (48,'2022-10-17 14:12:07','2022-10-17 14:12:07',73,'Student',50.00,'USD',2,1,'civicrm_line_item',48), + (49,'2022-10-17 14:12:07','2022-10-17 14:12:07',45,'Student',50.00,'USD',2,1,'civicrm_line_item',49), + (50,'2022-10-17 14:12:07','2022-10-17 14:12:07',192,'Student',50.00,'USD',2,1,'civicrm_line_item',50), + (51,'2022-10-17 14:12:07','2022-10-17 14:12:07',189,'Student',50.00,'USD',2,1,'civicrm_line_item',51), + (52,'2022-10-17 14:12:07','2022-10-17 14:12:07',157,'Student',50.00,'USD',2,1,'civicrm_line_item',52), + (53,'2022-10-17 14:12:08','2022-10-17 14:12:07',104,'Student',50.00,'USD',2,1,'civicrm_line_item',53), + (54,'2022-10-17 14:12:08','2022-10-17 14:12:07',54,'Student',50.00,'USD',2,1,'civicrm_line_item',54), + (55,'2022-10-17 14:12:08','2022-10-17 14:12:07',111,'Student',50.00,'USD',2,1,'civicrm_line_item',55), + (56,'2022-10-17 14:12:08','2022-10-17 14:12:07',106,'Student',50.00,'USD',2,1,'civicrm_line_item',56), + (57,'2022-10-17 14:12:08','2022-10-17 14:12:07',136,'Student',50.00,'USD',2,1,'civicrm_line_item',57), + (58,'2022-10-17 14:12:08','2022-10-17 14:12:07',171,'Student',50.00,'USD',2,1,'civicrm_line_item',58), + (59,'2022-10-17 14:12:08','2022-10-17 14:12:07',121,'Student',50.00,'USD',2,1,'civicrm_line_item',59), + (60,'2022-10-17 14:12:08','2022-10-17 14:12:07',194,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',60), + (61,'2022-10-17 14:12:08','2022-10-17 14:12:07',28,'Lifetime',1200.00,'USD',2,1,'civicrm_line_item',61), + (62,'2022-10-17 14:12:08','2022-10-17 14:12:07',115,'Soprano',50.00,'USD',2,1,'civicrm_line_item',97), + (63,'2022-10-17 14:12:08','2022-10-17 14:12:07',107,'Soprano',50.00,'USD',2,1,'civicrm_line_item',98), + (64,'2022-10-17 14:12:08','2022-10-17 14:12:07',174,'Soprano',50.00,'USD',2,1,'civicrm_line_item',99), + (65,'2022-10-17 14:12:08','2022-10-17 14:12:07',31,'Soprano',50.00,'USD',2,1,'civicrm_line_item',100), + (66,'2022-10-17 14:12:08','2022-10-17 14:12:07',127,'Soprano',50.00,'USD',2,1,'civicrm_line_item',101), + (67,'2022-10-17 14:12:08','2022-10-17 14:12:07',183,'Soprano',50.00,'USD',2,1,'civicrm_line_item',102), + (68,'2022-10-17 14:12:08','2022-10-17 14:12:07',144,'Soprano',50.00,'USD',2,1,'civicrm_line_item',103), + (69,'2022-10-17 14:12:08','2022-10-17 14:12:07',154,'Soprano',50.00,'USD',2,1,'civicrm_line_item',104), + (70,'2022-10-17 14:12:08','2022-10-17 14:12:07',22,'Soprano',50.00,'USD',2,1,'civicrm_line_item',105), + (71,'2022-10-17 14:12:08','2022-10-17 14:12:07',122,'Soprano',50.00,'USD',2,1,'civicrm_line_item',106), + (72,'2022-10-17 14:12:08','2022-10-17 14:12:07',101,'Soprano',50.00,'USD',2,1,'civicrm_line_item',107), + (73,'2022-10-17 14:12:08','2022-10-17 14:12:07',106,'Soprano',50.00,'USD',2,1,'civicrm_line_item',108), + (74,'2022-10-17 14:12:08','2022-10-17 14:12:07',94,'Soprano',50.00,'USD',2,1,'civicrm_line_item',109), + (75,'2022-10-17 14:12:08','2022-10-17 14:12:07',179,'Soprano',50.00,'USD',2,1,'civicrm_line_item',110), + (76,'2022-10-17 14:12:08','2022-10-17 14:12:07',135,'Soprano',50.00,'USD',2,1,'civicrm_line_item',111), + (77,'2022-10-17 14:12:08','2022-10-17 14:12:07',136,'Soprano',50.00,'USD',2,1,'civicrm_line_item',112), + (78,'2022-10-17 14:12:08','2022-10-17 14:12:07',117,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63), + (79,'2022-10-17 14:12:08','2022-10-17 14:12:07',7,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64), + (80,'2022-10-17 14:12:08','2022-10-17 14:12:07',97,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',65), + (81,'2022-10-17 14:12:08','2022-10-17 14:12:07',51,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',66), + (82,'2022-10-17 14:12:08','2022-10-17 14:12:07',143,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',67), + (83,'2022-10-17 14:12:08','2022-10-17 14:12:07',73,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',68), + (84,'2022-10-17 14:12:08','2022-10-17 14:12:07',33,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',69), + (85,'2022-10-17 14:12:08','2022-10-17 14:12:07',123,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',70), + (86,'2022-10-17 14:12:08','2022-10-17 14:12:07',28,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',71), + (87,'2022-10-17 14:12:08','2022-10-17 14:12:07',20,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',72), + (88,'2022-10-17 14:12:08','2022-10-17 14:12:07',91,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',73), + (89,'2022-10-17 14:12:08','2022-10-17 14:12:07',186,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',74), + (90,'2022-10-17 14:12:08','2022-10-17 14:12:07',149,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',75), + (91,'2022-10-17 14:12:08','2022-10-17 14:12:07',173,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',76), + (92,'2022-10-17 14:12:08','2022-10-17 14:12:07',13,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',77), + (93,'2022-10-17 14:12:08','2022-10-17 14:12:07',3,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',78), + (94,'2022-10-17 14:12:08','2022-10-17 14:12:07',119,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',79), + (95,'2022-10-17 14:12:08','2022-10-17 14:12:07',128,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',80), + (96,'2022-10-17 14:12:08','2022-10-17 14:12:07',65,'Single',50.00,'USD',4,1,'civicrm_line_item',81), + (97,'2022-10-17 14:12:08','2022-10-17 14:12:07',43,'Single',50.00,'USD',4,1,'civicrm_line_item',82), + (98,'2022-10-17 14:12:08','2022-10-17 14:12:07',138,'Single',50.00,'USD',4,1,'civicrm_line_item',83), + (99,'2022-10-17 14:12:08','2022-10-17 14:12:07',72,'Single',50.00,'USD',4,1,'civicrm_line_item',84), + (100,'2022-10-17 14:12:08','2022-10-17 14:12:07',42,'Single',50.00,'USD',4,1,'civicrm_line_item',85), + (101,'2022-10-17 14:12:08','2022-10-17 14:12:07',84,'Single',50.00,'USD',4,1,'civicrm_line_item',86), + (102,'2022-10-17 14:12:08','2022-10-17 14:12:07',86,'Single',50.00,'USD',4,1,'civicrm_line_item',87), + (103,'2022-10-17 14:12:08','2022-10-17 14:12:07',77,'Single',50.00,'USD',4,1,'civicrm_line_item',88), + (104,'2022-10-17 14:12:08','2022-10-17 14:12:07',100,'Single',50.00,'USD',4,1,'civicrm_line_item',89), + (105,'2022-10-17 14:12:08','2022-10-17 14:12:07',96,'Single',50.00,'USD',4,1,'civicrm_line_item',90), + (106,'2022-10-17 14:12:08','2022-10-17 14:12:07',87,'Single',50.00,'USD',4,1,'civicrm_line_item',91), + (107,'2022-10-17 14:12:08','2022-10-17 14:12:07',132,'Single',50.00,'USD',4,1,'civicrm_line_item',92), + (108,'2022-10-17 14:12:08','2022-10-17 14:12:07',16,'Single',50.00,'USD',4,1,'civicrm_line_item',93), + (109,'2022-10-17 14:12:08','2022-10-17 14:12:07',44,'Single',50.00,'USD',4,1,'civicrm_line_item',94), + (110,'2022-10-17 14:12:08','2022-10-17 14:12:07',4,'Single',50.00,'USD',4,1,'civicrm_line_item',95), + (111,'2022-10-17 14:12:08','2022-10-17 14:12:07',15,'Single',50.00,'USD',4,1,'civicrm_line_item',96); /*!40000 ALTER TABLE `civicrm_financial_item` ENABLE KEYS */; UNLOCK TABLES; @@ -3870,117 +3898,117 @@ UNLOCK TABLES; LOCK TABLES `civicrm_financial_trxn` WRITE; /*!40000 ALTER TABLE `civicrm_financial_trxn` DISABLE KEYS */; INSERT INTO `civicrm_financial_trxn` (`id`, `from_financial_account_id`, `to_financial_account_id`, `trxn_date`, `total_amount`, `fee_amount`, `net_amount`, `currency`, `is_payment`, `trxn_id`, `trxn_result_code`, `status_id`, `payment_processor_id`, `payment_instrument_id`, `card_type_id`, `check_number`, `pan_truncation`, `order_reference`) VALUES - (1,NULL,6,'2012-10-12 03:42:25',125.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'1041',NULL,NULL), - (2,NULL,6,'2020-07-12 03:42:25',50.00,NULL,NULL,'USD',1,'P20901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (3,NULL,6,'2016-09-16 14:42:25',25.00,NULL,NULL,'GBP',1,'GBP12',NULL,1,NULL,4,NULL,'2095',NULL,NULL), - (4,NULL,6,'2020-07-12 03:42:25',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'10552',NULL,NULL), - (5,NULL,6,'2020-07-12 03:42:25',50.00,NULL,NULL,'USD',1,'Q90901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (6,NULL,6,'2022-07-19 03:00:25',500.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'509',NULL,NULL), - (7,NULL,6,'2022-10-10 03:42:25',1750.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,'102',NULL,NULL), - (8,NULL,6,'2022-02-17 11:53:25',50.00,NULL,NULL,'USD',1,'P20193L2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (9,NULL,6,'2021-11-12 03:42:25',10.00,NULL,NULL,'USD',1,'P40232Y3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (10,NULL,6,'2018-05-20 05:42:25',250.00,NULL,NULL,'USD',1,'P20193L6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (11,NULL,6,'2022-10-10 23:42:25',500.00,NULL,NULL,'JPY',1,'PL71',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (12,NULL,6,'2021-07-11 17:09:05',50.00,NULL,NULL,'USD',1,'P291X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (13,NULL,6,'2022-07-12 00:00:00',50.00,NULL,NULL,'USD',1,'PL32I',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (14,NULL,6,'2022-08-12 00:00:00',50.00,NULL,NULL,'USD',1,'PL32II',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (15,NULL,6,'2021-07-12 03:42:25',25.00,NULL,NULL,'USD',1,'PL32I591',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (16,NULL,6,'2021-08-12 03:42:25',25.00,NULL,NULL,'USD',1,'PL32I592',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (17,NULL,6,'2021-09-12 03:42:25',25.00,NULL,NULL,'USD',1,'PL32I593',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (18,NULL,6,'2021-10-12 03:42:25',25.00,NULL,NULL,'USD',1,'PL32I594',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (19,NULL,6,'2021-11-12 03:42:25',25.00,NULL,NULL,'USD',1,'PL32I595',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (20,NULL,6,'2021-12-12 03:42:25',25.00,NULL,NULL,'USD',1,'PL32I596',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (21,NULL,6,'2022-01-12 03:42:25',25.00,NULL,NULL,'USD',1,'PL32I597',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (22,NULL,6,'2022-02-12 03:42:25',25.00,NULL,NULL,'USD',1,'PL32I598',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (23,NULL,6,'2022-03-12 03:42:25',25.00,NULL,NULL,'USD',1,'PL32I599',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (24,NULL,6,'2022-04-12 03:42:25',25.00,NULL,NULL,'USD',1,'PL32I5910',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (25,NULL,6,'2022-05-12 03:42:25',25.00,NULL,NULL,'USD',1,'PL32I5911',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (26,NULL,6,'2022-02-12 03:42:25',10.00,NULL,NULL,'CAD',1,'PL32I991',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (27,NULL,6,'2022-03-12 03:42:25',10.00,NULL,NULL,'CAD',1,'PL32I992',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (28,NULL,6,'2022-04-12 03:42:25',10.00,NULL,NULL,'CAD',1,'PL32I993',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (29,NULL,6,'2022-05-12 03:42:25',10.00,NULL,NULL,'CAD',1,'PL32I994',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (30,NULL,6,'2022-06-12 03:42:25',10.00,NULL,NULL,'CAD',1,'PL32I995',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (31,NULL,6,'2022-09-12 03:42:25',5.00,NULL,NULL,'EUR',1,'PL32I1031',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (32,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'6e2224ad0d746844',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (33,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'53037968d57a387f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (34,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'b8aa91c7eb15d037',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (35,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'6864d12d05169ae7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (36,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'4b7f45743fb5860e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (37,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'41eacd41f9a0b272',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (38,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'b6097dc388226ce3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (39,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'03dfafd1e588a7e2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (40,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'f07e3762262ad212',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (41,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'16373f4b799ac384',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (42,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'9c18890c7c9f1b39',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (43,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'40eb2187d4f6af17',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (44,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'e1901a48e6e05650',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (45,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'a426201d305abc5e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (46,NULL,6,'2022-10-12 03:42:25',100.00,NULL,NULL,'USD',1,'124f724237fa0ff0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (47,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'373e842190fa0368',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (48,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'3d3c709c92e7e0f2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (49,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'8b66dac767ee7871',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (50,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'f0f5ad04f7cb5741',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (51,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'a9e3309da4bbd970',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (52,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'8b982992bc01534b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (53,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'cdc09d5f6f03caa1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (54,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'3f32e7a61d783a9b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (55,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'bc5fb8cddb99d3d4',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (56,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'d5d0987561080221',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (57,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'614732fce6092aa6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (58,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'207b5da583ccb515',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (59,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'2997dc029ca9360f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (60,NULL,6,'2022-10-12 03:42:25',1200.00,NULL,NULL,'USD',1,'53f33eb11f5b3d1e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (61,NULL,6,'2022-10-12 03:42:25',1200.00,NULL,NULL,'USD',1,'a000c0ff91e50470',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (62,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'70664232c0d3605c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (63,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'6e437443a8450832',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (64,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'93f667e3c6e71db3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (65,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'87cd7df88c8eeea2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (66,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'843e07cdb2919a7f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (67,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'8e178c50f1ba54e8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (68,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'d0984660ad43e19f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (69,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'8099c7b85f0939cc',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (70,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'bc82052d24c281ea',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (71,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'4d938862577e7a14',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (72,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'4dabbd83605cfcac',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (73,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'f4c86727550ad346',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (74,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'68b35347820b2d11',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (75,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'7689857c4df0795c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (76,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'c2e22b6b68179068',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (77,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'e216512973ac6d57',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (78,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'5723dbe2b61a8912',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (79,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'f686e651dc98a4a5',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (80,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'7e0c4a218ba286b5',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (81,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'b17de6f32cb75442',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (82,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'be1ca79baa7a34d4',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (83,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'8aed98ca869b0100',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (84,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'f77c8823a57266bf',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (85,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'03732f07032c63a1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (86,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'ce90c61d077397dd',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (87,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'3272688dccc61204',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (88,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'2179586066419327',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (89,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'5e5f55671b371dec',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (90,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'1a734b70a4b98ae6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (91,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'3918a9ee31212c92',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (92,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'c1317ba3f815dbdf',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (93,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'3d15bd25f25fdb63',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (94,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'388a2cba6551328e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (95,NULL,6,'2022-10-12 03:42:25',800.00,NULL,NULL,'USD',1,'60e197f02df6da8b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (96,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'e8c99eef4983306c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (97,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'32898234a5f90ff2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (98,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'1d71daf158d62aab',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (99,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'274ecda7e0fa2a46',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (100,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'2185062074ad0959',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (101,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'ba4e3f812ace0c73',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (102,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'0193ff158071ab98',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (103,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'2fa80e08fea2cb8a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (104,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'201a77a14c0ee865',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (105,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'487cd344909fa617',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (106,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'89c4109d5fb8638c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (107,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'c3dd84abb2be59d6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (108,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'347bd8ac668b9c34',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (109,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'2ec183318c6eecda',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (110,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'ca5d5140f090f06b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), - (111,NULL,6,'2022-10-12 03:42:25',50.00,NULL,NULL,'USD',1,'6b8ebf184d70eba7',NULL,1,NULL,1,NULL,NULL,NULL,NULL); + (1,NULL,6,'2012-10-17 14:12:07',125.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'1041',NULL,NULL), + (2,NULL,6,'2020-07-17 14:12:07',50.00,NULL,NULL,'USD',1,'P20901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (3,NULL,6,'2016-09-22 01:12:07',25.00,NULL,NULL,'GBP',1,'GBP12',NULL,1,NULL,4,NULL,'2095',NULL,NULL), + (4,NULL,6,'2020-07-17 14:12:07',50.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'10552',NULL,NULL), + (5,NULL,6,'2020-07-17 14:12:07',50.00,NULL,NULL,'USD',1,'Q90901X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (6,NULL,6,'2022-07-24 13:30:07',500.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,4,NULL,'509',NULL,NULL), + (7,NULL,6,'2022-10-15 14:12:07',1750.00,NULL,NULL,'USD',1,NULL,NULL,1,NULL,1,NULL,'102',NULL,NULL), + (8,NULL,6,'2022-02-22 22:23:07',50.00,NULL,NULL,'USD',1,'P20193L2',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (9,NULL,6,'2021-11-17 14:12:07',10.00,NULL,NULL,'USD',1,'P40232Y3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (10,NULL,6,'2018-05-25 16:12:07',250.00,NULL,NULL,'USD',1,'P20193L6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (11,NULL,6,'2022-10-16 10:12:07',500.00,NULL,NULL,'JPY',1,'PL71',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (12,NULL,6,'2021-07-17 03:38:47',50.00,NULL,NULL,'USD',1,'P291X1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (13,NULL,6,'2022-07-17 00:00:00',50.00,NULL,NULL,'USD',1,'PL32I',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (14,NULL,6,'2022-08-17 00:00:00',50.00,NULL,NULL,'USD',1,'PL32II',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (15,NULL,6,'2021-07-17 14:12:07',25.00,NULL,NULL,'USD',1,'PL32I591',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (16,NULL,6,'2021-08-17 14:12:07',25.00,NULL,NULL,'USD',1,'PL32I592',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (17,NULL,6,'2021-09-17 14:12:07',25.00,NULL,NULL,'USD',1,'PL32I593',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (18,NULL,6,'2021-10-17 14:12:07',25.00,NULL,NULL,'USD',1,'PL32I594',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (19,NULL,6,'2021-11-17 14:12:07',25.00,NULL,NULL,'USD',1,'PL32I595',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (20,NULL,6,'2021-12-17 14:12:07',25.00,NULL,NULL,'USD',1,'PL32I596',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (21,NULL,6,'2022-01-17 14:12:07',25.00,NULL,NULL,'USD',1,'PL32I597',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (22,NULL,6,'2022-02-17 14:12:07',25.00,NULL,NULL,'USD',1,'PL32I598',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (23,NULL,6,'2022-03-17 14:12:07',25.00,NULL,NULL,'USD',1,'PL32I599',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (24,NULL,6,'2022-04-17 14:12:07',25.00,NULL,NULL,'USD',1,'PL32I5910',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (25,NULL,6,'2022-05-17 14:12:07',25.00,NULL,NULL,'USD',1,'PL32I5911',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (26,NULL,6,'2022-02-17 14:12:07',10.00,NULL,NULL,'CAD',1,'PL32I991',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (27,NULL,6,'2022-03-17 14:12:07',10.00,NULL,NULL,'CAD',1,'PL32I992',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (28,NULL,6,'2022-04-17 14:12:07',10.00,NULL,NULL,'CAD',1,'PL32I993',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (29,NULL,6,'2022-05-17 14:12:07',10.00,NULL,NULL,'CAD',1,'PL32I994',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (30,NULL,6,'2022-06-17 14:12:07',10.00,NULL,NULL,'CAD',1,'PL32I995',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (31,NULL,6,'2022-09-17 14:12:07',5.00,NULL,NULL,'EUR',1,'PL32I1031',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (32,NULL,6,'2022-10-17 14:12:07',100.00,NULL,NULL,'USD',1,'746f1bb96cac9a16',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (33,NULL,6,'2022-10-17 14:12:07',100.00,NULL,NULL,'USD',1,'046baafaaa7ac3f7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (34,NULL,6,'2022-10-17 14:12:07',100.00,NULL,NULL,'USD',1,'14aefd6c66193220',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (35,NULL,6,'2022-10-17 14:12:07',100.00,NULL,NULL,'USD',1,'e6b5d67e51638d42',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (36,NULL,6,'2022-10-17 14:12:07',100.00,NULL,NULL,'USD',1,'1188dff99d3a68c4',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (37,NULL,6,'2022-10-17 14:12:07',100.00,NULL,NULL,'USD',1,'5e38f02c7c96d145',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (38,NULL,6,'2022-10-17 14:12:07',100.00,NULL,NULL,'USD',1,'95e85a3688eee665',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (39,NULL,6,'2022-10-17 14:12:07',100.00,NULL,NULL,'USD',1,'15ea0adbbea1c376',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (40,NULL,6,'2022-10-17 14:12:07',100.00,NULL,NULL,'USD',1,'e91c2ece6a6f88f1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (41,NULL,6,'2022-10-17 14:12:07',100.00,NULL,NULL,'USD',1,'88eb1cae6770100d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (42,NULL,6,'2022-10-17 14:12:07',100.00,NULL,NULL,'USD',1,'3061c10574fc9b8d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (43,NULL,6,'2022-10-17 14:12:07',100.00,NULL,NULL,'USD',1,'6cb3d02b2e24c756',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (44,NULL,6,'2022-10-17 14:12:07',100.00,NULL,NULL,'USD',1,'1731d8057853eb57',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (45,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'b75bc255f2513aa8',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (46,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'8284e42ccef1208f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (47,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'0d0d0750fbcabdff',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (48,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'ae85bac67f81decc',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (49,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'c1329f169420c18d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (50,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'8593c2fb6cf28788',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (51,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'8a3862936957f54b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (52,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'6fe9a1ce1ef54fc7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (53,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'a98f33faa4c67ba1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (54,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'2fb2603f6f2531b0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (55,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'93ee2ff4011fc42a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (56,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'a32f896bf861bc80',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (57,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'3549326e7a234fbb',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (58,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'61e28aa002666a10',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (59,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'3a14242568949e30',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (60,NULL,6,'2022-10-17 14:12:07',1200.00,NULL,NULL,'USD',1,'cf12fecbbd9f1339',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (61,NULL,6,'2022-10-17 14:12:07',1200.00,NULL,NULL,'USD',1,'14f93a5a1b8d169c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (62,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'263281f7ad854f87',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (63,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'7f28ab5b71dae87f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (64,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'d8ab0d65844f1d3d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (65,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'59af546ee742a096',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (66,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'eba3b11428bde079',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (67,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'2d554aad27294001',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (68,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'9ac761652cb5672b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (69,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'47076c9f9b845fd1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (70,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'2f7bdcb45904c541',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (71,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'8ddc63d21a3f7d12',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (72,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'e0a4adf0eb3807b3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (73,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'4d5137105edd3451',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (74,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'5c4fba6d82d4022c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (75,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'51a7ab0a2135d6cb',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (76,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'eb0bc87aaa365e07',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (77,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'6a0f776722ea36e6',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (78,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'ac742dacebf319af',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (79,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'9df13fe900d32b87',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (80,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'41e83424f703360e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (81,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'1983c4bea87c95a7',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (82,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'002145a709a35aff',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (83,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'fb47813deac2fd73',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (84,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'d52467f47a6c4a35',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (85,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'1f60997792d841a4',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (86,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'b8f8a734ba4b01e0',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (87,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'4e08d2c2afd6d888',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (88,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'07ab90e357596a7d',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (89,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'9edcd2d289a6d3a5',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (90,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'78f348403f153b46',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (91,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'486c8a3a94a8157c',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (92,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'78038366ff200600',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (93,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'0e6b0061749fe04a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (94,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'7016bdb6aab95437',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (95,NULL,6,'2022-10-17 14:12:07',800.00,NULL,NULL,'USD',1,'84635c9f38b43f68',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (96,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'0f67c3c2bc7509b1',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (97,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'ca55754459550325',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (98,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'e8cdb70006b25538',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (99,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'4d951d293824151f',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (100,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'dc34ff182e751206',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (101,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'729cb464e06f6b4b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (102,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'55a1e3b2065808ce',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (103,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'383e822f0db4f0b3',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (104,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'d695d802dffdbd1a',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (105,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'e80b514199fb1b96',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (106,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'063cbc716a138b3e',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (107,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'b06290878ba42f3b',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (108,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'096ad86444ea3836',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (109,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'f3234de67df33706',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (110,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'1f5728fee8f654e4',NULL,1,NULL,1,NULL,NULL,NULL,NULL), + (111,NULL,6,'2022-10-17 14:12:07',50.00,NULL,NULL,'USD',1,'afc8427b69c05708',NULL,1,NULL,1,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_financial_trxn` ENABLE KEYS */; UNLOCK TABLES; @@ -4019,89 +4047,89 @@ 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,185,'Added',NULL,NULL), - (2,2,180,'Added',NULL,NULL), - (3,2,152,'Added',NULL,NULL), - (4,2,193,'Added',NULL,NULL), - (5,2,83,'Added',NULL,NULL), - (6,2,91,'Added',NULL,NULL), - (7,2,111,'Added',NULL,NULL), - (8,2,153,'Added',NULL,NULL), - (9,2,189,'Added',NULL,NULL), - (10,2,108,'Added',NULL,NULL), - (11,2,10,'Added',NULL,NULL), - (12,2,120,'Added',NULL,NULL), - (13,2,81,'Added',NULL,NULL), - (14,2,78,'Added',NULL,NULL), - (15,2,201,'Added',NULL,NULL), - (16,2,150,'Added',NULL,NULL), - (17,2,154,'Added',NULL,NULL), - (18,2,38,'Added',NULL,NULL), - (19,2,181,'Added',NULL,NULL), - (20,2,8,'Added',NULL,NULL), - (21,2,126,'Added',NULL,NULL), - (22,2,138,'Added',NULL,NULL), - (23,2,16,'Added',NULL,NULL), - (24,2,69,'Added',NULL,NULL), - (25,2,53,'Added',NULL,NULL), - (26,2,122,'Added',NULL,NULL), - (27,2,79,'Added',NULL,NULL), - (28,2,101,'Added',NULL,NULL), - (29,2,68,'Added',NULL,NULL), - (30,2,113,'Added',NULL,NULL), - (31,2,66,'Added',NULL,NULL), - (32,2,3,'Added',NULL,NULL), - (33,2,24,'Added',NULL,NULL), - (34,2,27,'Added',NULL,NULL), - (35,2,109,'Added',NULL,NULL), - (36,2,62,'Added',NULL,NULL), - (37,2,116,'Added',NULL,NULL), - (38,2,95,'Added',NULL,NULL), - (39,2,165,'Added',NULL,NULL), - (40,2,15,'Added',NULL,NULL), - (41,2,166,'Added',NULL,NULL), - (42,2,107,'Added',NULL,NULL), - (43,2,93,'Added',NULL,NULL), - (44,2,20,'Added',NULL,NULL), - (45,2,42,'Added',NULL,NULL), - (46,2,110,'Added',NULL,NULL), - (47,2,97,'Added',NULL,NULL), - (48,2,9,'Added',NULL,NULL), - (49,2,103,'Added',NULL,NULL), - (50,2,142,'Added',NULL,NULL), - (51,2,162,'Added',NULL,NULL), - (52,2,31,'Added',NULL,NULL), - (53,2,28,'Added',NULL,NULL), - (54,2,147,'Added',NULL,NULL), - (55,2,46,'Added',NULL,NULL), - (56,2,71,'Added',NULL,NULL), - (57,2,86,'Added',NULL,NULL), - (58,2,135,'Added',NULL,NULL), - (59,2,82,'Added',NULL,NULL), - (60,2,119,'Added',NULL,NULL), - (61,3,39,'Added',NULL,NULL), - (62,3,186,'Added',NULL,NULL), - (63,3,70,'Added',NULL,NULL), - (64,3,22,'Added',NULL,NULL), - (65,3,34,'Added',NULL,NULL), - (66,3,73,'Added',NULL,NULL), - (67,3,48,'Added',NULL,NULL), - (68,3,164,'Added',NULL,NULL), - (69,3,192,'Added',NULL,NULL), - (70,3,45,'Added',NULL,NULL), - (71,3,21,'Added',NULL,NULL), - (72,3,131,'Added',NULL,NULL), - (73,3,90,'Added',NULL,NULL), - (74,3,191,'Added',NULL,NULL), - (75,3,114,'Added',NULL,NULL), - (76,4,185,'Added',NULL,NULL), - (77,4,153,'Added',NULL,NULL), - (78,4,201,'Added',NULL,NULL), - (79,4,138,'Added',NULL,NULL), - (80,4,68,'Added',NULL,NULL), - (81,4,62,'Added',NULL,NULL), - (82,4,93,'Added',NULL,NULL), - (83,4,142,'Added',NULL,NULL), + (1,2,157,'Added',NULL,NULL), + (2,2,30,'Added',NULL,NULL), + (3,2,142,'Added',NULL,NULL), + (4,2,125,'Added',NULL,NULL), + (5,2,58,'Added',NULL,NULL), + (6,2,174,'Added',NULL,NULL), + (7,2,134,'Added',NULL,NULL), + (8,2,27,'Added',NULL,NULL), + (9,2,61,'Added',NULL,NULL), + (10,2,36,'Added',NULL,NULL), + (11,2,152,'Added',NULL,NULL), + (12,2,153,'Added',NULL,NULL), + (13,2,181,'Added',NULL,NULL), + (14,2,4,'Added',NULL,NULL), + (15,2,10,'Added',NULL,NULL), + (16,2,189,'Added',NULL,NULL), + (17,2,2,'Added',NULL,NULL), + (18,2,112,'Added',NULL,NULL), + (19,2,40,'Added',NULL,NULL), + (20,2,48,'Added',NULL,NULL), + (21,2,178,'Added',NULL,NULL), + (22,2,123,'Added',NULL,NULL), + (23,2,135,'Added',NULL,NULL), + (24,2,160,'Added',NULL,NULL), + (25,2,57,'Added',NULL,NULL), + (26,2,159,'Added',NULL,NULL), + (27,2,139,'Added',NULL,NULL), + (28,2,44,'Added',NULL,NULL), + (29,2,128,'Added',NULL,NULL), + (30,2,6,'Added',NULL,NULL), + (31,2,100,'Added',NULL,NULL), + (32,2,179,'Added',NULL,NULL), + (33,2,69,'Added',NULL,NULL), + (34,2,75,'Added',NULL,NULL), + (35,2,65,'Added',NULL,NULL), + (36,2,149,'Added',NULL,NULL), + (37,2,148,'Added',NULL,NULL), + (38,2,87,'Added',NULL,NULL), + (39,2,182,'Added',NULL,NULL), + (40,2,73,'Added',NULL,NULL), + (41,2,16,'Added',NULL,NULL), + (42,2,23,'Added',NULL,NULL), + (43,2,145,'Added',NULL,NULL), + (44,2,15,'Added',NULL,NULL), + (45,2,196,'Added',NULL,NULL), + (46,2,201,'Added',NULL,NULL), + (47,2,108,'Added',NULL,NULL), + (48,2,132,'Added',NULL,NULL), + (49,2,151,'Added',NULL,NULL), + (50,2,136,'Added',NULL,NULL), + (51,2,29,'Added',NULL,NULL), + (52,2,143,'Added',NULL,NULL), + (53,2,166,'Added',NULL,NULL), + (54,2,60,'Added',NULL,NULL), + (55,2,80,'Added',NULL,NULL), + (56,2,94,'Added',NULL,NULL), + (57,2,194,'Added',NULL,NULL), + (58,2,161,'Added',NULL,NULL), + (59,2,177,'Added',NULL,NULL), + (60,2,198,'Added',NULL,NULL), + (61,3,78,'Added',NULL,NULL), + (62,3,199,'Added',NULL,NULL), + (63,3,28,'Added',NULL,NULL), + (64,3,185,'Added',NULL,NULL), + (65,3,147,'Added',NULL,NULL), + (66,3,46,'Added',NULL,NULL), + (67,3,173,'Added',NULL,NULL), + (68,3,141,'Added',NULL,NULL), + (69,3,38,'Added',NULL,NULL), + (70,3,192,'Added',NULL,NULL), + (71,3,39,'Added',NULL,NULL), + (72,3,116,'Added',NULL,NULL), + (73,3,93,'Added',NULL,NULL), + (74,3,158,'Added',NULL,NULL), + (75,3,126,'Added',NULL,NULL), + (76,4,157,'Added',NULL,NULL), + (77,4,27,'Added',NULL,NULL), + (78,4,10,'Added',NULL,NULL), + (79,4,123,'Added',NULL,NULL), + (80,4,128,'Added',NULL,NULL), + (81,4,149,'Added',NULL,NULL), + (82,4,145,'Added',NULL,NULL), + (83,4,136,'Added',NULL,NULL), (84,4,202,'Added',NULL,NULL); /*!40000 ALTER TABLE `civicrm_group_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -4218,25 +4246,25 @@ INSERT INTO `civicrm_line_item` (`id`, `entity_table`, `entity_id`, `contributio (31,'civicrm_contribution',31,31,1,'Contribution Amount',1.00,5.00,5.00,0,1,1,0.00,NULL,NULL), (32,'civicrm_membership',1,32,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), (33,'civicrm_membership',3,34,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (34,'civicrm_membership',5,36,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (35,'civicrm_membership',7,38,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (36,'civicrm_membership',9,40,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (37,'civicrm_membership',10,41,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (38,'civicrm_membership',13,44,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (39,'civicrm_membership',15,46,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (40,'civicrm_membership',17,48,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (41,'civicrm_membership',19,50,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (42,'civicrm_membership',20,51,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (43,'civicrm_membership',21,52,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (44,'civicrm_membership',23,54,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (45,'civicrm_membership',27,58,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (46,'civicrm_membership',29,60,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), - (47,'civicrm_membership',2,33,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), - (48,'civicrm_membership',4,35,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), - (49,'civicrm_membership',6,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), - (50,'civicrm_membership',8,39,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), - (51,'civicrm_membership',12,43,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), - (52,'civicrm_membership',14,45,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (34,'civicrm_membership',7,38,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (35,'civicrm_membership',9,40,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (36,'civicrm_membership',10,41,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (37,'civicrm_membership',13,44,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (38,'civicrm_membership',17,48,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (39,'civicrm_membership',19,50,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (40,'civicrm_membership',20,51,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (41,'civicrm_membership',21,52,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (42,'civicrm_membership',23,54,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (43,'civicrm_membership',27,58,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (44,'civicrm_membership',29,60,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL,NULL), + (45,'civicrm_membership',2,33,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (46,'civicrm_membership',4,35,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (47,'civicrm_membership',5,36,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (48,'civicrm_membership',6,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (49,'civicrm_membership',8,39,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (50,'civicrm_membership',12,43,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (51,'civicrm_membership',14,45,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), + (52,'civicrm_membership',15,46,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), (53,'civicrm_membership',16,47,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), (54,'civicrm_membership',18,49,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), (55,'civicrm_membership',24,55,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL,NULL), @@ -4306,9 +4334,9 @@ 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,181,181,146,NULL,NULL,NULL,NULL,NULL), - (2,182,182,147,NULL,NULL,NULL,NULL,NULL), - (3,183,183,148,NULL,NULL,NULL,NULL,NULL); + (1,181,203,178,NULL,NULL,NULL,NULL,NULL), + (2,182,204,179,NULL,NULL,NULL,NULL,NULL), + (3,183,205,180,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_loc_block` ENABLE KEYS */; UNLOCK TABLES; @@ -4334,7 +4362,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_log` WRITE; /*!40000 ALTER TABLE `civicrm_log` DISABLE KEYS */; INSERT INTO `civicrm_log` (`id`, `entity_table`, `entity_id`, `data`, `modified_id`, `modified_date`) VALUES - (1,'civicrm_contact',202,'civicrm_contact,202',202,'2022-10-12 03:42:24'); + (1,'civicrm_contact',202,'civicrm_contact,202',202,'2022-10-17 14:12:06'); /*!40000 ALTER TABLE `civicrm_log` ENABLE KEYS */; UNLOCK TABLES; @@ -4753,36 +4781,36 @@ 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`, `status_override_end_date`, `owner_membership_id`, `max_related`, `is_test`, `is_pay_later`, `contribution_recur_id`, `campaign_id`) VALUES - (1,45,1,'2022-10-12','2022-10-12','2024-10-11','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (2,171,2,'2022-10-11','2022-10-11','2023-10-10','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (3,42,1,'2022-10-10','2022-10-10','2024-10-09','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (4,29,2,'2022-10-09','2022-10-09','2023-10-08','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (5,65,1,'2020-09-10','2020-09-10','2022-09-09','Payment',3,0,NULL,NULL,NULL,0,0,NULL,NULL), - (6,56,2,'2022-10-07','2022-10-07','2023-10-06','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (7,103,1,'2022-10-06','2022-10-06','2024-10-05','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (8,120,2,'2022-10-05','2022-10-05','2023-10-04','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (9,135,1,'2022-10-04','2022-10-04','2024-10-03','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (10,180,1,'2020-08-01','2020-08-01','2022-07-31','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL), - (11,162,3,'2022-10-02','2022-10-02',NULL,'Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (12,32,2,'2022-10-01','2022-10-01','2023-09-30','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (13,68,1,'2022-09-30','2022-09-30','2024-09-29','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (14,149,2,'2022-09-29','2022-09-29','2023-09-28','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (15,11,1,'2020-06-22','2020-06-22','2022-06-21','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL), - (16,189,2,'2022-09-27','2022-09-27','2023-09-26','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (17,15,1,'2022-09-26','2022-09-26','2024-09-25','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (18,197,2,'2022-09-25','2022-09-25','2023-09-24','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (19,97,1,'2022-09-24','2022-09-24','2024-09-23','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (20,147,1,'2020-05-13','2020-05-13','2022-05-12','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL), - (21,133,1,'2022-09-22','2022-09-22','2024-09-21','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (22,31,3,'2022-09-21','2022-09-21',NULL,'Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (23,166,1,'2022-09-20','2022-09-20','2024-09-19','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (24,100,2,'2022-09-19','2022-09-19','2023-09-18','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (25,169,2,'2021-09-18','2021-09-18','2022-09-17','Check',4,0,NULL,NULL,NULL,0,0,NULL,NULL), - (26,188,2,'2022-09-17','2022-09-17','2023-09-16','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (27,151,1,'2022-09-16','2022-09-16','2024-09-15','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (28,82,2,'2022-09-15','2022-09-15','2023-09-14','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (29,93,1,'2022-09-14','2022-09-14','2024-09-13','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), - (30,53,2,'2021-09-13','2021-09-13','2022-09-12','Payment',4,0,NULL,NULL,NULL,0,0,NULL,NULL); + (1,187,1,'2022-10-17','2022-10-17','2024-10-16','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (2,128,2,'2022-10-16','2022-10-16','2023-10-15','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (3,63,1,'2022-10-15','2022-10-15','2024-10-14','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (4,190,2,'2022-10-14','2022-10-14','2023-10-13','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (5,58,2,'2021-10-13','2021-10-13','2022-10-12','Donation',4,0,NULL,NULL,NULL,0,0,NULL,NULL), + (6,73,2,'2022-10-12','2022-10-12','2023-10-11','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (7,27,1,'2022-10-11','2022-10-11','2024-10-10','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (8,45,2,'2022-10-10','2022-10-10','2023-10-09','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (9,186,1,'2022-10-09','2022-10-09','2024-10-08','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (10,199,1,'2020-08-06','2020-08-06','2022-08-05','Check',3,0,NULL,NULL,NULL,0,0,NULL,NULL), + (11,194,3,'2022-10-07','2022-10-07',NULL,'Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (12,192,2,'2022-10-06','2022-10-06','2023-10-05','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (13,4,1,'2022-10-05','2022-10-05','2024-10-04','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (14,189,2,'2022-10-04','2022-10-04','2023-10-03','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (15,157,2,'2021-10-03','2021-10-03','2022-10-02','Payment',4,0,NULL,NULL,NULL,0,0,NULL,NULL), + (16,104,2,'2022-10-02','2022-10-02','2023-10-01','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (17,40,1,'2022-10-01','2022-10-01','2024-09-30','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (18,54,2,'2022-09-30','2022-09-30','2023-09-29','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (19,90,1,'2022-09-29','2022-09-29','2024-09-28','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (20,185,1,'2020-05-18','2020-05-18','2022-05-17','Donation',3,0,NULL,NULL,NULL,0,0,NULL,NULL), + (21,94,1,'2022-09-27','2022-09-27','2024-09-26','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (22,28,3,'2022-09-26','2022-09-26',NULL,'Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (23,18,1,'2022-09-25','2022-09-25','2024-09-24','Payment',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (24,111,2,'2022-09-24','2022-09-24','2023-09-23','Donation',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (25,106,2,'2021-09-23','2021-09-23','2022-09-22','Donation',4,0,NULL,NULL,NULL,0,0,NULL,NULL), + (26,136,2,'2022-09-22','2022-09-22','2023-09-21','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (27,196,1,'2022-09-21','2022-09-21','2024-09-20','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (28,171,2,'2022-09-20','2022-09-20','2023-09-19','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (29,108,1,'2022-09-19','2022-09-19','2024-09-18','Check',1,0,NULL,NULL,NULL,0,0,NULL,NULL), + (30,121,2,'2021-09-18','2021-09-18','2022-09-17','Check',4,0,NULL,NULL,NULL,0,0,NULL,NULL); /*!40000 ALTER TABLE `civicrm_membership` ENABLE KEYS */; UNLOCK TABLES; @@ -4804,36 +4832,36 @@ UNLOCK TABLES; LOCK TABLES `civicrm_membership_log` WRITE; /*!40000 ALTER TABLE `civicrm_membership_log` DISABLE KEYS */; INSERT INTO `civicrm_membership_log` (`id`, `membership_id`, `status_id`, `start_date`, `end_date`, `modified_id`, `modified_date`, `membership_type_id`, `max_related`) VALUES - (1,15,3,'2020-06-22','2022-06-21',11,'2022-10-12',1,NULL), - (2,17,1,'2022-09-26','2024-09-25',15,'2022-10-12',1,NULL), - (3,4,1,'2022-10-09','2023-10-08',29,'2022-10-12',2,NULL), - (4,22,1,'2022-09-21',NULL,31,'2022-10-12',3,NULL), - (5,12,1,'2022-10-01','2023-09-30',32,'2022-10-12',2,NULL), - (6,3,1,'2022-10-10','2024-10-09',42,'2022-10-12',1,NULL), - (7,1,1,'2022-10-12','2024-10-11',45,'2022-10-12',1,NULL), - (8,30,4,'2021-09-13','2022-09-12',53,'2022-10-12',2,NULL), - (9,6,1,'2022-10-07','2023-10-06',56,'2022-10-12',2,NULL), - (10,5,3,'2020-09-10','2022-09-09',65,'2022-10-12',1,NULL), - (11,13,1,'2022-09-30','2024-09-29',68,'2022-10-12',1,NULL), - (12,28,1,'2022-09-15','2023-09-14',82,'2022-10-12',2,NULL), - (13,29,1,'2022-09-14','2024-09-13',93,'2022-10-12',1,NULL), - (14,19,1,'2022-09-24','2024-09-23',97,'2022-10-12',1,NULL), - (15,24,1,'2022-09-19','2023-09-18',100,'2022-10-12',2,NULL), - (16,7,1,'2022-10-06','2024-10-05',103,'2022-10-12',1,NULL), - (17,8,1,'2022-10-05','2023-10-04',120,'2022-10-12',2,NULL), - (18,21,1,'2022-09-22','2024-09-21',133,'2022-10-12',1,NULL), - (19,9,1,'2022-10-04','2024-10-03',135,'2022-10-12',1,NULL), - (20,20,3,'2020-05-13','2022-05-12',147,'2022-10-12',1,NULL), - (21,14,1,'2022-09-29','2023-09-28',149,'2022-10-12',2,NULL), - (22,27,1,'2022-09-16','2024-09-15',151,'2022-10-12',1,NULL), - (23,11,1,'2022-10-02',NULL,162,'2022-10-12',3,NULL), - (24,23,1,'2022-09-20','2024-09-19',166,'2022-10-12',1,NULL), - (25,25,4,'2021-09-18','2022-09-17',169,'2022-10-12',2,NULL), - (26,2,1,'2022-10-11','2023-10-10',171,'2022-10-12',2,NULL), - (27,10,3,'2020-08-01','2022-07-31',180,'2022-10-12',1,NULL), - (28,26,1,'2022-09-17','2023-09-16',188,'2022-10-12',2,NULL), - (29,16,1,'2022-09-27','2023-09-26',189,'2022-10-12',2,NULL), - (30,18,1,'2022-09-25','2023-09-24',197,'2022-10-12',2,NULL); + (1,13,1,'2022-10-05','2024-10-04',4,'2022-10-17',1,NULL), + (2,23,1,'2022-09-25','2024-09-24',18,'2022-10-17',1,NULL), + (3,7,1,'2022-10-11','2024-10-10',27,'2022-10-17',1,NULL), + (4,22,1,'2022-09-26',NULL,28,'2022-10-17',3,NULL), + (5,17,1,'2022-10-01','2024-09-30',40,'2022-10-17',1,NULL), + (6,8,1,'2022-10-10','2023-10-09',45,'2022-10-17',2,NULL), + (7,18,1,'2022-09-30','2023-09-29',54,'2022-10-17',2,NULL), + (8,5,4,'2021-10-13','2022-10-12',58,'2022-10-17',2,NULL), + (9,3,1,'2022-10-15','2024-10-14',63,'2022-10-17',1,NULL), + (10,6,1,'2022-10-12','2023-10-11',73,'2022-10-17',2,NULL), + (11,19,1,'2022-09-29','2024-09-28',90,'2022-10-17',1,NULL), + (12,21,1,'2022-09-27','2024-09-26',94,'2022-10-17',1,NULL), + (13,16,1,'2022-10-02','2023-10-01',104,'2022-10-17',2,NULL), + (14,25,4,'2021-09-23','2022-09-22',106,'2022-10-17',2,NULL), + (15,29,1,'2022-09-19','2024-09-18',108,'2022-10-17',1,NULL), + (16,24,1,'2022-09-24','2023-09-23',111,'2022-10-17',2,NULL), + (17,30,4,'2021-09-18','2022-09-17',121,'2022-10-17',2,NULL), + (18,2,1,'2022-10-16','2023-10-15',128,'2022-10-17',2,NULL), + (19,26,1,'2022-09-22','2023-09-21',136,'2022-10-17',2,NULL), + (20,15,4,'2021-10-03','2022-10-02',157,'2022-10-17',2,NULL), + (21,28,1,'2022-09-20','2023-09-19',171,'2022-10-17',2,NULL), + (22,20,3,'2020-05-18','2022-05-17',185,'2022-10-17',1,NULL), + (23,9,1,'2022-10-09','2024-10-08',186,'2022-10-17',1,NULL), + (24,1,1,'2022-10-17','2024-10-16',187,'2022-10-17',1,NULL), + (25,14,1,'2022-10-04','2023-10-03',189,'2022-10-17',2,NULL), + (26,4,1,'2022-10-14','2023-10-13',190,'2022-10-17',2,NULL), + (27,12,1,'2022-10-06','2023-10-05',192,'2022-10-17',2,NULL), + (28,11,1,'2022-10-07',NULL,194,'2022-10-17',3,NULL), + (29,27,1,'2022-09-21','2024-09-20',196,'2022-10-17',1,NULL), + (30,10,3,'2020-08-06','2022-08-05',199,'2022-10-17',1,NULL); /*!40000 ALTER TABLE `civicrm_membership_log` ENABLE KEYS */; UNLOCK TABLES; @@ -4914,350 +4942,350 @@ UNLOCK TABLES; LOCK TABLES `civicrm_menu` WRITE; /*!40000 ALTER TABLE `civicrm_menu` DISABLE KEYS */; INSERT INTO `civicrm_menu` (`id`, `domain_id`, `path`, `path_arguments`, `title`, `access_callback`, `access_arguments`, `page_callback`, `page_arguments`, `breadcrumb`, `return_url`, `return_url_args`, `component_id`, `is_active`, `is_public`, `is_exposed`, `is_ssl`, `weight`, `type`, `page_type`, `skipBreadcrumb`, `module_data`) VALUES - (1,1,'civicrm/upgrade',NULL,'Upgrade CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Upgrade_Page_Upgrade\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (2,1,'civicrm/export',NULL,'Download Errors','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (3,1,'civicrm/export/contact',NULL,'Export Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), - (4,1,'civicrm/export/standalone',NULL,'Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Export_Controller_Standalone\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (5,1,'civicrm/admin/options/acl_role',NULL,'ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (6,1,'civicrm/acl',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Page_ACL\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (7,1,'civicrm/acl/entityrole',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Page_EntityRole\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (8,1,'civicrm/acl/basic',NULL,'ACL','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_ACL_Page_ACLBasic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (9,1,'civicrm/file',NULL,'Browse Uploaded files','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_Page_File\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (10,1,'civicrm/file/delete',NULL,'Delete File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:17:\"CRM_Core_BAO_File\";i:1;s:16:\"deleteAttachment\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:21:\"Browse Uploaded files\";s:3:\"url\";s:21:\"/civicrm/file?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (11,1,'civicrm/friend',NULL,'Tell a Friend','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:15:\"CRM_Friend_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (12,1,'civicrm/logout',NULL,'Log out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:6:\"logout\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,9999,1,1,0,'a:0:{}'), - (13,1,'civicrm/i18n',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"translate CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_I18n_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (14,1,'civicrm/ajax/attachment',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:29:\"CRM_Core_Page_AJAX_Attachment\";i:1;s:10:\"attachFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (15,1,'civicrm/api',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (16,1,'civicrm/api3',NULL,'CiviCRM API v3','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_APIExplorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (17,1,'civicrm/ajax/apiexample',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:14:\"getExampleFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (18,1,'civicrm/ajax/apidoc',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:6:\"getDoc\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (19,1,'civicrm/ajax/rest',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:4:\"ajax\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (20,1,'civicrm/api/json',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:8:\"ajaxJson\";}','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (21,1,'civicrm/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:12:\"loadTemplate\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (22,1,'civicrm/ajax/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (23,1,'civicrm/asset/builder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"\\Civi\\Core\\AssetBuilder\";i:1;s:7:\"pageRun\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (24,1,'civicrm/contribute/ajax/tableview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (25,1,'civicrm/payment/ipn',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Core_Payment\";i:1;s:9:\"handleIPN\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,1,1,0,0,'a:0:{}'), - (26,1,'civicrm/batch',NULL,'Batch Data Entry','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (27,1,'civicrm/batch/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Batch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (28,1,'civicrm/batch/entry',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Entry\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (29,1,'civicrm/ajax/batch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:9:\"batchSave\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (30,1,'civicrm/ajax/batchlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:12:\"getBatchList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (31,1,'civicrm/ajax/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Page_AJAX\";i:1;s:3:\"run\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (32,1,'civicrm/dev/qunit',NULL,'QUnit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_Core_Page_QUnit\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (33,1,'civicrm/dev/fake-error',NULL,'Fake Error','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Page_FakeError\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (34,1,'civicrm/profile-editor/schema',NULL,'ProfileEditor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:25:\"CRM_UF_Page_ProfileEditor\";i:1;s:13:\"getSchemaJSON\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (35,1,'civicrm/a',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"\\Civi\\Angular\\Page\\Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (36,1,'civicrm/ajax/angular-modules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"\\Civi\\Angular\\Page\\Modules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (37,1,'civicrm/ajax/recurringentity/update-mode',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:34:\"CRM_Core_Page_AJAX_RecurringEntity\";i:1;s:10:\"updateMode\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (38,1,'civicrm/recurringentity/preview',NULL,'Confirm dates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Core_Page_RecurringEntityPreview\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (39,1,'civicrm/shortcode',NULL,'Insert CiviCRM Content','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Form_ShortCode\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (40,1,'civicrm/task/add-to-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Form_Task_AddToGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (41,1,'civicrm/task/remove-from-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contact_Form_Task_RemoveFromGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (42,1,'civicrm/task/add-to-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contact_Form_Task_AddToTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (43,1,'civicrm/task/remove-from-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Form_Task_RemoveFromTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (44,1,'civicrm/task/send-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (45,1,'civicrm/task/make-mailing-label',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Label\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (46,1,'civicrm/task/pick-profile',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contact_Form_Task_PickProfile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (47,1,'civicrm/task/print-document',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (48,1,'civicrm/task/unhold-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Unhold\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (49,1,'civicrm/task/alter-contact-preference',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contact_Form_Task_AlterPreferences\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (50,1,'civicrm/task/delete-contact',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (51,1,'civicrm/task/add-activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (52,1,'civicrm/admin/custom/group',NULL,'Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (53,1,'civicrm/admin/custom/group/edit',NULL,'Configure Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (54,1,'civicrm/admin/custom/group/preview',NULL,'Custom Field Preview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:23:\"CRM_Custom_Form_Preview\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (55,1,'civicrm/admin/custom/group/delete',NULL,'Delete Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteGroup\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (56,1,'civicrm/admin/custom/group/field',NULL,'Custom Data Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,11,1,0,0,'a:0:{}'), - (57,1,'civicrm/admin/custom/group/field/delete',NULL,'Delete Custom Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (58,1,'civicrm/admin/custom/group/field/option',NULL,'Custom Field - Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:22:\"CRM_Custom_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (59,1,'civicrm/admin/custom/group/field/add',NULL,'Custom Field - Add','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (60,1,'civicrm/admin/custom/group/field/update',NULL,'Custom Field - Edit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (61,1,'civicrm/admin/custom/group/field/move',NULL,'Custom Field - Move','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:25:\"CRM_Custom_Form_MoveField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (62,1,'civicrm/admin/uf/group',NULL,'Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (63,1,'civicrm/admin/uf/group/field',NULL,'CiviCRM Profile Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,21,1,0,0,'a:0:{}'), - (64,1,'civicrm/admin/uf/group/field/add',NULL,'Add Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,22,1,0,0,'a:0:{}'), - (65,1,'civicrm/admin/uf/group/field/update',NULL,'Edit Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,23,1,0,0,'a:0:{}'), - (66,1,'civicrm/admin/uf/group/add',NULL,'New CiviCRM Profile','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,24,1,0,0,'a:0:{}'), - (67,1,'civicrm/admin/uf/group/update',NULL,'Profile Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,25,1,0,0,'a:0:{}'), - (68,1,'civicrm/admin/uf/group/setting',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_UF_Form_AdvanceSetting\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,0,1,0,0,'a:0:{}'), - (69,1,'civicrm/admin/options/activity_type',NULL,'Activity Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (70,1,'civicrm/admin/reltype',NULL,'Relationship Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_RelationshipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,35,1,0,0,'a:2:{s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (71,1,'civicrm/admin/options/subtype',NULL,'Contact Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_ContactType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (72,1,'civicrm/admin/options/subtype/edit',NULL,'Edit Contact Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_ContactType\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}i:3;a:2:{s:5:\"title\";s:13:\"Contact Types\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (73,1,'civicrm/admin/options/gender',NULL,'Gender Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,45,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (74,1,'civicrm/admin/options/individual_prefix',NULL,'Individual Prefixes (Ms, Mr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (75,1,'civicrm/admin/options/individual_suffix',NULL,'Individual Suffixes (Jr, Sr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,55,1,0,0,'a:2:{s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (76,1,'civicrm/admin/locationType',NULL,'Location Types (Home, Work...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LocationType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (77,1,'civicrm/admin/options/website_type',NULL,'Website Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,65,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (78,1,'civicrm/admin/options/instant_messenger_service',NULL,'Instant Messenger Services','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (79,1,'civicrm/admin/options/mobile_provider',NULL,'Mobile Phone Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (80,1,'civicrm/admin/options/phone_type',NULL,'Phone Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (81,1,'civicrm/admin/setting/preferences/display',NULL,'Display Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Display\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (82,1,'civicrm/admin/setting/search',NULL,'Search Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Form_Setting_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,95,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (83,1,'civicrm/admin/setting/preferences/date',NULL,'View Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Page_PreferencesDate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (84,1,'civicrm/admin/menu',NULL,'Navigation Menu','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Navigation\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (85,1,'civicrm/admin/options/wordreplacements',NULL,'Word Replacements','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_WordReplacements\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:18:\"Word Replacements.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (86,1,'civicrm/admin/options/custom_search',NULL,'Manage Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,110,1,0,0,'a:2:{s:4:\"desc\";s:225:\"Developers and accidental techies with a bit of PHP and SQL knowledge can create new search forms to handle specific search and reporting needs which aren\'t covered by the built-in Advanced Search and Search Builder features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (87,1,'civicrm/admin/domain','action=update','Organization Address and Contact Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contact_Form_Domain\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (88,1,'civicrm/admin/options/from_email_address',NULL,'From Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (89,1,'civicrm/admin/messageTemplates',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Page_MessageTemplates\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (90,1,'civicrm/admin/messageTemplates/add',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Form_MessageTemplates\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Message Templates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,262,1,0,0,'a:1:{s:4:\"desc\";s:26:\"Add/Edit Message Templates\";}'), - (91,1,'civicrm/admin/scheduleReminders',NULL,'Schedule Reminders','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCRM data\";i:1;s:15:\"edit all events\";}i:1;s:2:\"or\";}','s:32:\"CRM_Admin_Page_ScheduleReminders\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:19:\"Schedule Reminders.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (92,1,'civicrm/admin/weight',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_Weight\";i:1;s:8:\"fixOrder\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (93,1,'civicrm/admin/options/preferred_communication_method',NULL,'Preferred Communication Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (94,1,'civicrm/admin/labelFormats',NULL,'Label Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:67:\"Configure Label Formats that are used when creating mailing labels.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (95,1,'civicrm/admin/pdfFormats',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (96,1,'civicrm/admin/options/communication_style',NULL,'Communication Style Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (97,1,'civicrm/admin/options/email_greeting',NULL,'Email Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (98,1,'civicrm/admin/options/postal_greeting',NULL,'Postal Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:2:{s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (99,1,'civicrm/admin/options/addressee',NULL,'Addressee Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), - (100,1,'civicrm/admin/setting/localization',NULL,'Languages, Currency, Locations','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Setting_Localization\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), - (101,1,'civicrm/admin/setting/preferences/address',NULL,'Address Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Address\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), - (102,1,'civicrm/admin/setting/date',NULL,'Date Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Date\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), - (103,1,'civicrm/admin/options/languages',NULL,'Preferred Languages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:30:\"Options for contact languages.\";s:10:\"adminGroup\";s:12:\"Localization\";}'), - (104,1,'civicrm/admin/access',NULL,'Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_Access\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), - (105,1,'civicrm/admin/access/wp-permissions',NULL,'WordPress Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_ACL_Form_WordPress_Permissions\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Access Control\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:4:\"desc\";s:65:\"Grant access to CiviCRM components and other CiviCRM permissions.\";}'), - (106,1,'civicrm/admin/synchUser',NULL,'Synchronize Users to Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_CMSUser\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), - (107,1,'civicrm/admin/configtask',NULL,'Configuration Checklist','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Page_ConfigTaskList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}','civicrm/admin/configtask',NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (108,1,'civicrm/admin/setting/component',NULL,'Enable CiviCRM Components','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (109,1,'civicrm/admin/extensions',NULL,'Manage Extensions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Extensions\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:2:{s:4:\"desc\";s:0:\"\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (110,1,'civicrm/admin/extensions/upgrade',NULL,'Database Upgrades','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ExtensionsUpgrade\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Manage Extensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (111,1,'civicrm/admin/setting/smtp',NULL,'Outbound Email Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Smtp\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (112,1,'civicrm/admin/paymentProcessor',NULL,'Settings - Payment Processor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_PaymentProcessor\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (113,1,'civicrm/admin/setting/mapping',NULL,'Mapping and Geocoding','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_Setting_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (114,1,'civicrm/admin/setting/misc',NULL,'Misc (Undelete, PDFs, Limits, Logging, etc.)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Setting_Miscellaneous\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:63:\"Enable undelete/move to trash feature, detailed change logging.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (115,1,'civicrm/admin/setting/path',NULL,'Directories','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Path\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (116,1,'civicrm/admin/setting/url',NULL,'Resource URLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_Setting_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (117,1,'civicrm/admin/setting/updateConfigBackend',NULL,'Cleanup Caches and Update Paths','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Admin_Form_Setting_UpdateConfigBackend\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (118,1,'civicrm/admin/setting/uf',NULL,'CMS Database Integration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Setting_UF\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (119,1,'civicrm/admin/options/safe_file_extension',NULL,'Safe File Extension Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (120,1,'civicrm/admin/options',NULL,'Option Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (121,1,'civicrm/admin/mapping',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,110,1,0,0,'a:2:{s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (122,1,'civicrm/admin/setting/debug',NULL,'Debugging','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Debugging\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (123,1,'civicrm/admin/setting/preferences/multisite',NULL,'Multi Site Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,130,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (124,1,'civicrm/admin/setting/preferences/campaign',NULL,'CiviCampaign Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:3:{s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), - (125,1,'civicrm/admin/setting/preferences/event',NULL,'CiviEvent Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:2:{s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (126,1,'civicrm/admin/setting/preferences/mailing',NULL,'CiviMail Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Mailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:2:{s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), - (127,1,'civicrm/admin/setting/preferences/member',NULL,'CiviMember Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Admin_Form_Preferences_Member\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), - (128,1,'civicrm/admin/runjobs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:20:\"executeScheduledJobs\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:36:\"URL used for running scheduled jobs.\";}'), - (129,1,'civicrm/admin/job',NULL,'Scheduled Jobs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1370,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (130,1,'civicrm/admin/joblog',NULL,'Scheduled Jobs Log','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_JobLog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1380,1,0,0,'a:2:{s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), - (131,1,'civicrm/admin/options/grant_type',NULL,'Grant Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,385,1,0,0,'a:2:{s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > Systme Settings > Enable Components if you want to track grants.)\";s:10:\"adminGroup\";s:12:\"Option Lists\";}'), - (132,1,'civicrm/admin/paymentProcessorType',NULL,'Payment Processor Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Page_PaymentProcessorType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:1:{s:4:\"desc\";s:34:\"Payment Processor type information\";}'), - (133,1,'civicrm/admin',NULL,'Administer CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Admin_Page_Admin\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,9000,1,1,0,'a:0:{}'), - (134,1,'civicrm/ajax/navmenu',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:7:\"navMenu\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (135,1,'civicrm/ajax/menutree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:8:\"menuTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), - (136,1,'civicrm/ajax/statusmsg',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"getStatusMsg\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (137,1,'civicrm/admin/price',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:10:\"adminGroup\";s:9:\"Customize\";}'), - (138,1,'civicrm/admin/price/add','action=add','New Price Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";}'), - (139,1,'civicrm/admin/price/field',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (140,1,'civicrm/admin/price/field/option',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (141,1,'civicrm/ajax/mapping',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:11:\"mappingList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (142,1,'civicrm/ajax/recipientListing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:16:\"recipientListing\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (143,1,'civicrm/admin/sms/provider',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Provider\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,500,1,0,0,'a:2:{s:4:\"desc\";s:27:\"To configure a sms provider\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), - (144,1,'civicrm/sms/send',NULL,'New Mass SMS','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:23:\"CRM_SMS_Controller_Send\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,610,1,1,0,'a:0:{}'), - (145,1,'civicrm/sms/callback',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Callback\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (146,1,'civicrm/admin/badgelayout','action=browse','Event Name Badge Layouts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Page_Layout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,399,1,0,0,'a:2:{s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (147,1,'civicrm/admin/badgelayout/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Form_Layout\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?reset=1&action=browse\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (148,1,'civicrm/activity','action=add&context=standalone','New Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (149,1,'civicrm/activity/view',NULL,'View Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Form_ActivityView\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (150,1,'civicrm/ajax/activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:15:\"getCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (151,1,'civicrm/ajax/globalrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseGlobalRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (152,1,'civicrm/ajax/clientrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseClientRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (153,1,'civicrm/ajax/caseroles',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:12:\"getCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (154,1,'civicrm/ajax/contactactivity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:18:\"getContactActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (155,1,'civicrm/ajax/activity/convert',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:21:\"convertToCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), - (156,1,'civicrm/activity/search',NULL,'Find Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Controller_Search\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (157,1,'civicrm',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:0:{}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), - (158,1,'civicrm/dashboard',NULL,'CiviCRM Home','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,1,0,'a:0:{}'), - (159,1,'civicrm/contact/search',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,10,1,1,0,'a:0:{}'), - (160,1,'civicrm/contact/image',NULL,'Process Uploaded Images','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"CRM_Contact_BAO_Contact\";i:1;s:12:\"processImage\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (161,1,'civicrm/contact/imagefile',NULL,'Get Image File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_ImageFile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (162,1,'civicrm/contact/search/basic',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (163,1,'civicrm/contact/search/advanced',NULL,'Advanced Search','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=512\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,12,1,1,0,'a:0:{}'), - (164,1,'civicrm/contact/search/builder',NULL,'Search Builder','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:9:\"mode=8192\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,14,1,1,0,'a:0:{}'), - (165,1,'civicrm/contact/add',NULL,'New Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (166,1,'civicrm/contact/add/individual','ct=Individual','New Individual','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (167,1,'civicrm/contact/add/household','ct=Household','New Household','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (168,1,'civicrm/contact/add/organization','ct=Organization','New Organization','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (169,1,'civicrm/contact/relatedcontact',NULL,'Edit Related Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_RelatedContact\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (170,1,'civicrm/contact/merge',NULL,'Merge Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:22:\"CRM_Contact_Form_Merge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (171,1,'civicrm/contact/email',NULL,'Email a Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (172,1,'civicrm/contact/map',NULL,'Map Location(s)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_Map\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (173,1,'civicrm/contact/map/event',NULL,'Map Event Location','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_Task_Map_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Map Location(s)\";s:3:\"url\";s:28:\"/civicrm/contact/map?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (174,1,'civicrm/contact/view','cid=%%cid%%','Contact Summary','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Summary\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (175,1,'civicrm/contact/view/delete',NULL,'Delete Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (176,1,'civicrm/contact/view/activity','show=1,cid=%%cid%%','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:21:\"CRM_Activity_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (177,1,'civicrm/activity/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (178,1,'civicrm/activity/email/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (179,1,'civicrm/activity/pdf/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (180,1,'civicrm/contact/view/rel','cid=%%cid%%','Relationships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_Relationship\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (181,1,'civicrm/contact/view/group','cid=%%cid%%','Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_GroupContact\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (182,1,'civicrm/contact/view/smartgroup','cid=%%cid%%','Smart Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:39:\"CRM_Contact_Page_View_ContactSmartGroup\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (183,1,'civicrm/contact/view/note','cid=%%cid%%','Notes','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:26:\"CRM_Contact_Page_View_Note\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (184,1,'civicrm/contact/view/tag','cid=%%cid%%','Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Tag\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (185,1,'civicrm/contact/view/cd',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:32:\"CRM_Contact_Page_View_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (186,1,'civicrm/contact/view/cd/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Form_CustomData\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (187,1,'civicrm/contact/view/vcard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Vcard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (188,1,'civicrm/contact/view/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Print\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (189,1,'civicrm/contact/view/log',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Log\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (190,1,'civicrm/user',NULL,'Contact Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Page_View_UserDashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), - (191,1,'civicrm/dashlet/activity',NULL,'Activity Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (192,1,'civicrm/dashlet/blog',NULL,'CiviCRM Blog','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Dashlet_Page_Blog\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (193,1,'civicrm/dashlet/getting-started',NULL,'CiviCRM Resources','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Dashlet_Page_GettingStarted\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (194,1,'civicrm/ajax/relation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"relationship\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), - (195,1,'civicrm/ajax/groupTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"groupTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (196,1,'civicrm/ajax/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:11:\"customField\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (197,1,'civicrm/ajax/customvalue',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:17:\"deleteCustomValue\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), - (198,1,'civicrm/ajax/cmsuser',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"checkUserName\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (199,1,'civicrm/ajax/checkemail',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactEmail\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (200,1,'civicrm/ajax/checkphone',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactPhone\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (201,1,'civicrm/ajax/subtype',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"buildSubTypes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (202,1,'civicrm/ajax/signature',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"getSignature\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (203,1,'civicrm/ajax/pdfFormat',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"pdfFormat\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (204,1,'civicrm/ajax/paperSize',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"paperSize\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (205,1,'civicrm/ajax/contactref',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:31:\"access contact reference fields\";i:1;s:15:\" access CiviCRM\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"contactReference\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (206,1,'civicrm/dashlet/myCases',NULL,'Case Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Dashlet_Page_MyCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (207,1,'civicrm/dashlet/allCases',NULL,'All Cases Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_AllCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (208,1,'civicrm/dashlet/casedashboard',NULL,'Case Dashboard Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Dashlet_Page_CaseDashboard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (209,1,'civicrm/contact/deduperules',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer dedupe rules\";i:1;s:24:\"merge duplicate contacts\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Page_DedupeRules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,105,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), - (210,1,'civicrm/contact/dedupefind',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Page_DedupeFind\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (211,1,'civicrm/ajax/dedupefind',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:10:\"getDedupes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (212,1,'civicrm/contact/dedupemerge',NULL,'Batch Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Page_DedupeMerge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (213,1,'civicrm/dedupe/exception',NULL,'Dedupe Exceptions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Page_DedupeException\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,110,1,0,0,'a:1:{s:10:\"adminGroup\";s:6:\"Manage\";}'), - (214,1,'civicrm/ajax/dedupeRules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"buildDedupeRules\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (215,1,'civicrm/contact/view/useradd','cid=%%cid%%','Add User','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Useradd\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (216,1,'civicrm/ajax/markSelection',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:22:\"selectUnselectContacts\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (217,1,'civicrm/ajax/toggleDedupeSelect',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:18:\"toggleDedupeSelect\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (218,1,'civicrm/ajax/flipDupePairs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"flipDupePairs\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (219,1,'civicrm/activity/sms/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_SMS\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (220,1,'civicrm/ajax/contactrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"view my contact\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:23:\"getContactRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (221,1,'civicrm/group',NULL,'Manage Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Page_Group\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,30,1,1,0,'a:0:{}'), - (222,1,'civicrm/group/search',NULL,'Group Members','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:7:\"comment\";s:164:\"Note: group search already respect ACL, so a strict permission at url level is not required. A simple/basic permission like \'access CiviCRM\' could be used. CRM-5417\";}'), - (223,1,'civicrm/group/add',NULL,'New Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (224,1,'civicrm/ajax/grouplist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Group_Page_AJAX\";i:1;s:12:\"getGroupList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (225,1,'civicrm/custom/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Custom_Form_CustomData\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (226,1,'civicrm/ajax/optionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:13:\"getOptionList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (227,1,'civicrm/ajax/reorder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:11:\"fixOrdering\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (228,1,'civicrm/ajax/multirecordfieldlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:23:\"getMultiRecordFieldList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (229,1,'civicrm/ajax/api4',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Api4_Permission\";i:1;s:5:\"check\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Api4_Page_AJAX\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (230,1,'civicrm/api4',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Api4_Page_Api4Explorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (231,1,'civicrm/payment/form',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Financial_Form_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), - (232,1,'civicrm/payment/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Financial_Form_PaymentEdit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (233,1,'civicrm/profile',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), - (234,1,'civicrm/profile/create',NULL,'CiviCRM Profile Create','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), - (235,1,'civicrm/profile/view',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Profile_Page_View\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (236,1,'civicrm/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Custom_Form_CustomDataByType\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (237,1,'civicrm/tag',NULL,'Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:16:\"CRM_Tag_Page_Tag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,25,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), - (238,1,'civicrm/tag/edit','action=add','New Tag','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:17:\"CRM_Tag_Form_Edit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (239,1,'civicrm/tag/merge',NULL,'Merge Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:18:\"CRM_Tag_Form_Merge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (240,1,'civicrm/ajax/tagTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:10:\"getTagTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (241,1,'civicrm/import',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,400,1,1,0,'a:0:{}'), - (242,1,'civicrm/import/contact',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), - (243,1,'civicrm/import/contact/summary',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Import_Form_Summary\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Import Contacts\";s:3:\"url\";s:31:\"/civicrm/import/contact?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), - (244,1,'civicrm/import/outcome',NULL,'Import results','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Import_Forms\";i:1;s:9:\"outputCSV\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (245,1,'civicrm/import/activity',NULL,'Import Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), - (246,1,'civicrm/import/custom','id=%%id%%','Import Multi-value Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Custom_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), - (247,1,'civicrm/ajax/status',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Contact_Import_Page_AJAX\";i:1;s:6:\"status\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (248,1,'civicrm/import/datasource',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Import_Form_DataSourceConfig\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,450,1,1,0,'a:0:{}'), - (249,1,'civicrm/ajax/jqState',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:7:\"jqState\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (250,1,'civicrm/ajax/jqCounty',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:8:\"jqCounty\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (251,1,'civicrm/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (252,1,'civicrm/pcp/campaign',NULL,'Setup a Personal Campaign Page - Account Information','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), - (253,1,'civicrm/pcp/info',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_PCP_Page_PCPInfo\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), - (254,1,'civicrm/admin/pcp','context=contribute','Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Page_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,362,1,0,0,'a:2:{s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (255,1,'civicrm/event',NULL,'CiviEvent Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,1,1,0,1,0,800,1,1,0,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'), - (256,1,'civicrm/participant/add','action=add','Register New Participant','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'), - (257,1,'civicrm/event/info',NULL,'Event Information','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,1,1,0,0,'a:0:{}'), - (258,1,'civicrm/event/register',NULL,'Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Controller_Registration\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,1,1,1,0,0,'a:0:{}'), - (259,1,'civicrm/event/confirm',NULL,'Confirm Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:46:\"CRM_Event_Form_Registration_ParticipantConfirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,1,1,1,0,0,'a:0:{}'), - (260,1,'civicrm/event/ical',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_ICalendar\";i:1;s:3:\"run\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), - (261,1,'civicrm/event/list',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','s:19:\"CRM_Event_Page_List\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), - (262,1,'civicrm/event/participant',NULL,'Event Participants List','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"view event participants\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Page_ParticipantListing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), - (263,1,'civicrm/admin/event',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (264,1,'civicrm/admin/eventTemplate',NULL,'Event Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Admin_Page_EventTemplate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,375,1,0,0,'a:2:{s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (265,1,'civicrm/admin/options/event_type',NULL,'Event Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,385,1,0,0,'a:2:{s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (266,1,'civicrm/admin/participant_status',NULL,'Participant Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Page_ParticipantStatusType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (267,1,'civicrm/admin/options/participant_role',NULL,'Participant Role','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,395,1,0,0,'a:2:{s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (268,1,'civicrm/admin/options/participant_listing',NULL,'Participant Listing Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,398,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (269,1,'civicrm/admin/options/conference_slot',NULL,'Conference Slot Labels','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,415,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Define conference slots and labels.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), - (270,1,'civicrm/event/search',NULL,'Find Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,810,1,1,0,'a:0:{}'), - (271,1,'civicrm/event/manage',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,1,820,1,1,0,'a:0:{}'), - (272,1,'civicrm/event/badge',NULL,'Print Event Name Badge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:25:\"CRM_Event_Form_Task_Badge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), - (273,1,'civicrm/event/manage/settings',NULL,'Event Info and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,910,1,0,0,'a:0:{}'), - (274,1,'civicrm/event/manage/location',NULL,'Event Location','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:35:\"CRM_Event_Form_ManageEvent_Location\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,930,1,0,0,'a:0:{}'), - (275,1,'civicrm/event/manage/fee',NULL,'Event Fees','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_ManageEvent_Fee\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,920,1,0,0,'a:0:{}'), - (276,1,'civicrm/event/manage/registration',NULL,'Event Online Registration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:39:\"CRM_Event_Form_ManageEvent_Registration\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,930,1,0,0,'a:0:{}'), - (277,1,'civicrm/event/manage/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Friend_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,940,1,0,0,'a:0:{}'), - (278,1,'civicrm/event/manage/reminder',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:44:\"CRM_Event_Form_ManageEvent_ScheduleReminders\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,950,1,0,0,'a:0:{}'), - (279,1,'civicrm/event/manage/repeat',NULL,'Repeat Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Form_ManageEvent_Repeat\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,960,1,0,0,'a:0:{}'), - (280,1,'civicrm/event/manage/conference',NULL,'Conference Slots','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:37:\"CRM_Event_Form_ManageEvent_Conference\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,950,1,0,0,'a:0:{}'), - (281,1,'civicrm/event/add','action=add','New Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,830,1,0,0,'a:0:{}'), - (282,1,'civicrm/event/import',NULL,'Import Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:23:\"edit event participants\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,840,1,1,0,'a:0:{}'), - (283,1,'civicrm/event/price',NULL,'Manage Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,850,1,1,0,'a:0:{}'), - (284,1,'civicrm/event/selfsvcupdate',NULL,'Self-service Registration Update','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Event_Form_SelfSvcUpdate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,880,1,1,0,'a:0:{}'), - (285,1,'civicrm/event/selfsvctransfer',NULL,'Self-service Registration Transfer','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_SelfSvcTransfer\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,890,1,1,0,'a:0:{}'), - (286,1,'civicrm/contact/view/participant',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,4,1,0,0,'a:0:{}'), - (287,1,'civicrm/ajax/eventFee',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_Page_AJAX\";i:1;s:8:\"eventFee\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (288,1,'civicrm/ajax/locBlock',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:11:\"getLocBlock\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (289,1,'civicrm/event/participant/feeselection',NULL,'Change Registration Selections','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:38:\"CRM_Event_Form_ParticipantFeeSelection\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:23:\"Event Participants List\";s:3:\"url\";s:34:\"/civicrm/event/participant?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), - (290,1,'civicrm/event/manage/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_PCP_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,540,1,1,0,'a:0:{}'), - (291,1,'civicrm/event/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,1,1,0,0,'a:0:{}'), - (292,1,'civicrm/event/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), - (293,1,'civicrm/contribute',NULL,'CiviContribute Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,1,0,1,0,500,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (294,1,'civicrm/contribute/add','action=add','New Contribution','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (295,1,'civicrm/contribute/chart',NULL,'Contribution Summary - Chart View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (296,1,'civicrm/contribute/transact',NULL,'CiviContribute','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Controller_Contribution\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,1,0,1,0,0,'a:0:{}'), - (297,1,'civicrm/admin/contribute',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,360,1,0,0,'a:2:{s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (298,1,'civicrm/admin/contribute/settings',NULL,'Title and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_Settings\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:0:{}'), - (299,1,'civicrm/admin/contribute/amount',NULL,'Contribution Amounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Amount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,410,1,0,0,'a:0:{}'), - (300,1,'civicrm/admin/contribute/membership',NULL,'Membership Section','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Member_Form_MembershipBlock\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:0:{}'), - (301,1,'civicrm/admin/contribute/custom',NULL,'Include Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Custom\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:0:{}'), - (302,1,'civicrm/admin/contribute/thankyou',NULL,'Thank-you and Receipting','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_ThankYou\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:0:{}'), - (303,1,'civicrm/admin/contribute/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Friend_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,440,1,0,0,'a:0:{}'), - (304,1,'civicrm/admin/contribute/widget',NULL,'Configure Widget','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Widget\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,460,1,0,0,'a:0:{}'), - (305,1,'civicrm/admin/contribute/premium',NULL,'Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:44:\"CRM_Contribute_Form_ContributionPage_Premium\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,470,1,0,0,'a:0:{}'), - (306,1,'civicrm/admin/contribute/addProductToPage',NULL,'Add Products to This Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:47:\"CRM_Contribute_Form_ContributionPage_AddProduct\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,480,1,0,0,'a:0:{}'), - (307,1,'civicrm/admin/contribute/add','action=add','New Contribution Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Contribute_Controller_ContributionPage\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), - (308,1,'civicrm/admin/contribute/managePremiums',NULL,'Manage Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Page_ManagePremiums\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,365,1,0,0,'a:2:{s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (309,1,'civicrm/admin/financial/financialType',NULL,'Financial Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Financial_Page_FinancialType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,580,1,0,0,'a:2:{s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (310,1,'civicrm/payment','action=add','New Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Form_AdditionalPayment\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (311,1,'civicrm/admin/financial/financialAccount',NULL,'Financial Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_FinancialAccount\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (312,1,'civicrm/admin/options/payment_instrument',NULL,'Payment Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (313,1,'civicrm/admin/options/accept_creditcard',NULL,'Accepted Credit Cards','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,395,1,0,0,'a:2:{s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (314,1,'civicrm/admin/options/soft_credit_type',NULL,'Soft Credit Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (315,1,'civicrm/contact/view/contribution',NULL,'Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (316,1,'civicrm/contact/view/contributionrecur',NULL,'Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:37:\"CRM_Contribute_Page_ContributionRecur\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (317,1,'civicrm/contact/view/contribution/additionalinfo',NULL,'Additional Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:13:\"Contributions\";s:3:\"url\";s:42:\"/civicrm/contact/view/contribution?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (318,1,'civicrm/contribute/search',NULL,'Find Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,510,1,1,0,'a:0:{}'), - (319,1,'civicrm/contribute/searchBatch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Controller_SearchBatch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,588,1,1,0,'a:0:{}'), - (320,1,'civicrm/contribute/import',NULL,'Import Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"edit contributions\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,520,1,1,0,'a:0:{}'), - (321,1,'civicrm/contribute/manage',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,530,1,1,0,'a:0:{}'), - (322,1,'civicrm/contribute/additionalinfo',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,0,1,0,0,'a:0:{}'), - (323,1,'civicrm/ajax/permlocation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:23:\"getPermissionedLocation\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (324,1,'civicrm/contribute/unsubscribe',NULL,'Cancel Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_CancelSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (325,1,'civicrm/contribute/onbehalf',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_Contribution_OnBehalfOf\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (326,1,'civicrm/contribute/updatebilling',NULL,'Update Billing Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contribute_Form_UpdateBilling\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (327,1,'civicrm/contribute/updaterecur',NULL,'Update Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_UpdateSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (328,1,'civicrm/contribute/subscriptionstatus',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Page_SubscriptionStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (329,1,'civicrm/admin/financial/financialType/accounts',NULL,'Financial Type Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:39:\"CRM_Financial_Page_FinancialTypeAccount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Financial Types\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,581,1,0,0,'a:0:{}'), - (330,1,'civicrm/financial/batch',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:33:\"CRM_Financial_Page_FinancialBatch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,585,1,0,0,'a:0:{}'), - (331,1,'civicrm/financial/financialbatches',NULL,'Accounting Batches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Financial_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,586,1,0,0,'a:0:{}'), - (332,1,'civicrm/batchtransaction',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_BatchTransaction\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,600,1,0,0,'a:0:{}'), - (333,1,'civicrm/financial/batch/export',NULL,'Accounting Batch Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:25:\"CRM_Financial_Form_Export\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Accounting Batch\";s:3:\"url\";s:32:\"/civicrm/financial/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,610,1,0,0,'a:0:{}'), - (334,1,'civicrm/payment/view','action=view','View Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contribute_Page_PaymentInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (335,1,'civicrm/admin/setting/preferences/contribute',NULL,'CiviContribute Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Admin_Form_Preferences_Contribute\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), - (336,1,'civicrm/contribute/invoice',NULL,'PDF Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Contribute_Form_Task_Invoice\";i:1;s:11:\"getPrintPDF\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,620,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (337,1,'civicrm/contribute/invoice/email',NULL,'Email Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Form_Task_Invoice\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"PDF Invoice\";s:3:\"url\";s:35:\"/civicrm/contribute/invoice?reset=1\";}}',NULL,NULL,2,1,0,1,0,630,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), - (338,1,'civicrm/ajax/softcontributionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:24:\"CRM_Contribute_Page_AJAX\";i:1;s:23:\"getSoftContributionRows\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (339,1,'civicrm/contribute/contributionrecur-payments',NULL,'Recurring Contribution\'s Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Page_ContributionRecurPayments\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (340,1,'civicrm/membership/recurring-contributions',NULL,'Membership Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Member_Page_RecurringContributions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), - (341,1,'civicrm/contribute/widget',NULL,'CiviContribute','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contribute_Page_Widget\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), - (342,1,'civicrm/contribute/task',NULL,'Contribution Task','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contribute_Controller_Task\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), - (343,1,'civicrm/admin/contribute/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_PCP_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,450,1,0,0,'a:0:{}'), - (344,1,'civicrm/contribute/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), + (1,1,'civicrm/admin/custom/group',NULL,'Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (2,1,'civicrm/admin/custom/group/edit',NULL,'Configure Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (3,1,'civicrm/admin/custom/group/preview',NULL,'Custom Field Preview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:23:\"CRM_Custom_Form_Preview\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (4,1,'civicrm/admin/custom/group/delete',NULL,'Delete Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteGroup\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (5,1,'civicrm/admin/custom/group/field',NULL,'Custom Data Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,11,1,0,0,'a:0:{}'), + (6,1,'civicrm/admin/custom/group/field/delete',NULL,'Delete Custom Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:27:\"CRM_Custom_Form_DeleteField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (7,1,'civicrm/admin/custom/group/field/option',NULL,'Custom Field - Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:22:\"CRM_Custom_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (8,1,'civicrm/admin/custom/group/field/add',NULL,'Custom Field - Add','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (9,1,'civicrm/admin/custom/group/field/update',NULL,'Custom Field - Edit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (10,1,'civicrm/admin/custom/group/field/move',NULL,'Custom Field - Move','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCRM data\";}i:1;s:3:\"and\";}','s:25:\"CRM_Custom_Form_MoveField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (11,1,'civicrm/admin/uf/group',NULL,'Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (12,1,'civicrm/admin/uf/group/field',NULL,'CiviCRM Profile Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,21,1,0,0,'a:0:{}'), + (13,1,'civicrm/admin/uf/group/field/add',NULL,'Add Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,22,1,0,0,'a:0:{}'), + (14,1,'civicrm/admin/uf/group/field/update',NULL,'Edit Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,23,1,0,0,'a:0:{}'), + (15,1,'civicrm/admin/uf/group/add',NULL,'New CiviCRM Profile','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,24,1,0,0,'a:0:{}'), + (16,1,'civicrm/admin/uf/group/update',NULL,'Profile Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,25,1,0,0,'a:0:{}'), + (17,1,'civicrm/admin/uf/group/setting',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_UF_Form_AdvanceSetting\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,0,1,0,0,'a:0:{}'), + (18,1,'civicrm/admin/options/activity_type',NULL,'Activity Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (19,1,'civicrm/admin/reltype',NULL,'Relationship Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_RelationshipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,35,1,0,0,'a:2:{s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (20,1,'civicrm/admin/options/subtype',NULL,'Contact Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_ContactType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (21,1,'civicrm/admin/options/subtype/edit',NULL,'Edit Contact Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_ContactType\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}i:3;a:2:{s:5:\"title\";s:13:\"Contact Types\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (22,1,'civicrm/admin/options/gender',NULL,'Gender Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,45,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Options for assigning gender to individual contacts (e.g. Male, Female, Other).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (23,1,'civicrm/admin/options/individual_prefix',NULL,'Individual Prefixes (Ms, Mr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (24,1,'civicrm/admin/options/individual_suffix',NULL,'Individual Suffixes (Jr, Sr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,55,1,0,0,'a:2:{s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (25,1,'civicrm/admin/locationType',NULL,'Location Types (Home, Work...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LocationType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (26,1,'civicrm/admin/options/website_type',NULL,'Website Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,65,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (27,1,'civicrm/admin/options/instant_messenger_service',NULL,'Instant Messenger Services','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (28,1,'civicrm/admin/options/mobile_provider',NULL,'Mobile Phone Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (29,1,'civicrm/admin/options/phone_type',NULL,'Phone Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n Mobile, Fax, Pager)\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (30,1,'civicrm/admin/setting/preferences/display',NULL,'Display Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Display\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (31,1,'civicrm/admin/setting/search',NULL,'Search Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Form_Setting_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,95,1,0,0,'a:1:{s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (32,1,'civicrm/admin/setting/preferences/date',NULL,'View Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Page_PreferencesDate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (33,1,'civicrm/admin/menu',NULL,'Navigation Menu','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Navigation\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (34,1,'civicrm/admin/options/wordreplacements',NULL,'Word Replacements','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_WordReplacements\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:18:\"Word Replacements.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (35,1,'civicrm/admin/options/custom_search',NULL,'Manage Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,110,1,0,0,'a:2:{s:4:\"desc\";s:225:\"Developers and accidental techies with a bit of PHP and SQL knowledge can create new search forms to handle specific search and reporting needs which aren\'t covered by the built-in Advanced Search and Search Builder features.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (36,1,'civicrm/admin/domain','action=update','Organization Address and Contact Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contact_Form_Domain\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (37,1,'civicrm/admin/options/from_email_address',NULL,'From Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (38,1,'civicrm/admin/messageTemplates',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Page_MessageTemplates\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (39,1,'civicrm/admin/messageTemplates/add',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:22:\"edit message templates\";i:1;s:34:\"edit user-driven message templates\";i:2;s:38:\"edit system workflow message templates\";}i:1;s:2:\"or\";}','s:31:\"CRM_Admin_Form_MessageTemplates\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Message Templates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,262,1,0,0,'a:1:{s:4:\"desc\";s:26:\"Add/Edit Message Templates\";}'), + (40,1,'civicrm/admin/scheduleReminders',NULL,'Schedule Reminders','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCRM data\";i:1;s:15:\"edit all events\";}i:1;s:2:\"or\";}','s:32:\"CRM_Admin_Page_ScheduleReminders\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:19:\"Schedule Reminders.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (41,1,'civicrm/admin/weight',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_Weight\";i:1;s:8:\"fixOrder\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (42,1,'civicrm/admin/options/preferred_communication_method',NULL,'Preferred Communication Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (43,1,'civicrm/admin/labelFormats',NULL,'Label Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:2:{s:4:\"desc\";s:67:\"Configure Label Formats that are used when creating mailing labels.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (44,1,'civicrm/admin/pdfFormats',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:2:{s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (45,1,'civicrm/admin/options/communication_style',NULL,'Communication Style Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,75,1,0,0,'a:2:{s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (46,1,'civicrm/admin/options/email_greeting',NULL,'Email Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (47,1,'civicrm/admin/options/postal_greeting',NULL,'Postal Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:2:{s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (48,1,'civicrm/admin/options/addressee',NULL,'Addressee Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:10:\"adminGroup\";s:14:\"Communications\";}'), + (49,1,'civicrm/admin/setting/localization',NULL,'Languages, Currency, Locations','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Setting_Localization\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), + (50,1,'civicrm/admin/setting/preferences/address',NULL,'Address Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Address\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), + (51,1,'civicrm/admin/setting/date',NULL,'Date Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Date\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:1:{s:10:\"adminGroup\";s:12:\"Localization\";}'), + (52,1,'civicrm/admin/options/languages',NULL,'Preferred Languages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:2:{s:4:\"desc\";s:30:\"Options for contact languages.\";s:10:\"adminGroup\";s:12:\"Localization\";}'), + (53,1,'civicrm/admin/access',NULL,'Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_Access\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), + (54,1,'civicrm/admin/access/wp-permissions',NULL,'WordPress Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_ACL_Form_WordPress_Permissions\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Access Control\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:1:{s:4:\"desc\";s:65:\"Grant access to CiviCRM components and other CiviCRM permissions.\";}'), + (55,1,'civicrm/admin/synchUser',NULL,'Synchronize Users to Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_CMSUser\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:2:{s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:10:\"adminGroup\";s:21:\"Users and Permissions\";}'), + (56,1,'civicrm/admin/configtask',NULL,'Configuration Checklist','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Page_ConfigTaskList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}','civicrm/admin/configtask',NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (57,1,'civicrm/admin/setting/component',NULL,'Enable CiviCRM Components','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:2:{s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (58,1,'civicrm/admin/extensions',NULL,'Manage Extensions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Extensions\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:2:{s:4:\"desc\";s:0:\"\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (59,1,'civicrm/admin/extensions/upgrade',NULL,'Database Upgrades','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ExtensionsUpgrade\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Manage Extensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (60,1,'civicrm/admin/setting/smtp',NULL,'Outbound Email Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Smtp\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,20,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (61,1,'civicrm/admin/paymentProcessor',NULL,'Settings - Payment Processor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:29:\"administer payment processors\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_PaymentProcessor\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,30,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (62,1,'civicrm/admin/setting/mapping',NULL,'Mapping and Geocoding','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_Setting_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,40,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (63,1,'civicrm/admin/setting/misc',NULL,'Misc (Undelete, PDFs, Limits, Logging, etc.)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Setting_Miscellaneous\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,50,1,0,0,'a:2:{s:4:\"desc\";s:63:\"Enable undelete/move to trash feature, detailed change logging.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (64,1,'civicrm/admin/setting/path',NULL,'Directories','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Path\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,60,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (65,1,'civicrm/admin/setting/url',NULL,'Resource URLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_Setting_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,70,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (66,1,'civicrm/admin/setting/updateConfigBackend',NULL,'Cleanup Caches and Update Paths','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Admin_Form_Setting_UpdateConfigBackend\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,80,1,0,0,'a:2:{s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (67,1,'civicrm/admin/setting/uf',NULL,'CMS Database Integration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Setting_UF\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,90,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (68,1,'civicrm/admin/options/safe_file_extension',NULL,'Safe File Extension Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,100,1,0,0,'a:2:{s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (69,1,'civicrm/admin/options',NULL,'Option Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,105,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (70,1,'civicrm/admin/mapping',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,110,1,0,0,'a:2:{s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (71,1,'civicrm/admin/setting/debug',NULL,'Debugging','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Debugging\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,120,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (72,1,'civicrm/admin/setting/preferences/multisite',NULL,'Multi Site Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,130,1,0,0,'a:1:{s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (73,1,'civicrm/admin/setting/preferences/campaign',NULL,'CiviCampaign Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,10,1,0,0,'a:3:{s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:10:\"adminGroup\";s:12:\"CiviCampaign\";s:9:\"component\";s:12:\"CiviCampaign\";}'), + (74,1,'civicrm/admin/setting/preferences/event',NULL,'CiviEvent Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Form_Generic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:2:{s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (75,1,'civicrm/admin/setting/preferences/mailing',NULL,'CiviMail Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Mailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:2:{s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:10:\"adminGroup\";s:8:\"CiviMail\";}'), + (76,1,'civicrm/admin/setting/preferences/member',NULL,'CiviMember Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Admin_Form_Preferences_Member\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), + (77,1,'civicrm/admin/runjobs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:20:\"executeScheduledJobs\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:36:\"URL used for running scheduled jobs.\";}'), + (78,1,'civicrm/admin/job',NULL,'Scheduled Jobs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1370,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (79,1,'civicrm/admin/joblog',NULL,'Scheduled Jobs Log','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:25:\"administer CiviCRM system\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_JobLog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1380,1,0,0,'a:2:{s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), + (80,1,'civicrm/admin/options/grant_type',NULL,'Grant Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,385,1,0,0,'a:2:{s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > Systme Settings > Enable Components if you want to track grants.)\";s:10:\"adminGroup\";s:12:\"Option Lists\";}'), + (81,1,'civicrm/admin/paymentProcessorType',NULL,'Payment Processor Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Page_PaymentProcessorType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:1:{s:4:\"desc\";s:34:\"Payment Processor type information\";}'), + (82,1,'civicrm/admin',NULL,'Administer CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Admin_Page_Admin\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,9000,1,1,0,'a:0:{}'), + (83,1,'civicrm/ajax/navmenu',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:7:\"navMenu\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (84,1,'civicrm/ajax/menutree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:8:\"menuTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), + (85,1,'civicrm/ajax/statusmsg',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"getStatusMsg\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (86,1,'civicrm/admin/price',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:10:\"adminGroup\";s:9:\"Customize\";}'), + (87,1,'civicrm/admin/price/add','action=add','New Price Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:1:{s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";}'), + (88,1,'civicrm/admin/price/field',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (89,1,'civicrm/admin/price/field/option',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (90,1,'civicrm/ajax/mapping',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:11:\"mappingList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (91,1,'civicrm/ajax/recipientListing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:16:\"recipientListing\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (92,1,'civicrm/admin/sms/provider',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Provider\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,500,1,0,0,'a:2:{s:4:\"desc\";s:27:\"To configure a sms provider\";s:10:\"adminGroup\";s:15:\"System Settings\";}'), + (93,1,'civicrm/sms/send',NULL,'New Mass SMS','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:23:\"CRM_SMS_Controller_Send\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,610,1,1,0,'a:0:{}'), + (94,1,'civicrm/sms/callback',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Callback\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (95,1,'civicrm/admin/badgelayout','action=browse','Event Name Badge Layouts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Page_Layout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,399,1,0,0,'a:2:{s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (96,1,'civicrm/admin/badgelayout/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Form_Layout\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?reset=1&action=browse\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (97,1,'civicrm/import',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,400,1,1,0,'a:0:{}'), + (98,1,'civicrm/import/contact',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), + (99,1,'civicrm/import/contact/summary',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Import_Form_Summary\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Import Contacts\";s:3:\"url\";s:31:\"/civicrm/import/contact?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,410,1,1,0,'a:0:{}'), + (100,1,'civicrm/import/outcome',NULL,'Import results','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Import_Forms\";i:1;s:9:\"outputCSV\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (101,1,'civicrm/import/activity',NULL,'Import Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), + (102,1,'civicrm/import/custom','id=%%id%%','Import Multi-value Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Custom_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,420,1,1,0,'a:0:{}'), + (103,1,'civicrm/ajax/status',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Contact_Import_Page_AJAX\";i:1;s:6:\"status\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (104,1,'civicrm/import/datasource',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Import_Form_DataSourceConfig\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,450,1,1,0,'a:0:{}'), + (105,1,'civicrm/ajax/jqState',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:7:\"jqState\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (106,1,'civicrm/ajax/jqCounty',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:8:\"jqCounty\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (107,1,'civicrm/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (108,1,'civicrm/pcp/campaign',NULL,'Setup a Personal Campaign Page - Account Information','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), + (109,1,'civicrm/pcp/info',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_PCP_Page_PCPInfo\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (110,1,'civicrm/admin/pcp','context=contribute','Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Page_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,362,1,0,0,'a:2:{s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (111,1,'civicrm/upgrade',NULL,'Upgrade CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Upgrade_Page_Upgrade\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (112,1,'civicrm/export',NULL,'Download Errors','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (113,1,'civicrm/export/contact',NULL,'Export Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), + (114,1,'civicrm/export/standalone',NULL,'Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Export_Controller_Standalone\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (115,1,'civicrm/admin/options/acl_role',NULL,'ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (116,1,'civicrm/acl',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Page_ACL\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (117,1,'civicrm/acl/entityrole',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Page_EntityRole\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (118,1,'civicrm/acl/basic',NULL,'ACL','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_ACL_Page_ACLBasic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (119,1,'civicrm/file',NULL,'Browse Uploaded files','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_Page_File\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (120,1,'civicrm/file/delete',NULL,'Delete File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:17:\"CRM_Core_BAO_File\";i:1;s:16:\"deleteAttachment\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:21:\"Browse Uploaded files\";s:3:\"url\";s:21:\"/civicrm/file?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (121,1,'civicrm/friend',NULL,'Tell a Friend','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:15:\"CRM_Friend_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (122,1,'civicrm/logout',NULL,'Log out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:6:\"logout\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,9999,1,1,0,'a:0:{}'), + (123,1,'civicrm/i18n',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"translate CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_I18n_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (124,1,'civicrm/ajax/attachment',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:29:\"CRM_Core_Page_AJAX_Attachment\";i:1;s:10:\"attachFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (125,1,'civicrm/api',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (126,1,'civicrm/api3',NULL,'CiviCRM API v3','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_APIExplorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (127,1,'civicrm/ajax/apiexample',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:14:\"getExampleFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (128,1,'civicrm/ajax/apidoc',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:6:\"getDoc\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (129,1,'civicrm/ajax/rest',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:4:\"ajax\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (130,1,'civicrm/api/json',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:8:\"ajaxJson\";}','s:16:\"url=civicrm/api3\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (131,1,'civicrm/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:12:\"loadTemplate\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (132,1,'civicrm/ajax/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (133,1,'civicrm/asset/builder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"\\Civi\\Core\\AssetBuilder\";i:1;s:7:\"pageRun\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (134,1,'civicrm/contribute/ajax/tableview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (135,1,'civicrm/payment/ipn',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Core_Payment\";i:1;s:9:\"handleIPN\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,1,1,0,0,'a:0:{}'), + (136,1,'civicrm/batch',NULL,'Batch Data Entry','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (137,1,'civicrm/batch/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Batch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (138,1,'civicrm/batch/entry',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Entry\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (139,1,'civicrm/ajax/batch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:9:\"batchSave\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (140,1,'civicrm/ajax/batchlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:12:\"getBatchList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (141,1,'civicrm/ajax/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Page_AJAX\";i:1;s:3:\"run\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (142,1,'civicrm/dev/qunit',NULL,'QUnit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_Core_Page_QUnit\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (143,1,'civicrm/dev/fake-error',NULL,'Fake Error','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Page_FakeError\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (144,1,'civicrm/profile-editor/schema',NULL,'ProfileEditor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:25:\"CRM_UF_Page_ProfileEditor\";i:1;s:13:\"getSchemaJSON\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (145,1,'civicrm/a',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"\\Civi\\Angular\\Page\\Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (146,1,'civicrm/ajax/angular-modules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"\\Civi\\Angular\\Page\\Modules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (147,1,'civicrm/ajax/recurringentity/update-mode',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:34:\"CRM_Core_Page_AJAX_RecurringEntity\";i:1;s:10:\"updateMode\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (148,1,'civicrm/recurringentity/preview',NULL,'Confirm dates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Core_Page_RecurringEntityPreview\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (149,1,'civicrm/shortcode',NULL,'Insert CiviCRM Content','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Core_Form_ShortCode\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (150,1,'civicrm/task/add-to-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Form_Task_AddToGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (151,1,'civicrm/task/remove-from-group',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contact_Form_Task_RemoveFromGroup\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (152,1,'civicrm/task/add-to-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contact_Form_Task_AddToTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (153,1,'civicrm/task/remove-from-tag',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Form_Task_RemoveFromTag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (154,1,'civicrm/task/send-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (155,1,'civicrm/task/make-mailing-label',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Label\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (156,1,'civicrm/task/pick-profile',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contact_Form_Task_PickProfile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (157,1,'civicrm/task/print-document',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (158,1,'civicrm/task/unhold-email',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Unhold\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (159,1,'civicrm/task/alter-contact-preference',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contact_Form_Task_AlterPreferences\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (160,1,'civicrm/task/delete-contact',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (161,1,'civicrm/task/add-activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (162,1,'civicrm/payment/form',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Financial_Form_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), + (163,1,'civicrm/payment/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Financial_Form_PaymentEdit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (164,1,'civicrm/ajax/api4',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Api4_Permission\";i:1;s:5:\"check\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Api4_Page_AJAX\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (165,1,'civicrm/api4',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Api4_Page_Api4Explorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (166,1,'civicrm/group',NULL,'Manage Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Page_Group\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,30,1,1,0,'a:0:{}'), + (167,1,'civicrm/group/search',NULL,'Group Members','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:7:\"comment\";s:164:\"Note: group search already respect ACL, so a strict permission at url level is not required. A simple/basic permission like \'access CiviCRM\' could be used. CRM-5417\";}'), + (168,1,'civicrm/group/add',NULL,'New Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (169,1,'civicrm/ajax/grouplist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Group_Page_AJAX\";i:1;s:12:\"getGroupList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (170,1,'civicrm/custom/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Custom_Form_CustomData\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (171,1,'civicrm/ajax/optionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:13:\"getOptionList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (172,1,'civicrm/ajax/reorder',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:11:\"fixOrdering\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (173,1,'civicrm/ajax/multirecordfieldlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Custom_Page_AJAX\";i:1;s:23:\"getMultiRecordFieldList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (174,1,'civicrm',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:0:{}',NULL,NULL,NULL,1,0,1,0,0,1,0,0,'a:0:{}'), + (175,1,'civicrm/dashboard',NULL,'CiviCRM Home','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,0,1,1,0,'a:0:{}'), + (176,1,'civicrm/contact/search',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,10,1,1,0,'a:0:{}'), + (177,1,'civicrm/contact/image',NULL,'Process Uploaded Images','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"CRM_Contact_BAO_Contact\";i:1;s:12:\"processImage\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (178,1,'civicrm/contact/imagefile',NULL,'Get Image File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_ImageFile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (179,1,'civicrm/contact/search/basic',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (180,1,'civicrm/contact/search/advanced',NULL,'Advanced Search','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=512\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,12,1,1,0,'a:0:{}'), + (181,1,'civicrm/contact/search/builder',NULL,'Search Builder','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:9:\"mode=8192\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,14,1,1,0,'a:0:{}'), + (182,1,'civicrm/contact/add',NULL,'New Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (183,1,'civicrm/contact/add/individual','ct=Individual','New Individual','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (184,1,'civicrm/contact/add/household','ct=Household','New Household','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (185,1,'civicrm/contact/add/organization','ct=Organization','New Organization','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (186,1,'civicrm/contact/relatedcontact',NULL,'Edit Related Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_RelatedContact\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (187,1,'civicrm/contact/merge',NULL,'Merge Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:22:\"CRM_Contact_Form_Merge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (188,1,'civicrm/contact/email',NULL,'Email a Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (189,1,'civicrm/contact/map',NULL,'Map Location(s)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_Map\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (190,1,'civicrm/contact/map/event',NULL,'Map Event Location','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_Task_Map_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Map Location(s)\";s:3:\"url\";s:28:\"/civicrm/contact/map?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (191,1,'civicrm/contact/view','cid=%%cid%%','Contact Summary','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Summary\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (192,1,'civicrm/contact/view/delete',NULL,'Delete Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (193,1,'civicrm/contact/view/activity','show=1,cid=%%cid%%','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:21:\"CRM_Activity_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (194,1,'civicrm/activity/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (195,1,'civicrm/activity/email/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (196,1,'civicrm/activity/pdf/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (197,1,'civicrm/contact/view/rel','cid=%%cid%%','Relationships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_Relationship\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (198,1,'civicrm/contact/view/group','cid=%%cid%%','Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_GroupContact\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (199,1,'civicrm/contact/view/smartgroup','cid=%%cid%%','Smart Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:39:\"CRM_Contact_Page_View_ContactSmartGroup\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (200,1,'civicrm/contact/view/note','cid=%%cid%%','Notes','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:26:\"CRM_Contact_Page_View_Note\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (201,1,'civicrm/contact/view/tag','cid=%%cid%%','Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Tag\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (202,1,'civicrm/contact/view/cd',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:32:\"CRM_Contact_Page_View_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (203,1,'civicrm/contact/view/cd/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Form_CustomData\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (204,1,'civicrm/contact/view/vcard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Vcard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (205,1,'civicrm/contact/view/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Print\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (206,1,'civicrm/contact/view/log',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Log\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (207,1,'civicrm/user',NULL,'Contact Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Page_View_UserDashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), + (208,1,'civicrm/dashlet/activity',NULL,'Activity Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_Activity\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (209,1,'civicrm/dashlet/blog',NULL,'CiviCRM Blog','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Dashlet_Page_Blog\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (210,1,'civicrm/dashlet/getting-started',NULL,'CiviCRM Resources','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Dashlet_Page_GettingStarted\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (211,1,'civicrm/ajax/relation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"relationship\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), + (212,1,'civicrm/ajax/groupTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"groupTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (213,1,'civicrm/ajax/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:11:\"customField\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (214,1,'civicrm/ajax/customvalue',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:17:\"deleteCustomValue\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), + (215,1,'civicrm/ajax/cmsuser',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"checkUserName\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (216,1,'civicrm/ajax/checkemail',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactEmail\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (217,1,'civicrm/ajax/checkphone',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactPhone\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (218,1,'civicrm/ajax/subtype',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"buildSubTypes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (219,1,'civicrm/ajax/signature',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"getSignature\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (220,1,'civicrm/ajax/pdfFormat',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"pdfFormat\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (221,1,'civicrm/ajax/paperSize',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"paperSize\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (222,1,'civicrm/ajax/contactref',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:31:\"access contact reference fields\";i:1;s:15:\" access CiviCRM\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"contactReference\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (223,1,'civicrm/dashlet/myCases',NULL,'Case Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Dashlet_Page_MyCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (224,1,'civicrm/dashlet/allCases',NULL,'All Cases Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_AllCases\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (225,1,'civicrm/dashlet/casedashboard',NULL,'Case Dashboard Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Dashlet_Page_CaseDashboard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (226,1,'civicrm/contact/deduperules',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer dedupe rules\";i:1;s:24:\"merge duplicate contacts\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Page_DedupeRules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,105,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:10:\"adminGroup\";s:6:\"Manage\";}'), + (227,1,'civicrm/contact/dedupefind',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Page_DedupeFind\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (228,1,'civicrm/ajax/dedupefind',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:10:\"getDedupes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (229,1,'civicrm/contact/dedupemerge',NULL,'Batch Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:28:\"CRM_Contact_Page_DedupeMerge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (230,1,'civicrm/dedupe/exception',NULL,'Dedupe Exceptions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Page_DedupeException\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,110,1,0,0,'a:1:{s:10:\"adminGroup\";s:6:\"Manage\";}'), + (231,1,'civicrm/ajax/dedupeRules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"buildDedupeRules\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (232,1,'civicrm/contact/view/useradd','cid=%%cid%%','Add User','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Useradd\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (233,1,'civicrm/ajax/markSelection',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:22:\"selectUnselectContacts\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (234,1,'civicrm/ajax/toggleDedupeSelect',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:18:\"toggleDedupeSelect\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (235,1,'civicrm/ajax/flipDupePairs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"flipDupePairs\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (236,1,'civicrm/activity/sms/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:8:\"send SMS\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_SMS\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (237,1,'civicrm/ajax/contactrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"view my contact\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:23:\"getContactRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (238,1,'civicrm/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Custom_Form_CustomDataByType\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (239,1,'civicrm/activity','action=add&context=standalone','New Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (240,1,'civicrm/activity/view',NULL,'View Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Form_ActivityView\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (241,1,'civicrm/ajax/activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:15:\"getCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (242,1,'civicrm/ajax/globalrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseGlobalRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (243,1,'civicrm/ajax/clientrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseClientRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (244,1,'civicrm/ajax/caseroles',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:12:\"getCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (245,1,'civicrm/ajax/contactactivity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:18:\"getContactActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (246,1,'civicrm/ajax/activity/convert',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:21:\"convertToCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,3,0,'a:0:{}'), + (247,1,'civicrm/activity/search',NULL,'Find Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Controller_Search\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&action=add&context=standalone\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (248,1,'civicrm/profile',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), + (249,1,'civicrm/profile/create',NULL,'CiviCRM Profile Create','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,0,1,0,0,'a:0:{}'), + (250,1,'civicrm/profile/view',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Profile_Page_View\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,1,1,0,1,1,0,0,'a:0:{}'), + (251,1,'civicrm/tag',NULL,'Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:16:\"CRM_Tag_Page_Tag\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,25,1,0,0,'a:2:{s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:10:\"adminGroup\";s:26:\"Customize Data and Screens\";}'), + (252,1,'civicrm/tag/edit','action=add','New Tag','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:17:\"CRM_Tag_Form_Edit\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (253,1,'civicrm/tag/merge',NULL,'Merge Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','s:18:\"CRM_Tag_Form_Merge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:4:\"Tags\";s:3:\"url\";s:20:\"/civicrm/tag?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (254,1,'civicrm/ajax/tagTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:11:\"manage tags\";}i:1;s:2:\"or\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:10:\"getTagTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (255,1,'civicrm/event/manage/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_PCP_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,540,1,1,0,'a:0:{}'), + (256,1,'civicrm/event/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,1,1,0,0,'a:0:{}'), + (257,1,'civicrm/event/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), + (258,1,'civicrm/event',NULL,'CiviEvent Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,1,1,0,1,0,800,1,1,0,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'), + (259,1,'civicrm/participant/add','action=add','Register New Participant','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:9:\"CiviEvent\";}'), + (260,1,'civicrm/event/info',NULL,'Event Information','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,1,1,0,0,'a:0:{}'), + (261,1,'civicrm/event/register',NULL,'Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Controller_Registration\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,1,1,1,0,0,'a:0:{}'), + (262,1,'civicrm/event/confirm',NULL,'Confirm Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:46:\"CRM_Event_Form_Registration_ParticipantConfirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,1,1,1,0,0,'a:0:{}'), + (263,1,'civicrm/event/ical',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_ICalendar\";i:1;s:3:\"run\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), + (264,1,'civicrm/event/list',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','s:19:\"CRM_Event_Page_List\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), + (265,1,'civicrm/event/participant',NULL,'Event Participants List','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"view event participants\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Page_ParticipantListing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,0,1,0,0,'a:0:{}'), + (266,1,'civicrm/admin/event',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (267,1,'civicrm/admin/eventTemplate',NULL,'Event Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Admin_Page_EventTemplate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,375,1,0,0,'a:2:{s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (268,1,'civicrm/admin/options/event_type',NULL,'Event Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,385,1,0,0,'a:2:{s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (269,1,'civicrm/admin/participant_status',NULL,'Participant Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Page_ParticipantStatusType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,390,1,0,0,'a:2:{s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (270,1,'civicrm/admin/options/participant_role',NULL,'Participant Role','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,395,1,0,0,'a:2:{s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (271,1,'civicrm/admin/options/participant_listing',NULL,'Participant Listing Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,398,1,0,0,'a:2:{s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (272,1,'civicrm/admin/options/conference_slot',NULL,'Conference Slot Labels','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,415,1,0,0,'a:2:{s:4:\"desc\";s:35:\"Define conference slots and labels.\";s:10:\"adminGroup\";s:9:\"CiviEvent\";}'), + (273,1,'civicrm/event/search',NULL,'Find Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,810,1,1,0,'a:0:{}'), + (274,1,'civicrm/event/manage',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,1,820,1,1,0,'a:0:{}'), + (275,1,'civicrm/event/badge',NULL,'Print Event Name Badge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:25:\"CRM_Event_Form_Task_Badge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), + (276,1,'civicrm/event/manage/settings',NULL,'Event Info and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,910,1,0,0,'a:0:{}'), + (277,1,'civicrm/event/manage/location',NULL,'Event Location','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:35:\"CRM_Event_Form_ManageEvent_Location\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,930,1,0,0,'a:0:{}'), + (278,1,'civicrm/event/manage/fee',NULL,'Event Fees','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_ManageEvent_Fee\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,920,1,0,0,'a:0:{}'), + (279,1,'civicrm/event/manage/registration',NULL,'Event Online Registration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:39:\"CRM_Event_Form_ManageEvent_Registration\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,930,1,0,0,'a:0:{}'), + (280,1,'civicrm/event/manage/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Friend_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,940,1,0,0,'a:0:{}'), + (281,1,'civicrm/event/manage/reminder',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:44:\"CRM_Event_Form_ManageEvent_ScheduleReminders\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,950,1,0,0,'a:0:{}'), + (282,1,'civicrm/event/manage/repeat',NULL,'Repeat Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Form_ManageEvent_Repeat\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,960,1,0,0,'a:0:{}'), + (283,1,'civicrm/event/manage/conference',NULL,'Conference Slots','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:37:\"CRM_Event_Form_ManageEvent_Conference\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,1,0,1,1,950,1,0,0,'a:0:{}'), + (284,1,'civicrm/event/add','action=add','New Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,830,1,0,0,'a:0:{}'), + (285,1,'civicrm/event/import',NULL,'Import Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:23:\"edit event participants\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,840,1,1,0,'a:0:{}'), + (286,1,'civicrm/event/price',NULL,'Manage Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,0,1,0,850,1,1,0,'a:0:{}'), + (287,1,'civicrm/event/selfsvcupdate',NULL,'Self-service Registration Update','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Event_Form_SelfSvcUpdate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,880,1,1,0,'a:0:{}'), + (288,1,'civicrm/event/selfsvctransfer',NULL,'Self-service Registration Transfer','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_SelfSvcTransfer\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,1,1,1,0,890,1,1,0,'a:0:{}'), + (289,1,'civicrm/contact/view/participant',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,4,1,0,0,'a:0:{}'), + (290,1,'civicrm/ajax/eventFee',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_Page_AJAX\";i:1;s:8:\"eventFee\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (291,1,'civicrm/ajax/locBlock',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:11:\"getLocBlock\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (292,1,'civicrm/event/participant/feeselection',NULL,'Change Registration Selections','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:38:\"CRM_Event_Form_ParticipantFeeSelection\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:23:\"Event Participants List\";s:3:\"url\";s:34:\"/civicrm/event/participant?reset=1\";}}',NULL,NULL,1,1,0,1,0,1,1,0,0,'a:0:{}'), + (293,1,'civicrm/admin/contribute/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_PCP_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,450,1,0,0,'a:0:{}'), + (294,1,'civicrm/contribute/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), + (295,1,'civicrm/contribute',NULL,'CiviContribute Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,1,0,1,0,500,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (296,1,'civicrm/contribute/add','action=add','New Contribution','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (297,1,'civicrm/contribute/chart',NULL,'Contribution Summary - Chart View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (298,1,'civicrm/contribute/transact',NULL,'CiviContribute','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Controller_Contribution\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,1,0,1,0,0,'a:0:{}'), + (299,1,'civicrm/admin/contribute',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,360,1,0,0,'a:2:{s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (300,1,'civicrm/admin/contribute/settings',NULL,'Title and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_Settings\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,400,1,0,0,'a:0:{}'), + (301,1,'civicrm/admin/contribute/amount',NULL,'Contribution Amounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Amount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,410,1,0,0,'a:0:{}'), + (302,1,'civicrm/admin/contribute/membership',NULL,'Membership Section','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Member_Form_MembershipBlock\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,420,1,0,0,'a:0:{}'), + (303,1,'civicrm/admin/contribute/custom',NULL,'Include Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Custom\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:0:{}'), + (304,1,'civicrm/admin/contribute/thankyou',NULL,'Thank-you and Receipting','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_ThankYou\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,430,1,0,0,'a:0:{}'), + (305,1,'civicrm/admin/contribute/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Friend_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,440,1,0,0,'a:0:{}'), + (306,1,'civicrm/admin/contribute/widget',NULL,'Configure Widget','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Widget\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,460,1,0,0,'a:0:{}'), + (307,1,'civicrm/admin/contribute/premium',NULL,'Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:44:\"CRM_Contribute_Form_ContributionPage_Premium\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,470,1,0,0,'a:0:{}'), + (308,1,'civicrm/admin/contribute/addProductToPage',NULL,'Add Products to This Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:47:\"CRM_Contribute_Form_ContributionPage_AddProduct\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,480,1,0,0,'a:0:{}'), + (309,1,'civicrm/admin/contribute/add','action=add','New Contribution Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Contribute_Controller_ContributionPage\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:0:{}'), + (310,1,'civicrm/admin/contribute/managePremiums',NULL,'Manage Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Page_ManagePremiums\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,365,1,0,0,'a:2:{s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (311,1,'civicrm/admin/financial/financialType',NULL,'Financial Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Financial_Page_FinancialType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,580,1,0,0,'a:2:{s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (312,1,'civicrm/payment','action=add','New Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Form_AdditionalPayment\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (313,1,'civicrm/admin/financial/financialAccount',NULL,'Financial Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_FinancialAccount\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (314,1,'civicrm/admin/options/payment_instrument',NULL,'Payment Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,380,1,0,0,'a:2:{s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (315,1,'civicrm/admin/options/accept_creditcard',NULL,'Accepted Credit Cards','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,395,1,0,0,'a:2:{s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (316,1,'civicrm/admin/options/soft_credit_type',NULL,'Soft Credit Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (317,1,'civicrm/contact/view/contribution',NULL,'Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (318,1,'civicrm/contact/view/contributionrecur',NULL,'Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:37:\"CRM_Contribute_Page_ContributionRecur\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (319,1,'civicrm/contact/view/contribution/additionalinfo',NULL,'Additional Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:13:\"Contributions\";s:3:\"url\";s:42:\"/civicrm/contact/view/contribution?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (320,1,'civicrm/contribute/search',NULL,'Find Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,510,1,1,0,'a:0:{}'), + (321,1,'civicrm/contribute/searchBatch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Controller_SearchBatch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,588,1,1,0,'a:0:{}'), + (322,1,'civicrm/contribute/import',NULL,'Import Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"edit contributions\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,520,1,1,0,'a:0:{}'), + (323,1,'civicrm/contribute/manage',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,530,1,1,0,'a:0:{}'), + (324,1,'civicrm/contribute/additionalinfo',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,0,1,0,0,'a:0:{}'), + (325,1,'civicrm/ajax/permlocation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:23:\"getPermissionedLocation\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (326,1,'civicrm/contribute/unsubscribe',NULL,'Cancel Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_CancelSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (327,1,'civicrm/contribute/onbehalf',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_Contribution_OnBehalfOf\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (328,1,'civicrm/contribute/updatebilling',NULL,'Update Billing Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contribute_Form_UpdateBilling\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (329,1,'civicrm/contribute/updaterecur',NULL,'Update Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_UpdateSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (330,1,'civicrm/contribute/subscriptionstatus',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Page_SubscriptionStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (331,1,'civicrm/admin/financial/financialType/accounts',NULL,'Financial Type Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:39:\"CRM_Financial_Page_FinancialTypeAccount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Financial Types\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,581,1,0,0,'a:0:{}'), + (332,1,'civicrm/financial/batch',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:33:\"CRM_Financial_Page_FinancialBatch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,585,1,0,0,'a:0:{}'), + (333,1,'civicrm/financial/financialbatches',NULL,'Accounting Batches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Financial_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,586,1,0,0,'a:0:{}'), + (334,1,'civicrm/batchtransaction',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_BatchTransaction\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,600,1,0,0,'a:0:{}'), + (335,1,'civicrm/financial/batch/export',NULL,'Accounting Batch Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:25:\"CRM_Financial_Form_Export\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Accounting Batch\";s:3:\"url\";s:32:\"/civicrm/financial/batch?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,610,1,0,0,'a:0:{}'), + (336,1,'civicrm/payment/view','action=view','View Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contribute_Page_PaymentInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&action=add\";}}',NULL,NULL,2,1,0,1,0,1,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (337,1,'civicrm/admin/setting/preferences/contribute',NULL,'CiviContribute Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Admin_Form_Preferences_Contribute\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,1,1,0,0,'a:2:{s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:10:\"adminGroup\";s:14:\"CiviContribute\";}'), + (338,1,'civicrm/contribute/invoice',NULL,'PDF Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Contribute_Form_Task_Invoice\";i:1;s:11:\"getPrintPDF\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,620,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (339,1,'civicrm/contribute/invoice/email',NULL,'Email Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:20:\"checkDownloadInvoice\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Form_Task_Invoice\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"PDF Invoice\";s:3:\"url\";s:35:\"/civicrm/contribute/invoice?reset=1\";}}',NULL,NULL,2,1,0,1,0,630,1,1,0,'a:1:{s:9:\"component\";s:14:\"CiviContribute\";}'), + (340,1,'civicrm/ajax/softcontributionlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:24:\"CRM_Contribute_Page_AJAX\";i:1;s:23:\"getSoftContributionRows\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (341,1,'civicrm/contribute/contributionrecur-payments',NULL,'Recurring Contribution\'s Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Page_ContributionRecurPayments\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), + (342,1,'civicrm/membership/recurring-contributions',NULL,'Membership Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Member_Page_RecurringContributions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,1,0,1,0,1,1,0,0,'a:0:{}'), + (343,1,'civicrm/contribute/widget',NULL,'CiviContribute','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contribute_Page_Widget\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,1,1,0,0,1,0,0,'a:0:{}'), + (344,1,'civicrm/contribute/task',NULL,'Contribution Task','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:30:\"CRM_Contribute_Controller_Task\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,1,0,1,0,1,1,0,0,'a:0:{}'), (345,1,'civicrm/member',NULL,'CiviMember Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:25:\"CRM_Member_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,3,1,0,1,0,700,1,1,0,'a:1:{s:9:\"component\";s:10:\"CiviMember\";}'), (346,1,'civicrm/member/add','action=add','New Membership','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,1,0,1,0,1,1,0,0,'a:1:{s:9:\"component\";s:10:\"CiviMember\";}'), (347,1,'civicrm/admin/member/membershipType',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:25:\"administer CiviCRM system\";i:1;s:23:\"administer CiviCRM data\";i:2;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Page_MembershipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,1,0,1,1,370,1,0,0,'a:2:{s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:10:\"adminGroup\";s:10:\"CiviMember\";}'), @@ -5376,70 +5404,70 @@ 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`, `workflow_name`, `is_default`, `is_reserved`, `is_sms`, `pdf_format_id`) VALUES - (1,'Cases - Send Copy of an Activity','{if !empty($idHash)}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if !empty($isCaseActivity)}\n{ts}Your Case Role(s){/ts} : {$contact.role|default:\'\'}\n{if !empty($manageCaseURL)}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if !empty($editActURL)}\n{ts}Edit activity{/ts} : {$editActURL}\n{/if}\n{if !empty($viewActURL)}\n{ts}View activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{if !empty($activity.customGroups)}\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{/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 !empty($isCaseActivity)}\n \n \n \n \n {if !empty($manageCaseURL)}\n \n \n \n {/if}\n {/if}\n {if !empty($editActURL)}\n \n \n \n {/if}\n {if !empty($viewActURL)}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {if !empty($activity.customGroups)}\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 {/if}\n
\n {ts}Activity Summary{/ts} - {$activityTypeName}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role|default:\'\'}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit activity{/ts}\n
\n {ts}View activity{/ts}\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 {$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',1,811,'case_activity',1,0,0,NULL), - (2,'Cases - Send Copy of an Activity','{if !empty($idHash)}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if !empty($isCaseActivity)}\n{ts}Your Case Role(s){/ts} : {$contact.role|default:\'\'}\n{if !empty($manageCaseURL)}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if !empty($editActURL)}\n{ts}Edit activity{/ts} : {$editActURL}\n{/if}\n{if !empty($viewActURL)}\n{ts}View activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{if !empty($activity.customGroups)}\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{/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 !empty($isCaseActivity)}\n \n \n \n \n {if !empty($manageCaseURL)}\n \n \n \n {/if}\n {/if}\n {if !empty($editActURL)}\n \n \n \n {/if}\n {if !empty($viewActURL)}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {if !empty($activity.customGroups)}\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 {/if}\n
\n {ts}Activity Summary{/ts} - {$activityTypeName}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role|default:\'\'}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit activity{/ts}\n
\n {ts}View activity{/ts}\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 {$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',1,811,'case_activity',0,1,0,NULL), - (3,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\n','{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}\n{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}\n\n{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact ID{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

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

\n

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

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

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

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

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

\n

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

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

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

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n\n\n',1,812,'contribution_dupalert',0,1,0,NULL), - (5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if !empty($formValues.receipt_text)}\n{$formValues.receipt_text}\n{else}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Contributor{/ts}: {contact.display_name}\n{if \'{contribution.financial_type_id}\'}\n{ts}Financial Type{/ts}: {contribution.financial_type_id:label}\n{/if}\n{if $isShowLineItems}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}{$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"}\n{/foreach}\n{/if}\n\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n{foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n{/foreach}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts} : {contribution.tax_amount}\n{/if}\n{ts}Total Amount{/ts} : {contribution.total_amount}\n{if \'{contribution.receive_date}\'}\n{ts}Date Received{/ts}: {contribution.receive_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.receipt_date}\'}\n{ts}Receipt Date{/ts}: {contribution.receipt_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n{ts}Paid By{/ts}: {contribution.payment_instrument_id:label}\n{if \'{contribution.check_number}\'}\n{ts}Check Number{/ts}: {contribution.check_number}\n{/if}\n{/if}\n{if \'{contribution.trxn_id}\'}\n{ts}Transaction ID{/ts}: {contribution.trxn_id}\n{/if}\n\n{if !empty($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 !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($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 !empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if !empty($formValues.receipt_text)}\n

{$formValues.receipt_text|htmlize}

\n {else}\n

{ts}Below you will find a receipt for this contribution.{/ts}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n {if \'{contribution.financial_type_id}\'}\n \n \n {/if}\n \n\n {if $isShowLineItems}\n \n \n \n\n {/if}\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShowTax}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if \'{contribution.receive_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.receipt_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n \n \n \n \n {if \'{contribution.check_number}\'}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contribution.trxn_id}\'}\n \n \n \n \n {/if}\n\n {if !empty($ccContribution)}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($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 !empty($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 !empty($fulfilled_date)}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Contributor Name{/ts}\n \n {contact.display_name}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {$line.title}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n \n {$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney:\'{contribution.currency}\'}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Date Received{/ts}\n \n {contribution.receive_date|crmDate:\"shortdate\"}\n
\n {ts}Receipt Date{/ts}\n \n {contribution.receipt_date|crmDate:\"shortdate\"}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n\n\n\n',1,813,'contribution_offline_receipt',1,0,0,NULL), - (6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if !empty($formValues.receipt_text)}\n{$formValues.receipt_text}\n{else}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Contributor{/ts}: {contact.display_name}\n{if \'{contribution.financial_type_id}\'}\n{ts}Financial Type{/ts}: {contribution.financial_type_id:label}\n{/if}\n{if $isShowLineItems}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}{$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"}\n{/foreach}\n{/if}\n\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n{foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n{/foreach}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts} : {contribution.tax_amount}\n{/if}\n{ts}Total Amount{/ts} : {contribution.total_amount}\n{if \'{contribution.receive_date}\'}\n{ts}Date Received{/ts}: {contribution.receive_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.receipt_date}\'}\n{ts}Receipt Date{/ts}: {contribution.receipt_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n{ts}Paid By{/ts}: {contribution.payment_instrument_id:label}\n{if \'{contribution.check_number}\'}\n{ts}Check Number{/ts}: {contribution.check_number}\n{/if}\n{/if}\n{if \'{contribution.trxn_id}\'}\n{ts}Transaction ID{/ts}: {contribution.trxn_id}\n{/if}\n\n{if !empty($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 !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($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 !empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if !empty($formValues.receipt_text)}\n

{$formValues.receipt_text|htmlize}

\n {else}\n

{ts}Below you will find a receipt for this contribution.{/ts}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n {if \'{contribution.financial_type_id}\'}\n \n \n {/if}\n \n\n {if $isShowLineItems}\n \n \n \n\n {/if}\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShowTax}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if \'{contribution.receive_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.receipt_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n \n \n \n \n {if \'{contribution.check_number}\'}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contribution.trxn_id}\'}\n \n \n \n \n {/if}\n\n {if !empty($ccContribution)}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($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 !empty($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 !empty($fulfilled_date)}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Contributor Name{/ts}\n \n {contact.display_name}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {$line.title}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n \n {$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney:\'{contribution.currency}\'}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Date Received{/ts}\n \n {contribution.receive_date|crmDate:\"shortdate\"}\n
\n {ts}Receipt Date{/ts}\n \n {contribution.receipt_date|crmDate:\"shortdate\"}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n\n\n\n',1,813,'contribution_offline_receipt',0,1,0,NULL), - (7,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $isShowLineItems}\n\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n {/foreach}\n{/if}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts}: {contribution.tax_amount|crmMoney}\n{/if}\n\n{ts}Total Amount{/ts}: {contribution.total_amount}\n{else}\n{ts}Amount{/ts}: {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n{/if}\n{/if}\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if !empty($is_recur)}\n{ts}This is a recurring contribution.{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts}You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n\n{if $updateSubscriptionUrl}\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{/if}\n\n{if $honor_block_is_active}\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n{elseif !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($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 !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or Email*}\n{if !empty($credit_card_type)}\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 !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($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 !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if !empty($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 {/if}\n\n
\n\n {if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n \n \n \n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n\n {/if}\n {if $isShowTax}\n \n \n \n \n {/if}\n \n \n \n \n {else}\n {if \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($is_monetary) and !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($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 !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($isShare)}\n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if !empty($is_deductible) AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n \n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.unit_price*$line.qty|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$amount-$totalTaxAmount|crmMoney:$currency}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.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}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\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 !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($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',1,814,'contribution_online_receipt',1,0,0,NULL), - (8,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $isShowLineItems}\n\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n {/foreach}\n{/if}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts}: {contribution.tax_amount|crmMoney}\n{/if}\n\n{ts}Total Amount{/ts}: {contribution.total_amount}\n{else}\n{ts}Amount{/ts}: {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n{/if}\n{/if}\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if !empty($is_recur)}\n{ts}This is a recurring contribution.{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts}You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n\n{if $updateSubscriptionUrl}\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{/if}\n\n{if $honor_block_is_active}\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n{elseif !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($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 !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or Email*}\n{if !empty($credit_card_type)}\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 !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($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 !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if !empty($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 {/if}\n\n
\n\n {if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n \n \n \n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n\n {/if}\n {if $isShowTax}\n \n \n \n \n {/if}\n \n \n \n \n {else}\n {if \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($is_monetary) and !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($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 !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($isShare)}\n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if !empty($is_deductible) AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n \n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.unit_price*$line.qty|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$amount-$totalTaxAmount|crmMoney:$currency}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.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}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\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 !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($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',1,814,'contribution_online_receipt',0,1,0,NULL), - (9,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n - {contact.display_name}\n','{ts}Contribution Invoice{/ts}\n','\n\n \n \n \n \n \n
\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}INVOICE{/ts}{ts}Invoice Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{$invoice_date}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{$street_address} {$supplemental_address_1}{ts}Invoice Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{$supplemental_address_2} {$stateProvinceAbbreviation}{contribution.invoice_number}\n {domain.city}\n {domain.postal_code}\n
{$city} {$postal_code}{ts}Reference:{/ts}{domain.country_id:label}
{$country}{contribution.source}{domain.email}
{domain.phone}
\n\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n {/if}\n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=$currency}Amount %1{/ts}
\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}
{ts}Sub Total{/ts}{$subTotal|crmMoney:$currency}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
{ts 1=$currency}TOTAL %1{/ts}{$amount|crmMoney:$currency}
\n {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n {ts}Amount Credited{/ts}\n {else}\n {ts}Amount Paid{/ts}\n {/if}\n {$amountPaid|crmMoney:$currency}

{ts}AMOUNT DUE:{/ts}{$amountDue|crmMoney:$currency}
{ts 1=$dueDate}DUE DATE: %1{/ts}
\n\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}PAYMENT ADVICE{/ts}

\n {ts}To:{/ts}
\n {domain.name}
\n {domain.street_address} {domain.supplemental_address_1}
\n {domain.supplemental_address_2} {domain.state_province_id:label}
\n {domain.city} {domain.postal_code}
\n {domain.country_id:label}
\n {domain.email}
\n {domain.phone}
\n
\n

{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n {if $is_pay_later == 1}\n \n \n \n \n {else}\n \n \n \n \n {/if}\n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Invoice Number:{/ts}{contribution.invoice_number}

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

\n
\n {/if}\n\n {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}CREDIT NOTE{/ts}{ts}Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{$invoice_date}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{$street_address} {$supplemental_address_1}{ts}Credit Note Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{$supplemental_address_2} {$stateProvinceAbbreviation}{contribution.creditnote_id}\n {domain.city}\n {domain.postal_code}\n
{$city} {$postal_code}{ts}Reference:{/ts}\n {domain.country_id:label}\n
{contribution.source}\n {domain.email}\n
\n {domain.phone}\n
\n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line key=index}\n \n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n {if \'{contribution.is_pay_later}\' == 0}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=$currency}Amount %1{/ts}

\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}

{ts}Sub Total{/ts}{$subTotal|crmMoney:$currency}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}

{ts 1=$currency}TOTAL %1{/ts}{$amount|crmMoney:$currency}
{ts}LESS Credit to invoice(s){/ts}{$amount|crmMoney:$currency}

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

{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Credit Note#:{/ts}{contribution.creditnote_id}

{ts}Credit Amount:{/ts}{$amount|crmMoney:$currency}
\n
\n {/if}\n\n
\n \n\n',1,815,'contribution_invoice_receipt',1,0,0,NULL), - (10,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n - {contact.display_name}\n','{ts}Contribution Invoice{/ts}\n','\n\n \n \n \n \n \n
\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}INVOICE{/ts}{ts}Invoice Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{$invoice_date}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{$street_address} {$supplemental_address_1}{ts}Invoice Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{$supplemental_address_2} {$stateProvinceAbbreviation}{contribution.invoice_number}\n {domain.city}\n {domain.postal_code}\n
{$city} {$postal_code}{ts}Reference:{/ts}{domain.country_id:label}
{$country}{contribution.source}{domain.email}
{domain.phone}
\n\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n {/if}\n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=$currency}Amount %1{/ts}
\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}
{ts}Sub Total{/ts}{$subTotal|crmMoney:$currency}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
{ts 1=$currency}TOTAL %1{/ts}{$amount|crmMoney:$currency}
\n {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n {ts}Amount Credited{/ts}\n {else}\n {ts}Amount Paid{/ts}\n {/if}\n {$amountPaid|crmMoney:$currency}

{ts}AMOUNT DUE:{/ts}{$amountDue|crmMoney:$currency}
{ts 1=$dueDate}DUE DATE: %1{/ts}
\n\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}PAYMENT ADVICE{/ts}

\n {ts}To:{/ts}
\n {domain.name}
\n {domain.street_address} {domain.supplemental_address_1}
\n {domain.supplemental_address_2} {domain.state_province_id:label}
\n {domain.city} {domain.postal_code}
\n {domain.country_id:label}
\n {domain.email}
\n {domain.phone}
\n
\n

{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n {if $is_pay_later == 1}\n \n \n \n \n {else}\n \n \n \n \n {/if}\n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Invoice Number:{/ts}{contribution.invoice_number}

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

\n
\n {/if}\n\n {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}CREDIT NOTE{/ts}{ts}Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{$invoice_date}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{$street_address} {$supplemental_address_1}{ts}Credit Note Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{$supplemental_address_2} {$stateProvinceAbbreviation}{contribution.creditnote_id}\n {domain.city}\n {domain.postal_code}\n
{$city} {$postal_code}{ts}Reference:{/ts}\n {domain.country_id:label}\n
{contribution.source}\n {domain.email}\n
\n {domain.phone}\n
\n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line key=index}\n \n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n {if \'{contribution.is_pay_later}\' == 0}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=$currency}Amount %1{/ts}

\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}

{ts}Sub Total{/ts}{$subTotal|crmMoney:$currency}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}

{ts 1=$currency}TOTAL %1{/ts}{$amount|crmMoney:$currency}
{ts}LESS Credit to invoice(s){/ts}{$amount|crmMoney:$currency}

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

{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Credit Note#:{/ts}{contribution.creditnote_id}

{ts}Credit Amount:{/ts}{$amount|crmMoney:$currency}
\n
\n {/if}\n\n
\n \n\n',1,815,'contribution_invoice_receipt',0,1,0,NULL), - (11,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n\n{/if}\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments } {ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.\n\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by visiting this web page.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n\n{/if}\n\n{if $updateSubscriptionUrl}\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{/if}\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.{/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 {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {else}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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}You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

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

\n

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

\n

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

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

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

\n
\n

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

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/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',1,816,'contribution_recurring_notify',1,0,0,NULL), - (12,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n\n{/if}\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments } {ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.\n\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by visiting this web page.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n\n{/if}\n\n{if $updateSubscriptionUrl}\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{/if}\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.{/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 {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {else}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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}You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

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

\n

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

\n

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

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

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

\n
\n

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

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/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',1,816,'contribution_recurring_notify',0,1,0,NULL), - (13,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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',1,817,'contribution_recurring_cancelled',1,0,0,NULL), - (14,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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',1,817,'contribution_recurring_cancelled',0,1,0,NULL), - (15,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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,818,'contribution_recurring_billing',1,0,0,NULL), - (16,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

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

{$greeting},

{/if}\n

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

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

\n\n

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

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

{$greeting},

{/if}\n

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

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

\n\n

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

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

{ts}Your Personal Campaign Page{/ts}

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

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

\n

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

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

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

\n\n {if $isTellFriendEnabled}\n

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

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

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

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

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

\n {if $pcpNotifyEmailAddress}\n

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

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

{ts}Your Personal Campaign Page{/ts}

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

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

\n

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

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

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

\n\n {if $isTellFriendEnabled}\n

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

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

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

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

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

\n {if $pcpNotifyEmailAddress}\n

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

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

{$greeting},

{/if}\n

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

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

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

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

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

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

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

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

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

\n
\n
\n

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

\n

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

\n

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

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

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

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

{$greeting},

{/if}\n

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

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

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

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

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

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

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

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

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

\n
\n
\n

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

\n

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

\n

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

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

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

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

{$greeting},

{/if}\n

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

\n

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

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

{$greeting},

{/if}\n

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

\n

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

\n \n \n \n \n \n
{ts}Received{/ts}: {$receive_date|crmDate}
{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}
{ts}Name{/ts}: {$donors_display_name}
{ts}Email{/ts}: {$donors_email}
\n\n\n',1,823,'pcp_owner_notify',0,1,0,NULL), - (27,'Additional Payment Receipt or Refund Notification','{if $isRefund}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if $component eq \'event\'} - {$event.title}{/if} - {contact.display_name}\n','{if $emailGreeting}{$emailGreeting},\n{/if}\n\n{if $isRefund}\n{ts}A refund has been issued based on changes in your registration selections.{/ts}\n{else}\n{ts}Below you will find a receipt for this payment.{/ts}\n{/if}\n{if $paymentsComplete}\n{ts}Thank you for completing this payment.{/ts}\n{/if}\n\n{if $isRefund}\n===============================================================================\n\n{ts}Refund Details{/ts}\n\n===============================================================================\n{ts}This Refund Amount{/ts}: {$refundAmount|crmMoney}\n------------------------------------------------------------------------------------\n\n{else}\n===============================================================================\n\n{ts}Payment Details{/ts}\n\n===============================================================================\n{ts}This Payment Amount{/ts}: {$paymentAmount|crmMoney}\n------------------------------------------------------------------------------------\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n\n===============================================================================\n\n{ts}Contribution Details{/ts}\n\n===============================================================================\n{if $totalAmount}\n{ts}Total Fee{/ts}: {$totalAmount|crmMoney}\n{/if}\n{if $totalPaid}\n{ts}Total Paid{/ts}: {$totalPaid|crmMoney}\n{/if}\n{if $amountOwed}\n{ts}Balance Owed{/ts}: {$amountOwed|crmMoney} {* This will be zero after final payment. *}\n{/if}\n\n\n{if !empty($billingName) || !empty($address)}\n\n===============================================================================\n\n{ts}Billing Name and Address{/ts}\n\n===============================================================================\n{if !empty($billingName)}\n{$billingName}\n{/if}\n{if !empty($address)}\n{$address}\n{/if}\n{/if}\n\n{if !empty($credit_card_number)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===============================================================================\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $component eq \'event\'}\n===============================================================================\n\n{ts}Event Information and Location{/ts}\n\n===============================================================================\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle }style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle }style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n \n\n \n \n \n\n \n \n \n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $isRefund}\n

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

\n {else}\n

{ts}Below you will find a receipt for this payment.{/ts}

\n {if $paymentsComplete}\n

{ts}Thank you for completing this contribution.{/ts}

\n {/if}\n {/if}\n
\n \n {if $isRefund}\n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n {/if}\n {if $receive_date}\n \n \n \n \n {/if}\n {if !empty($trxn_id)}\n \n \n \n \n {/if}\n {if !empty($paidBy)}\n \n \n \n \n {/if}\n {if !empty($checkNumber)}\n \n \n \n \n {/if}\n\n \n \n \n {if $totalAmount}\n \n \n \n \n {/if}\n {if $totalPaid}\n \n \n \n \n {/if}\n {if $amountOwed}\n \n \n {* This will be zero after final payment. *}\n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}This Refund Amount{/ts}\n \n {$refundAmount|crmMoney}\n
{ts}Payment Details{/ts}
\n {ts}This Payment Amount{/ts}\n \n {$paymentAmount|crmMoney}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
{ts}Contribution Details{/ts}
\n {ts}Total Fee{/ts}\n \n {$totalAmount|crmMoney}\n
\n {ts}Total Paid{/ts}\n \n {$totalPaid|crmMoney}\n
\n {ts}Balance Owed{/ts}\n \n {$amountOwed|crmMoney}\n
\n\n
\n \n {if !empty($billingName) || !empty($address)}\n \n \n \n \n \n \n {/if}\n {if !empty($credit_card_number)}\n \n \n \n \n \n \n {/if}\n {if $component eq \'event\'}\n \n \n \n \n \n \n\n {if !empty($event.participant_role)}\n \n \n \n \n {/if}\n\n {if !empty($isShowLocation)}\n \n \n \n {/if}\n\n {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if} {*phone block close*}\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {if !empty($billingName)}{$billingName}{/if}
\n {if !empty($address)}{$address|nl2br}{/if}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires:{/ts} {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n
\n\n \n\n',1,824,'payment_or_refund_notification',1,0,0,NULL), - (28,'Additional Payment Receipt or Refund Notification','{if $isRefund}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if $component eq \'event\'} - {$event.title}{/if} - {contact.display_name}\n','{if $emailGreeting}{$emailGreeting},\n{/if}\n\n{if $isRefund}\n{ts}A refund has been issued based on changes in your registration selections.{/ts}\n{else}\n{ts}Below you will find a receipt for this payment.{/ts}\n{/if}\n{if $paymentsComplete}\n{ts}Thank you for completing this payment.{/ts}\n{/if}\n\n{if $isRefund}\n===============================================================================\n\n{ts}Refund Details{/ts}\n\n===============================================================================\n{ts}This Refund Amount{/ts}: {$refundAmount|crmMoney}\n------------------------------------------------------------------------------------\n\n{else}\n===============================================================================\n\n{ts}Payment Details{/ts}\n\n===============================================================================\n{ts}This Payment Amount{/ts}: {$paymentAmount|crmMoney}\n------------------------------------------------------------------------------------\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n\n===============================================================================\n\n{ts}Contribution Details{/ts}\n\n===============================================================================\n{if $totalAmount}\n{ts}Total Fee{/ts}: {$totalAmount|crmMoney}\n{/if}\n{if $totalPaid}\n{ts}Total Paid{/ts}: {$totalPaid|crmMoney}\n{/if}\n{if $amountOwed}\n{ts}Balance Owed{/ts}: {$amountOwed|crmMoney} {* This will be zero after final payment. *}\n{/if}\n\n\n{if !empty($billingName) || !empty($address)}\n\n===============================================================================\n\n{ts}Billing Name and Address{/ts}\n\n===============================================================================\n{if !empty($billingName)}\n{$billingName}\n{/if}\n{if !empty($address)}\n{$address}\n{/if}\n{/if}\n\n{if !empty($credit_card_number)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===============================================================================\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $component eq \'event\'}\n===============================================================================\n\n{ts}Event Information and Location{/ts}\n\n===============================================================================\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle }style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle }style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n \n\n \n \n \n\n \n \n \n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $isRefund}\n

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

\n {else}\n

{ts}Below you will find a receipt for this payment.{/ts}

\n {if $paymentsComplete}\n

{ts}Thank you for completing this contribution.{/ts}

\n {/if}\n {/if}\n
\n \n {if $isRefund}\n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n {/if}\n {if $receive_date}\n \n \n \n \n {/if}\n {if !empty($trxn_id)}\n \n \n \n \n {/if}\n {if !empty($paidBy)}\n \n \n \n \n {/if}\n {if !empty($checkNumber)}\n \n \n \n \n {/if}\n\n \n \n \n {if $totalAmount}\n \n \n \n \n {/if}\n {if $totalPaid}\n \n \n \n \n {/if}\n {if $amountOwed}\n \n \n {* This will be zero after final payment. *}\n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}This Refund Amount{/ts}\n \n {$refundAmount|crmMoney}\n
{ts}Payment Details{/ts}
\n {ts}This Payment Amount{/ts}\n \n {$paymentAmount|crmMoney}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
{ts}Contribution Details{/ts}
\n {ts}Total Fee{/ts}\n \n {$totalAmount|crmMoney}\n
\n {ts}Total Paid{/ts}\n \n {$totalPaid|crmMoney}\n
\n {ts}Balance Owed{/ts}\n \n {$amountOwed|crmMoney}\n
\n\n
\n \n {if !empty($billingName) || !empty($address)}\n \n \n \n \n \n \n {/if}\n {if !empty($credit_card_number)}\n \n \n \n \n \n \n {/if}\n {if $component eq \'event\'}\n \n \n \n \n \n \n\n {if !empty($event.participant_role)}\n \n \n \n \n {/if}\n\n {if !empty($isShowLocation)}\n \n \n \n {/if}\n\n {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if} {*phone block close*}\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {if !empty($billingName)}{$billingName}{/if}
\n {if !empty($address)}{$address|nl2br}{/if}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires:{/ts} {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n
\n\n \n\n',1,824,'payment_or_refund_notification',0,1,0,NULL), - (29,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {event.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($isPrimary)}\n{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}\n\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($isPrimary)}\n{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}\n\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{event.title}\n{event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar entry for this event.{/ts} {$icalFeed}\n{capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Add event to Google Calendar{/ts} {$gCalendar}\n{/if}\n\n{if !empty($email)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$email}\n{/if}\n{if !empty($event.is_monetary)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($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 !empty($pricesetFieldsCount) }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if !empty($pricesetFieldsCount) }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n{/if}\n{/foreach}\n\n{if !empty($dataArray)}\n{if $totalAmount and $totalTaxAmount}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amount) && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary)}\n\n{if !empty($balanceAmount)}{ts}Total Paid{/ts}{else}{ts}Total Amount{/ts}{/if}: {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($balanceAmount)}\n{ts}Balance{/ts}: {$balanceAmount|crmMoney}\n{/if}\n\n{if !empty($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 !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($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 !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($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 !empty($customPre)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($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 !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if !empty($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 !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customName}\n=========================================================={if !empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{$event.confirm_email_text|htmlize}

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

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

\n {if !empty($isPrimary)}\n

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

\n {/if}\n {elseif !empty($isRequireApproval)}\n

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

\n {if !empty($isPrimary)}\n

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

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

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n \n \n \n \n {/if}\n\n {if !empty($isShowLocation)}\n \n \n \n {/if}\n\n {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($event.is_public)}\n \n \n \n \n \n \n {/if}\n\n {if $email}\n \n \n \n \n \n \n {/if}\n\n\n {if !empty($event.is_monetary)}\n\n \n \n \n\n {if !empty($lineItem)}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if !empty($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 !empty($dataArray)}\n {if $totalAmount and $totalTaxAmount}\n \n \n \n \n {/if}\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if !empty($amount) && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n {if !empty($isPrimary)}\n \n \n \n \n {if isset($balanceAmount)}\n \n \n \n \n {/if}\n {if !empty($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 !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($financialTypeName)}\n \n \n \n \n {/if}\n\n {if !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($paidBy)}\n \n \n \n \n {/if}\n\n {if !empty($checkNumber)}\n \n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=value key=customName}\n {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=value key=customName}\n {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($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 !empty($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.title}
\n {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {if !empty($event.fee_label)}{$event.fee_label}{/if}\n
\n {ts 1=$priceset+1}Participant %1{/ts}\n
\n \n \n \n \n \n {if !empty($dataArray)}\n \n \n \n {/if}\n \n {if !empty($pricesetFieldsCount) }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if !empty($dataArray)}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if !empty($pricesetFieldsCount) }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.participant_count}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {if isset($balanceAmount)}\n {ts}Total Paid{/ts}\n {else}\n {ts}Total Amount{/ts}\n {/if}\n \n {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Balance{/ts}\n \n {$balanceAmount|crmMoney}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {$pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$financialTypeName}\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',1,825,'event_offline_receipt',1,0,0,NULL), - (30,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {event.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($isPrimary)}\n{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}\n\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($isPrimary)}\n{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}\n\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{event.title}\n{event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar entry for this event.{/ts} {$icalFeed}\n{capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Add event to Google Calendar{/ts} {$gCalendar}\n{/if}\n\n{if !empty($email)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$email}\n{/if}\n{if !empty($event.is_monetary)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($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 !empty($pricesetFieldsCount) }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if !empty($pricesetFieldsCount) }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n{/if}\n{/foreach}\n\n{if !empty($dataArray)}\n{if $totalAmount and $totalTaxAmount}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amount) && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary)}\n\n{if !empty($balanceAmount)}{ts}Total Paid{/ts}{else}{ts}Total Amount{/ts}{/if}: {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($balanceAmount)}\n{ts}Balance{/ts}: {$balanceAmount|crmMoney}\n{/if}\n\n{if !empty($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 !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($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 !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($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 !empty($customPre)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($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 !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if !empty($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 !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customName}\n=========================================================={if !empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{$event.confirm_email_text|htmlize}

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

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

\n {if !empty($isPrimary)}\n

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

\n {/if}\n {elseif !empty($isRequireApproval)}\n

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

\n {if !empty($isPrimary)}\n

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

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

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n \n \n \n \n {/if}\n\n {if !empty($isShowLocation)}\n \n \n \n {/if}\n\n {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($event.is_public)}\n \n \n \n \n \n \n {/if}\n\n {if $email}\n \n \n \n \n \n \n {/if}\n\n\n {if !empty($event.is_monetary)}\n\n \n \n \n\n {if !empty($lineItem)}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if !empty($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 !empty($dataArray)}\n {if $totalAmount and $totalTaxAmount}\n \n \n \n \n {/if}\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if !empty($amount) && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n {if !empty($isPrimary)}\n \n \n \n \n {if isset($balanceAmount)}\n \n \n \n \n {/if}\n {if !empty($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 !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($financialTypeName)}\n \n \n \n \n {/if}\n\n {if !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($paidBy)}\n \n \n \n \n {/if}\n\n {if !empty($checkNumber)}\n \n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=value key=customName}\n {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=value key=customName}\n {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($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 !empty($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.title}
\n {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {if !empty($event.fee_label)}{$event.fee_label}{/if}\n
\n {ts 1=$priceset+1}Participant %1{/ts}\n
\n \n \n \n \n \n {if !empty($dataArray)}\n \n \n \n {/if}\n \n {if !empty($pricesetFieldsCount) }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if !empty($dataArray)}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if !empty($pricesetFieldsCount) }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.participant_count}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {if isset($balanceAmount)}\n {ts}Total Paid{/ts}\n {else}\n {ts}Total Amount{/ts}\n {/if}\n \n {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Balance{/ts}\n \n {$balanceAmount|crmMoney}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {$pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$financialTypeName}\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',1,825,'event_offline_receipt',0,1,0,NULL), - (31,'Events - Registration Confirmation and Receipt (on-line)','{if !empty($isOnWaitlist)}{ts}Wait List Confirmation{/ts}{elseif !empty($isRequireApproval)}{ts}Registration Request Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {event.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n\n{else}\n {ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}{if !empty($isOnWaitlist)}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}{/if}\n {/if}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($isPrimary)}\n{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($isPrimary)}\n{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}\n\n{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($is_pay_later) && empty($isAmountzero) && empty($isAdditionalParticipant)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{event.title}\n{event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if !empty($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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%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 !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar entry for this event.{/ts} {$icalFeed}\n{capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Add event to Google Calendar{/ts} {$gCalendar}\n{/if}\n\n{if !empty($payer.name)}\nYou were registered by: {$payer.name}\n{/if}\n{if !empty($event.is_monetary) and empty($isRequireApproval)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty ($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($isPrimary)}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}{if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n----------------------------------------------------------------------------------------------------------------\n{if !empty($individual)}{ts}Participant Total{/ts} {$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%29s\"} {$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%33s\"} {$individual.$priceset.totalAmtWithTax|crmMoney:$currency|string_format:\"%12s\"}{/if}\n{/if}\n{\"\"|string_format:\"%120s\"}\n{/foreach}\n{\"\"|string_format:\"%120s\"}\n\n{if !empty($dataArray)}\n{if isset($totalAmount) and isset($totalTaxAmount)}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amounts) && empty($lineItem)}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n\n{if isset($totalTaxAmount)}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary) }\n\n{ts}Total Amount{/ts}: {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($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 !empty($receive_date)}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($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 !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if !empty($pricesetFieldsCount)}--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if !empty($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\n{if !empty($event.allow_selfcancelxfer) }\n{ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if !empty($totalAmount)}{ts}Cancellations are not refundable.{/ts}{/if}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n{ts}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotal}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n {/if}\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{$event.confirm_email_text|htmlize}

\n\n {else}\n

{ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}{if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}{/if}{/if}

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

\n {if !empty($isOnWaitlist)}\n

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

\n {if !empty($isPrimary)}\n

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

\n {/if}\n {elseif !empty($isRequireApproval)}\n

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

\n {if !empty($isPrimary)}\n

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

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

{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}

{* FIXME: this might be text rather than HTML *}\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 !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n \n \n \n \n {/if}\n\n {if !empty($isShowLocation)}\n \n \n \n {/if}\n\n {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($event.is_public)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($event.is_share)}\n \n \n \n {/if}\n {if !empty($payer.name)}\n \n \n \n \n \n \n {/if}\n {if !empty($event.is_monetary) and empty($isRequireApproval)}\n\n \n \n \n\n {if !empty($lineItem)}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if !empty($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 !empty($dataArray)}\n {if isset($totalAmount) and isset($totalTaxAmount)}\n \n \n \n \n {/if}\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if !empty($amounts) && empty($lineItem)}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\n {if isset($totalTaxAmount)}\n \n \n \n \n {/if}\n {if !empty($isPrimary)}\n \n \n \n \n {if !empty($pricesetFieldsCount) }\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($financialTypeName)}\n \n \n \n \n {/if}\n\n {if !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($paidBy)}\n \n \n \n \n {/if}\n\n {if !empty($checkNumber)}\n \n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\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 !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n \n {foreach from=$customPr item=customValue key=customName}\n {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n \n {foreach from=$customPos item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($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
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|crmDate:\"%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 {$location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/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 {if !empty($event.fee_label)}{$event.fee_label}{/if}\n
\n {ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n
\n \n \n \n \n \n {if !empty($dataArray)}\n \n \n \n {/if}\n \n {if !empty($pricesetFieldsCount) }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if !empty($dataArray)}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if !empty($pricesetFieldsCount) } {/if}\n \n {/foreach}\n {if !empty($individual)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n {$line.participant_count}
{ts}Participant Total{/ts}{$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney}{$individual.$priceset.totalTaxAmt|crmMoney}{$individual.$priceset.totalAmtWithTax|crmMoney}
\n
\n {ts} Amount Before Tax: {/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$financialTypeName}\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 {if !empty($event.allow_selfcancelxfer) }\n
\n {ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if !empty($totalAmount)}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n\n\n\n',1,826,'event_online_receipt',1,0,0,NULL), - (32,'Events - Registration Confirmation and Receipt (on-line)','{if !empty($isOnWaitlist)}{ts}Wait List Confirmation{/ts}{elseif !empty($isRequireApproval)}{ts}Registration Request Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {event.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n\n{else}\n {ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}{if !empty($isOnWaitlist)}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}{/if}\n {/if}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($isPrimary)}\n{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($isPrimary)}\n{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}\n\n{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($is_pay_later) && empty($isAmountzero) && empty($isAdditionalParticipant)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{event.title}\n{event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if !empty($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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%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 !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar entry for this event.{/ts} {$icalFeed}\n{capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Add event to Google Calendar{/ts} {$gCalendar}\n{/if}\n\n{if !empty($payer.name)}\nYou were registered by: {$payer.name}\n{/if}\n{if !empty($event.is_monetary) and empty($isRequireApproval)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty ($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($isPrimary)}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}{if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n----------------------------------------------------------------------------------------------------------------\n{if !empty($individual)}{ts}Participant Total{/ts} {$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%29s\"} {$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%33s\"} {$individual.$priceset.totalAmtWithTax|crmMoney:$currency|string_format:\"%12s\"}{/if}\n{/if}\n{\"\"|string_format:\"%120s\"}\n{/foreach}\n{\"\"|string_format:\"%120s\"}\n\n{if !empty($dataArray)}\n{if isset($totalAmount) and isset($totalTaxAmount)}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amounts) && empty($lineItem)}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n\n{if isset($totalTaxAmount)}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary) }\n\n{ts}Total Amount{/ts}: {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($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 !empty($receive_date)}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($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 !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if !empty($pricesetFieldsCount)}--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if !empty($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\n{if !empty($event.allow_selfcancelxfer) }\n{ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if !empty($totalAmount)}{ts}Cancellations are not refundable.{/ts}{/if}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n{ts}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotal}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n {/if}\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{$event.confirm_email_text|htmlize}

\n\n {else}\n

{ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}{if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}{/if}{/if}

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

\n {if !empty($isOnWaitlist)}\n

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

\n {if !empty($isPrimary)}\n

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

\n {/if}\n {elseif !empty($isRequireApproval)}\n

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

\n {if !empty($isPrimary)}\n

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

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

{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}

{* FIXME: this might be text rather than HTML *}\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 !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n \n \n \n \n {/if}\n\n {if !empty($isShowLocation)}\n \n \n \n {/if}\n\n {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($event.is_public)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($event.is_share)}\n \n \n \n {/if}\n {if !empty($payer.name)}\n \n \n \n \n \n \n {/if}\n {if !empty($event.is_monetary) and empty($isRequireApproval)}\n\n \n \n \n\n {if !empty($lineItem)}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if !empty($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 !empty($dataArray)}\n {if isset($totalAmount) and isset($totalTaxAmount)}\n \n \n \n \n {/if}\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if !empty($amounts) && empty($lineItem)}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\n {if isset($totalTaxAmount)}\n \n \n \n \n {/if}\n {if !empty($isPrimary)}\n \n \n \n \n {if !empty($pricesetFieldsCount) }\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($financialTypeName)}\n \n \n \n \n {/if}\n\n {if !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($paidBy)}\n \n \n \n \n {/if}\n\n {if !empty($checkNumber)}\n \n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\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 !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n \n {foreach from=$customPr item=customValue key=customName}\n {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n \n {foreach from=$customPos item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($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
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|crmDate:\"%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 {$location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/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 {if !empty($event.fee_label)}{$event.fee_label}{/if}\n
\n {ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n
\n \n \n \n \n \n {if !empty($dataArray)}\n \n \n \n {/if}\n \n {if !empty($pricesetFieldsCount) }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if !empty($dataArray)}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if !empty($pricesetFieldsCount) } {/if}\n \n {/foreach}\n {if !empty($individual)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n {$line.participant_count}
{ts}Participant Total{/ts}{$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney}{$individual.$priceset.totalTaxAmt|crmMoney}{$individual.$priceset.totalAmtWithTax|crmMoney}
\n
\n {ts} Amount Before Tax: {/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$financialTypeName}\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 {if !empty($event.allow_selfcancelxfer) }\n
\n {ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if !empty($totalAmount)}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n\n\n\n',1,826,'event_online_receipt',0,1,0,NULL), - (33,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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 !empty($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}. {if !empty($line_items) && empty($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|crmDate:\"%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 !empty($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|crmDate:\"%D\"})\n{if $line_item.event->is_show_location}\n {$line_item.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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 !empty($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}. {if !empty($line_items) && empty($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|crmDate:\"%D %I:%M %p %Z\"}:

\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 !empty($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|crmDate:\"%D\"})
\n {if $line_item.event->is_show_location}\n {$line_item.location.address.1.display|nl2br}\n {/if}{*End of isShowLocation condition*}

\n {$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%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,827,'event_registration_receipt',1,0,0,NULL), - (34,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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 !empty($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}. {if !empty($line_items) && empty($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|crmDate:\"%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 !empty($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|crmDate:\"%D\"})\n{if $line_item.event->is_show_location}\n {$line_item.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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 !empty($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}. {if !empty($line_items) && empty($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|crmDate:\"%D %I:%M %p %Z\"}:

\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 !empty($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|crmDate:\"%D\"})
\n {if $line_item.event->is_show_location}\n {$line_item.location.address.1.display|nl2br}\n {/if}{*End of isShowLocation condition*}

\n {$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%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,827,'event_registration_receipt',0,1,0,NULL), - (35,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {participant.role_id:label}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if !empty(\'{participant.register_date}\')}\n{ts}Registration Date{/ts}: {participant.register_date}\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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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 !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if !empty(\'{participant.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|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {participant.role_id:label}\n
\n {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\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',1,828,'participant_cancelled',1,0,0,NULL), - (36,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {participant.role_id:label}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if !empty(\'{participant.register_date}\')}\n{ts}Registration Date{/ts}: {participant.register_date}\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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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 !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if !empty(\'{participant.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|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {participant.role_id:label}\n
\n {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\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',1,828,'participant_cancelled',0,1,0,NULL), - (37,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}\n\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{if $event.allow_selfcancelxfer }\n{ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if $totalAmount}{ts}Cancellations are not refundable.{/ts}{/if}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n{ts}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\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|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%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{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar entry for this event.{/ts} {$icalFeed}\n{capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Add event to Google Calendar{/ts} {$gCalendar}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n \n \n \n\n \n\n \n \n \n {if !$isAdditional and $participant.id}\n \n \n \n \n \n \n {/if}\n {if $event.allow_selfcancelxfer }\n {ts}This event allows for{/ts}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}self service cancel or transfer{/ts}\n {/if}\n\n \n \n \n {if $event.allow_selfcancelxfer }\n \n \n \n {/if}\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}This is an invitation to complete your registration that was initially waitlisted.{/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 {ts}Click here to confirm and complete your registration{/ts}\n
\n \n \n \n \n \n \n \n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n \n \n \n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|crmDate:\"%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 {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/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=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if $totalAmount}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\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',1,829,'participant_confirm',1,0,0,NULL), - (38,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}\n\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{if $event.allow_selfcancelxfer }\n{ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if $totalAmount}{ts}Cancellations are not refundable.{/ts}{/if}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n{ts}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\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|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%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{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar entry for this event.{/ts} {$icalFeed}\n{capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Add event to Google Calendar{/ts} {$gCalendar}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n \n \n \n\n \n\n \n \n \n {if !$isAdditional and $participant.id}\n \n \n \n \n \n \n {/if}\n {if $event.allow_selfcancelxfer }\n {ts}This event allows for{/ts}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}self service cancel or transfer{/ts}\n {/if}\n\n \n \n \n {if $event.allow_selfcancelxfer }\n \n \n \n {/if}\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}This is an invitation to complete your registration that was initially waitlisted.{/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 {ts}Click here to confirm and complete your registration{/ts}\n
\n \n \n \n \n \n \n \n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n \n \n \n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|crmDate:\"%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 {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/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=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if $totalAmount}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\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',1,829,'participant_confirm',0,1,0,NULL), - (39,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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 !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

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

\n
\n\n\n\n',1,830,'participant_expired',1,0,0,NULL), - (40,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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 !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

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

\n
\n\n\n\n',1,830,'participant_expired',0,1,0,NULL), - (41,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$to_participant}Your Event Registration has been transferred to %1.{/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|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/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 !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

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

\n
\n\n\n\n',1,831,'participant_transferred',1,0,0,NULL), - (42,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$to_participant}Your Event Registration has been transferred to %1.{/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|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/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 !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

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

\n
\n\n\n\n',1,831,'participant_transferred',0,1,0,NULL), - (43,'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

{$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',1,832,'friend',1,0,0,NULL), - (44,'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

{$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',1,832,'friend',0,1,0,NULL), - (45,'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} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $receipt_text}\n{$receipt_text}\n{else}{ts}Thank you for this contribution.{/ts}{/if}\n\n{if empty($lineItem)}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if empty($cancelled)}\n{if empty($lineItem)}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount OR $formValues.total_amount eq 0 }\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !empty($formValues.contributionType_name)}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if !empty($lineItem)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset}\n{$taxTerm} {$priceset|string_format:\"%.2f\"} %: {$value|crmMoney:$currency}\n{elseif $priceset == 0}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if !empty($receive_date)}\n{ts}Date Received{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if !empty($formValues.paidBy)}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if !empty($formValues.check_number)}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if !empty($isPrimary) }\n{if !empty($billingName)}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\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 !empty($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 {if !empty($isPrimary)}\n \n \n \n {/if}\n\n {if !empty($customValues)}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n

{ts}Thank you for this contribution.{/ts}

\n {/if}\n
\n \n {if empty($lineItem)}\n \n \n \n \n \n \n \n {/if}\n {if empty($cancelled)}\n {if empty($lineItem)}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount OR $formValues.total_amount eq 0 }\n \n \n \n {if !empty($formValues.contributionType_name)}\n \n \n \n \n {/if}\n\n {if !empty($lineItem)}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if !empty($dataArray)}\n {if $formValues.total_amount and $totalTaxAmount}\n \n \n \n \n {/if}\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n {if !empty($receive_date)}\n \n \n \n \n {/if}\n {if !empty($formValues.paidBy)}\n \n \n \n \n {if !empty($formValues.check_number)}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n \n \n \n \n {if !empty($dataArray)}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if !empty($dataArray)}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}\n
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
\n {ts}Date Received{/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 !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\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',1,833,'membership_offline_receipt',1,0,0,NULL), - (46,'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} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $receipt_text}\n{$receipt_text}\n{else}{ts}Thank you for this contribution.{/ts}{/if}\n\n{if empty($lineItem)}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if empty($cancelled)}\n{if empty($lineItem)}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount OR $formValues.total_amount eq 0 }\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !empty($formValues.contributionType_name)}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if !empty($lineItem)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset}\n{$taxTerm} {$priceset|string_format:\"%.2f\"} %: {$value|crmMoney:$currency}\n{elseif $priceset == 0}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if !empty($receive_date)}\n{ts}Date Received{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if !empty($formValues.paidBy)}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if !empty($formValues.check_number)}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if !empty($isPrimary) }\n{if !empty($billingName)}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\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 !empty($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 {if !empty($isPrimary)}\n \n \n \n {/if}\n\n {if !empty($customValues)}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n

{ts}Thank you for this contribution.{/ts}

\n {/if}\n
\n \n {if empty($lineItem)}\n \n \n \n \n \n \n \n {/if}\n {if empty($cancelled)}\n {if empty($lineItem)}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount OR $formValues.total_amount eq 0 }\n \n \n \n {if !empty($formValues.contributionType_name)}\n \n \n \n \n {/if}\n\n {if !empty($lineItem)}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if !empty($dataArray)}\n {if $formValues.total_amount and $totalTaxAmount}\n \n \n \n \n {/if}\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n {if !empty($receive_date)}\n \n \n \n \n {/if}\n {if !empty($formValues.paidBy)}\n \n \n \n \n {if !empty($formValues.check_number)}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n \n \n \n \n {if !empty($dataArray)}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if !empty($dataArray)}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}\n
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
\n {ts}Date Received{/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 !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\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',1,833,'membership_offline_receipt',0,1,0,NULL), - (47,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\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 && isset($membership_amount) && !empty($is_quick_config)}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount && !$is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{/if}\n{elseif !$useForMember && !empty($lineItem) and !empty($priceSetID) & empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$amount|crmMoney} {if isset($amount_level) } - {$amount_level} {/if}\n{/if}\n{elseif isset($membership_amount)}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if !empty($membership_trx_id)}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if !empty($is_recur)}\n{ts}This membership will be renewed automatically.{/ts}\n{if $cancelSubscriptionUrl}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($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 !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or email *}\n{if !empty($credit_card_type)}\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 !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($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 !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if !empty($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 {/if}\n\n
\n \n\n {if $membership_assign && !$useForMember}\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n {/if}\n\n\n {if $amount}\n \n \n \n\n {if !$useForMember and isset($membership_amount) and !empty($is_quick_config)}\n\n \n \n \n \n {if $amount && !$is_separate_payment }\n \n \n \n \n \n \n \n \n {/if}\n\n {elseif empty($useForMember) && !empty($lineItem) and $priceSetID and empty($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 empty($is_quick_config)}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if !empty($dataArray)}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n\n {elseif isset($membership_amount)}\n\n\n \n \n \n \n \n \n \n\n\n {/if}\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($is_monetary) and !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($membership_trx_id)}\n \n \n \n \n {/if}\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($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 !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if !empty($is_deductible) AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($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}Total{/ts}\n \n {$amount+$membership_amount|crmMoney}\n
\n \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 \n \n \n \n {if !empty($dataArray)}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if !empty($dataArray)}\n \n {if ($line.tax_rate || $line.tax_amount != \"\")}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {$amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}NO{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney} {if isset($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}This membership will be renewed automatically.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\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 !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($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',1,834,'membership_online_receipt',1,0,0,NULL), - (48,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\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 && isset($membership_amount) && !empty($is_quick_config)}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount && !$is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{/if}\n{elseif !$useForMember && !empty($lineItem) and !empty($priceSetID) & empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$amount|crmMoney} {if isset($amount_level) } - {$amount_level} {/if}\n{/if}\n{elseif isset($membership_amount)}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if !empty($membership_trx_id)}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if !empty($is_recur)}\n{ts}This membership will be renewed automatically.{/ts}\n{if $cancelSubscriptionUrl}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($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 !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or email *}\n{if !empty($credit_card_type)}\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 !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($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 !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if !empty($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 {/if}\n\n
\n \n\n {if $membership_assign && !$useForMember}\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n {/if}\n\n\n {if $amount}\n \n \n \n\n {if !$useForMember and isset($membership_amount) and !empty($is_quick_config)}\n\n \n \n \n \n {if $amount && !$is_separate_payment }\n \n \n \n \n \n \n \n \n {/if}\n\n {elseif empty($useForMember) && !empty($lineItem) and $priceSetID and empty($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 empty($is_quick_config)}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if !empty($dataArray)}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n\n {elseif isset($membership_amount)}\n\n\n \n \n \n \n \n \n \n\n\n {/if}\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($is_monetary) and !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($membership_trx_id)}\n \n \n \n \n {/if}\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($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 !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if !empty($is_deductible) AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($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}Total{/ts}\n \n {$amount+$membership_amount|crmMoney}\n
\n \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 \n \n \n \n {if !empty($dataArray)}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if !empty($dataArray)}\n \n {if ($line.tax_rate || $line.tax_amount != \"\")}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {$amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}NO{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney} {if isset($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}This membership will be renewed automatically.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\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 !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($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',1,834,'membership_online_receipt',0,1,0,NULL), - (49,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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{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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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',1,835,'membership_autorenew_cancelled',1,0,0,NULL), - (50,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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{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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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',1,835,'membership_autorenew_cancelled',0,1,0,NULL), - (51,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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',1,836,'membership_autorenew_billing',1,0,0,NULL), - (52,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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',1,836,'membership_autorenew_billing',0,1,0,NULL), - (53,'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

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

\n

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

\n
\n',1,837,'test_preview',1,0,0,NULL), - (54,'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

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

\n

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

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

{$greeting},

{/if}\n

{ts}Thank you for your generous pledge.{/ts}

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

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

\n\n {if $frequency_day}\n

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

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

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

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

{$greeting},

{/if}\n

{ts}Thank you for your generous pledge.{/ts}

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

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

\n\n {if $frequency_day}\n

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

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

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

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,838,'pledge_acknowledge',0,1,0,NULL), - (57,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/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 you 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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/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 you for your generous support.{/ts}

\n
\n\n\n\n',1,839,'pledge_reminder',1,0,0,NULL), - (58,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/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 you 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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/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 you for your generous support.{/ts}

\n
\n\n\n\n',1,839,'pledge_reminder',0,1,0,NULL), - (59,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts} - {contact.display_name}\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 {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',1,840,'uf_notify',1,0,0,NULL), - (60,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts} - {contact.display_name}\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 {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',1,840,'uf_notify',0,1,0,NULL), - (61,'Petition - signature added','Thank you for signing {$petition.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\nThank you for signing {$petition.title}.\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {$petition.title}.

\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true emailMode=true}\n',1,841,'petition_sign',1,0,0,NULL), - (62,'Petition - signature added','Thank you for signing {$petition.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\nThank you for signing {$petition.title}.\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {$petition.title}.

\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true emailMode=true}\n',1,841,'petition_sign',0,1,0,NULL), - (63,'Petition - need verification','Confirmation of signature needed for {$petition.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\nThank 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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\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,842,'petition_confirmation_needed',1,0,0,NULL), - (64,'Petition - need verification','Confirmation of signature needed for {$petition.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\nThank 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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\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,842,'petition_confirmation_needed',0,1,0,NULL), + (1,'Cases - Send Copy of an Activity','{if !empty($idHash)}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if !empty($isCaseActivity)}\n{ts}Your Case Role(s){/ts} : {$contact.role|default:\'\'}\n{if !empty($manageCaseURL)}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if !empty($editActURL)}\n{ts}Edit activity{/ts} : {$editActURL}\n{/if}\n{if !empty($viewActURL)}\n{ts}View activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{if !empty($activity.customGroups)}\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{/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 !empty($isCaseActivity)}\n \n \n \n \n {if !empty($manageCaseURL)}\n \n \n \n {/if}\n {/if}\n {if !empty($editActURL)}\n \n \n \n {/if}\n {if !empty($viewActURL)}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {if !empty($activity.customGroups)}\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 {/if}\n
\n {ts}Activity Summary{/ts} - {$activityTypeName}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role|default:\'\'}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit activity{/ts}\n
\n {ts}View activity{/ts}\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 {$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',1,813,'case_activity',1,0,0,NULL), + (2,'Cases - Send Copy of an Activity','{if !empty($idHash)}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if !empty($isCaseActivity)}\n{ts}Your Case Role(s){/ts} : {$contact.role|default:\'\'}\n{if !empty($manageCaseURL)}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if !empty($editActURL)}\n{ts}Edit activity{/ts} : {$editActURL}\n{/if}\n{if !empty($viewActURL)}\n{ts}View activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{if !empty($activity.customGroups)}\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{/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 !empty($isCaseActivity)}\n \n \n \n \n {if !empty($manageCaseURL)}\n \n \n \n {/if}\n {/if}\n {if !empty($editActURL)}\n \n \n \n {/if}\n {if !empty($viewActURL)}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {if !empty($activity.customGroups)}\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 {/if}\n
\n {ts}Activity Summary{/ts} - {$activityTypeName}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role|default:\'\'}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit activity{/ts}\n
\n {ts}View activity{/ts}\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 {$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',1,813,'case_activity',0,1,0,NULL), + (3,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts} - {contact.display_name}\n','{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}\n{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}\n\n{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact ID{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

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

\n

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

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

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

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

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

\n

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

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

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

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n\n\n',1,814,'contribution_dupalert',0,1,0,NULL), + (5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if !empty($formValues.receipt_text)}\n{$formValues.receipt_text}\n{else}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Contributor{/ts}: {contact.display_name}\n{if \'{contribution.financial_type_id}\'}\n{ts}Financial Type{/ts}: {contribution.financial_type_id:label}\n{/if}\n{if $isShowLineItems}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}{$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"}\n{/foreach}\n{/if}\n\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n{foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n{/foreach}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts} : {contribution.tax_amount}\n{/if}\n{ts}Total Amount{/ts} : {contribution.total_amount}\n{if \'{contribution.receive_date}\'}\n{ts}Date Received{/ts}: {contribution.receive_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.receipt_date}\'}\n{ts}Receipt Date{/ts}: {contribution.receipt_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n{ts}Paid By{/ts}: {contribution.payment_instrument_id:label}\n{if \'{contribution.check_number}\'}\n{ts}Check Number{/ts}: {contribution.check_number}\n{/if}\n{/if}\n{if \'{contribution.trxn_id}\'}\n{ts}Transaction ID{/ts}: {contribution.trxn_id}\n{/if}\n\n{if !empty($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 !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($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 !empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if !empty($formValues.receipt_text)}\n

{$formValues.receipt_text|htmlize}

\n {else}\n

{ts}Below you will find a receipt for this contribution.{/ts}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n {if \'{contribution.financial_type_id}\'}\n \n \n {/if}\n \n\n {if $isShowLineItems}\n \n \n \n\n {/if}\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShowTax}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if \'{contribution.receive_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.receipt_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n \n \n \n \n {if \'{contribution.check_number}\'}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contribution.trxn_id}\'}\n \n \n \n \n {/if}\n\n {if !empty($ccContribution)}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($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 !empty($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 !empty($fulfilled_date)}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Contributor Name{/ts}\n \n {contact.display_name}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {$line.title}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n \n {$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney:\'{contribution.currency}\'}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Date Received{/ts}\n \n {contribution.receive_date|crmDate:\"shortdate\"}\n
\n {ts}Receipt Date{/ts}\n \n {contribution.receipt_date|crmDate:\"shortdate\"}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n\n\n\n',1,815,'contribution_offline_receipt',1,0,0,NULL), + (6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if !empty($formValues.receipt_text)}\n{$formValues.receipt_text}\n{else}{ts}Below you will find a receipt for this contribution.{/ts}{/if}\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Contributor{/ts}: {contact.display_name}\n{if \'{contribution.financial_type_id}\'}\n{ts}Financial Type{/ts}: {contribution.financial_type_id:label}\n{/if}\n{if $isShowLineItems}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}{$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'|string_format:\"%10s\"}\n{/foreach}\n{/if}\n\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n{foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n{/foreach}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts} : {contribution.tax_amount}\n{/if}\n{ts}Total Amount{/ts} : {contribution.total_amount}\n{if \'{contribution.receive_date}\'}\n{ts}Date Received{/ts}: {contribution.receive_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.receipt_date}\'}\n{ts}Receipt Date{/ts}: {contribution.receipt_date|crmDate:\"shortdate\"}\n{/if}\n{if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n{ts}Paid By{/ts}: {contribution.payment_instrument_id:label}\n{if \'{contribution.check_number}\'}\n{ts}Check Number{/ts}: {contribution.check_number}\n{/if}\n{/if}\n{if \'{contribution.trxn_id}\'}\n{ts}Transaction ID{/ts}: {contribution.trxn_id}\n{/if}\n\n{if !empty($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 !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($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 !empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if !empty($formValues.receipt_text)}\n

{$formValues.receipt_text|htmlize}

\n {else}\n

{ts}Below you will find a receipt for this contribution.{/ts}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n {if \'{contribution.financial_type_id}\'}\n \n \n {/if}\n \n\n {if $isShowLineItems}\n \n \n \n\n {/if}\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShowTax}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if \'{contribution.receive_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.receipt_date}\'}\n \n \n \n \n {/if}\n\n {if \'{contribution.payment_instrument_id}\' and empty($formValues.hidden_CreditCard)}\n \n \n \n \n {if \'{contribution.check_number}\'}\n \n \n \n \n {/if}\n {/if}\n\n {if \'{contribution.trxn_id}\'}\n \n \n \n \n {/if}\n\n {if !empty($ccContribution)}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($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 !empty($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 !empty($fulfilled_date)}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Contributor Name{/ts}\n \n {contact.display_name}\n
\n {ts}Financial Type{/ts}\n \n {contribution.financial_type_id:label}\n
\n \n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {$line.title}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney:\'{contribution.currency}\'}\n \n {$line.unit_price*$line.qty|crmMoney:\'{contribution.currency}\'}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n \n {$line.line_total+$line.tax_amount|crmMoney:\'{contribution.currency}\'}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney:\'{contribution.currency}\'}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Date Received{/ts}\n \n {contribution.receive_date|crmDate:\"shortdate\"}\n
\n {ts}Receipt Date{/ts}\n \n {contribution.receipt_date|crmDate:\"shortdate\"}\n
\n {ts}Paid By{/ts}\n \n {contribution.payment_instrument_id:label}\n
\n {ts}Check Number{/ts}\n \n {contribution.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {contribution.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n\n\n\n',1,815,'contribution_offline_receipt',0,1,0,NULL), + (7,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $isShowLineItems}\n\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n {/foreach}\n{/if}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts}: {contribution.tax_amount|crmMoney}\n{/if}\n\n{ts}Total Amount{/ts}: {contribution.total_amount}\n{else}\n{ts}Amount{/ts}: {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n{/if}\n{/if}\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if !empty($is_recur)}\n{ts}This is a recurring contribution.{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts}You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n\n{if $updateSubscriptionUrl}\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{/if}\n\n{if $honor_block_is_active}\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n{elseif !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($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 !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or Email*}\n{if !empty($credit_card_type)}\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 !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($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 !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if !empty($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 {/if}\n\n
\n\n {if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n \n \n \n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n\n {/if}\n {if $isShowTax}\n \n \n \n \n {/if}\n \n \n \n \n {else}\n {if \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($is_monetary) and !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($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 !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($isShare)}\n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if !empty($is_deductible) AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n \n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.unit_price*$line.qty|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$amount-$totalTaxAmount|crmMoney:$currency}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.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}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\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 !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($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',1,816,'contribution_online_receipt',1,0,0,NULL), + (8,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{/if}\n\n{if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $isShowLineItems}\n\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$lineItems item=line}\n{capture assign=ts_item}{$line.title}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n\n{if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if} : {$taxDetail.amount|crmMoney:\'{contribution.currency}\'}\n {/foreach}\n{/if}\n\n{if $isShowTax}\n{ts}Total Tax Amount{/ts}: {contribution.tax_amount|crmMoney}\n{/if}\n\n{ts}Total Amount{/ts}: {contribution.total_amount}\n{else}\n{ts}Amount{/ts}: {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.amount_level}{/if}\n{/if}\n{/if}\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if !empty($is_recur)}\n{ts}This is a recurring contribution.{/ts}\n\n{if $cancelSubscriptionUrl}\n{ts}You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n\n{if $updateSubscriptionUrl}\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{/if}\n\n{if $honor_block_is_active}\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n{elseif !empty($softCreditTypes) and !empty($softCredits)}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($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 !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or Email*}\n{if !empty($credit_card_type)}\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 !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($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 !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if !empty($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 {/if}\n\n
\n\n {if \'{contribution.total_amount|raw}\' !== \'0.00\'}\n \n \n \n\n {if $isShowLineItems}\n \n \n \n\n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n \n\n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n \n \n \n \n {/foreach}\n\n {/if}\n {if $isShowTax}\n \n \n \n \n {/if}\n \n \n \n \n {else}\n {if \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($is_monetary) and !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif !empty($softCreditTypes) and !empty($softCredits)}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if !empty($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 !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($isShare)}\n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if !empty($is_deductible) AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n \n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n \n \n {/if}\n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $isShowTax && \'{contribution.tax_amount|raw}\' !== \'0.00\'}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
{$line.title}{$line.qty}{$line.unit_price|crmMoney:$currency}{$line.unit_price*$line.qty|crmMoney:$currency}{$line.tax_rate|string_format:\"%.2f\"}%{$line.tax_amount|crmMoney:$currency}\n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$amount-$totalTaxAmount|crmMoney:$currency}\n
{if $taxRate == 0}{ts}No{/ts} {$taxTerm}{else}{$taxTerm} {$taxDetail.percentage}%{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
\n {ts}Total Tax{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Total Amount{/ts}\n \n {contribution.total_amount}\n
\n {ts}Total Tax Amount{/ts}\n \n {contribution.tax_amount}\n
\n {ts}Amount{/ts}\n \n {contribution.total_amount} {if \'{contribution.amount_level}\'} - {contribution.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}This is a recurring contribution.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel future contributions by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\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 !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($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',1,816,'contribution_online_receipt',0,1,0,NULL), + (9,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n - {contact.display_name}\n','{ts}Contribution Invoice{/ts}\n','\n\n \n \n \n \n \n
\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}INVOICE{/ts}{ts}Invoice Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{$invoice_date}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{$street_address} {$supplemental_address_1}{ts}Invoice Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{$supplemental_address_2} {$stateProvinceAbbreviation}{contribution.invoice_number}\n {domain.city}\n {domain.postal_code}\n
{$city} {$postal_code}{ts}Reference:{/ts}{domain.country_id:label}
{$country}{contribution.source}{domain.email}
{domain.phone}
\n\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n {/if}\n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=$currency}Amount %1{/ts}
\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}
{ts}Sub Total{/ts}{$subTotal|crmMoney:$currency}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
{ts 1=$currency}TOTAL %1{/ts}{$amount|crmMoney:$currency}
\n {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n {ts}Amount Credited{/ts}\n {else}\n {ts}Amount Paid{/ts}\n {/if}\n {$amountPaid|crmMoney:$currency}

{ts}AMOUNT DUE:{/ts}{$amountDue|crmMoney:$currency}
{ts 1=$dueDate}DUE DATE: %1{/ts}
\n\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}PAYMENT ADVICE{/ts}

\n {ts}To:{/ts}
\n {domain.name}
\n {domain.street_address} {domain.supplemental_address_1}
\n {domain.supplemental_address_2} {domain.state_province_id:label}
\n {domain.city} {domain.postal_code}
\n {domain.country_id:label}
\n {domain.email}
\n {domain.phone}
\n
\n

{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n {if $is_pay_later == 1}\n \n \n \n \n {else}\n \n \n \n \n {/if}\n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Invoice Number:{/ts}{contribution.invoice_number}

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

\n
\n {/if}\n\n {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}CREDIT NOTE{/ts}{ts}Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{$invoice_date}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{$street_address} {$supplemental_address_1}{ts}Credit Note Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{$supplemental_address_2} {$stateProvinceAbbreviation}{contribution.creditnote_id}\n {domain.city}\n {domain.postal_code}\n
{$city} {$postal_code}{ts}Reference:{/ts}\n {domain.country_id:label}\n
{contribution.source}\n {domain.email}\n
\n {domain.phone}\n
\n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line key=index}\n \n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n {if \'{contribution.is_pay_later}\' == 0}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=$currency}Amount %1{/ts}

\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}

{ts}Sub Total{/ts}{$subTotal|crmMoney:$currency}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}

{ts 1=$currency}TOTAL %1{/ts}{$amount|crmMoney:$currency}
{ts}LESS Credit to invoice(s){/ts}{$amount|crmMoney:$currency}

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

{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Credit Note#:{/ts}{contribution.creditnote_id}

{ts}Credit Amount:{/ts}{$amount|crmMoney:$currency}
\n
\n {/if}\n\n
\n \n\n',1,817,'contribution_invoice_receipt',1,0,0,NULL), + (10,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n - {contact.display_name}\n','{ts}Contribution Invoice{/ts}\n','\n\n \n \n \n \n \n
\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}INVOICE{/ts}{ts}Invoice Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{$invoice_date}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{$street_address} {$supplemental_address_1}{ts}Invoice Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{$supplemental_address_2} {$stateProvinceAbbreviation}{contribution.invoice_number}\n {domain.city}\n {domain.postal_code}\n
{$city} {$postal_code}{ts}Reference:{/ts}{domain.country_id:label}
{$country}{contribution.source}{domain.email}
{domain.phone}
\n\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line}\n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n {/if}\n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=$currency}Amount %1{/ts}
\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}-{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}
{ts}Sub Total{/ts}{$subTotal|crmMoney:$currency}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}
{ts 1=$currency}TOTAL %1{/ts}{$amount|crmMoney:$currency}
\n {if \'{contribution.contribution_status_id:name}\' == \'Refunded\'}\n {ts}Amount Credited{/ts}\n {else}\n {ts}Amount Paid{/ts}\n {/if}\n {$amountPaid|crmMoney:$currency}

{ts}AMOUNT DUE:{/ts}{$amountDue|crmMoney:$currency}
{ts 1=$dueDate}DUE DATE: %1{/ts}
\n\n {if \'{contribution.contribution_status_id:name}\' == \'Pending\' && \'{contribution.is_pay_later}\' == 1}\n \n \n \n \n
\n\n \n \n \n \n \n
{ts}PAYMENT ADVICE{/ts}

\n {ts}To:{/ts}
\n {domain.name}
\n {domain.street_address} {domain.supplemental_address_1}
\n {domain.supplemental_address_2} {domain.state_province_id:label}
\n {domain.city} {domain.postal_code}
\n {domain.country_id:label}
\n {domain.email}
\n {domain.phone}
\n
\n

{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n {if $is_pay_later == 1}\n \n \n \n \n {else}\n \n \n \n \n {/if}\n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Invoice Number:{/ts}{contribution.invoice_number}

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

\n
\n {/if}\n\n {if \'{contribution.contribution_status_id:name}\' === \'Refunded\' || \'{contribution.contribution_status_id:name}\' === \'Cancelled\'}\n {if $config->empoweredBy}\n \n \n \n \n
\n {/if}\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}CREDIT NOTE{/ts}{ts}Date:{/ts}{domain.name}
{contact.display_name}{if \'{contact.current_employer}\'} ({contact.current_employer}){/if}{$invoice_date}\n {domain.street_address}\n {domain.supplemental_address_1}\n
{$street_address} {$supplemental_address_1}{ts}Credit Note Number:{/ts}\n {domain.supplemental_address_2}\n {domain.state_province_id:label}\n
{$supplemental_address_2} {$stateProvinceAbbreviation}{contribution.creditnote_id}\n {domain.city}\n {domain.postal_code}\n
{$city} {$postal_code}{ts}Reference:{/ts}\n {domain.country_id:label}\n
{contribution.source}\n {domain.email}\n
\n {domain.phone}\n
\n\n \n \n \n \n
\n \n \n \n \n \n \n \n \n {foreach from=$lineItems item=line key=index}\n \n \n \n \n \n {if $line.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from=$taxRateBreakdown item=taxDetail key=taxRate}\n {if $taxRate != 0}\n \n \n \n \n \n {/if}\n {/foreach}\n \n \n \n \n \n \n \n \n \n {if \'{contribution.is_pay_later}\' == 0}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
{ts}Description{/ts}{ts}Quantity{/ts}{ts}Unit Price{/ts}{domain.tax_term}{ts 1=$currency}Amount %1{/ts}

\n {$line.title}\n {$line.qty}{$line.unit_price|crmMoney:$currency}{if $line.tax_rate}{$line.tax_rate|crmNumberFormat}%{/if}{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\'}No %1{/ts}{/if}{$line.line_total|crmMoney:\'{contribution.currency}\'}

{ts}Sub Total{/ts}{$subTotal|crmMoney:$currency}
{if \'{domain.tax_term}\'}{ts 1=\'{domain.tax_term}\' 2=$taxRate|crmNumberFormat}TOTAL %1 %2%{/ts}{/if}{$taxDetail.amount|crmMoney:\'{contribution.currency}\'}

{ts 1=$currency}TOTAL %1{/ts}{$amount|crmMoney:$currency}
{ts}LESS Credit to invoice(s){/ts}{$amount|crmMoney:$currency}

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

{ts}Please do not pay on this advice. Deduct the amount of this Credit Note from your next payment to us{/ts}

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
{ts}Customer:{/ts}{contact.display_name}
{ts}Credit Note#:{/ts}{contribution.creditnote_id}

{ts}Credit Amount:{/ts}{$amount|crmMoney:$currency}
\n
\n {/if}\n\n
\n \n\n',1,817,'contribution_invoice_receipt',0,1,0,NULL), + (11,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n\n{/if}\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments } {ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.\n\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by visiting this web page.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n\n{/if}\n\n{if $updateSubscriptionUrl}\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{/if}\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.{/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 {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {else}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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}You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

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

\n

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

\n

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

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

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

\n
\n

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

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/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',1,818,'contribution_recurring_notify',1,0,0,NULL), + (12,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n\n{/if}\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments } {ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.\n\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{if $cancelSubscriptionUrl}\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by visiting this web page.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n\n{/if}\n\n{if $updateSubscriptionUrl}\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{/if}\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.{/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 {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {else}\n \n \n \n {if $cancelSubscriptionUrl}\n \n \n \n {/if}\n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {if $updateSubscriptionUrl}\n \n \n \n {/if}\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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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}You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

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

\n

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

\n

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

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

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

\n
\n

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

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you.{/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',1,818,'contribution_recurring_notify',0,1,0,NULL), + (13,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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',1,819,'contribution_recurring_cancelled',1,0,0,NULL), + (14,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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',1,819,'contribution_recurring_cancelled',0,1,0,NULL), + (15,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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,820,'contribution_recurring_billing',1,0,0,NULL), + (16,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

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

{$greeting},

{/if}\n

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

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

\n\n

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

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

{$greeting},

{/if}\n

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

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

\n\n

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

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

{ts}Your Personal Campaign Page{/ts}

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

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

\n

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

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

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

\n\n {if $isTellFriendEnabled}\n

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

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

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

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

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

\n {if $pcpNotifyEmailAddress}\n

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

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

{ts}Your Personal Campaign Page{/ts}

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

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

\n

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

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

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

\n\n {if $isTellFriendEnabled}\n

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

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

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

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

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

\n {if $pcpNotifyEmailAddress}\n

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

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

{$greeting},

{/if}\n

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

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

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

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

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

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

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

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

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

\n
\n
\n

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

\n

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

\n

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

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

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

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

{$greeting},

{/if}\n

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

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

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

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

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

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

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

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

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

\n
\n
\n

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

\n

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

\n

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

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

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

\n
\n\n\n\n',1,824,'pcp_supporter_notify',0,1,0,NULL), + (25,'Personal Campaign Pages - Owner Notification','{ts}Someone has just donated to your personal campaign page{/ts} - {contact.display_name}\n','===========================================================\n{ts}Personal Campaign Page Owner Notification{/ts}\n\n===========================================================\n{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}You have received a donation at your personal page{/ts}: {$page_title}\n>> {$pcpInfoURL}\n\n{ts}Your fundraising total has been updated.{/ts}\n{ts}The donor\'s information is listed below. You can choose to contact them and convey your thanks if you wish.{/ts}\n{if $is_honor_roll_enabled}\n {ts}The donor\'s name has been added to your honor roll unless they asked not to be included.{/ts}\n{/if}\n\n{ts}Received{/ts}: {$receive_date|crmDate}\n\n{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}\n\n{ts}Name{/ts}: {$donors_display_name}\n\n{ts}Email{/ts}: {$donors_email}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

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

\n

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

\n \n \n \n \n \n
{ts}Received{/ts}: {$receive_date|crmDate}
{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}
{ts}Name{/ts}: {$donors_display_name}
{ts}Email{/ts}: {$donors_email}
\n\n\n',1,825,'pcp_owner_notify',1,0,0,NULL), + (26,'Personal Campaign Pages - Owner Notification','{ts}Someone has just donated to your personal campaign page{/ts} - {contact.display_name}\n','===========================================================\n{ts}Personal Campaign Page Owner Notification{/ts}\n\n===========================================================\n{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}You have received a donation at your personal page{/ts}: {$page_title}\n>> {$pcpInfoURL}\n\n{ts}Your fundraising total has been updated.{/ts}\n{ts}The donor\'s information is listed below. You can choose to contact them and convey your thanks if you wish.{/ts}\n{if $is_honor_roll_enabled}\n {ts}The donor\'s name has been added to your honor roll unless they asked not to be included.{/ts}\n{/if}\n\n{ts}Received{/ts}: {$receive_date|crmDate}\n\n{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}\n\n{ts}Name{/ts}: {$donors_display_name}\n\n{ts}Email{/ts}: {$donors_email}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

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

\n

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

\n \n \n \n \n \n
{ts}Received{/ts}: {$receive_date|crmDate}
{ts}Amount{/ts}: {$total_amount|crmMoney:$currency}
{ts}Name{/ts}: {$donors_display_name}
{ts}Email{/ts}: {$donors_email}
\n\n\n',1,825,'pcp_owner_notify',0,1,0,NULL), + (27,'Additional Payment Receipt or Refund Notification','{if $isRefund}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if $component eq \'event\'} - {$event.title}{/if} - {contact.display_name}\n','{if $emailGreeting}{$emailGreeting},\n{/if}\n\n{if $isRefund}\n{ts}A refund has been issued based on changes in your registration selections.{/ts}\n{else}\n{ts}Below you will find a receipt for this payment.{/ts}\n{/if}\n{if $paymentsComplete}\n{ts}Thank you for completing this payment.{/ts}\n{/if}\n\n{if $isRefund}\n===============================================================================\n\n{ts}Refund Details{/ts}\n\n===============================================================================\n{ts}This Refund Amount{/ts}: {$refundAmount|crmMoney}\n------------------------------------------------------------------------------------\n\n{else}\n===============================================================================\n\n{ts}Payment Details{/ts}\n\n===============================================================================\n{ts}This Payment Amount{/ts}: {$paymentAmount|crmMoney}\n------------------------------------------------------------------------------------\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n\n===============================================================================\n\n{ts}Contribution Details{/ts}\n\n===============================================================================\n{if $totalAmount}\n{ts}Total Fee{/ts}: {$totalAmount|crmMoney}\n{/if}\n{if $totalPaid}\n{ts}Total Paid{/ts}: {$totalPaid|crmMoney}\n{/if}\n{if $amountOwed}\n{ts}Balance Owed{/ts}: {$amountOwed|crmMoney} {* This will be zero after final payment. *}\n{/if}\n\n\n{if !empty($billingName) || !empty($address)}\n\n===============================================================================\n\n{ts}Billing Name and Address{/ts}\n\n===============================================================================\n{if !empty($billingName)}\n{$billingName}\n{/if}\n{if !empty($address)}\n{$address}\n{/if}\n{/if}\n\n{if !empty($credit_card_number)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===============================================================================\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $component eq \'event\'}\n===============================================================================\n\n{ts}Event Information and Location{/ts}\n\n===============================================================================\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle }style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle }style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n \n\n \n \n \n\n \n \n \n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $isRefund}\n

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

\n {else}\n

{ts}Below you will find a receipt for this payment.{/ts}

\n {if $paymentsComplete}\n

{ts}Thank you for completing this contribution.{/ts}

\n {/if}\n {/if}\n
\n \n {if $isRefund}\n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n {/if}\n {if $receive_date}\n \n \n \n \n {/if}\n {if !empty($trxn_id)}\n \n \n \n \n {/if}\n {if !empty($paidBy)}\n \n \n \n \n {/if}\n {if !empty($checkNumber)}\n \n \n \n \n {/if}\n\n \n \n \n {if $totalAmount}\n \n \n \n \n {/if}\n {if $totalPaid}\n \n \n \n \n {/if}\n {if $amountOwed}\n \n \n {* This will be zero after final payment. *}\n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}This Refund Amount{/ts}\n \n {$refundAmount|crmMoney}\n
{ts}Payment Details{/ts}
\n {ts}This Payment Amount{/ts}\n \n {$paymentAmount|crmMoney}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
{ts}Contribution Details{/ts}
\n {ts}Total Fee{/ts}\n \n {$totalAmount|crmMoney}\n
\n {ts}Total Paid{/ts}\n \n {$totalPaid|crmMoney}\n
\n {ts}Balance Owed{/ts}\n \n {$amountOwed|crmMoney}\n
\n\n
\n \n {if !empty($billingName) || !empty($address)}\n \n \n \n \n \n \n {/if}\n {if !empty($credit_card_number)}\n \n \n \n \n \n \n {/if}\n {if $component eq \'event\'}\n \n \n \n \n \n \n\n {if !empty($event.participant_role)}\n \n \n \n \n {/if}\n\n {if !empty($isShowLocation)}\n \n \n \n {/if}\n\n {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if} {*phone block close*}\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {if !empty($billingName)}{$billingName}{/if}
\n {if !empty($address)}{$address|nl2br}{/if}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires:{/ts} {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n
\n\n \n\n',1,826,'payment_or_refund_notification',1,0,0,NULL), + (28,'Additional Payment Receipt or Refund Notification','{if $isRefund}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if}{if $component eq \'event\'} - {$event.title}{/if} - {contact.display_name}\n','{if $emailGreeting}{$emailGreeting},\n{/if}\n\n{if $isRefund}\n{ts}A refund has been issued based on changes in your registration selections.{/ts}\n{else}\n{ts}Below you will find a receipt for this payment.{/ts}\n{/if}\n{if $paymentsComplete}\n{ts}Thank you for completing this payment.{/ts}\n{/if}\n\n{if $isRefund}\n===============================================================================\n\n{ts}Refund Details{/ts}\n\n===============================================================================\n{ts}This Refund Amount{/ts}: {$refundAmount|crmMoney}\n------------------------------------------------------------------------------------\n\n{else}\n===============================================================================\n\n{ts}Payment Details{/ts}\n\n===============================================================================\n{ts}This Payment Amount{/ts}: {$paymentAmount|crmMoney}\n------------------------------------------------------------------------------------\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n\n===============================================================================\n\n{ts}Contribution Details{/ts}\n\n===============================================================================\n{if $totalAmount}\n{ts}Total Fee{/ts}: {$totalAmount|crmMoney}\n{/if}\n{if $totalPaid}\n{ts}Total Paid{/ts}: {$totalPaid|crmMoney}\n{/if}\n{if $amountOwed}\n{ts}Balance Owed{/ts}: {$amountOwed|crmMoney} {* This will be zero after final payment. *}\n{/if}\n\n\n{if !empty($billingName) || !empty($address)}\n\n===============================================================================\n\n{ts}Billing Name and Address{/ts}\n\n===============================================================================\n{if !empty($billingName)}\n{$billingName}\n{/if}\n{if !empty($address)}\n{$address}\n{/if}\n{/if}\n\n{if !empty($credit_card_number)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===============================================================================\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $component eq \'event\'}\n===============================================================================\n\n{ts}Event Information and Location{/ts}\n\n===============================================================================\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle }style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle }style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n \n\n \n \n \n\n \n \n \n \n \n \n \n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $isRefund}\n

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

\n {else}\n

{ts}Below you will find a receipt for this payment.{/ts}

\n {if $paymentsComplete}\n

{ts}Thank you for completing this contribution.{/ts}

\n {/if}\n {/if}\n
\n \n {if $isRefund}\n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n {/if}\n {if $receive_date}\n \n \n \n \n {/if}\n {if !empty($trxn_id)}\n \n \n \n \n {/if}\n {if !empty($paidBy)}\n \n \n \n \n {/if}\n {if !empty($checkNumber)}\n \n \n \n \n {/if}\n\n \n \n \n {if $totalAmount}\n \n \n \n \n {/if}\n {if $totalPaid}\n \n \n \n \n {/if}\n {if $amountOwed}\n \n \n {* This will be zero after final payment. *}\n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}This Refund Amount{/ts}\n \n {$refundAmount|crmMoney}\n
{ts}Payment Details{/ts}
\n {ts}This Payment Amount{/ts}\n \n {$paymentAmount|crmMoney}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
{ts}Contribution Details{/ts}
\n {ts}Total Fee{/ts}\n \n {$totalAmount|crmMoney}\n
\n {ts}Total Paid{/ts}\n \n {$totalPaid|crmMoney}\n
\n {ts}Balance Owed{/ts}\n \n {$amountOwed|crmMoney}\n
\n\n
\n \n {if !empty($billingName) || !empty($address)}\n \n \n \n \n \n \n {/if}\n {if !empty($credit_card_number)}\n \n \n \n \n \n \n {/if}\n {if $component eq \'event\'}\n \n \n \n \n \n \n\n {if !empty($event.participant_role)}\n \n \n \n \n {/if}\n\n {if !empty($isShowLocation)}\n \n \n \n {/if}\n\n {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if} {*phone block close*}\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {if !empty($billingName)}{$billingName}{/if}
\n {if !empty($address)}{$address|nl2br}{/if}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires:{/ts} {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n
\n\n \n\n',1,826,'payment_or_refund_notification',0,1,0,NULL), + (29,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {event.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($isPrimary)}\n{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}\n\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($isPrimary)}\n{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}\n\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{event.title}\n{event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar entry for this event.{/ts} {$icalFeed}\n{capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Add event to Google Calendar{/ts} {$gCalendar}\n{/if}\n\n{if !empty($email)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$email}\n{/if}\n{if !empty($event.is_monetary)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($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 !empty($pricesetFieldsCount) }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if !empty($pricesetFieldsCount) }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n{/if}\n{/foreach}\n\n{if !empty($dataArray)}\n{if $totalAmount and $totalTaxAmount}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amount) && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary)}\n\n{if !empty($balanceAmount)}{ts}Total Paid{/ts}{else}{ts}Total Amount{/ts}{/if}: {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($balanceAmount)}\n{ts}Balance{/ts}: {$balanceAmount|crmMoney}\n{/if}\n\n{if !empty($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 !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($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 !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($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 !empty($customPre)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($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 !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if !empty($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 !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customName}\n=========================================================={if !empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{$event.confirm_email_text|htmlize}

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

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

\n {if !empty($isPrimary)}\n

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

\n {/if}\n {elseif !empty($isRequireApproval)}\n

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

\n {if !empty($isPrimary)}\n

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

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

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n \n \n \n \n {/if}\n\n {if !empty($isShowLocation)}\n \n \n \n {/if}\n\n {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($event.is_public)}\n \n \n \n \n \n \n {/if}\n\n {if $email}\n \n \n \n \n \n \n {/if}\n\n\n {if !empty($event.is_monetary)}\n\n \n \n \n\n {if !empty($lineItem)}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if !empty($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 !empty($dataArray)}\n {if $totalAmount and $totalTaxAmount}\n \n \n \n \n {/if}\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if !empty($amount) && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n {if !empty($isPrimary)}\n \n \n \n \n {if isset($balanceAmount)}\n \n \n \n \n {/if}\n {if !empty($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 !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($financialTypeName)}\n \n \n \n \n {/if}\n\n {if !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($paidBy)}\n \n \n \n \n {/if}\n\n {if !empty($checkNumber)}\n \n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=value key=customName}\n {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=value key=customName}\n {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($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 !empty($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.title}
\n {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {if !empty($event.fee_label)}{$event.fee_label}{/if}\n
\n {ts 1=$priceset+1}Participant %1{/ts}\n
\n \n \n \n \n \n {if !empty($dataArray)}\n \n \n \n {/if}\n \n {if !empty($pricesetFieldsCount) }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if !empty($dataArray)}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if !empty($pricesetFieldsCount) }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.participant_count}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {if isset($balanceAmount)}\n {ts}Total Paid{/ts}\n {else}\n {ts}Total Amount{/ts}\n {/if}\n \n {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Balance{/ts}\n \n {$balanceAmount|crmMoney}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {$pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$financialTypeName}\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',1,827,'event_offline_receipt',1,0,0,NULL), + (30,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {event.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($isPrimary)}\n{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}\n\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($isPrimary)}\n{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}\n\n{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{event.title}\n{event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar entry for this event.{/ts} {$icalFeed}\n{capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Add event to Google Calendar{/ts} {$gCalendar}\n{/if}\n\n{if !empty($email)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$email}\n{/if}\n{if !empty($event.is_monetary)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($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 !empty($pricesetFieldsCount) }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if !empty($pricesetFieldsCount) }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n{/if}\n{/foreach}\n\n{if !empty($dataArray)}\n{if $totalAmount and $totalTaxAmount}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amount) && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary)}\n\n{if !empty($balanceAmount)}{ts}Total Paid{/ts}{else}{ts}Total Amount{/ts}{/if}: {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($balanceAmount)}\n{ts}Balance{/ts}: {$balanceAmount|crmMoney}\n{/if}\n\n{if !empty($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 !empty($pricesetFieldsCount) }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if !empty($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 !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($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 !empty($customPre)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($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 !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if !empty($pricesetFieldsCount) }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if !empty($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 !empty($customGroup)}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if !empty($pricesetFieldsCount) }===================={/if}\n\n{$customName}\n=========================================================={if !empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{$event.confirm_email_text|htmlize}

\n {/if}\n\n {if !empty($isOnWaitlist)}\n

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

\n {if !empty($isPrimary)}\n

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

\n {/if}\n {elseif !empty($isRequireApproval)}\n

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

\n {if !empty($isPrimary)}\n

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

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

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n \n \n \n \n {/if}\n\n {if !empty($isShowLocation)}\n \n \n \n {/if}\n\n {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($event.is_public)}\n \n \n \n \n \n \n {/if}\n\n {if $email}\n \n \n \n \n \n \n {/if}\n\n\n {if !empty($event.is_monetary)}\n\n \n \n \n\n {if !empty($lineItem)}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if !empty($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 !empty($dataArray)}\n {if $totalAmount and $totalTaxAmount}\n \n \n \n \n {/if}\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if !empty($amount) && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n {if !empty($isPrimary)}\n \n \n \n \n {if isset($balanceAmount)}\n \n \n \n \n {/if}\n {if !empty($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 !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($financialTypeName)}\n \n \n \n \n {/if}\n\n {if !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($paidBy)}\n \n \n \n \n {/if}\n\n {if !empty($checkNumber)}\n \n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=value key=customName}\n {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=value key=customName}\n {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($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 !empty($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.title}
\n {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {if !empty($event.fee_label)}{$event.fee_label}{/if}\n
\n {ts 1=$priceset+1}Participant %1{/ts}\n
\n \n \n \n \n \n {if !empty($dataArray)}\n \n \n \n {/if}\n \n {if !empty($pricesetFieldsCount) }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if !empty($dataArray)}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if !empty($pricesetFieldsCount) }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.participant_count}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {if isset($balanceAmount)}\n {ts}Total Paid{/ts}\n {else}\n {ts}Total Amount{/ts}\n {/if}\n \n {if !empty($totalAmount)}{$totalAmount|crmMoney}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Balance{/ts}\n \n {$balanceAmount|crmMoney}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {$pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$financialTypeName}\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',1,827,'event_offline_receipt',0,1,0,NULL), + (31,'Events - Registration Confirmation and Receipt (on-line)','{if !empty($isOnWaitlist)}{ts}Wait List Confirmation{/ts}{elseif !empty($isRequireApproval)}{ts}Registration Request Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {event.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n\n{else}\n {ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}{if !empty($isOnWaitlist)}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}{/if}\n {/if}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($isPrimary)}\n{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($isPrimary)}\n{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}\n\n{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($is_pay_later) && empty($isAmountzero) && empty($isAdditionalParticipant)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{event.title}\n{event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if !empty($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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%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 !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar entry for this event.{/ts} {$icalFeed}\n{capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Add event to Google Calendar{/ts} {$gCalendar}\n{/if}\n\n{if !empty($payer.name)}\nYou were registered by: {$payer.name}\n{/if}\n{if !empty($event.is_monetary) and empty($isRequireApproval)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty ($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($isPrimary)}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}{if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n----------------------------------------------------------------------------------------------------------------\n{if !empty($individual)}{ts}Participant Total{/ts} {$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%29s\"} {$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%33s\"} {$individual.$priceset.totalAmtWithTax|crmMoney:$currency|string_format:\"%12s\"}{/if}\n{/if}\n{\"\"|string_format:\"%120s\"}\n{/foreach}\n{\"\"|string_format:\"%120s\"}\n\n{if !empty($dataArray)}\n{if isset($totalAmount) and isset($totalTaxAmount)}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amounts) && empty($lineItem)}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n\n{if isset($totalTaxAmount)}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary) }\n\n{ts}Total Amount{/ts}: {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($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 !empty($receive_date)}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($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 !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if !empty($pricesetFieldsCount)}--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if !empty($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\n{if !empty($event.allow_selfcancelxfer) }\n{ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if !empty($totalAmount)}{ts}Cancellations are not refundable.{/ts}{/if}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n{ts}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotal}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n {/if}\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{$event.confirm_email_text|htmlize}

\n\n {else}\n

{ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}{if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}{/if}{/if}

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

\n {if !empty($isOnWaitlist)}\n

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

\n {if !empty($isPrimary)}\n

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

\n {/if}\n {elseif !empty($isRequireApproval)}\n

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

\n {if !empty($isPrimary)}\n

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

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

{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}

{* FIXME: this might be text rather than HTML *}\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 !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n \n \n \n \n {/if}\n\n {if !empty($isShowLocation)}\n \n \n \n {/if}\n\n {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($event.is_public)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($event.is_share)}\n \n \n \n {/if}\n {if !empty($payer.name)}\n \n \n \n \n \n \n {/if}\n {if !empty($event.is_monetary) and empty($isRequireApproval)}\n\n \n \n \n\n {if !empty($lineItem)}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if !empty($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 !empty($dataArray)}\n {if isset($totalAmount) and isset($totalTaxAmount)}\n \n \n \n \n {/if}\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if !empty($amounts) && empty($lineItem)}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\n {if isset($totalTaxAmount)}\n \n \n \n \n {/if}\n {if !empty($isPrimary)}\n \n \n \n \n {if !empty($pricesetFieldsCount) }\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($financialTypeName)}\n \n \n \n \n {/if}\n\n {if !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($paidBy)}\n \n \n \n \n {/if}\n\n {if !empty($checkNumber)}\n \n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\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 !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n \n {foreach from=$customPr item=customValue key=customName}\n {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n \n {foreach from=$customPos item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($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
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|crmDate:\"%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 {$location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/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 {if !empty($event.fee_label)}{$event.fee_label}{/if}\n
\n {ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n
\n \n \n \n \n \n {if !empty($dataArray)}\n \n \n \n {/if}\n \n {if !empty($pricesetFieldsCount) }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if !empty($dataArray)}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if !empty($pricesetFieldsCount) } {/if}\n \n {/foreach}\n {if !empty($individual)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n {$line.participant_count}
{ts}Participant Total{/ts}{$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney}{$individual.$priceset.totalTaxAmt|crmMoney}{$individual.$priceset.totalAmtWithTax|crmMoney}
\n
\n {ts} Amount Before Tax: {/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$financialTypeName}\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 {if !empty($event.allow_selfcancelxfer) }\n
\n {ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if !empty($totalAmount)}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n\n\n\n',1,828,'event_online_receipt',1,0,0,NULL), + (32,'Events - Registration Confirmation and Receipt (on-line)','{if !empty($isOnWaitlist)}{ts}Wait List Confirmation{/ts}{elseif !empty($isRequireApproval)}{ts}Registration Request Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {event.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n{$event.confirm_email_text}\n\n{else}\n {ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}{if !empty($isOnWaitlist)}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}{/if}\n {/if}\n{/if}\n\n{if !empty($isOnWaitlist)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if !empty($isPrimary)}\n{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($isRequireApproval)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if !empty($isPrimary)}\n{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}\n\n{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{elseif !empty($is_pay_later) && empty($isAmountzero) && empty($isAdditionalParticipant)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{/if}\n\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{event.title}\n{event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if !empty($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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%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 !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if !empty($isShowLocation)}\n{$location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if !empty($event.is_public)}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar entry for this event.{/ts} {$icalFeed}\n{capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Add event to Google Calendar{/ts} {$gCalendar}\n{/if}\n\n{if !empty($payer.name)}\nYou were registered by: {$payer.name}\n{/if}\n{if !empty($event.is_monetary) and empty($isRequireApproval)} {* This section for Paid events only.*}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty ($event.fee_label)}{$event.fee_label}{/if}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{if !empty($lineItem)}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if !empty($isPrimary)}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {if !empty($ts_participant_total)}{$ts_participant_total|string_format:\"%10s\"}{/if}\n-----------------------------------------------------------{if !empty($pricesetFieldsCount)}-----------------------------------------------------{/if}\n\n{foreach from=$value item=line}\n{if !empty($pricesetFieldsCount) }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}{if !empty($ts_participant_count)}{$ts_participant_count|string_format:\"%10s\"}{/if}\n{/foreach}\n----------------------------------------------------------------------------------------------------------------\n{if !empty($individual)}{ts}Participant Total{/ts} {$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%29s\"} {$individual.$priceset.totalTaxAmt|crmMoney:$currency|string_format:\"%33s\"} {$individual.$priceset.totalAmtWithTax|crmMoney:$currency|string_format:\"%12s\"}{/if}\n{/if}\n{\"\"|string_format:\"%120s\"}\n{/foreach}\n{\"\"|string_format:\"%120s\"}\n\n{if !empty($dataArray)}\n{if isset($totalAmount) and isset($totalTaxAmount)}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if !empty($amounts) && empty($lineItem)}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n\n{if isset($totalTaxAmount)}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if !empty($isPrimary) }\n\n{ts}Total Amount{/ts}: {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n\n{if !empty($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 !empty($receive_date)}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($financialTypeName)}\n{ts}Financial Type{/ts}: {$financialTypeName}\n{/if}\n{if !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if !empty($paidBy)}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if !empty($checkNumber)}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if !empty($billingName)}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if !empty($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 !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if !empty($customProfile)}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if !empty($pricesetFieldsCount)}===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if !empty($pricesetFieldsCount)}--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if !empty($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\n{if !empty($event.allow_selfcancelxfer) }\n{ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if !empty($totalAmount)}{ts}Cancellations are not refundable.{/ts}{/if}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n{ts}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=tdfirstStyle}style=\"width: 180px; padding-bottom: 15px;\"{/capture}\n{capture assign=tdStyle}style=\"width: 100px;\"{/capture}\n{capture assign=participantTotal}style=\"margin: 0.5em 0 0.5em;padding: 0.5em;background-color: #999999;font-weight: bold;color: #FAFAFA;border-radius: 2px;\"{/capture}\n\n\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n {/if}\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n {if !empty($event.confirm_email_text) AND (empty($isOnWaitlist) AND empty($isRequireApproval))}\n

{$event.confirm_email_text|htmlize}

\n\n {else}\n

{ts}Thank you for your registration.{/ts}\n {if $participant_status}{ts 1=$participant_status}This is a confirmation that your registration has been received and your status has been updated to %1.{/ts}\n {else}{if $isOnWaitlist}{ts}This is a confirmation that your registration has been received and your status has been updated to waitlisted.{/ts}{else}{ts}This is a confirmation that your registration has been received and your status has been updated to registered.{/ts}{/if}{/if}

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

\n {if !empty($isOnWaitlist)}\n

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

\n {if !empty($isPrimary)}\n

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

\n {/if}\n {elseif !empty($isRequireApproval)}\n

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

\n {if !empty($isPrimary)}\n

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

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

{if isset($pay_later_receipt)}{$pay_later_receipt}{/if}

{* FIXME: this might be text rather than HTML *}\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 !empty($event.participant_role) and $event.participant_role neq \'Attendee\' and !empty($defaultRole)}\n \n \n \n \n {/if}\n\n {if !empty($isShowLocation)}\n \n \n \n {/if}\n\n {if !empty($location.phone.1.phone) || !empty($location.email.1.email)}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($event.is_public)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($event.is_share)}\n \n \n \n {/if}\n {if !empty($payer.name)}\n \n \n \n \n \n \n {/if}\n {if !empty($event.is_monetary) and empty($isRequireApproval)}\n\n \n \n \n\n {if !empty($lineItem)}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if !empty($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 !empty($dataArray)}\n {if isset($totalAmount) and isset($totalTaxAmount)}\n \n \n \n \n {/if}\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if !empty($amounts) && empty($lineItem)}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\n {if isset($totalTaxAmount)}\n \n \n \n \n {/if}\n {if !empty($isPrimary)}\n \n \n \n \n {if !empty($pricesetFieldsCount) }\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($financialTypeName)}\n \n \n \n \n {/if}\n\n {if !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($paidBy)}\n \n \n \n \n {/if}\n\n {if !empty($checkNumber)}\n \n \n \n \n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\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 !empty($customPre)}\n{foreach from=$customPre item=customPr key=i}\n \n {foreach from=$customPr item=customValue key=customName}\n {if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n{/foreach}\n{/if}\n\n{if !empty($customPost)}\n{foreach from=$customPost item=customPos key=j}\n \n {foreach from=$customPos item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n \n \n \n \n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if !empty($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
\n {ts}Event Information and Location{/ts}\n
\n {event.title}
\n {event.start_date|crmDate:\"%A\"} {event.start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate:\"%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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|crmDate:\"%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 {$location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/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 {if !empty($event.fee_label)}{$event.fee_label}{/if}\n
\n {ts 1=$priceset+1}Participant %1{/ts} {if !empty($part.$priceset)}{$part.$priceset.info}{/if}\n
\n \n \n \n \n \n {if !empty($dataArray)}\n \n \n \n {/if}\n \n {if !empty($pricesetFieldsCount) }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if !empty($dataArray)}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if !empty($pricesetFieldsCount) } {/if}\n \n {/foreach}\n {if !empty($individual)}\n \n \n \n \n \n \n {/if}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n {$line.participant_count}
{ts}Participant Total{/ts}{$individual.$priceset.totalAmtWithTax-$individual.$priceset.totalTaxAmt|crmMoney}{$individual.$priceset.totalTaxAmt|crmMoney}{$individual.$priceset.totalAmtWithTax|crmMoney}
\n
\n {ts} Amount Before Tax: {/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {if !empty($totalAmount)}{$totalAmount|crmMoney:$currency}{/if} {if !empty($hookDiscount.message)}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$financialTypeName}\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 {if !empty($event.allow_selfcancelxfer) }\n
\n {ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if !empty($totalAmount)}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\n
\n\n\n\n',1,828,'event_online_receipt',0,1,0,NULL), + (33,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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 !empty($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}. {if !empty($line_items) && empty($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|crmDate:\"%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 !empty($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|crmDate:\"%D\"})\n{if $line_item.event->is_show_location}\n {$line_item.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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 !empty($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}. {if !empty($line_items) && empty($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|crmDate:\"%D %I:%M %p %Z\"}:

\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 !empty($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|crmDate:\"%D\"})
\n {if $line_item.event->is_show_location}\n {$line_item.location.address.1.display|nl2br}\n {/if}{*End of isShowLocation condition*}

\n {$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%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,829,'event_registration_receipt',1,0,0,NULL), + (34,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\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 !empty($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}. {if !empty($line_items) && empty($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|crmDate:\"%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 !empty($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|crmDate:\"%D\"})\n{if $line_item.event->is_show_location}\n {$line_item.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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 !empty($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}. {if !empty($line_items) && empty($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|crmDate:\"%D %I:%M %p %Z\"}:

\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 !empty($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|crmDate:\"%D\"})
\n {if $line_item.event->is_show_location}\n {$line_item.location.address.1.display|nl2br}\n {/if}{*End of isShowLocation condition*}

\n {$line_item.event->start_date|crmDate:\"%D %I:%M %p\"} - {$line_item.event->end_date|crmDate:\"%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,829,'event_registration_receipt',0,1,0,NULL), + (35,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {participant.role_id:label}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if !empty(\'{participant.register_date}\')}\n{ts}Registration Date{/ts}: {participant.register_date}\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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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 !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if !empty(\'{participant.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|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {participant.role_id:label}\n
\n {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\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',1,830,'participant_cancelled',1,0,0,NULL), + (36,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {participant.role_id:label}\n\n{if $isShowLocation}\n{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if !empty(\'{participant.register_date}\')}\n{ts}Registration Date{/ts}: {participant.register_date}\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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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 !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if !empty(\'{participant.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|crmDate:\"shortdate\" == $event.event_start_date|crmDate:\"shortdate\"}{$event.event_end_date|crmDate:\"Time\"}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {participant.role_id:label}\n
\n {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {participant.register_date}\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',1,830,'participant_cancelled',0,1,0,NULL), + (37,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}\n\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{if $event.allow_selfcancelxfer }\n{ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if $totalAmount}{ts}Cancellations are not refundable.{/ts}{/if}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n{ts}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\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|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%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{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar entry for this event.{/ts} {$icalFeed}\n{capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Add event to Google Calendar{/ts} {$gCalendar}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n \n \n \n\n \n\n \n \n \n {if !$isAdditional and $participant.id}\n \n \n \n \n \n \n {/if}\n {if $event.allow_selfcancelxfer }\n {ts}This event allows for{/ts}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}self service cancel or transfer{/ts}\n {/if}\n\n \n \n \n {if $event.allow_selfcancelxfer }\n \n \n \n {/if}\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}This is an invitation to complete your registration that was initially waitlisted.{/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 {ts}Click here to confirm and complete your registration{/ts}\n
\n \n \n \n \n \n \n \n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n \n \n \n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|crmDate:\"%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 {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/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=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if $totalAmount}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\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',1,831,'participant_confirm',1,0,0,NULL), + (38,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts}This is an invitation to complete your registration that was initially waitlisted.{/ts}\n\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{if $event.allow_selfcancelxfer }\n{ts 1=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if $totalAmount}{ts}Cancellations are not refundable.{/ts}{/if}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n{ts}Transfer or cancel your registration:{/ts} {$selfService}\n{/if}\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|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|crmDate:\"%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{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar entry for this event.{/ts} {$icalFeed}\n{capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Add event to Google Calendar{/ts} {$gCalendar}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n \n \n \n\n \n\n \n \n \n {if !$isAdditional and $participant.id}\n \n \n \n \n \n \n {/if}\n {if $event.allow_selfcancelxfer }\n {ts}This event allows for{/ts}\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}self service cancel or transfer{/ts}\n {/if}\n\n \n \n \n {if $event.allow_selfcancelxfer }\n \n \n \n {/if}\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts}This is an invitation to complete your registration that was initially waitlisted.{/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 {ts}Click here to confirm and complete your registration{/ts}\n
\n \n \n \n \n \n \n \n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n \n \n \n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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|crmDate:\"%Y/%m/%d\" != $group_by_day|crmDate:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|crmDate:\"%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 {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar entry for this event.{/ts}\n
\n {capture assign=gCalendar}{crmURL p=\'civicrm/event/ical\' q=\"gCalendar=1&reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Add event to Google Calendar{/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=$selfcancelxfer_time 2=$selfservice_preposition}You may transfer your registration to another participant or cancel your registration up to %1 hours %2 the event.{/ts} {if $totalAmount}{ts}Cancellations are not refundable.{/ts}{/if}
\n {capture assign=selfService}{crmURL p=\'civicrm/event/selfsvcupdate\' q=\"reset=1&pid=`$participant.id`&{contact.checksum}\" h=0 a=1 fe=1}{/capture}\n {ts}Click here to transfer or cancel your registration.{/ts}\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',1,831,'participant_confirm',0,1,0,NULL), + (39,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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 !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

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

\n
\n\n\n\n',1,832,'participant_expired',1,0,0,NULL), + (40,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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 !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

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

\n
\n\n\n\n',1,832,'participant_expired',0,1,0,NULL), + (41,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$to_participant}Your Event Registration has been transferred to %1.{/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|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/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 !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

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

\n
\n\n\n\n',1,833,'participant_transferred',1,0,0,NULL), + (42,'Events - Registration Transferred Notice','{ts 1=$event.event_title}Event Registration Transferred for %1{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{ts 1=$to_participant}Your Event Registration has been transferred to %1.{/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|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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{$event.location.address.1.display|strip_tags:false}\n{/if}{*End of isShowLocation condition*}\n\n{if !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if \'{contact.email}\'}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=\'{domain.phone}\' 2=\'{domain.email}\'}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n

{ts 1=$to_participant}Your Event Registration has been Transferred to %1.{/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 !empty($event.location.phone.1.phone) || !empty($event.location.email.1.email)}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if \'{contact.email}\'}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|crmDate:\"%Y%m%d\" == $event.event_start_date|crmDate:\"%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 {$event.location.address.1.display|nl2br}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

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

\n
\n\n\n\n',1,833,'participant_transferred',0,1,0,NULL), + (43,'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

{$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',1,834,'friend',1,0,0,NULL), + (44,'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

{$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',1,834,'friend',0,1,0,NULL), + (45,'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} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $receipt_text}\n{$receipt_text}\n{else}{ts}Thank you for this contribution.{/ts}{/if}\n\n{if empty($lineItem)}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if empty($cancelled)}\n{if empty($lineItem)}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount OR $formValues.total_amount eq 0 }\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !empty($formValues.contributionType_name)}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if !empty($lineItem)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset}\n{$taxTerm} {$priceset|string_format:\"%.2f\"} %: {$value|crmMoney:$currency}\n{elseif $priceset == 0}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if !empty($receive_date)}\n{ts}Date Received{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if !empty($formValues.paidBy)}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if !empty($formValues.check_number)}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if !empty($isPrimary) }\n{if !empty($billingName)}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\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 !empty($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 {if !empty($isPrimary)}\n \n \n \n {/if}\n\n {if !empty($customValues)}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n

{ts}Thank you for this contribution.{/ts}

\n {/if}\n
\n \n {if empty($lineItem)}\n \n \n \n \n \n \n \n {/if}\n {if empty($cancelled)}\n {if empty($lineItem)}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount OR $formValues.total_amount eq 0 }\n \n \n \n {if !empty($formValues.contributionType_name)}\n \n \n \n \n {/if}\n\n {if !empty($lineItem)}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if !empty($dataArray)}\n {if $formValues.total_amount and $totalTaxAmount}\n \n \n \n \n {/if}\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n {if !empty($receive_date)}\n \n \n \n \n {/if}\n {if !empty($formValues.paidBy)}\n \n \n \n \n {if !empty($formValues.check_number)}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n \n \n \n \n {if !empty($dataArray)}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if !empty($dataArray)}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}\n
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
\n {ts}Date Received{/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 !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\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',1,835,'membership_offline_receipt',1,0,0,NULL), + (46,'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} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\n{if $receipt_text}\n{$receipt_text}\n{else}{ts}Thank you for this contribution.{/ts}{/if}\n\n{if empty($lineItem)}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if empty($cancelled)}\n{if empty($lineItem)}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount OR $formValues.total_amount eq 0 }\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !empty($formValues.contributionType_name)}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if !empty($lineItem)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset}\n{$taxTerm} {$priceset|string_format:\"%.2f\"} %: {$value|crmMoney:$currency}\n{elseif $priceset == 0}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if !empty($receive_date)}\n{ts}Date Received{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if !empty($formValues.paidBy)}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if !empty($formValues.check_number)}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if !empty($isPrimary) }\n{if !empty($billingName)}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if !empty($credit_card_type)}\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 !empty($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 {if !empty($isPrimary)}\n \n \n \n {/if}\n\n {if !empty($customValues)}\n \n \n \n {/if}\n\n
\n {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n

{ts}Thank you for this contribution.{/ts}

\n {/if}\n
\n \n {if empty($lineItem)}\n \n \n \n \n \n \n \n {/if}\n {if empty($cancelled)}\n {if empty($lineItem)}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount OR $formValues.total_amount eq 0 }\n \n \n \n {if !empty($formValues.contributionType_name)}\n \n \n \n \n {/if}\n\n {if !empty($lineItem)}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if !empty($dataArray)}\n {if $formValues.total_amount and $totalTaxAmount}\n \n \n \n \n {/if}\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n {if !empty($receive_date)}\n \n \n \n \n {/if}\n {if !empty($formValues.paidBy)}\n \n \n \n \n {if !empty($formValues.check_number)}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n \n \n \n \n {if !empty($dataArray)}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if !empty($dataArray)}\n \n {if $line.tax_rate || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}\n
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
\n {ts}Date Received{/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 !empty($billingName)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\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',1,835,'membership_offline_receipt',0,1,0,NULL), + (47,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\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 && isset($membership_amount) && !empty($is_quick_config)}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount && !$is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{/if}\n{elseif !$useForMember && !empty($lineItem) and !empty($priceSetID) & empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$amount|crmMoney} {if isset($amount_level) } - {$amount_level} {/if}\n{/if}\n{elseif isset($membership_amount)}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if !empty($membership_trx_id)}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if !empty($is_recur)}\n{ts}This membership will be renewed automatically.{/ts}\n{if $cancelSubscriptionUrl}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($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 !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or email *}\n{if !empty($credit_card_type)}\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 !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($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 !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if !empty($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 {/if}\n\n
\n \n\n {if $membership_assign && !$useForMember}\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n {/if}\n\n\n {if $amount}\n \n \n \n\n {if !$useForMember and isset($membership_amount) and !empty($is_quick_config)}\n\n \n \n \n \n {if $amount && !$is_separate_payment }\n \n \n \n \n \n \n \n \n {/if}\n\n {elseif empty($useForMember) && !empty($lineItem) and $priceSetID and empty($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 empty($is_quick_config)}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if !empty($dataArray)}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n\n {elseif isset($membership_amount)}\n\n\n \n \n \n \n \n \n \n\n\n {/if}\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($is_monetary) and !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($membership_trx_id)}\n \n \n \n \n {/if}\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($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 !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if !empty($is_deductible) AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($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}Total{/ts}\n \n {$amount+$membership_amount|crmMoney}\n
\n \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 \n \n \n \n {if !empty($dataArray)}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if !empty($dataArray)}\n \n {if ($line.tax_rate || $line.tax_amount != \"\")}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {$amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}NO{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney} {if isset($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}This membership will be renewed automatically.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\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 !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($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',1,836,'membership_online_receipt',1,0,0,NULL), + (48,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n{if !empty($receipt_text)}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\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 && isset($membership_amount) && !empty($is_quick_config)}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount && !$is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{/if}\n{elseif !$useForMember && !empty($lineItem) and !empty($priceSetID) & empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && empty($is_quick_config)}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if !empty($dataArray)}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if !empty($dataArray)} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if !empty($dataArray)} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if !empty($dataArray)}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$amount|crmMoney} {if isset($amount_level) } - {$amount_level} {/if}\n{/if}\n{elseif isset($membership_amount)}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if !empty($receive_date)}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if !empty($is_monetary) and !empty($trxn_id)}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if !empty($membership_trx_id)}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if !empty($is_recur)}\n{ts}This membership will be renewed automatically.{/ts}\n{if $cancelSubscriptionUrl}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{/if}\n\n{if $updateSubscriptionBillingUrl}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if !empty($pcpBlock)}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if !empty($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 !empty($billingName)}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{elseif !empty($email)}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{/if} {* End billingName or email *}\n{if !empty($credit_card_type)}\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 !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if !empty($contact_email)}\n {$contact_email}\n{/if}\n{if !empty($contact_phone)}\n {$contact_phone}\n{/if}\n{/if}\n{if !empty($is_deductible) AND !empty($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 !empty($customPre)}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($trackingFields)}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if !empty($customPost)}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( !empty($trackingFields) and ! in_array( $customName, $trackingFields ) ) or empty($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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n {if !empty($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 {/if}\n\n
\n \n\n {if $membership_assign && !$useForMember}\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n {/if}\n\n\n {if $amount}\n \n \n \n\n {if !$useForMember and isset($membership_amount) and !empty($is_quick_config)}\n\n \n \n \n \n {if $amount && !$is_separate_payment }\n \n \n \n \n \n \n \n \n {/if}\n\n {elseif empty($useForMember) && !empty($lineItem) and $priceSetID and empty($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 empty($is_quick_config)}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if !empty($dataArray)}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n\n {elseif isset($membership_amount)}\n\n\n \n \n \n \n \n \n \n\n\n {/if}\n\n {if !empty($receive_date)}\n \n \n \n \n {/if}\n\n {if !empty($is_monetary) and !empty($trxn_id)}\n \n \n \n \n {/if}\n\n {if !empty($membership_trx_id)}\n \n \n \n \n {/if}\n {if !empty($is_recur)}\n \n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($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 !empty($onBehalfProfile)}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if !empty($billingName)}\n \n \n \n \n \n \n {elseif !empty($email)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($credit_card_type)}\n \n \n \n \n \n \n {/if}\n\n {if !empty($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 !empty($contact_email) OR !empty($contact_phone)}\n \n \n \n {/if}\n {if !empty($is_deductible) AND !empty($price)}\n \n \n \n {/if}\n {/if}\n\n {if !empty($customPre)}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($trackingFields)}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if !empty($customPost)}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if (!empty($trackingFields) and ! in_array($customName, $trackingFields)) or empty($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}Total{/ts}\n \n {$amount+$membership_amount|crmMoney}\n
\n \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 \n \n \n \n {if !empty($dataArray)}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if !empty($dataArray)}\n \n {if ($line.tax_rate || $line.tax_amount != \"\")}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount Before Tax:{/ts}\n \n {$amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}NO{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney} {if isset($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}This membership will be renewed automatically.{/ts}\n {if $cancelSubscriptionUrl}\n {ts 1=$cancelSubscriptionUrl}You can cancel the auto-renewal option by visiting this web page.{/ts}\n {/if}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Registered Email{/ts}\n
\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 !empty($contact_email)}\n

{$contact_email}

\n {/if}\n {if !empty($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',1,836,'membership_online_receipt',0,1,0,NULL), + (49,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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{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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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',1,837,'membership_autorenew_cancelled',1,0,0,NULL), + (50,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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{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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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',1,837,'membership_autorenew_cancelled',0,1,0,NULL), + (51,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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',1,838,'membership_autorenew_billing',1,0,0,NULL), + (52,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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',1,838,'membership_autorenew_billing',0,1,0,NULL), + (53,'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

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

\n

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

\n
\n',1,839,'test_preview',1,0,0,NULL), + (54,'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

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

\n

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

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

{$greeting},

{/if}\n

{ts}Thank you for your generous pledge.{/ts}

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

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

\n\n {if $frequency_day}\n

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

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

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

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

{$greeting},

{/if}\n

{ts}Thank you for your generous pledge.{/ts}

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

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

\n\n {if $frequency_day}\n

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

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

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

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n\n\n\n',1,840,'pledge_acknowledge',0,1,0,NULL), + (57,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/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 you 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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/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 you for your generous support.{/ts}

\n
\n\n\n\n',1,841,'pledge_reminder',1,0,0,NULL), + (58,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\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.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/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 you 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 {assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\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.id}`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/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 you for your generous support.{/ts}

\n
\n\n\n\n',1,841,'pledge_reminder',0,1,0,NULL), + (59,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts} - {contact.display_name}\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 {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',1,842,'uf_notify',1,0,0,NULL), + (60,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts} - {contact.display_name}\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 {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',1,842,'uf_notify',0,1,0,NULL), + (61,'Petition - signature added','Thank you for signing {$petition.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\nThank you for signing {$petition.title}.\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {$petition.title}.

\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true emailMode=true}\n',1,843,'petition_sign',1,0,0,NULL), + (62,'Petition - signature added','Thank you for signing {$petition.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\nThank you for signing {$petition.title}.\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\n

Thank you for signing {$petition.title}.

\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true emailMode=true}\n',1,843,'petition_sign',0,1,0,NULL), + (63,'Petition - need verification','Confirmation of signature needed for {$petition.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\nThank 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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\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,844,'petition_confirmation_needed',1,0,0,NULL), + (64,'Petition - need verification','Confirmation of signature needed for {$petition.title} - {contact.display_name}\n','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}{$greeting},{/if}\n\nThank 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','{assign var=\"greeting\" value=\"{contact.email_greeting_display}\"}{if $greeting}

{$greeting},

{/if}\n\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,844,'petition_confirmation_needed',0,1,0,NULL), (65,'Sample CiviMail Newsletter Template','Sample CiviMail Newsletter','','\n\n\n \n \n\n\n\n\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \"Replace\n    \n Your Newsletter Title\n
\n
\n \n \n \n \n \n
\n \n Greetings {contact.display_name},\n

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

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

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

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

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

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

\n Your Team\n

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

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

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

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

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

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

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

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

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

{contact.email_greeting_display},

\n

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

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

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

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

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

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

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

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

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

\n
\n
\n
\n \n\n \n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n \n \n \n \n \n
 Unsubscribe | Subscribe | Opt out
 {domain.address}
\n \n \n \n \n \n \n \n \n \n \n
\n  \n \n  
\n
 
 
\n
\n
\n \n \n\n',1,NULL,NULL,1,0,0,NULL); @@ -5716,26 +5744,26 @@ 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`, `note_date`, `created_date`, `modified_date`, `subject`, `privacy`) VALUES - (1,'civicrm_contact',159,'Connect for presentation',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-04-08 21:35:56',NULL,'0'), - (2,'civicrm_contact',65,'Connect for presentation',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2021-11-24 23:14:04',NULL,'0'), - (3,'civicrm_contact',103,'Send newsletter for April 2005',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-06-13 14:14:56',NULL,'0'), - (4,'civicrm_contact',143,'Reminder screening of \"Black\" on next Friday',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-04-12 20:28:52',NULL,'0'), - (5,'civicrm_contact',32,'Arrange for cricket match with Sunil Gavaskar',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-07-31 16:00:12',NULL,'0'), - (6,'civicrm_contact',42,'Arrange collection of funds from members',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-07-23 19:16:20',NULL,'0'), - (7,'civicrm_contact',198,'Get the registration done for NGO status',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-08-29 02:01:12',NULL,'0'), - (8,'civicrm_contact',133,'Send reminder for annual dinner',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-10-07 15:55:15',NULL,'0'), - (9,'civicrm_contact',2,'Send reminder for annual dinner',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-09-22 15:21:17',NULL,'0'), - (10,'civicrm_contact',181,'Chart out route map for next 10k run',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2021-11-30 10:03:38',NULL,'0'), - (11,'civicrm_contact',171,'Send reminder for annual dinner',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2021-12-21 15:24:55',NULL,'0'), - (12,'civicrm_contact',196,'Invite members for the Steve Prefontaine 10k dream run',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-04-24 15:32:37',NULL,'0'), - (13,'civicrm_contact',16,'Send newsletter for April 2005',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2021-11-19 05:05:39',NULL,'0'), - (14,'civicrm_contact',64,'Send reminder for annual dinner',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-09-25 08:20:58',NULL,'0'), - (15,'civicrm_contact',180,'Contact the Commissioner of Charities',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-03-23 13:10:51',NULL,'0'), - (16,'civicrm_contact',36,'Reminder screening of \"Black\" on next Friday',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-03-23 18:11:17',NULL,'0'), - (17,'civicrm_contact',120,'Send reminder for annual dinner',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-07-07 20:30:38',NULL,'0'), - (18,'civicrm_contact',48,'Chart out route map for next 10k run',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-05-23 22:10:04',NULL,'0'), - (19,'civicrm_contact',32,'Arrange collection of funds from members',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-08-27 06:47:19',NULL,'0'), - (20,'civicrm_contact',144,'Arrange collection of funds from members',1,'2022-10-12 03:42:24','2022-10-12 03:42:24','2022-07-20 00:43:30',NULL,'0'); + (1,'civicrm_contact',153,'Contact the Commissioner of Charities',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-01-11 19:48:59',NULL,'0'), + (2,'civicrm_contact',200,'Connect for presentation',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-02-01 13:56:29',NULL,'0'), + (3,'civicrm_contact',131,'Invite members for the Steve Prefontaine 10k dream run',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-08-25 05:15:50',NULL,'0'), + (4,'civicrm_contact',50,'Chart out route map for next 10k run',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-05-18 03:35:04',NULL,'0'), + (5,'civicrm_contact',143,'Connect for presentation',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-05-27 16:40:05',NULL,'0'), + (6,'civicrm_contact',19,'Contact the Commissioner of Charities',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2021-11-02 02:49:09',NULL,'0'), + (7,'civicrm_contact',101,'Arrange for cricket match with Sunil Gavaskar',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-06-05 02:41:01',NULL,'0'), + (8,'civicrm_contact',104,'Arrange for cricket match with Sunil Gavaskar',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2021-11-24 04:56:26',NULL,'0'), + (9,'civicrm_contact',71,'Invite members for the Steve Prefontaine 10k dream run',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-09-20 13:11:39',NULL,'0'), + (10,'civicrm_contact',171,'Connect for presentation',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2021-12-31 03:30:05',NULL,'0'), + (11,'civicrm_contact',79,'Contact the Commissioner of Charities',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-08-04 01:34:33',NULL,'0'), + (12,'civicrm_contact',28,'Contact the Commissioner of Charities',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-03-03 17:06:54',NULL,'0'), + (13,'civicrm_contact',10,'Chart out route map for next 10k run',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-04-14 11:07:21',NULL,'0'), + (14,'civicrm_contact',103,'Arrange collection of funds from members',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-09-04 19:09:06',NULL,'0'), + (15,'civicrm_contact',51,'Get the registration done for NGO status',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-03-07 22:38:16',NULL,'0'), + (16,'civicrm_contact',178,'Organize the Terry Fox run',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-01-09 17:37:51',NULL,'0'), + (17,'civicrm_contact',153,'Send newsletter for April 2005',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-03-13 12:34:52',NULL,'0'), + (18,'civicrm_contact',115,'Reminder screening of \"Black\" on next Friday',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-03-24 15:11:15',NULL,'0'), + (19,'civicrm_contact',104,'Connect for presentation',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-01-05 11:59:17',NULL,'0'), + (20,'civicrm_contact',178,'Connect for presentation',1,'2022-10-17 14:12:06','2022-10-17 14:12:06','2022-01-18 09:34:02',NULL,'0'); /*!40000 ALTER TABLE `civicrm_note` ENABLE KEYS */; UNLOCK TABLES; @@ -6439,295 +6467,297 @@ INSERT INTO `civicrm_option_value` (`id`, `option_group_id`, `label`, `value`, ` (576,78,'Previous 2 calendar months','previous_2.month','previous_2.month',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), (577,78,'Previous 2 quarters','previous_2.quarter','previous_2.quarter',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), (578,78,'Previous 2 calendar years','previous_2.year','previous_2.year',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (579,78,'Day prior to yesterday','previous_before.day','previous_before.day',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (580,78,'Week prior to previous week','previous_before.week','previous_before.week',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (581,78,'Month prior to previous calendar month','previous_before.month','previous_before.month',NULL,NULL,NULL,56,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (582,78,'Quarter prior to previous quarter','previous_before.quarter','previous_before.quarter',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (583,78,'Year prior to previous calendar year','previous_before.year','previous_before.year',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (584,78,'From end of previous week','greater_previous.week','greater_previous.week',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (585,78,'From end of previous calendar month','greater_previous.month','greater_previous.month',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (586,78,'From end of previous quarter','greater_previous.quarter','greater_previous.quarter',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (587,78,'From end of previous calendar year','greater_previous.year','greater_previous.year',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (588,79,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (589,79,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (590,79,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (591,79,'In Progress','5','In Progress',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (592,79,'Overdue','6','Overdue',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (593,80,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (594,80,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (595,80,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (596,80,'Failed','4','Failed',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (597,80,'In Progress','5','In Progress',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (598,80,'Overdue','6','Overdue',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (599,80,'Processing','7','Processing',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (600,80,'Failing','8','Failing',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (601,82,'None','1','NONE',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (602,82,'By relationship to case client','2','BY_RELATIONSHIP',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (603,82,'Specific contact','3','SPECIFIC_CONTACT',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (604,82,'User creating the case','4','USER_CREATING_THE_CASE',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (605,83,'Financial Transactions','civicrm_financial_trxn','civicrm_financial_trxn',NULL,0,1,1,NULL,0,0,1,2,NULL,NULL,NULL,NULL), - (606,29,'\"FIXME\" ','1','\"FIXME\" ',NULL,0,1,1,'Default domain email address and from name.',0,0,1,NULL,1,NULL,NULL,NULL), - (607,54,'Approved','1','Approved',NULL,0,1,1,NULL,0,1,1,4,1,NULL,NULL,NULL), - (608,54,'Rejected','2','Rejected',NULL,0,0,2,NULL,0,1,1,4,1,NULL,NULL,NULL), - (609,54,'None','3','None',NULL,0,0,3,NULL,0,1,1,4,1,NULL,NULL,NULL), - (610,56,'Survey','Survey','civicrm_survey',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (611,56,'Cases','Case','civicrm_case','case_type_id',0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (612,84,'Abkhaz','ab','ab_GE',NULL,0,0,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (613,84,'Afar','aa','aa_ET',NULL,0,0,2,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (614,84,'Afrikaans','af','af_ZA',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (615,84,'Akan','ak','ak_GH',NULL,0,0,4,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (616,84,'Albanian','sq','sq_AL',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (617,84,'Amharic','am','am_ET',NULL,0,0,6,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (618,84,'Arabic','ar','ar_EG',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (619,84,'Aragonese','an','an_ES',NULL,0,0,8,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (620,84,'Armenian','hy','hy_AM',NULL,0,0,9,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (621,84,'Assamese','as','as_IN',NULL,0,0,10,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (622,84,'Avaric','av','av_RU',NULL,0,0,11,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (623,84,'Avestan','ae','ae_XX',NULL,0,0,12,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (624,84,'Aymara','ay','ay_BO',NULL,0,0,13,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (625,84,'Azerbaijani','az','az_AZ',NULL,0,0,14,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (626,84,'Bambara','bm','bm_ML',NULL,0,0,15,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (627,84,'Bashkir','ba','ba_RU',NULL,0,0,16,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (628,84,'Basque','eu','eu_ES',NULL,0,0,17,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (629,84,'Belarusian','be','be_BY',NULL,0,0,18,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (630,84,'Bengali','bn','bn_BD',NULL,0,0,19,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (631,84,'Bihari','bh','bh_IN',NULL,0,0,20,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (632,84,'Bislama','bi','bi_VU',NULL,0,0,21,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (633,84,'Bosnian','bs','bs_BA',NULL,0,0,22,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (634,84,'Breton','br','br_FR',NULL,0,0,23,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (635,84,'Bulgarian','bg','bg_BG',NULL,0,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (636,84,'Burmese','my','my_MM',NULL,0,0,25,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (637,84,'Catalan; Valencian','ca','ca_ES',NULL,0,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (638,84,'Chamorro','ch','ch_GU',NULL,0,0,27,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (639,84,'Chechen','ce','ce_RU',NULL,0,0,28,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (640,84,'Chichewa; Chewa; Nyanja','ny','ny_MW',NULL,0,0,29,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (641,84,'Chinese (China)','zh','zh_CN',NULL,0,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (642,84,'Chinese (Taiwan)','zh','zh_TW',NULL,0,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (643,84,'Chuvash','cv','cv_RU',NULL,0,0,32,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (644,84,'Cornish','kw','kw_GB',NULL,0,0,33,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (645,84,'Corsican','co','co_FR',NULL,0,0,34,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (646,84,'Cree','cr','cr_CA',NULL,0,0,35,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (647,84,'Croatian','hr','hr_HR',NULL,0,0,36,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (648,84,'Czech','cs','cs_CZ',NULL,0,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (649,84,'Danish','da','da_DK',NULL,0,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (650,84,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,0,0,39,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (651,84,'Dutch (Netherlands)','nl','nl_NL',NULL,0,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (652,84,'Dutch (Belgium)','nl','nl_BE',NULL,0,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (653,84,'Dzongkha','dz','dz_BT',NULL,0,0,42,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (654,84,'English (Australia)','en','en_AU',NULL,0,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (655,84,'English (Canada)','en','en_CA',NULL,0,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (656,84,'English (United Kingdom)','en','en_GB',NULL,0,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (657,84,'English (United States)','en','en_US',NULL,0,1,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (658,84,'Esperanto','eo','eo_XX',NULL,0,0,47,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (659,84,'Estonian','et','et_EE',NULL,0,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (660,84,'Ewe','ee','ee_GH',NULL,0,0,49,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (661,84,'Faroese','fo','fo_FO',NULL,0,0,50,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (662,84,'Fijian','fj','fj_FJ',NULL,0,0,51,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (663,84,'Finnish','fi','fi_FI',NULL,0,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (664,84,'French (Canada)','fr','fr_CA',NULL,0,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (665,84,'French (France)','fr','fr_FR',NULL,0,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (666,84,'Fula; Fulah; Pulaar; Pular','ff','ff_SN',NULL,0,0,55,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (667,84,'Galician','gl','gl_ES',NULL,0,0,56,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (668,84,'Georgian','ka','ka_GE',NULL,0,0,57,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (669,84,'German','de','de_DE',NULL,0,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (670,84,'German (Swiss)','de','de_CH',NULL,0,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (671,84,'Greek, Modern','el','el_GR',NULL,0,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (672,84,'Guarani­','gn','gn_PY',NULL,0,0,61,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (673,84,'Gujarati','gu','gu_IN',NULL,0,0,62,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (674,84,'Haitian; Haitian Creole','ht','ht_HT',NULL,0,0,63,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (675,84,'Hausa','ha','ha_NG',NULL,0,0,64,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (676,84,'Hebrew (modern)','he','he_IL',NULL,0,0,65,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (677,84,'Herero','hz','hz_NA',NULL,0,0,66,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (678,84,'Hindi','hi','hi_IN',NULL,0,0,67,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (679,84,'Hiri Motu','ho','ho_PG',NULL,0,0,68,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (680,84,'Hungarian','hu','hu_HU',NULL,0,0,69,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (681,84,'Interlingua','ia','ia_XX',NULL,0,0,70,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (682,84,'Indonesian','id','id_ID',NULL,0,0,71,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (683,84,'Interlingue','ie','ie_XX',NULL,0,0,72,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (684,84,'Irish','ga','ga_IE',NULL,0,0,73,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (685,84,'Igbo','ig','ig_NG',NULL,0,0,74,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (686,84,'Inupiaq','ik','ik_US',NULL,0,0,75,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (687,84,'Ido','io','io_XX',NULL,0,0,76,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (688,84,'Icelandic','is','is_IS',NULL,0,0,77,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (689,84,'Italian','it','it_IT',NULL,0,0,78,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (690,84,'Inuktitut','iu','iu_CA',NULL,0,0,79,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (691,84,'Japanese','ja','ja_JP',NULL,0,0,80,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (692,84,'Javanese','jv','jv_ID',NULL,0,0,81,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (693,84,'Kalaallisut, Greenlandic','kl','kl_GL',NULL,0,0,82,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (694,84,'Kannada','kn','kn_IN',NULL,0,0,83,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (695,84,'Kanuri','kr','kr_NE',NULL,0,0,84,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (696,84,'Kashmiri','ks','ks_IN',NULL,0,0,85,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (697,84,'Kazakh','kk','kk_KZ',NULL,0,0,86,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (698,84,'Khmer','km','km_KH',NULL,0,0,87,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (699,84,'Kikuyu, Gikuyu','ki','ki_KE',NULL,0,0,88,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (700,84,'Kinyarwanda','rw','rw_RW',NULL,0,0,89,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (701,84,'Kirghiz, Kyrgyz','ky','ky_KG',NULL,0,0,90,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (702,84,'Komi','kv','kv_RU',NULL,0,0,91,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (703,84,'Kongo','kg','kg_CD',NULL,0,0,92,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (704,84,'Korean','ko','ko_KR',NULL,0,0,93,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (705,84,'Kurdish','ku','ku_IQ',NULL,0,0,94,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (706,84,'Kwanyama, Kuanyama','kj','kj_NA',NULL,0,0,95,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (707,84,'Latin','la','la_VA',NULL,0,0,96,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (708,84,'Luxembourgish, Letzeburgesch','lb','lb_LU',NULL,0,0,97,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (709,84,'Luganda','lg','lg_UG',NULL,0,0,98,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (710,84,'Limburgish, Limburgan, Limburger','li','li_NL',NULL,0,0,99,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (711,84,'Lingala','ln','ln_CD',NULL,0,0,100,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (712,84,'Lao','lo','lo_LA',NULL,0,0,101,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (713,84,'Lithuanian','lt','lt_LT',NULL,0,0,102,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (714,84,'Luba-Katanga','lu','lu_CD',NULL,0,0,103,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (715,84,'Latvian','lv','lv_LV',NULL,0,0,104,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (716,84,'Manx','gv','gv_IM',NULL,0,0,105,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (717,84,'Macedonian','mk','mk_MK',NULL,0,0,106,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (718,84,'Malagasy','mg','mg_MG',NULL,0,0,107,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (719,84,'Malay','ms','ms_MY',NULL,0,0,108,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (720,84,'Malayalam','ml','ml_IN',NULL,0,0,109,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (721,84,'Maltese','mt','mt_MT',NULL,0,0,110,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (722,84,'Māori','mi','mi_NZ',NULL,0,0,111,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (723,84,'Marathi','mr','mr_IN',NULL,0,0,112,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (724,84,'Marshallese','mh','mh_MH',NULL,0,0,113,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (725,84,'Mongolian','mn','mn_MN',NULL,0,0,114,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (726,84,'Nauru','na','na_NR',NULL,0,0,115,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (727,84,'Navajo, Navaho','nv','nv_US',NULL,0,0,116,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (728,84,'Norwegian Bokmål','nb','nb_NO',NULL,0,0,117,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (729,84,'North Ndebele','nd','nd_ZW',NULL,0,0,118,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (730,84,'Nepali','ne','ne_NP',NULL,0,0,119,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (731,84,'Ndonga','ng','ng_NA',NULL,0,0,120,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (732,84,'Norwegian Nynorsk','nn','nn_NO',NULL,0,0,121,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (733,84,'Norwegian','no','no_NO',NULL,0,0,122,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (734,84,'Nuosu','ii','ii_CN',NULL,0,0,123,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (735,84,'South Ndebele','nr','nr_ZA',NULL,0,0,124,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (736,84,'Occitan (after 1500)','oc','oc_FR',NULL,0,0,125,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (737,84,'Ojibwa','oj','oj_CA',NULL,0,0,126,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (738,84,'Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic','cu','cu_BG',NULL,0,0,127,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (739,84,'Oromo','om','om_ET',NULL,0,0,128,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (740,84,'Oriya','or','or_IN',NULL,0,0,129,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (741,84,'Ossetian, Ossetic','os','os_GE',NULL,0,0,130,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (742,84,'Panjabi, Punjabi','pa','pa_IN',NULL,0,0,131,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (743,84,'Pali','pi','pi_KH',NULL,0,0,132,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (744,84,'Persian (Iran)','fa','fa_IR',NULL,0,0,133,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (745,84,'Polish','pl','pl_PL',NULL,0,0,134,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (746,84,'Pashto, Pushto','ps','ps_AF',NULL,0,0,135,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (747,84,'Portuguese (Brazil)','pt','pt_BR',NULL,0,0,136,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (748,84,'Portuguese (Portugal)','pt','pt_PT',NULL,0,0,137,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (749,84,'Quechua','qu','qu_PE',NULL,0,0,138,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (750,84,'Romansh','rm','rm_CH',NULL,0,0,139,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (751,84,'Kirundi','rn','rn_BI',NULL,0,0,140,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (752,84,'Romanian, Moldavian, Moldovan','ro','ro_RO',NULL,0,0,141,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (753,84,'Russian','ru','ru_RU',NULL,0,0,142,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (754,84,'Sanskrit','sa','sa_IN',NULL,0,0,143,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (755,84,'Sardinian','sc','sc_IT',NULL,0,0,144,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (756,84,'Sindhi','sd','sd_IN',NULL,0,0,145,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (757,84,'Northern Sami','se','se_NO',NULL,0,0,146,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (758,84,'Samoan','sm','sm_WS',NULL,0,0,147,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (759,84,'Sango','sg','sg_CF',NULL,0,0,148,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (760,84,'Serbian','sr','sr_RS',NULL,0,0,149,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (761,84,'Scottish Gaelic; Gaelic','gd','gd_GB',NULL,0,0,150,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (762,84,'Shona','sn','sn_ZW',NULL,0,0,151,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (763,84,'Sinhala, Sinhalese','si','si_LK',NULL,0,0,152,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (764,84,'Slovak','sk','sk_SK',NULL,0,0,153,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (765,84,'Slovene','sl','sl_SI',NULL,0,0,154,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (766,84,'Somali','so','so_SO',NULL,0,0,155,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (767,84,'Southern Sotho','st','st_ZA',NULL,0,0,156,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (768,84,'Spanish; Castilian (Spain)','es','es_ES',NULL,0,0,157,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (769,84,'Spanish; Castilian (Mexico)','es','es_MX',NULL,0,0,158,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (770,84,'Spanish; Castilian (Puerto Rico)','es','es_PR',NULL,0,0,159,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (771,84,'Sundanese','su','su_ID',NULL,0,0,160,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (772,84,'Swahili','sw','sw_TZ',NULL,0,0,161,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (773,84,'Swati','ss','ss_ZA',NULL,0,0,162,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (774,84,'Swedish','sv','sv_SE',NULL,0,0,163,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (775,84,'Tamil','ta','ta_IN',NULL,0,0,164,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (776,84,'Telugu','te','te_IN',NULL,0,0,165,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (777,84,'Tajik','tg','tg_TJ',NULL,0,0,166,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (778,84,'Thai','th','th_TH',NULL,0,0,167,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (779,84,'Tigrinya','ti','ti_ET',NULL,0,0,168,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (780,84,'Tibetan Standard, Tibetan, Central','bo','bo_CN',NULL,0,0,169,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (781,84,'Turkmen','tk','tk_TM',NULL,0,0,170,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (782,84,'Tagalog','tl','tl_PH',NULL,0,0,171,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (783,84,'Tswana','tn','tn_ZA',NULL,0,0,172,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (784,84,'Tonga (Tonga Islands)','to','to_TO',NULL,0,0,173,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (785,84,'Turkish','tr','tr_TR',NULL,0,0,174,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (786,84,'Tsonga','ts','ts_ZA',NULL,0,0,175,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (787,84,'Tatar','tt','tt_RU',NULL,0,0,176,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (788,84,'Twi','tw','tw_GH',NULL,0,0,177,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (789,84,'Tahitian','ty','ty_PF',NULL,0,0,178,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (790,84,'Uighur, Uyghur','ug','ug_CN',NULL,0,0,179,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (791,84,'Ukrainian','uk','uk_UA',NULL,0,0,180,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (792,84,'Urdu','ur','ur_PK',NULL,0,0,181,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (793,84,'Uzbek','uz','uz_UZ',NULL,0,0,182,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (794,84,'Venda','ve','ve_ZA',NULL,0,0,183,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (795,84,'Vietnamese','vi','vi_VN',NULL,0,0,184,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (796,84,'Volapük','vo','vo_XX',NULL,0,0,185,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (797,84,'Walloon','wa','wa_BE',NULL,0,0,186,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (798,84,'Welsh','cy','cy_GB',NULL,0,0,187,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (799,84,'Wolof','wo','wo_SN',NULL,0,0,188,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (800,84,'Western Frisian','fy','fy_NL',NULL,0,0,189,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (801,84,'Xhosa','xh','xh_ZA',NULL,0,0,190,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (802,84,'Yiddish','yi','yi_US',NULL,0,0,191,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (803,84,'Yoruba','yo','yo_NG',NULL,0,0,192,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (804,84,'Zhuang, Chuang','za','za_CN',NULL,0,0,193,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (805,84,'Zulu','zu','zu_ZA',NULL,0,0,194,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), - (806,85,'In Person','1','in_person',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (807,85,'Phone','2','phone',NULL,0,1,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (808,85,'Email','3','email',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (809,85,'Fax','4','fax',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (810,85,'Letter Mail','5','letter_mail',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (811,86,'Cases - Send Copy of an Activity','1','case_activity',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (812,87,'Contributions - Duplicate Organization Alert','1','contribution_dupalert',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (813,87,'Contributions - Receipt (off-line)','2','contribution_offline_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (814,87,'Contributions - Receipt (on-line)','3','contribution_online_receipt',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (815,87,'Contributions - Invoice','4','contribution_invoice_receipt',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (816,87,'Contributions - Recurring Start and End Notification','5','contribution_recurring_notify',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (817,87,'Contributions - Recurring Cancellation Notification','6','contribution_recurring_cancelled',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (818,87,'Contributions - Recurring Billing Updates','7','contribution_recurring_billing',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (819,87,'Contributions - Recurring Updates','8','contribution_recurring_edit',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (820,87,'Personal Campaign Pages - Admin Notification','9','pcp_notify',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (821,87,'Personal Campaign Pages - Supporter Status Change Notification','10','pcp_status_change',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (822,87,'Personal Campaign Pages - Supporter Welcome','11','pcp_supporter_notify',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (823,87,'Personal Campaign Pages - Owner Notification','12','pcp_owner_notify',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (824,87,'Additional Payment Receipt or Refund Notification','13','payment_or_refund_notification',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (825,88,'Events - Registration Confirmation and Receipt (off-line)','1','event_offline_receipt',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (826,88,'Events - Registration Confirmation and Receipt (on-line)','2','event_online_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (827,88,'Events - Receipt only','3','event_registration_receipt',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (828,88,'Events - Registration Cancellation Notice','4','participant_cancelled',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (829,88,'Events - Registration Confirmation Invite','5','participant_confirm',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (830,88,'Events - Pending Registration Expiration Notice','6','participant_expired',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (831,88,'Events - Registration Transferred Notice','7','participant_transferred',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (832,89,'Tell-a-Friend Email','1','friend',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (833,90,'Memberships - Signup and Renewal Receipts (off-line)','1','membership_offline_receipt',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (834,90,'Memberships - Receipt (on-line)','2','membership_online_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (835,90,'Memberships - Auto-renew Cancellation Notification','3','membership_autorenew_cancelled',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (836,90,'Memberships - Auto-renew Billing Updates','4','membership_autorenew_billing',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (837,91,'Test-drive - Receipt Header','1','test_preview',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (838,92,'Pledges - Acknowledgement','1','pledge_acknowledge',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (839,92,'Pledges - Payment Reminder','2','pledge_reminder',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (840,93,'Profiles - Admin Notification','1','uf_notify',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (841,94,'Petition - signature added','1','petition_sign',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (842,94,'Petition - need verification','2','petition_confirmation_needed',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (843,95,'In Honor of','1','in_honor_of',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (844,95,'In Memory of','2','in_memory_of',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (845,95,'Solicited','3','solicited',NULL,0,1,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (846,95,'Household','4','household',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (847,95,'Workplace Giving','5','workplace',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (848,95,'Foundation Affiliate','6','foundation_affiliate',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (849,95,'3rd-party Service','7','3rd-party_service',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (850,95,'Donor-advised Fund','8','donor-advised_fund',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (851,95,'Matched Gift','9','matched_gift',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), - (852,95,'Personal Campaign Page','10','pcp',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (853,95,'Gift','11','gift',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), - (854,96,'Contacts','Contact','Contact',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (855,96,'Relationships','Relationship','Relationship',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (856,96,'Activities','Activity','Activity',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (857,96,'Notes','Note','Note',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (858,96,'Groups','Group','Group',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (859,96,'Cases','Case','Case',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (860,96,'Contributions','Contribution','Contribution',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (861,96,'Participants','Participant','Participant',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (862,96,'Memberships','Membership','Membership',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (863,96,'Pledges','Pledge','Pledge',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (864,96,'Events','Event','Event',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (865,96,'Campaigns','Campaign','Campaign',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), - (866,2,'Interview','55','Interview',NULL,0,NULL,55,'Conduct a phone or in person interview.',0,0,1,NULL,NULL,NULL,'fa-comment-o',NULL), - (867,8,'Advisory Board','3','Advisory Board',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL); + (579,78,'Previous 2 fiscal years','previous_2.fiscal_year','previous_2.fiscal_year',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (580,78,'Day prior to yesterday','previous_before.day','previous_before.day',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (581,78,'Week prior to previous week','previous_before.week','previous_before.week',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (582,78,'Month prior to previous calendar month','previous_before.month','previous_before.month',NULL,NULL,NULL,57,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (583,78,'Quarter prior to previous quarter','previous_before.quarter','previous_before.quarter',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (584,78,'Year prior to previous calendar year','previous_before.year','previous_before.year',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (585,78,'Fiscal year prior to previous fiscal year','previous_before.fiscal_year','previous_before.fiscal_year',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (586,78,'From end of previous week','greater_previous.week','greater_previous.week',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (587,78,'From end of previous calendar month','greater_previous.month','greater_previous.month',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (588,78,'From end of previous quarter','greater_previous.quarter','greater_previous.quarter',NULL,NULL,0,63,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (589,78,'From end of previous calendar year','greater_previous.year','greater_previous.year',NULL,NULL,0,64,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (590,79,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (591,79,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (592,79,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (593,79,'In Progress','5','In Progress',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (594,79,'Overdue','6','Overdue',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (595,80,'Completed','1','Completed',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (596,80,'Pending','2','Pending',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (597,80,'Cancelled','3','Cancelled',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (598,80,'Failed','4','Failed',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (599,80,'In Progress','5','In Progress',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (600,80,'Overdue','6','Overdue',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (601,80,'Processing','7','Processing',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (602,80,'Failing','8','Failing',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (603,82,'None','1','NONE',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (604,82,'By relationship to case client','2','BY_RELATIONSHIP',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (605,82,'Specific contact','3','SPECIFIC_CONTACT',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (606,82,'User creating the case','4','USER_CREATING_THE_CASE',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (607,83,'Financial Transactions','civicrm_financial_trxn','civicrm_financial_trxn',NULL,0,1,1,NULL,0,0,1,2,NULL,NULL,NULL,NULL), + (608,29,'\"FIXME\" ','1','\"FIXME\" ',NULL,0,1,1,'Default domain email address and from name.',0,0,1,NULL,1,NULL,NULL,NULL), + (609,54,'Approved','1','Approved',NULL,0,1,1,NULL,0,1,1,4,1,NULL,NULL,NULL), + (610,54,'Rejected','2','Rejected',NULL,0,0,2,NULL,0,1,1,4,1,NULL,NULL,NULL), + (611,54,'None','3','None',NULL,0,0,3,NULL,0,1,1,4,1,NULL,NULL,NULL), + (612,56,'Survey','Survey','civicrm_survey',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (613,56,'Cases','Case','civicrm_case','case_type_id',0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (614,84,'Abkhaz','ab','ab_GE',NULL,0,0,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (615,84,'Afar','aa','aa_ET',NULL,0,0,2,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (616,84,'Afrikaans','af','af_ZA',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (617,84,'Akan','ak','ak_GH',NULL,0,0,4,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (618,84,'Albanian','sq','sq_AL',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (619,84,'Amharic','am','am_ET',NULL,0,0,6,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (620,84,'Arabic','ar','ar_EG',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (621,84,'Aragonese','an','an_ES',NULL,0,0,8,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (622,84,'Armenian','hy','hy_AM',NULL,0,0,9,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (623,84,'Assamese','as','as_IN',NULL,0,0,10,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (624,84,'Avaric','av','av_RU',NULL,0,0,11,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (625,84,'Avestan','ae','ae_XX',NULL,0,0,12,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (626,84,'Aymara','ay','ay_BO',NULL,0,0,13,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (627,84,'Azerbaijani','az','az_AZ',NULL,0,0,14,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (628,84,'Bambara','bm','bm_ML',NULL,0,0,15,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (629,84,'Bashkir','ba','ba_RU',NULL,0,0,16,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (630,84,'Basque','eu','eu_ES',NULL,0,0,17,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (631,84,'Belarusian','be','be_BY',NULL,0,0,18,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (632,84,'Bengali','bn','bn_BD',NULL,0,0,19,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (633,84,'Bihari','bh','bh_IN',NULL,0,0,20,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (634,84,'Bislama','bi','bi_VU',NULL,0,0,21,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (635,84,'Bosnian','bs','bs_BA',NULL,0,0,22,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (636,84,'Breton','br','br_FR',NULL,0,0,23,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (637,84,'Bulgarian','bg','bg_BG',NULL,0,0,24,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (638,84,'Burmese','my','my_MM',NULL,0,0,25,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (639,84,'Catalan; Valencian','ca','ca_ES',NULL,0,0,26,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (640,84,'Chamorro','ch','ch_GU',NULL,0,0,27,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (641,84,'Chechen','ce','ce_RU',NULL,0,0,28,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (642,84,'Chichewa; Chewa; Nyanja','ny','ny_MW',NULL,0,0,29,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (643,84,'Chinese (China)','zh','zh_CN',NULL,0,0,30,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (644,84,'Chinese (Taiwan)','zh','zh_TW',NULL,0,0,31,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (645,84,'Chuvash','cv','cv_RU',NULL,0,0,32,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (646,84,'Cornish','kw','kw_GB',NULL,0,0,33,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (647,84,'Corsican','co','co_FR',NULL,0,0,34,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (648,84,'Cree','cr','cr_CA',NULL,0,0,35,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (649,84,'Croatian','hr','hr_HR',NULL,0,0,36,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (650,84,'Czech','cs','cs_CZ',NULL,0,0,37,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (651,84,'Danish','da','da_DK',NULL,0,0,38,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (652,84,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,0,0,39,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (653,84,'Dutch (Netherlands)','nl','nl_NL',NULL,0,0,40,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (654,84,'Dutch (Belgium)','nl','nl_BE',NULL,0,0,41,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (655,84,'Dzongkha','dz','dz_BT',NULL,0,0,42,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (656,84,'English (Australia)','en','en_AU',NULL,0,0,43,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (657,84,'English (Canada)','en','en_CA',NULL,0,0,44,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (658,84,'English (United Kingdom)','en','en_GB',NULL,0,0,45,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (659,84,'English (United States)','en','en_US',NULL,0,1,46,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (660,84,'Esperanto','eo','eo_XX',NULL,0,0,47,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (661,84,'Estonian','et','et_EE',NULL,0,0,48,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (662,84,'Ewe','ee','ee_GH',NULL,0,0,49,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (663,84,'Faroese','fo','fo_FO',NULL,0,0,50,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (664,84,'Fijian','fj','fj_FJ',NULL,0,0,51,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (665,84,'Finnish','fi','fi_FI',NULL,0,0,52,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (666,84,'French (Canada)','fr','fr_CA',NULL,0,0,53,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (667,84,'French (France)','fr','fr_FR',NULL,0,0,54,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (668,84,'Fula; Fulah; Pulaar; Pular','ff','ff_SN',NULL,0,0,55,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (669,84,'Galician','gl','gl_ES',NULL,0,0,56,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (670,84,'Georgian','ka','ka_GE',NULL,0,0,57,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (671,84,'German','de','de_DE',NULL,0,0,58,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (672,84,'German (Swiss)','de','de_CH',NULL,0,0,59,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (673,84,'Greek, Modern','el','el_GR',NULL,0,0,60,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (674,84,'Guarani­','gn','gn_PY',NULL,0,0,61,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (675,84,'Gujarati','gu','gu_IN',NULL,0,0,62,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (676,84,'Haitian; Haitian Creole','ht','ht_HT',NULL,0,0,63,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (677,84,'Hausa','ha','ha_NG',NULL,0,0,64,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (678,84,'Hebrew (modern)','he','he_IL',NULL,0,0,65,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (679,84,'Herero','hz','hz_NA',NULL,0,0,66,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (680,84,'Hindi','hi','hi_IN',NULL,0,0,67,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (681,84,'Hiri Motu','ho','ho_PG',NULL,0,0,68,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (682,84,'Hungarian','hu','hu_HU',NULL,0,0,69,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (683,84,'Interlingua','ia','ia_XX',NULL,0,0,70,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (684,84,'Indonesian','id','id_ID',NULL,0,0,71,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (685,84,'Interlingue','ie','ie_XX',NULL,0,0,72,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (686,84,'Irish','ga','ga_IE',NULL,0,0,73,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (687,84,'Igbo','ig','ig_NG',NULL,0,0,74,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (688,84,'Inupiaq','ik','ik_US',NULL,0,0,75,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (689,84,'Ido','io','io_XX',NULL,0,0,76,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (690,84,'Icelandic','is','is_IS',NULL,0,0,77,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (691,84,'Italian','it','it_IT',NULL,0,0,78,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (692,84,'Inuktitut','iu','iu_CA',NULL,0,0,79,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (693,84,'Japanese','ja','ja_JP',NULL,0,0,80,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (694,84,'Javanese','jv','jv_ID',NULL,0,0,81,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (695,84,'Kalaallisut, Greenlandic','kl','kl_GL',NULL,0,0,82,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (696,84,'Kannada','kn','kn_IN',NULL,0,0,83,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (697,84,'Kanuri','kr','kr_NE',NULL,0,0,84,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (698,84,'Kashmiri','ks','ks_IN',NULL,0,0,85,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (699,84,'Kazakh','kk','kk_KZ',NULL,0,0,86,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (700,84,'Khmer','km','km_KH',NULL,0,0,87,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (701,84,'Kikuyu, Gikuyu','ki','ki_KE',NULL,0,0,88,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (702,84,'Kinyarwanda','rw','rw_RW',NULL,0,0,89,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (703,84,'Kirghiz, Kyrgyz','ky','ky_KG',NULL,0,0,90,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (704,84,'Komi','kv','kv_RU',NULL,0,0,91,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (705,84,'Kongo','kg','kg_CD',NULL,0,0,92,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (706,84,'Korean','ko','ko_KR',NULL,0,0,93,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (707,84,'Kurdish','ku','ku_IQ',NULL,0,0,94,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (708,84,'Kwanyama, Kuanyama','kj','kj_NA',NULL,0,0,95,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (709,84,'Latin','la','la_VA',NULL,0,0,96,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (710,84,'Luxembourgish, Letzeburgesch','lb','lb_LU',NULL,0,0,97,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (711,84,'Luganda','lg','lg_UG',NULL,0,0,98,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (712,84,'Limburgish, Limburgan, Limburger','li','li_NL',NULL,0,0,99,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (713,84,'Lingala','ln','ln_CD',NULL,0,0,100,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (714,84,'Lao','lo','lo_LA',NULL,0,0,101,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (715,84,'Lithuanian','lt','lt_LT',NULL,0,0,102,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (716,84,'Luba-Katanga','lu','lu_CD',NULL,0,0,103,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (717,84,'Latvian','lv','lv_LV',NULL,0,0,104,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (718,84,'Manx','gv','gv_IM',NULL,0,0,105,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (719,84,'Macedonian','mk','mk_MK',NULL,0,0,106,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (720,84,'Malagasy','mg','mg_MG',NULL,0,0,107,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (721,84,'Malay','ms','ms_MY',NULL,0,0,108,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (722,84,'Malayalam','ml','ml_IN',NULL,0,0,109,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (723,84,'Maltese','mt','mt_MT',NULL,0,0,110,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (724,84,'Māori','mi','mi_NZ',NULL,0,0,111,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (725,84,'Marathi','mr','mr_IN',NULL,0,0,112,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (726,84,'Marshallese','mh','mh_MH',NULL,0,0,113,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (727,84,'Mongolian','mn','mn_MN',NULL,0,0,114,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (728,84,'Nauru','na','na_NR',NULL,0,0,115,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (729,84,'Navajo, Navaho','nv','nv_US',NULL,0,0,116,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (730,84,'Norwegian Bokmål','nb','nb_NO',NULL,0,0,117,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (731,84,'North Ndebele','nd','nd_ZW',NULL,0,0,118,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (732,84,'Nepali','ne','ne_NP',NULL,0,0,119,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (733,84,'Ndonga','ng','ng_NA',NULL,0,0,120,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (734,84,'Norwegian Nynorsk','nn','nn_NO',NULL,0,0,121,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (735,84,'Norwegian','no','no_NO',NULL,0,0,122,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (736,84,'Nuosu','ii','ii_CN',NULL,0,0,123,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (737,84,'South Ndebele','nr','nr_ZA',NULL,0,0,124,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (738,84,'Occitan (after 1500)','oc','oc_FR',NULL,0,0,125,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (739,84,'Ojibwa','oj','oj_CA',NULL,0,0,126,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (740,84,'Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic','cu','cu_BG',NULL,0,0,127,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (741,84,'Oromo','om','om_ET',NULL,0,0,128,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (742,84,'Oriya','or','or_IN',NULL,0,0,129,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (743,84,'Ossetian, Ossetic','os','os_GE',NULL,0,0,130,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (744,84,'Panjabi, Punjabi','pa','pa_IN',NULL,0,0,131,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (745,84,'Pali','pi','pi_KH',NULL,0,0,132,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (746,84,'Persian (Iran)','fa','fa_IR',NULL,0,0,133,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (747,84,'Polish','pl','pl_PL',NULL,0,0,134,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (748,84,'Pashto, Pushto','ps','ps_AF',NULL,0,0,135,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (749,84,'Portuguese (Brazil)','pt','pt_BR',NULL,0,0,136,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (750,84,'Portuguese (Portugal)','pt','pt_PT',NULL,0,0,137,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (751,84,'Quechua','qu','qu_PE',NULL,0,0,138,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (752,84,'Romansh','rm','rm_CH',NULL,0,0,139,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (753,84,'Kirundi','rn','rn_BI',NULL,0,0,140,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (754,84,'Romanian, Moldavian, Moldovan','ro','ro_RO',NULL,0,0,141,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (755,84,'Russian','ru','ru_RU',NULL,0,0,142,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (756,84,'Sanskrit','sa','sa_IN',NULL,0,0,143,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (757,84,'Sardinian','sc','sc_IT',NULL,0,0,144,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (758,84,'Sindhi','sd','sd_IN',NULL,0,0,145,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (759,84,'Northern Sami','se','se_NO',NULL,0,0,146,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (760,84,'Samoan','sm','sm_WS',NULL,0,0,147,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (761,84,'Sango','sg','sg_CF',NULL,0,0,148,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (762,84,'Serbian','sr','sr_RS',NULL,0,0,149,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (763,84,'Scottish Gaelic; Gaelic','gd','gd_GB',NULL,0,0,150,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (764,84,'Shona','sn','sn_ZW',NULL,0,0,151,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (765,84,'Sinhala, Sinhalese','si','si_LK',NULL,0,0,152,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (766,84,'Slovak','sk','sk_SK',NULL,0,0,153,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (767,84,'Slovene','sl','sl_SI',NULL,0,0,154,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (768,84,'Somali','so','so_SO',NULL,0,0,155,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (769,84,'Southern Sotho','st','st_ZA',NULL,0,0,156,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (770,84,'Spanish; Castilian (Spain)','es','es_ES',NULL,0,0,157,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (771,84,'Spanish; Castilian (Mexico)','es','es_MX',NULL,0,0,158,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (772,84,'Spanish; Castilian (Puerto Rico)','es','es_PR',NULL,0,0,159,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (773,84,'Sundanese','su','su_ID',NULL,0,0,160,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (774,84,'Swahili','sw','sw_TZ',NULL,0,0,161,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (775,84,'Swati','ss','ss_ZA',NULL,0,0,162,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (776,84,'Swedish','sv','sv_SE',NULL,0,0,163,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (777,84,'Tamil','ta','ta_IN',NULL,0,0,164,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (778,84,'Telugu','te','te_IN',NULL,0,0,165,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (779,84,'Tajik','tg','tg_TJ',NULL,0,0,166,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (780,84,'Thai','th','th_TH',NULL,0,0,167,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (781,84,'Tigrinya','ti','ti_ET',NULL,0,0,168,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (782,84,'Tibetan Standard, Tibetan, Central','bo','bo_CN',NULL,0,0,169,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (783,84,'Turkmen','tk','tk_TM',NULL,0,0,170,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (784,84,'Tagalog','tl','tl_PH',NULL,0,0,171,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (785,84,'Tswana','tn','tn_ZA',NULL,0,0,172,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (786,84,'Tonga (Tonga Islands)','to','to_TO',NULL,0,0,173,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (787,84,'Turkish','tr','tr_TR',NULL,0,0,174,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (788,84,'Tsonga','ts','ts_ZA',NULL,0,0,175,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (789,84,'Tatar','tt','tt_RU',NULL,0,0,176,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (790,84,'Twi','tw','tw_GH',NULL,0,0,177,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (791,84,'Tahitian','ty','ty_PF',NULL,0,0,178,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (792,84,'Uighur, Uyghur','ug','ug_CN',NULL,0,0,179,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (793,84,'Ukrainian','uk','uk_UA',NULL,0,0,180,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (794,84,'Urdu','ur','ur_PK',NULL,0,0,181,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (795,84,'Uzbek','uz','uz_UZ',NULL,0,0,182,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (796,84,'Venda','ve','ve_ZA',NULL,0,0,183,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (797,84,'Vietnamese','vi','vi_VN',NULL,0,0,184,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (798,84,'Volapük','vo','vo_XX',NULL,0,0,185,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (799,84,'Walloon','wa','wa_BE',NULL,0,0,186,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (800,84,'Welsh','cy','cy_GB',NULL,0,0,187,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (801,84,'Wolof','wo','wo_SN',NULL,0,0,188,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (802,84,'Western Frisian','fy','fy_NL',NULL,0,0,189,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (803,84,'Xhosa','xh','xh_ZA',NULL,0,0,190,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (804,84,'Yiddish','yi','yi_US',NULL,0,0,191,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (805,84,'Yoruba','yo','yo_NG',NULL,0,0,192,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (806,84,'Zhuang, Chuang','za','za_CN',NULL,0,0,193,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (807,84,'Zulu','zu','zu_ZA',NULL,0,0,194,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL), + (808,85,'In Person','1','in_person',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (809,85,'Phone','2','phone',NULL,0,1,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (810,85,'Email','3','email',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (811,85,'Fax','4','fax',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (812,85,'Letter Mail','5','letter_mail',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (813,86,'Cases - Send Copy of an Activity','1','case_activity',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (814,87,'Contributions - Duplicate Organization Alert','1','contribution_dupalert',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (815,87,'Contributions - Receipt (off-line)','2','contribution_offline_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (816,87,'Contributions - Receipt (on-line)','3','contribution_online_receipt',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (817,87,'Contributions - Invoice','4','contribution_invoice_receipt',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (818,87,'Contributions - Recurring Start and End Notification','5','contribution_recurring_notify',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (819,87,'Contributions - Recurring Cancellation Notification','6','contribution_recurring_cancelled',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (820,87,'Contributions - Recurring Billing Updates','7','contribution_recurring_billing',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (821,87,'Contributions - Recurring Updates','8','contribution_recurring_edit',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (822,87,'Personal Campaign Pages - Admin Notification','9','pcp_notify',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (823,87,'Personal Campaign Pages - Supporter Status Change Notification','10','pcp_status_change',NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (824,87,'Personal Campaign Pages - Supporter Welcome','11','pcp_supporter_notify',NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (825,87,'Personal Campaign Pages - Owner Notification','12','pcp_owner_notify',NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (826,87,'Additional Payment Receipt or Refund Notification','13','payment_or_refund_notification',NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (827,88,'Events - Registration Confirmation and Receipt (off-line)','1','event_offline_receipt',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (828,88,'Events - Registration Confirmation and Receipt (on-line)','2','event_online_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (829,88,'Events - Receipt only','3','event_registration_receipt',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (830,88,'Events - Registration Cancellation Notice','4','participant_cancelled',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (831,88,'Events - Registration Confirmation Invite','5','participant_confirm',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (832,88,'Events - Pending Registration Expiration Notice','6','participant_expired',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (833,88,'Events - Registration Transferred Notice','7','participant_transferred',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (834,89,'Tell-a-Friend Email','1','friend',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (835,90,'Memberships - Signup and Renewal Receipts (off-line)','1','membership_offline_receipt',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (836,90,'Memberships - Receipt (on-line)','2','membership_online_receipt',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (837,90,'Memberships - Auto-renew Cancellation Notification','3','membership_autorenew_cancelled',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (838,90,'Memberships - Auto-renew Billing Updates','4','membership_autorenew_billing',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (839,91,'Test-drive - Receipt Header','1','test_preview',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (840,92,'Pledges - Acknowledgement','1','pledge_acknowledge',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (841,92,'Pledges - Payment Reminder','2','pledge_reminder',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (842,93,'Profiles - Admin Notification','1','uf_notify',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (843,94,'Petition - signature added','1','petition_sign',NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (844,94,'Petition - need verification','2','petition_confirmation_needed',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (845,95,'In Honor of','1','in_honor_of',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (846,95,'In Memory of','2','in_memory_of',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (847,95,'Solicited','3','solicited',NULL,0,1,3,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (848,95,'Household','4','household',NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (849,95,'Workplace Giving','5','workplace',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (850,95,'Foundation Affiliate','6','foundation_affiliate',NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (851,95,'3rd-party Service','7','3rd-party_service',NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (852,95,'Donor-advised Fund','8','donor-advised_fund',NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (853,95,'Matched Gift','9','matched_gift',NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL), + (854,95,'Personal Campaign Page','10','pcp',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (855,95,'Gift','11','gift',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL,NULL,NULL), + (856,96,'Contacts','Contact','Contact',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (857,96,'Relationships','Relationship','Relationship',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (858,96,'Activities','Activity','Activity',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (859,96,'Notes','Note','Note',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (860,96,'Groups','Group','Group',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (861,96,'Cases','Case','Case',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (862,96,'Contributions','Contribution','Contribution',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (863,96,'Participants','Participant','Participant',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (864,96,'Memberships','Membership','Membership',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (865,96,'Pledges','Pledge','Pledge',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (866,96,'Events','Event','Event',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (867,96,'Campaigns','Campaign','Campaign',NULL,NULL,0,1,'',0,1,1,NULL,NULL,NULL,NULL,NULL), + (868,2,'Interview','55','Interview',NULL,0,NULL,55,'Conduct a phone or in person interview.',0,0,1,NULL,NULL,NULL,'fa-comment-o',NULL), + (869,8,'Advisory Board','3','Advisory Board',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_option_value` ENABLE KEYS */; UNLOCK TABLES; @@ -6738,56 +6768,56 @@ 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`, `transferred_to_contact_id`, `created_id`) VALUES - (1,3,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (2,118,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (3,181,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,NULL,NULL), - (4,56,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (5,1,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (6,142,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,NULL,NULL), - (7,47,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (8,202,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (9,123,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,NULL,NULL), - (10,120,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (11,96,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (12,92,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,NULL,NULL), - (13,144,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (14,81,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (15,187,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,NULL,NULL), - (16,67,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (17,88,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (18,167,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,NULL,NULL), - (19,119,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (20,106,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (21,124,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,NULL,NULL), - (22,111,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (23,105,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (24,50,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,NULL,NULL), - (25,41,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,NULL,NULL), - (26,86,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (27,184,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (28,61,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,NULL,NULL), - (29,94,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (30,135,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (31,132,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,NULL,NULL), - (32,12,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (33,190,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (34,148,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,NULL,NULL), - (35,58,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (36,52,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (37,54,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,NULL,NULL), - (38,117,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (39,145,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (40,163,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,NULL,NULL), - (41,4,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (42,186,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (43,159,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,NULL,NULL), - (44,116,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (45,40,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (46,57,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,NULL,NULL), - (47,157,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (48,75,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), - (49,6,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,NULL,NULL), - (50,44,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,NULL,NULL); + (1,65,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (2,115,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (3,117,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,NULL,NULL), + (4,43,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (5,107,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (6,7,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,NULL,NULL), + (7,138,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (8,174,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (9,97,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,NULL,NULL), + (10,72,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (11,31,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (12,51,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,NULL,NULL), + (13,42,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (14,127,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (15,143,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,NULL,NULL), + (16,84,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (17,183,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (18,73,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,NULL,NULL), + (19,86,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (20,144,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (21,33,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,NULL,NULL), + (22,77,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (23,154,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (24,123,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,NULL,NULL), + (25,28,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,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,NULL,NULL), + (27,22,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (28,20,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,NULL,NULL), + (29,96,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (30,122,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (31,91,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,NULL,NULL), + (32,87,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (33,101,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (34,186,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,NULL,NULL), + (35,132,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (36,106,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (37,149,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,NULL,NULL), + (38,16,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (39,94,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (40,173,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,NULL,NULL), + (41,44,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (42,179,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (43,13,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,NULL,NULL), + (44,4,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (45,135,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (46,3,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,NULL,NULL), + (47,15,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (48,136,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL), + (49,119,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,NULL,NULL), + (50,128,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,NULL,NULL); /*!40000 ALTER TABLE `civicrm_participant` ENABLE KEYS */; UNLOCK TABLES; @@ -6920,7 +6950,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_pcp` WRITE; /*!40000 ALTER TABLE `civicrm_pcp` DISABLE KEYS */; INSERT INTO `civicrm_pcp` (`id`, `contact_id`, `status_id`, `title`, `intro_text`, `page_text`, `donate_link_text`, `page_id`, `page_type`, `pcp_block_id`, `is_thermometer`, `is_honor_roll`, `goal_amount`, `currency`, `is_active`, `is_notify`) VALUES - (1,193,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,1); + (1,125,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,1); /*!40000 ALTER TABLE `civicrm_pcp` ENABLE KEYS */; UNLOCK TABLES; @@ -6942,154 +6972,186 @@ UNLOCK TABLES; LOCK TABLES `civicrm_phone` WRITE; /*!40000 ALTER TABLE `civicrm_phone` DISABLE KEYS */; INSERT INTO `civicrm_phone` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `mobile_provider_id`, `phone`, `phone_ext`, `phone_numeric`, `phone_type_id`) VALUES - (1,185,1,1,0,NULL,'669-4496',NULL,'6694496',2), - (2,185,1,0,0,NULL,'(448) 319-8214',NULL,'4483198214',1), - (3,152,1,1,0,NULL,'(554) 594-3143',NULL,'5545943143',2), - (4,193,1,1,0,NULL,'(514) 630-4055',NULL,'5146304055',1), - (5,193,1,0,0,NULL,'804-6824',NULL,'8046824',2), - (6,91,1,1,0,NULL,'481-2578',NULL,'4812578',2), - (7,91,1,0,0,NULL,'244-7214',NULL,'2447214',1), - (8,111,1,1,0,NULL,'(636) 490-1656',NULL,'6364901656',2), - (9,153,1,1,0,NULL,'546-5928',NULL,'5465928',1), - (10,153,1,0,0,NULL,'576-3338',NULL,'5763338',2), - (11,108,1,1,0,NULL,'706-3400',NULL,'7063400',2), - (12,10,1,1,0,NULL,'(715) 410-5886',NULL,'7154105886',1), - (13,10,1,0,0,NULL,'(690) 733-3185',NULL,'6907333185',1), - (14,120,1,1,0,NULL,'717-9816',NULL,'7179816',1), - (15,120,1,0,0,NULL,'318-7134',NULL,'3187134',2), - (16,81,1,1,0,NULL,'526-3539',NULL,'5263539',2), - (17,78,1,1,0,NULL,'456-8354',NULL,'4568354',1), - (18,201,1,1,0,NULL,'(357) 272-1187',NULL,'3572721187',1), - (19,201,1,0,0,NULL,'499-8457',NULL,'4998457',2), - (20,154,1,1,0,NULL,'(327) 366-6059',NULL,'3273666059',1), - (21,38,1,1,0,NULL,'(837) 590-4297',NULL,'8375904297',1), - (22,38,1,0,0,NULL,'338-7140',NULL,'3387140',2), - (23,181,1,1,0,NULL,'752-5685',NULL,'7525685',1), - (24,181,1,0,0,NULL,'821-2785',NULL,'8212785',2), - (25,8,1,1,0,NULL,'693-8750',NULL,'6938750',1), - (26,138,1,1,0,NULL,'572-3202',NULL,'5723202',1), - (27,138,1,0,0,NULL,'485-4317',NULL,'4854317',2), - (28,53,1,1,0,NULL,'(673) 219-1369',NULL,'6732191369',2), - (29,122,1,1,0,NULL,'(753) 748-5406',NULL,'7537485406',2), - (30,122,1,0,0,NULL,'(500) 817-3515',NULL,'5008173515',2), - (31,79,1,1,0,NULL,'(785) 496-6443',NULL,'7854966443',1), - (32,79,1,0,0,NULL,'(638) 369-1994',NULL,'6383691994',2), - (33,101,1,1,0,NULL,'724-8486',NULL,'7248486',1), - (34,101,1,0,0,NULL,'465-4813',NULL,'4654813',2), - (35,68,1,1,0,NULL,'(248) 675-5817',NULL,'2486755817',2), - (36,113,1,1,0,NULL,'(417) 395-5356',NULL,'4173955356',2), - (37,113,1,0,0,NULL,'501-2174',NULL,'5012174',1), - (38,27,1,1,0,NULL,'(306) 345-2956',NULL,'3063452956',2), - (39,109,1,1,0,NULL,'635-5990',NULL,'6355990',2), - (40,109,1,0,0,NULL,'720-4390',NULL,'7204390',1), - (41,116,1,1,0,NULL,'(394) 803-6725',NULL,'3948036725',1), - (42,116,1,0,0,NULL,'557-6350',NULL,'5576350',1), - (43,15,1,1,0,NULL,'(844) 432-9679',NULL,'8444329679',1), - (44,107,1,1,0,NULL,'(488) 754-5985',NULL,'4887545985',2), - (45,107,1,0,0,NULL,'(222) 558-9376',NULL,'2225589376',2), - (46,93,1,1,0,NULL,'(568) 633-6984',NULL,'5686336984',2), - (47,97,1,1,0,NULL,'(849) 613-6570',NULL,'8496136570',2), - (48,97,1,0,0,NULL,'(209) 201-7077',NULL,'2092017077',2), - (49,9,1,1,0,NULL,'706-3841',NULL,'7063841',2), - (50,9,1,0,0,NULL,'(610) 381-1268',NULL,'6103811268',1), - (51,31,1,1,0,NULL,'(472) 876-2460',NULL,'4728762460',1), - (52,46,1,1,0,NULL,'(417) 348-8225',NULL,'4173488225',2), - (53,46,1,0,0,NULL,'(836) 237-1023',NULL,'8362371023',1), - (54,86,1,1,0,NULL,'(829) 397-2630',NULL,'8293972630',1), - (55,86,1,0,0,NULL,'392-7241',NULL,'3927241',1), - (56,135,1,1,0,NULL,'555-2563',NULL,'5552563',1), - (57,135,1,0,0,NULL,'(741) 356-3401',NULL,'7413563401',1), - (58,82,1,1,0,NULL,'763-9743',NULL,'7639743',2), - (59,119,1,1,0,NULL,'330-6276',NULL,'3306276',1), - (60,119,1,0,0,NULL,'(716) 442-6848',NULL,'7164426848',1), - (61,39,1,1,0,NULL,'479-5296',NULL,'4795296',2), - (62,70,1,1,0,NULL,'787-3697',NULL,'7873697',1), - (63,22,1,1,0,NULL,'(296) 342-1960',NULL,'2963421960',1), - (64,34,1,1,0,NULL,'224-1313',NULL,'2241313',2), - (65,48,1,1,0,NULL,'(620) 393-3670',NULL,'6203933670',1), - (66,192,1,1,0,NULL,'(555) 249-6542',NULL,'5552496542',2), - (67,90,1,1,0,NULL,'711-5591',NULL,'7115591',2), - (68,149,1,1,0,NULL,'(490) 536-9780',NULL,'4905369780',2), - (69,106,1,1,0,NULL,'779-2827',NULL,'7792827',2), - (70,11,1,1,0,NULL,'774-5994',NULL,'7745994',1), - (71,84,1,1,0,NULL,'(697) 747-1565',NULL,'6977471565',1), - (72,84,1,0,0,NULL,'(855) 712-3468',NULL,'8557123468',2), - (73,194,1,1,0,NULL,'566-2777',NULL,'5662777',2), - (74,56,1,1,0,NULL,'617-7323',NULL,'6177323',1), - (75,72,1,1,0,NULL,'(483) 676-3692',NULL,'4836763692',2), - (76,72,1,0,0,NULL,'553-3498',NULL,'5533498',1), - (77,143,1,1,0,NULL,'(840) 651-1002',NULL,'8406511002',1), - (78,58,1,1,0,NULL,'(242) 237-6449',NULL,'2422376449',1), - (79,54,1,1,0,NULL,'(235) 575-7614',NULL,'2355757614',1), - (80,54,1,0,0,NULL,'380-2623',NULL,'3802623',1), - (81,157,1,1,0,NULL,'309-8688',NULL,'3098688',2), - (82,157,1,0,0,NULL,'(855) 763-4648',NULL,'8557634648',1), - (83,197,1,1,0,NULL,'814-4718',NULL,'8144718',2), - (84,197,1,0,0,NULL,'208-9401',NULL,'2089401',2), - (85,174,1,1,0,NULL,'334-4546',NULL,'3344546',1), - (86,37,1,1,0,NULL,'(744) 862-3580',NULL,'7448623580',2), - (87,37,1,0,0,NULL,'(289) 593-4709',NULL,'2895934709',2), - (88,141,1,1,0,NULL,'646-8445',NULL,'6468445',1), - (89,141,1,0,0,NULL,'(574) 678-1557',NULL,'5746781557',2), - (90,170,1,1,0,NULL,'(537) 556-4257',NULL,'5375564257',1), - (91,170,1,0,0,NULL,'411-4021',NULL,'4114021',2), - (92,160,1,1,0,NULL,'(686) 331-3214',NULL,'6863313214',2), - (93,43,1,1,0,NULL,'455-4200',NULL,'4554200',1), - (94,43,1,0,0,NULL,'614-9904',NULL,'6149904',1), - (95,13,1,1,0,NULL,'669-2394',NULL,'6692394',2), - (96,2,1,1,0,NULL,'585-2178',NULL,'5852178',1), - (97,19,1,1,0,NULL,'(741) 281-2685',NULL,'7412812685',1), - (98,105,1,1,0,NULL,'(452) 385-6558',NULL,'4523856558',1), - (99,188,1,1,0,NULL,'291-6629',NULL,'2916629',1), - (100,61,1,1,0,NULL,'667-4260',NULL,'6674260',2), - (101,94,1,1,0,NULL,'(433) 577-4651',NULL,'4335774651',2), - (102,75,1,1,0,NULL,'(341) 263-6027',NULL,'3412636027',2), - (103,75,1,0,0,NULL,'224-6190',NULL,'2246190',1), - (104,169,1,1,0,NULL,'(565) 357-9508',NULL,'5653579508',1), - (105,169,1,0,0,NULL,'462-4949',NULL,'4624949',1), - (106,36,1,1,0,NULL,'(829) 895-9847',NULL,'8298959847',1), - (107,121,1,1,0,NULL,'(280) 597-5272',NULL,'2805975272',2), - (108,121,1,0,0,NULL,'(236) 659-5497',NULL,'2366595497',1), - (109,139,1,1,0,NULL,'(712) 752-2736',NULL,'7127522736',1), - (110,139,1,0,0,NULL,'620-8201',NULL,'6208201',1), - (111,7,1,1,0,NULL,'(774) 712-8349',NULL,'7747128349',2), - (112,7,1,0,0,NULL,'415-7193',NULL,'4157193',1), - (113,134,1,1,0,NULL,'288-7581',NULL,'2887581',1), - (114,134,1,0,0,NULL,'679-8582',NULL,'6798582',2), - (115,171,1,1,0,NULL,'546-9307',NULL,'5469307',2), - (116,30,1,1,0,NULL,'(425) 410-9481',NULL,'4254109481',2), - (117,30,1,0,0,NULL,'217-8470',NULL,'2178470',2), - (118,155,1,1,0,NULL,'720-1240',NULL,'7201240',2), - (119,155,1,0,0,NULL,'(642) 549-4785',NULL,'6425494785',1), - (120,99,1,1,0,NULL,'(579) 273-1174',NULL,'5792731174',1), - (121,99,1,0,0,NULL,'449-7890',NULL,'4497890',2), - (122,125,1,1,0,NULL,'222-6274',NULL,'2226274',1), - (123,63,1,1,0,NULL,'837-4688',NULL,'8374688',2), - (124,63,1,0,0,NULL,'(740) 585-1874',NULL,'7405851874',1), - (125,41,1,1,0,NULL,'321-8922',NULL,'3218922',1), - (126,41,1,0,0,NULL,'233-9979',NULL,'2339979',2), - (127,65,1,1,0,NULL,'226-2912',NULL,'2262912',1), - (128,196,1,1,0,NULL,'851-9317',NULL,'8519317',2), - (129,196,1,0,0,NULL,'453-2252',NULL,'4532252',1), - (130,44,1,1,0,NULL,'683-5348',NULL,'6835348',1), - (131,117,1,1,0,NULL,'(557) 302-9205',NULL,'5573029205',2), - (132,117,1,0,0,NULL,'471-4876',NULL,'4714876',2), - (133,187,1,1,0,NULL,'469-4672',NULL,'4694672',1), - (134,64,1,1,0,NULL,'709-5241',NULL,'7095241',2), - (135,6,1,1,0,NULL,'884-2594',NULL,'8842594',2), - (136,118,1,1,0,NULL,'396-1441',NULL,'3961441',2), - (137,173,1,1,0,NULL,'(285) 869-9227',NULL,'2858699227',2), - (138,173,1,0,0,NULL,'744-8389',NULL,'7448389',1), - (139,29,1,1,0,NULL,'372-4110',NULL,'3724110',1), - (140,176,1,1,0,NULL,'(657) 545-5362',NULL,'6575455362',2), - (141,74,1,1,0,NULL,'866-7479',NULL,'8667479',1), - (142,74,1,0,0,NULL,'(706) 570-4396',NULL,'7065704396',2), - (143,133,1,1,0,NULL,'(249) 485-6766',NULL,'2494856766',2), - (144,32,1,1,0,NULL,'206-3920',NULL,'2063920',2), - (145,127,1,1,0,NULL,'(838) 746-6031',NULL,'8387466031',1), - (146,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1), - (147,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1), - (148,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1); + (1,30,1,1,0,NULL,'(484) 781-8991',NULL,'4847818991',2), + (2,125,1,1,0,NULL,'626-4768',NULL,'6264768',1), + (3,125,1,0,0,NULL,'655-7972',NULL,'6557972',2), + (4,58,1,1,0,NULL,'505-3666',NULL,'5053666',1), + (5,58,1,0,0,NULL,'575-2391',NULL,'5752391',1), + (6,174,1,1,0,NULL,'(675) 425-2967',NULL,'6754252967',1), + (7,134,1,1,0,NULL,'405-2047',NULL,'4052047',1), + (8,27,1,1,0,NULL,'(300) 557-8380',NULL,'3005578380',1), + (9,61,1,1,0,NULL,'787-6106',NULL,'7876106',1), + (10,61,1,0,0,NULL,'(804) 419-6713',NULL,'8044196713',1), + (11,36,1,1,0,NULL,'(692) 253-9313',NULL,'6922539313',1), + (12,152,1,1,0,NULL,'299-8044',NULL,'2998044',2), + (13,4,1,1,0,NULL,'(335) 532-5995',NULL,'3355325995',1), + (14,10,1,1,0,NULL,'(893) 749-6097',NULL,'8937496097',2), + (15,10,1,0,0,NULL,'(439) 889-8415',NULL,'4398898415',2), + (16,189,1,1,0,NULL,'396-1319',NULL,'3961319',1), + (17,2,1,1,0,NULL,'558-6610',NULL,'5586610',1), + (18,2,1,0,0,NULL,'814-4252',NULL,'8144252',1), + (19,112,1,1,0,NULL,'769-3864',NULL,'7693864',2), + (20,40,1,1,0,NULL,'436-7897',NULL,'4367897',2), + (21,48,1,1,0,NULL,'(795) 440-6037',NULL,'7954406037',1), + (22,178,1,1,0,NULL,'606-1446',NULL,'6061446',2), + (23,123,1,1,0,NULL,'(845) 558-6674',NULL,'8455586674',2), + (24,123,1,0,0,NULL,'408-9133',NULL,'4089133',2), + (25,135,1,1,0,NULL,'(499) 777-6163',NULL,'4997776163',1), + (26,135,1,0,0,NULL,'(310) 294-7427',NULL,'3102947427',2), + (27,57,1,1,0,NULL,'537-8919',NULL,'5378919',1), + (28,57,1,0,0,NULL,'763-9702',NULL,'7639702',1), + (29,159,1,1,0,NULL,'215-4531',NULL,'2154531',1), + (30,159,1,0,0,NULL,'576-3097',NULL,'5763097',2), + (31,139,1,1,0,NULL,'(619) 308-5722',NULL,'6193085722',1), + (32,44,1,1,0,NULL,'(783) 317-9939',NULL,'7833179939',1), + (33,128,1,1,0,NULL,'355-5522',NULL,'3555522',2), + (34,128,1,0,0,NULL,'(607) 586-2335',NULL,'6075862335',1), + (35,6,1,1,0,NULL,'(384) 217-8177',NULL,'3842178177',2), + (36,6,1,0,0,NULL,'730-7491',NULL,'7307491',2), + (37,100,1,1,0,NULL,'230-3427',NULL,'2303427',2), + (38,179,1,1,0,NULL,'436-8071',NULL,'4368071',1), + (39,179,1,0,0,NULL,'(871) 264-5974',NULL,'8712645974',1), + (40,69,1,1,0,NULL,'379-7739',NULL,'3797739',2), + (41,65,1,1,0,NULL,'(744) 317-8322',NULL,'7443178322',1), + (42,149,1,1,0,NULL,'(610) 385-9028',NULL,'6103859028',1), + (43,149,1,0,0,NULL,'(230) 352-2454',NULL,'2303522454',2), + (44,148,1,1,0,NULL,'(392) 256-5017',NULL,'3922565017',1), + (45,148,1,0,0,NULL,'309-3694',NULL,'3093694',1), + (46,87,1,1,0,NULL,'641-6309',NULL,'6416309',2), + (47,73,1,1,0,NULL,'(514) 703-4039',NULL,'5147034039',1), + (48,73,1,0,0,NULL,'(504) 890-7428',NULL,'5048907428',1), + (49,23,1,1,0,NULL,'353-9650',NULL,'3539650',1), + (50,145,1,1,0,NULL,'(463) 538-8068',NULL,'4635388068',1), + (51,15,1,1,0,NULL,'(349) 218-6059',NULL,'3492186059',1), + (52,15,1,0,0,NULL,'(889) 461-3679',NULL,'8894613679',1), + (53,196,1,1,0,NULL,'(663) 398-6073',NULL,'6633986073',2), + (54,196,1,0,0,NULL,'206-4649',NULL,'2064649',1), + (55,201,1,1,0,NULL,'283-5426',NULL,'2835426',2), + (56,108,1,1,0,NULL,'(250) 328-7062',NULL,'2503287062',2), + (57,132,1,1,0,NULL,'321-7470',NULL,'3217470',1), + (58,132,1,0,0,NULL,'617-7640',NULL,'6177640',1), + (59,151,1,1,0,NULL,'560-4150',NULL,'5604150',1), + (60,151,1,0,0,NULL,'653-2925',NULL,'6532925',2), + (61,143,1,1,0,NULL,'847-3681',NULL,'8473681',2), + (62,143,1,0,0,NULL,'606-8715',NULL,'6068715',1), + (63,166,1,1,0,NULL,'(600) 740-6247',NULL,'6007406247',1), + (64,166,1,0,0,NULL,'(720) 690-6589',NULL,'7206906589',2), + (65,80,1,1,0,NULL,'(461) 747-9666',NULL,'4617479666',1), + (66,80,1,0,0,NULL,'535-1922',NULL,'5351922',2), + (67,94,1,1,0,NULL,'369-8008',NULL,'3698008',1), + (68,161,1,1,0,NULL,'(573) 444-3483',NULL,'5734443483',1), + (69,198,1,1,0,NULL,'(597) 582-1071',NULL,'5975821071',1), + (70,198,1,0,0,NULL,'833-1249',NULL,'8331249',2), + (71,78,1,1,0,NULL,'(625) 861-4448',NULL,'6258614448',1), + (72,199,1,1,0,NULL,'(875) 561-8046',NULL,'8755618046',2), + (73,28,1,1,0,NULL,'(476) 745-3254',NULL,'4767453254',1), + (74,147,1,1,0,NULL,'209-7810',NULL,'2097810',2), + (75,147,1,0,0,NULL,'(764) 551-1478',NULL,'7645511478',1), + (76,46,1,1,0,NULL,'(591) 893-7297',NULL,'5918937297',1), + (77,46,1,0,0,NULL,'435-5242',NULL,'4355242',1), + (78,173,1,1,0,NULL,'852-8437',NULL,'8528437',2), + (79,173,1,0,0,NULL,'874-6046',NULL,'8746046',2), + (80,38,1,1,0,NULL,'857-1138',NULL,'8571138',1), + (81,38,1,0,0,NULL,'211-5521',NULL,'2115521',1), + (82,192,1,1,0,NULL,'599-2544',NULL,'5992544',2), + (83,116,1,1,0,NULL,'671-7590',NULL,'6717590',1), + (84,158,1,1,0,NULL,'744-4788',NULL,'7444788',2), + (85,126,1,1,0,NULL,'788-1587',NULL,'7881587',2), + (86,126,1,0,0,NULL,'(763) 227-4962',NULL,'7632274962',1), + (87,49,1,1,0,NULL,'(842) 530-8535',NULL,'8425308535',1), + (88,89,1,1,0,NULL,'(520) 293-1191',NULL,'5202931191',2), + (89,89,1,0,0,NULL,'291-7866',NULL,'2917866',1), + (90,35,1,1,0,NULL,'(551) 401-9960',NULL,'5514019960',2), + (91,169,1,1,0,NULL,'(500) 732-6788',NULL,'5007326788',1), + (92,169,1,0,0,NULL,'404-5359',NULL,'4045359',2), + (93,20,1,1,0,NULL,'776-3380',NULL,'7763380',2), + (94,54,1,1,0,NULL,'436-1972',NULL,'4361972',1), + (95,102,1,1,0,NULL,'(228) 843-8285',NULL,'2288438285',1), + (96,183,1,1,0,NULL,'407-2254',NULL,'4072254',1), + (97,183,1,0,0,NULL,'527-8735',NULL,'5278735',1), + (98,14,1,1,0,NULL,'(348) 545-9517',NULL,'3485459517',2), + (99,14,1,0,0,NULL,'(891) 688-2867',NULL,'8916882867',1), + (100,72,1,1,0,NULL,'204-1480',NULL,'2041480',2), + (101,176,1,1,0,NULL,'691-8810',NULL,'6918810',1), + (102,155,1,1,0,NULL,'(205) 414-9404',NULL,'2054149404',1), + (103,11,1,1,0,NULL,'712-6356',NULL,'7126356',2), + (104,11,1,0,0,NULL,'488-9063',NULL,'4889063',2), + (105,101,1,1,0,NULL,'823-6664',NULL,'8236664',2), + (106,101,1,0,0,NULL,'502-9717',NULL,'5029717',2), + (107,45,1,1,0,NULL,'210-4156',NULL,'2104156',2), + (108,45,1,0,0,NULL,'796-3330',NULL,'7963330',1), + (109,68,1,1,0,NULL,'(381) 793-8570',NULL,'3817938570',2), + (110,68,1,0,0,NULL,'488-2130',NULL,'4882130',2), + (111,127,1,1,0,NULL,'301-8080',NULL,'3018080',2), + (112,19,1,1,0,NULL,'217-8220',NULL,'2178220',1), + (113,96,1,1,0,NULL,'(291) 208-2956',NULL,'2912082956',1), + (114,171,1,1,0,NULL,'(368) 847-6646',NULL,'3688476646',1), + (115,171,1,0,0,NULL,'(791) 539-7965',NULL,'7915397965',2), + (116,172,1,1,0,NULL,'359-7268',NULL,'3597268',1), + (117,47,1,1,0,NULL,'407-6532',NULL,'4076532',1), + (118,106,1,1,0,NULL,'(287) 266-7573',NULL,'2872667573',1), + (119,138,1,1,0,NULL,'(298) 652-9875',NULL,'2986529875',2), + (120,120,1,1,0,NULL,'(507) 562-4466',NULL,'5075624466',1), + (121,120,1,0,0,NULL,'(682) 425-1420',NULL,'6824251420',1), + (122,97,1,1,0,NULL,'(417) 357-3230',NULL,'4173573230',2), + (123,76,1,1,0,NULL,'(253) 874-4211',NULL,'2538744211',2), + (124,76,1,0,0,NULL,'585-4541',NULL,'5854541',2), + (125,77,1,1,0,NULL,'753-2989',NULL,'7532989',2), + (126,77,1,0,0,NULL,'242-7602',NULL,'2427602',1), + (127,83,1,1,0,NULL,'399-3693',NULL,'3993693',2), + (128,118,1,1,0,NULL,'257-2312',NULL,'2572312',1), + (129,118,1,0,0,NULL,'(317) 684-2764',NULL,'3176842764',1), + (130,82,1,1,0,NULL,'(887) 686-4502',NULL,'8876864502',2), + (131,82,1,0,0,NULL,'(447) 720-7877',NULL,'4477207877',1), + (132,90,1,1,0,NULL,'711-1175',NULL,'7111175',2), + (133,90,1,0,0,NULL,'583-3198',NULL,'5833198',1), + (134,117,1,1,0,NULL,'403-5334',NULL,'4035334',1), + (135,122,1,1,0,NULL,'(855) 411-1825',NULL,'8554111825',1), + (136,122,1,0,0,NULL,'(666) 700-3737',NULL,'6667003737',1), + (137,95,1,1,0,NULL,'212-4760',NULL,'2124760',2), + (138,144,1,1,0,NULL,'468-5814',NULL,'4685814',1), + (139,63,1,1,0,NULL,'(482) 256-7856',NULL,'4822567856',2), + (140,18,1,1,0,NULL,'(813) 539-4889',NULL,'8135394889',1), + (141,18,1,0,0,NULL,'566-4981',NULL,'5664981',2), + (142,74,1,1,0,NULL,'(524) 689-1425',NULL,'5246891425',2), + (143,53,1,1,0,NULL,'769-1987',NULL,'7691987',1), + (144,53,1,0,0,NULL,'478-7139',NULL,'4787139',1), + (145,79,1,1,0,NULL,'(644) 665-3110',NULL,'6446653110',1), + (146,79,1,0,0,NULL,'405-8836',NULL,'4058836',1), + (147,50,1,1,0,NULL,'618-5021',NULL,'6185021',2), + (148,50,1,0,0,NULL,'502-6697',NULL,'5026697',1), + (149,165,1,1,0,NULL,'239-2147',NULL,'2392147',1), + (150,165,1,0,0,NULL,'850-5342',NULL,'8505342',1), + (151,107,1,1,0,NULL,'517-5652',NULL,'5175652',2), + (152,41,1,1,0,NULL,'(237) 454-7783',NULL,'2374547783',1), + (153,98,1,1,0,NULL,'(299) 727-3994',NULL,'2997273994',2), + (154,187,1,1,0,NULL,'812-3806',NULL,'8123806',2), + (155,131,1,1,0,NULL,'(544) 527-6634',NULL,'5445276634',1), + (156,115,1,1,0,NULL,'(409) 392-1661',NULL,'4093921661',1), + (157,81,1,1,0,NULL,'(417) 634-4992',NULL,'4176344992',1), + (158,81,1,0,0,NULL,'(816) 401-8368',NULL,'8164018368',2), + (159,111,1,1,0,NULL,'694-2080',NULL,'6942080',1), + (160,164,1,1,0,NULL,'(863) 874-7378',NULL,'8638747378',2), + (161,70,1,1,0,NULL,'817-1816',NULL,'8171816',2), + (162,175,1,1,0,NULL,'358-4338',NULL,'3584338',2), + (163,64,1,1,0,NULL,'333-6651',NULL,'3336651',2), + (164,130,1,1,0,NULL,'232-1149',NULL,'2321149',2), + (165,130,1,0,0,NULL,'797-4360',NULL,'7974360',2), + (166,156,1,1,0,NULL,'(734) 298-8556',NULL,'7342988556',1), + (167,156,1,0,0,NULL,'256-7854',NULL,'2567854',1), + (168,37,1,1,0,NULL,'551-3537',NULL,'5513537',1), + (169,37,1,0,0,NULL,'472-5219',NULL,'4725219',2), + (170,197,1,1,0,NULL,'(452) 870-5900',NULL,'4528705900',2), + (171,197,1,0,0,NULL,'598-7163',NULL,'5987163',1), + (172,8,1,1,0,NULL,'(863) 371-1761',NULL,'8633711761',2), + (173,8,1,0,0,NULL,'(669) 835-7671',NULL,'6698357671',1), + (174,104,1,1,0,NULL,'(514) 539-1808',NULL,'5145391808',2), + (175,104,1,0,0,NULL,'270-1736',NULL,'2701736',2), + (176,91,1,1,0,NULL,'(785) 243-3847',NULL,'7852433847',1), + (177,91,1,0,0,NULL,'(776) 475-6624',NULL,'7764756624',1), + (178,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1), + (179,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1), + (180,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1); /*!40000 ALTER TABLE `civicrm_phone` ENABLE KEYS */; UNLOCK TABLES; @@ -7324,224 +7386,221 @@ 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`, `created_date`, `modified_date`) VALUES - (1,56,84,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (2,72,84,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (3,56,194,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (4,72,194,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (5,72,56,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (6,194,57,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (7,56,57,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (8,72,57,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (9,84,57,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (10,194,84,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (11,58,60,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (12,100,60,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (13,58,143,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (14,100,143,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (15,100,58,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (16,143,200,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (17,58,200,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (18,100,200,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (19,60,200,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (20,143,60,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (21,175,23,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (22,157,23,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (23,175,54,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (24,157,54,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (25,157,175,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (26,54,55,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (27,175,55,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (28,157,55,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (29,23,55,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (30,54,23,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (31,37,197,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (32,12,197,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (33,37,174,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (34,12,174,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (35,12,37,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (36,174,4,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (37,37,4,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (38,12,4,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (39,197,4,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (40,174,197,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (41,170,140,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (42,179,140,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (43,170,141,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (44,179,141,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (45,179,170,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (46,141,5,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (47,170,5,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (48,179,5,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (49,140,5,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (50,141,140,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (51,43,160,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (52,13,160,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (53,43,89,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (54,13,89,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (55,13,43,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (56,89,40,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (57,43,40,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (58,13,40,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (59,160,40,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (60,89,160,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (61,19,129,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (62,47,129,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (63,19,2,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (64,47,2,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (65,47,19,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (66,2,96,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (67,19,96,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (68,47,96,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (69,129,96,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (70,2,129,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (71,61,105,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (72,94,105,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (73,61,188,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (74,94,188,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (75,94,61,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (76,188,88,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (77,61,88,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (78,94,88,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (79,105,88,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (80,188,105,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (81,36,75,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (82,121,75,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (83,36,169,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (84,121,169,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (85,121,36,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (86,169,123,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (87,36,123,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (88,121,123,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (89,75,123,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (90,169,75,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (91,134,139,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (92,171,139,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (93,134,7,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (94,171,7,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (95,171,134,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (96,7,104,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (97,134,104,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (98,171,104,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (99,139,104,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (100,7,139,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (101,155,30,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (102,87,30,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (103,155,158,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (104,87,158,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (105,87,155,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (106,158,144,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (107,155,144,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (108,87,144,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (109,30,144,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (110,158,30,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (111,156,99,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (112,125,99,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (113,156,77,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (114,125,77,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (115,125,156,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (116,77,128,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (117,156,128,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (118,125,128,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (119,99,128,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (120,77,99,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (121,63,26,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (122,41,26,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (123,63,146,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (124,41,146,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (125,41,63,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (126,146,182,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (127,63,182,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (128,41,182,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (129,26,182,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (130,146,26,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (131,161,148,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (132,59,148,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (133,161,65,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (134,59,65,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (135,59,161,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (136,65,51,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (137,161,51,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (138,59,51,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (139,148,51,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (140,65,148,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (141,33,136,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (142,50,136,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (143,33,17,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (144,50,17,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (145,50,33,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (146,17,112,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (147,33,112,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (148,50,112,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (149,136,112,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (150,17,136,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (151,168,196,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (152,44,196,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (153,168,137,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (154,44,137,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (155,44,168,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (156,137,85,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (157,168,85,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (158,44,85,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (159,196,85,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (160,137,196,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (161,198,92,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (162,187,92,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (163,198,117,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (164,187,117,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (165,187,198,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (166,117,195,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (167,198,195,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (168,187,195,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (169,92,195,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (170,117,92,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (171,118,64,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (172,173,64,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (173,118,6,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (174,173,6,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (175,173,118,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (176,6,163,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (177,118,163,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (178,173,163,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (179,64,163,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (180,6,64,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (181,74,29,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (182,133,29,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (183,74,176,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (184,133,176,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (185,133,74,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (186,176,172,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (187,74,172,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (188,133,172,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (189,29,172,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (190,176,29,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (191,178,32,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (192,127,32,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (193,178,102,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (194,127,102,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (195,127,178,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (196,102,167,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (197,178,167,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (198,127,167,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (199,32,167,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (200,102,32,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (201,16,18,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (202,197,25,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (203,114,35,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (204,146,52,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (205,87,67,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (206,119,76,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (207,95,80,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (208,66,98,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (209,201,124,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (210,150,130,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (211,12,132,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (212,19,145,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (213,140,159,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (214,79,177,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (215,174,183,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (216,151,184,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (217,158,190,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'), - (218,20,199,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-12 03:42:23','2022-10-12 03:42:23'); + (1,54,20,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (2,102,20,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (3,54,52,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (4,102,52,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (5,102,54,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (6,52,84,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (7,54,84,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (8,102,84,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (9,20,84,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (10,52,20,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (11,72,183,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (12,167,183,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (13,72,14,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (14,167,14,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (15,167,72,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (16,14,31,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (17,72,31,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (18,167,31,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (19,183,31,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (20,14,183,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (21,11,176,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (22,190,176,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (23,11,155,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (24,190,155,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (25,190,11,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (26,155,32,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (27,11,32,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (28,190,32,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (29,176,32,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (30,155,176,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (31,68,101,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (32,127,101,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (33,68,45,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (34,127,45,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (35,127,68,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (36,45,113,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (37,68,113,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (38,127,113,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (39,101,113,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (40,45,101,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (41,96,5,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (42,59,5,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (43,96,19,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (44,59,19,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (45,59,96,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (46,19,34,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (47,96,34,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (48,59,34,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (49,5,34,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (50,19,5,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (51,172,168,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (52,47,168,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (53,172,171,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (54,47,171,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (55,47,172,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (56,171,92,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (57,172,92,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (58,47,92,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (59,168,92,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (60,171,168,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (61,186,106,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (62,138,106,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (63,186,12,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (64,138,12,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (65,138,186,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (66,12,88,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (67,186,88,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (68,138,88,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (69,106,88,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (70,12,106,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (71,97,163,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (72,76,163,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (73,97,120,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (74,76,120,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (75,76,97,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (76,120,42,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (77,97,42,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (78,76,42,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (79,163,42,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (80,120,163,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (81,99,77,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (82,85,77,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (83,99,193,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (84,85,193,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (85,85,99,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (86,193,43,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (87,99,43,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (88,85,43,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (89,77,43,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (90,193,77,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (91,82,83,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (92,90,83,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (93,82,118,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (94,90,118,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (95,90,82,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (96,118,188,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (97,82,188,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (98,90,188,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (99,83,188,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (100,118,83,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (101,122,117,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (102,95,117,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (103,122,137,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (104,95,137,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (105,95,122,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (106,137,119,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (107,122,119,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (108,95,119,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (109,117,119,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (110,137,117,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (111,63,129,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (112,18,129,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (113,63,144,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (114,18,144,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (115,18,63,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (116,144,22,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (117,63,22,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (118,18,22,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (119,129,22,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (120,144,129,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (121,53,200,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (122,110,200,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (123,53,74,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (124,110,74,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (125,110,53,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (126,74,71,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (127,53,71,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (128,110,71,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (129,200,71,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (130,74,200,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (131,50,79,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (132,51,79,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (133,50,56,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (134,51,56,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (135,51,50,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (136,56,9,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (137,50,9,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (138,51,9,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (139,79,9,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (140,56,79,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (141,41,165,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (142,98,165,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (143,41,107,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (144,98,107,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (145,98,41,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (146,107,103,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (147,41,103,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (148,98,103,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (149,165,103,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (150,107,165,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (151,115,187,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (152,81,187,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (153,115,131,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (154,81,131,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (155,81,115,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (156,131,86,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (157,115,86,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (158,81,86,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (159,187,86,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (160,131,187,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (161,70,111,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (162,67,111,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (163,70,164,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (164,67,164,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (165,67,70,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (166,164,13,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (167,70,13,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (168,67,13,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (169,111,13,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (170,164,111,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (171,195,175,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (172,130,175,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (173,195,64,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (174,130,64,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (175,130,195,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (176,64,25,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (177,195,25,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (178,130,25,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (179,175,25,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (180,64,175,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (181,37,156,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (182,197,156,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (183,37,121,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (184,197,121,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (185,197,37,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (186,121,162,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (187,37,162,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (188,197,162,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (189,156,162,7,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (190,121,156,2,NULL,NULL,0,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (191,104,8,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (192,91,8,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (193,104,191,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (194,91,191,1,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (195,91,104,4,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (196,191,184,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (197,104,184,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (198,91,184,8,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (199,8,184,7,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (200,191,8,2,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (201,23,17,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (202,157,21,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (203,45,26,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (204,153,62,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (205,115,66,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (206,48,105,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (207,193,109,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (208,181,114,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (209,169,124,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (210,112,133,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (211,155,146,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (212,201,150,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (213,123,154,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (214,30,170,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'), + (215,177,180,5,NULL,NULL,1,NULL,0,0,NULL,'2022-10-17 14:12:05','2022-10-17 14:12:05'); /*!40000 ALTER TABLE `civicrm_relationship` ENABLE KEYS */; UNLOCK TABLES; @@ -7552,442 +7611,436 @@ UNLOCK TABLES; LOCK TABLES `civicrm_relationship_cache` WRITE; /*!40000 ALTER TABLE `civicrm_relationship_cache` DISABLE KEYS */; INSERT INTO `civicrm_relationship_cache` (`id`, `relationship_id`, `relationship_type_id`, `orientation`, `near_contact_id`, `near_relation`, `far_contact_id`, `far_relation`, `is_active`, `start_date`, `end_date`, `case_id`) VALUES - (1,1,1,'a_b',56,'Child of',84,'Parent of',1,NULL,NULL,NULL), - (2,1,1,'b_a',84,'Parent of',56,'Child of',1,NULL,NULL,NULL), - (3,2,1,'a_b',72,'Child of',84,'Parent of',1,NULL,NULL,NULL), - (4,2,1,'b_a',84,'Parent of',72,'Child of',1,NULL,NULL,NULL), - (5,3,1,'a_b',56,'Child of',194,'Parent of',1,NULL,NULL,NULL), - (6,3,1,'b_a',194,'Parent of',56,'Child of',1,NULL,NULL,NULL), - (7,4,1,'a_b',72,'Child of',194,'Parent of',1,NULL,NULL,NULL), - (8,4,1,'b_a',194,'Parent of',72,'Child of',1,NULL,NULL,NULL), - (9,5,4,'a_b',72,'Sibling of',56,'Sibling of',1,NULL,NULL,NULL), - (10,5,4,'b_a',56,'Sibling of',72,'Sibling of',1,NULL,NULL,NULL), - (11,6,8,'a_b',194,'Household Member of',57,'Household Member is',1,NULL,NULL,NULL), - (12,6,8,'b_a',57,'Household Member is',194,'Household Member of',1,NULL,NULL,NULL), - (13,7,8,'a_b',56,'Household Member of',57,'Household Member is',1,NULL,NULL,NULL), - (14,7,8,'b_a',57,'Household Member is',56,'Household Member of',1,NULL,NULL,NULL), - (15,8,8,'a_b',72,'Household Member of',57,'Household Member is',1,NULL,NULL,NULL), - (16,8,8,'b_a',57,'Household Member is',72,'Household Member of',1,NULL,NULL,NULL), - (17,9,7,'a_b',84,'Head of Household for',57,'Head of Household is',0,NULL,NULL,NULL), - (18,9,7,'b_a',57,'Head of Household is',84,'Head of Household for',0,NULL,NULL,NULL), - (19,10,2,'a_b',194,'Spouse of',84,'Spouse of',0,NULL,NULL,NULL), - (20,10,2,'b_a',84,'Spouse of',194,'Spouse of',0,NULL,NULL,NULL), - (21,11,1,'a_b',58,'Child of',60,'Parent of',1,NULL,NULL,NULL), - (22,11,1,'b_a',60,'Parent of',58,'Child of',1,NULL,NULL,NULL), - (23,12,1,'a_b',100,'Child of',60,'Parent of',1,NULL,NULL,NULL), - (24,12,1,'b_a',60,'Parent of',100,'Child of',1,NULL,NULL,NULL), - (25,13,1,'a_b',58,'Child of',143,'Parent of',1,NULL,NULL,NULL), - (26,13,1,'b_a',143,'Parent of',58,'Child of',1,NULL,NULL,NULL), - (27,14,1,'a_b',100,'Child of',143,'Parent of',1,NULL,NULL,NULL), - (28,14,1,'b_a',143,'Parent of',100,'Child of',1,NULL,NULL,NULL), - (29,15,4,'a_b',100,'Sibling of',58,'Sibling of',1,NULL,NULL,NULL), - (30,15,4,'b_a',58,'Sibling of',100,'Sibling of',1,NULL,NULL,NULL), - (31,16,8,'a_b',143,'Household Member of',200,'Household Member is',1,NULL,NULL,NULL), - (32,16,8,'b_a',200,'Household Member is',143,'Household Member of',1,NULL,NULL,NULL), - (33,17,8,'a_b',58,'Household Member of',200,'Household Member is',1,NULL,NULL,NULL), - (34,17,8,'b_a',200,'Household Member is',58,'Household Member of',1,NULL,NULL,NULL), - (35,18,8,'a_b',100,'Household Member of',200,'Household Member is',1,NULL,NULL,NULL), - (36,18,8,'b_a',200,'Household Member is',100,'Household Member of',1,NULL,NULL,NULL), - (37,19,7,'a_b',60,'Head of Household for',200,'Head of Household is',1,NULL,NULL,NULL), - (38,19,7,'b_a',200,'Head of Household is',60,'Head of Household for',1,NULL,NULL,NULL), - (39,20,2,'a_b',143,'Spouse of',60,'Spouse of',1,NULL,NULL,NULL), - (40,20,2,'b_a',60,'Spouse of',143,'Spouse of',1,NULL,NULL,NULL), - (41,21,1,'a_b',175,'Child of',23,'Parent of',1,NULL,NULL,NULL), - (42,21,1,'b_a',23,'Parent of',175,'Child of',1,NULL,NULL,NULL), - (43,22,1,'a_b',157,'Child of',23,'Parent of',1,NULL,NULL,NULL), - (44,22,1,'b_a',23,'Parent of',157,'Child of',1,NULL,NULL,NULL), - (45,23,1,'a_b',175,'Child of',54,'Parent of',1,NULL,NULL,NULL), - (46,23,1,'b_a',54,'Parent of',175,'Child of',1,NULL,NULL,NULL), - (47,24,1,'a_b',157,'Child of',54,'Parent of',1,NULL,NULL,NULL), - (48,24,1,'b_a',54,'Parent of',157,'Child of',1,NULL,NULL,NULL), - (49,25,4,'a_b',157,'Sibling of',175,'Sibling of',1,NULL,NULL,NULL), - (50,25,4,'b_a',175,'Sibling of',157,'Sibling of',1,NULL,NULL,NULL), - (51,26,8,'a_b',54,'Household Member of',55,'Household Member is',1,NULL,NULL,NULL), - (52,26,8,'b_a',55,'Household Member is',54,'Household Member of',1,NULL,NULL,NULL), - (53,27,8,'a_b',175,'Household Member of',55,'Household Member is',1,NULL,NULL,NULL), - (54,27,8,'b_a',55,'Household Member is',175,'Household Member of',1,NULL,NULL,NULL), - (55,28,8,'a_b',157,'Household Member of',55,'Household Member is',1,NULL,NULL,NULL), - (56,28,8,'b_a',55,'Household Member is',157,'Household Member of',1,NULL,NULL,NULL), - (57,29,7,'a_b',23,'Head of Household for',55,'Head of Household is',0,NULL,NULL,NULL), - (58,29,7,'b_a',55,'Head of Household is',23,'Head of Household for',0,NULL,NULL,NULL), - (59,30,2,'a_b',54,'Spouse of',23,'Spouse of',0,NULL,NULL,NULL), - (60,30,2,'b_a',23,'Spouse of',54,'Spouse of',0,NULL,NULL,NULL), - (61,31,1,'a_b',37,'Child of',197,'Parent of',1,NULL,NULL,NULL), - (62,31,1,'b_a',197,'Parent of',37,'Child of',1,NULL,NULL,NULL), - (63,32,1,'a_b',12,'Child of',197,'Parent of',1,NULL,NULL,NULL), - (64,32,1,'b_a',197,'Parent of',12,'Child of',1,NULL,NULL,NULL), - (65,33,1,'a_b',37,'Child of',174,'Parent of',1,NULL,NULL,NULL), - (66,33,1,'b_a',174,'Parent of',37,'Child of',1,NULL,NULL,NULL), - (67,34,1,'a_b',12,'Child of',174,'Parent of',1,NULL,NULL,NULL), - (68,34,1,'b_a',174,'Parent of',12,'Child of',1,NULL,NULL,NULL), - (69,35,4,'a_b',12,'Sibling of',37,'Sibling of',1,NULL,NULL,NULL), - (70,35,4,'b_a',37,'Sibling of',12,'Sibling of',1,NULL,NULL,NULL), - (71,36,8,'a_b',174,'Household Member of',4,'Household Member is',1,NULL,NULL,NULL), - (72,36,8,'b_a',4,'Household Member is',174,'Household Member of',1,NULL,NULL,NULL), - (73,37,8,'a_b',37,'Household Member of',4,'Household Member is',1,NULL,NULL,NULL), - (74,37,8,'b_a',4,'Household Member is',37,'Household Member of',1,NULL,NULL,NULL), - (75,38,8,'a_b',12,'Household Member of',4,'Household Member is',1,NULL,NULL,NULL), - (76,38,8,'b_a',4,'Household Member is',12,'Household Member of',1,NULL,NULL,NULL), - (77,39,7,'a_b',197,'Head of Household for',4,'Head of Household is',0,NULL,NULL,NULL), - (78,39,7,'b_a',4,'Head of Household is',197,'Head of Household for',0,NULL,NULL,NULL), - (79,40,2,'a_b',174,'Spouse of',197,'Spouse of',0,NULL,NULL,NULL), - (80,40,2,'b_a',197,'Spouse of',174,'Spouse of',0,NULL,NULL,NULL), - (81,41,1,'a_b',170,'Child of',140,'Parent of',1,NULL,NULL,NULL), - (82,41,1,'b_a',140,'Parent of',170,'Child of',1,NULL,NULL,NULL), - (83,42,1,'a_b',179,'Child of',140,'Parent of',1,NULL,NULL,NULL), - (84,42,1,'b_a',140,'Parent of',179,'Child of',1,NULL,NULL,NULL), - (85,43,1,'a_b',170,'Child of',141,'Parent of',1,NULL,NULL,NULL), - (86,43,1,'b_a',141,'Parent of',170,'Child of',1,NULL,NULL,NULL), - (87,44,1,'a_b',179,'Child of',141,'Parent of',1,NULL,NULL,NULL), - (88,44,1,'b_a',141,'Parent of',179,'Child of',1,NULL,NULL,NULL), - (89,45,4,'a_b',179,'Sibling of',170,'Sibling of',1,NULL,NULL,NULL), - (90,45,4,'b_a',170,'Sibling of',179,'Sibling of',1,NULL,NULL,NULL), - (91,46,8,'a_b',141,'Household Member of',5,'Household Member is',1,NULL,NULL,NULL), - (92,46,8,'b_a',5,'Household Member is',141,'Household Member of',1,NULL,NULL,NULL), - (93,47,8,'a_b',170,'Household Member of',5,'Household Member is',1,NULL,NULL,NULL), - (94,47,8,'b_a',5,'Household Member is',170,'Household Member of',1,NULL,NULL,NULL), - (95,48,8,'a_b',179,'Household Member of',5,'Household Member is',1,NULL,NULL,NULL), - (96,48,8,'b_a',5,'Household Member is',179,'Household Member of',1,NULL,NULL,NULL), - (97,49,7,'a_b',140,'Head of Household for',5,'Head of Household is',1,NULL,NULL,NULL), - (98,49,7,'b_a',5,'Head of Household is',140,'Head of Household for',1,NULL,NULL,NULL), - (99,50,2,'a_b',141,'Spouse of',140,'Spouse of',1,NULL,NULL,NULL), - (100,50,2,'b_a',140,'Spouse of',141,'Spouse of',1,NULL,NULL,NULL), - (101,51,1,'a_b',43,'Child of',160,'Parent of',1,NULL,NULL,NULL), - (102,51,1,'b_a',160,'Parent of',43,'Child of',1,NULL,NULL,NULL), - (103,52,1,'a_b',13,'Child of',160,'Parent of',1,NULL,NULL,NULL), - (104,52,1,'b_a',160,'Parent of',13,'Child of',1,NULL,NULL,NULL), - (105,53,1,'a_b',43,'Child of',89,'Parent of',1,NULL,NULL,NULL), - (106,53,1,'b_a',89,'Parent of',43,'Child of',1,NULL,NULL,NULL), - (107,54,1,'a_b',13,'Child of',89,'Parent of',1,NULL,NULL,NULL), - (108,54,1,'b_a',89,'Parent of',13,'Child of',1,NULL,NULL,NULL), - (109,55,4,'a_b',13,'Sibling of',43,'Sibling of',1,NULL,NULL,NULL), - (110,55,4,'b_a',43,'Sibling of',13,'Sibling of',1,NULL,NULL,NULL), - (111,56,8,'a_b',89,'Household Member of',40,'Household Member is',1,NULL,NULL,NULL), - (112,56,8,'b_a',40,'Household Member is',89,'Household Member of',1,NULL,NULL,NULL), - (113,57,8,'a_b',43,'Household Member of',40,'Household Member is',1,NULL,NULL,NULL), - (114,57,8,'b_a',40,'Household Member is',43,'Household Member of',1,NULL,NULL,NULL), - (115,58,8,'a_b',13,'Household Member of',40,'Household Member is',1,NULL,NULL,NULL), - (116,58,8,'b_a',40,'Household Member is',13,'Household Member of',1,NULL,NULL,NULL), - (117,59,7,'a_b',160,'Head of Household for',40,'Head of Household is',1,NULL,NULL,NULL), - (118,59,7,'b_a',40,'Head of Household is',160,'Head of Household for',1,NULL,NULL,NULL), - (119,60,2,'a_b',89,'Spouse of',160,'Spouse of',1,NULL,NULL,NULL), - (120,60,2,'b_a',160,'Spouse of',89,'Spouse of',1,NULL,NULL,NULL), - (121,61,1,'a_b',19,'Child of',129,'Parent of',1,NULL,NULL,NULL), - (122,61,1,'b_a',129,'Parent of',19,'Child of',1,NULL,NULL,NULL), - (123,62,1,'a_b',47,'Child of',129,'Parent of',1,NULL,NULL,NULL), - (124,62,1,'b_a',129,'Parent of',47,'Child of',1,NULL,NULL,NULL), - (125,63,1,'a_b',19,'Child of',2,'Parent of',1,NULL,NULL,NULL), - (126,63,1,'b_a',2,'Parent of',19,'Child of',1,NULL,NULL,NULL), - (127,64,1,'a_b',47,'Child of',2,'Parent of',1,NULL,NULL,NULL), - (128,64,1,'b_a',2,'Parent of',47,'Child of',1,NULL,NULL,NULL), - (129,65,4,'a_b',47,'Sibling of',19,'Sibling of',1,NULL,NULL,NULL), - (130,65,4,'b_a',19,'Sibling of',47,'Sibling of',1,NULL,NULL,NULL), - (131,66,8,'a_b',2,'Household Member of',96,'Household Member is',1,NULL,NULL,NULL), - (132,66,8,'b_a',96,'Household Member is',2,'Household Member of',1,NULL,NULL,NULL), - (133,67,8,'a_b',19,'Household Member of',96,'Household Member is',1,NULL,NULL,NULL), - (134,67,8,'b_a',96,'Household Member is',19,'Household Member of',1,NULL,NULL,NULL), - (135,68,8,'a_b',47,'Household Member of',96,'Household Member is',1,NULL,NULL,NULL), - (136,68,8,'b_a',96,'Household Member is',47,'Household Member of',1,NULL,NULL,NULL), - (137,69,7,'a_b',129,'Head of Household for',96,'Head of Household is',0,NULL,NULL,NULL), - (138,69,7,'b_a',96,'Head of Household is',129,'Head of Household for',0,NULL,NULL,NULL), - (139,70,2,'a_b',2,'Spouse of',129,'Spouse of',0,NULL,NULL,NULL), - (140,70,2,'b_a',129,'Spouse of',2,'Spouse of',0,NULL,NULL,NULL), - (141,71,1,'a_b',61,'Child of',105,'Parent of',1,NULL,NULL,NULL), - (142,71,1,'b_a',105,'Parent of',61,'Child of',1,NULL,NULL,NULL), - (143,72,1,'a_b',94,'Child of',105,'Parent of',1,NULL,NULL,NULL), - (144,72,1,'b_a',105,'Parent of',94,'Child of',1,NULL,NULL,NULL), - (145,73,1,'a_b',61,'Child of',188,'Parent of',1,NULL,NULL,NULL), - (146,73,1,'b_a',188,'Parent of',61,'Child of',1,NULL,NULL,NULL), - (147,74,1,'a_b',94,'Child of',188,'Parent of',1,NULL,NULL,NULL), - (148,74,1,'b_a',188,'Parent of',94,'Child of',1,NULL,NULL,NULL), - (149,75,4,'a_b',94,'Sibling of',61,'Sibling of',1,NULL,NULL,NULL), - (150,75,4,'b_a',61,'Sibling of',94,'Sibling of',1,NULL,NULL,NULL), - (151,76,8,'a_b',188,'Household Member of',88,'Household Member is',1,NULL,NULL,NULL), - (152,76,8,'b_a',88,'Household Member is',188,'Household Member of',1,NULL,NULL,NULL), - (153,77,8,'a_b',61,'Household Member of',88,'Household Member is',1,NULL,NULL,NULL), - (154,77,8,'b_a',88,'Household Member is',61,'Household Member of',1,NULL,NULL,NULL), - (155,78,8,'a_b',94,'Household Member of',88,'Household Member is',1,NULL,NULL,NULL), - (156,78,8,'b_a',88,'Household Member is',94,'Household Member of',1,NULL,NULL,NULL), - (157,79,7,'a_b',105,'Head of Household for',88,'Head of Household is',1,NULL,NULL,NULL), - (158,79,7,'b_a',88,'Head of Household is',105,'Head of Household for',1,NULL,NULL,NULL), - (159,80,2,'a_b',188,'Spouse of',105,'Spouse of',1,NULL,NULL,NULL), - (160,80,2,'b_a',105,'Spouse of',188,'Spouse of',1,NULL,NULL,NULL), - (161,81,1,'a_b',36,'Child of',75,'Parent of',1,NULL,NULL,NULL), - (162,81,1,'b_a',75,'Parent of',36,'Child of',1,NULL,NULL,NULL), - (163,82,1,'a_b',121,'Child of',75,'Parent of',1,NULL,NULL,NULL), - (164,82,1,'b_a',75,'Parent of',121,'Child of',1,NULL,NULL,NULL), - (165,83,1,'a_b',36,'Child of',169,'Parent of',1,NULL,NULL,NULL), - (166,83,1,'b_a',169,'Parent of',36,'Child of',1,NULL,NULL,NULL), - (167,84,1,'a_b',121,'Child of',169,'Parent of',1,NULL,NULL,NULL), - (168,84,1,'b_a',169,'Parent of',121,'Child of',1,NULL,NULL,NULL), - (169,85,4,'a_b',121,'Sibling of',36,'Sibling of',1,NULL,NULL,NULL), - (170,85,4,'b_a',36,'Sibling of',121,'Sibling of',1,NULL,NULL,NULL), - (171,86,8,'a_b',169,'Household Member of',123,'Household Member is',1,NULL,NULL,NULL), - (172,86,8,'b_a',123,'Household Member is',169,'Household Member of',1,NULL,NULL,NULL), - (173,87,8,'a_b',36,'Household Member of',123,'Household Member is',1,NULL,NULL,NULL), - (174,87,8,'b_a',123,'Household Member is',36,'Household Member of',1,NULL,NULL,NULL), - (175,88,8,'a_b',121,'Household Member of',123,'Household Member is',1,NULL,NULL,NULL), - (176,88,8,'b_a',123,'Household Member is',121,'Household Member of',1,NULL,NULL,NULL), - (177,89,7,'a_b',75,'Head of Household for',123,'Head of Household is',1,NULL,NULL,NULL), - (178,89,7,'b_a',123,'Head of Household is',75,'Head of Household for',1,NULL,NULL,NULL), - (179,90,2,'a_b',169,'Spouse of',75,'Spouse of',1,NULL,NULL,NULL), - (180,90,2,'b_a',75,'Spouse of',169,'Spouse of',1,NULL,NULL,NULL), - (181,91,1,'a_b',134,'Child of',139,'Parent of',1,NULL,NULL,NULL), - (182,91,1,'b_a',139,'Parent of',134,'Child of',1,NULL,NULL,NULL), - (183,92,1,'a_b',171,'Child of',139,'Parent of',1,NULL,NULL,NULL), - (184,92,1,'b_a',139,'Parent of',171,'Child of',1,NULL,NULL,NULL), - (185,93,1,'a_b',134,'Child of',7,'Parent of',1,NULL,NULL,NULL), - (186,93,1,'b_a',7,'Parent of',134,'Child of',1,NULL,NULL,NULL), - (187,94,1,'a_b',171,'Child of',7,'Parent of',1,NULL,NULL,NULL), - (188,94,1,'b_a',7,'Parent of',171,'Child of',1,NULL,NULL,NULL), - (189,95,4,'a_b',171,'Sibling of',134,'Sibling of',1,NULL,NULL,NULL), - (190,95,4,'b_a',134,'Sibling of',171,'Sibling of',1,NULL,NULL,NULL), - (191,96,8,'a_b',7,'Household Member of',104,'Household Member is',1,NULL,NULL,NULL), - (192,96,8,'b_a',104,'Household Member is',7,'Household Member of',1,NULL,NULL,NULL), - (193,97,8,'a_b',134,'Household Member of',104,'Household Member is',1,NULL,NULL,NULL), - (194,97,8,'b_a',104,'Household Member is',134,'Household Member of',1,NULL,NULL,NULL), - (195,98,8,'a_b',171,'Household Member of',104,'Household Member is',1,NULL,NULL,NULL), - (196,98,8,'b_a',104,'Household Member is',171,'Household Member of',1,NULL,NULL,NULL), - (197,99,7,'a_b',139,'Head of Household for',104,'Head of Household is',0,NULL,NULL,NULL), - (198,99,7,'b_a',104,'Head of Household is',139,'Head of Household for',0,NULL,NULL,NULL), - (199,100,2,'a_b',7,'Spouse of',139,'Spouse of',0,NULL,NULL,NULL), - (200,100,2,'b_a',139,'Spouse of',7,'Spouse of',0,NULL,NULL,NULL), - (201,101,1,'a_b',155,'Child of',30,'Parent of',1,NULL,NULL,NULL), - (202,101,1,'b_a',30,'Parent of',155,'Child of',1,NULL,NULL,NULL), - (203,102,1,'a_b',87,'Child of',30,'Parent of',1,NULL,NULL,NULL), - (204,102,1,'b_a',30,'Parent of',87,'Child of',1,NULL,NULL,NULL), - (205,103,1,'a_b',155,'Child of',158,'Parent of',1,NULL,NULL,NULL), - (206,103,1,'b_a',158,'Parent of',155,'Child of',1,NULL,NULL,NULL), - (207,104,1,'a_b',87,'Child of',158,'Parent of',1,NULL,NULL,NULL), - (208,104,1,'b_a',158,'Parent of',87,'Child of',1,NULL,NULL,NULL), - (209,105,4,'a_b',87,'Sibling of',155,'Sibling of',1,NULL,NULL,NULL), - (210,105,4,'b_a',155,'Sibling of',87,'Sibling of',1,NULL,NULL,NULL), - (211,106,8,'a_b',158,'Household Member of',144,'Household Member is',1,NULL,NULL,NULL), - (212,106,8,'b_a',144,'Household Member is',158,'Household Member of',1,NULL,NULL,NULL), - (213,107,8,'a_b',155,'Household Member of',144,'Household Member is',1,NULL,NULL,NULL), - (214,107,8,'b_a',144,'Household Member is',155,'Household Member of',1,NULL,NULL,NULL), - (215,108,8,'a_b',87,'Household Member of',144,'Household Member is',1,NULL,NULL,NULL), - (216,108,8,'b_a',144,'Household Member is',87,'Household Member of',1,NULL,NULL,NULL), - (217,109,7,'a_b',30,'Head of Household for',144,'Head of Household is',1,NULL,NULL,NULL), - (218,109,7,'b_a',144,'Head of Household is',30,'Head of Household for',1,NULL,NULL,NULL), - (219,110,2,'a_b',158,'Spouse of',30,'Spouse of',1,NULL,NULL,NULL), - (220,110,2,'b_a',30,'Spouse of',158,'Spouse of',1,NULL,NULL,NULL), - (221,111,1,'a_b',156,'Child of',99,'Parent of',1,NULL,NULL,NULL), - (222,111,1,'b_a',99,'Parent of',156,'Child of',1,NULL,NULL,NULL), - (223,112,1,'a_b',125,'Child of',99,'Parent of',1,NULL,NULL,NULL), - (224,112,1,'b_a',99,'Parent of',125,'Child of',1,NULL,NULL,NULL), - (225,113,1,'a_b',156,'Child of',77,'Parent of',1,NULL,NULL,NULL), - (226,113,1,'b_a',77,'Parent of',156,'Child of',1,NULL,NULL,NULL), - (227,114,1,'a_b',125,'Child of',77,'Parent of',1,NULL,NULL,NULL), - (228,114,1,'b_a',77,'Parent of',125,'Child of',1,NULL,NULL,NULL), - (229,115,4,'a_b',125,'Sibling of',156,'Sibling of',1,NULL,NULL,NULL), - (230,115,4,'b_a',156,'Sibling of',125,'Sibling of',1,NULL,NULL,NULL), - (231,116,8,'a_b',77,'Household Member of',128,'Household Member is',1,NULL,NULL,NULL), - (232,116,8,'b_a',128,'Household Member is',77,'Household Member of',1,NULL,NULL,NULL), - (233,117,8,'a_b',156,'Household Member of',128,'Household Member is',1,NULL,NULL,NULL), - (234,117,8,'b_a',128,'Household Member is',156,'Household Member of',1,NULL,NULL,NULL), - (235,118,8,'a_b',125,'Household Member of',128,'Household Member is',1,NULL,NULL,NULL), - (236,118,8,'b_a',128,'Household Member is',125,'Household Member of',1,NULL,NULL,NULL), - (237,119,7,'a_b',99,'Head of Household for',128,'Head of Household is',1,NULL,NULL,NULL), - (238,119,7,'b_a',128,'Head of Household is',99,'Head of Household for',1,NULL,NULL,NULL), - (239,120,2,'a_b',77,'Spouse of',99,'Spouse of',1,NULL,NULL,NULL), - (240,120,2,'b_a',99,'Spouse of',77,'Spouse of',1,NULL,NULL,NULL), - (241,121,1,'a_b',63,'Child of',26,'Parent of',1,NULL,NULL,NULL), - (242,121,1,'b_a',26,'Parent of',63,'Child of',1,NULL,NULL,NULL), - (243,122,1,'a_b',41,'Child of',26,'Parent of',1,NULL,NULL,NULL), - (244,122,1,'b_a',26,'Parent of',41,'Child of',1,NULL,NULL,NULL), - (245,123,1,'a_b',63,'Child of',146,'Parent of',1,NULL,NULL,NULL), - (246,123,1,'b_a',146,'Parent of',63,'Child of',1,NULL,NULL,NULL), - (247,124,1,'a_b',41,'Child of',146,'Parent of',1,NULL,NULL,NULL), - (248,124,1,'b_a',146,'Parent of',41,'Child of',1,NULL,NULL,NULL), - (249,125,4,'a_b',41,'Sibling of',63,'Sibling of',1,NULL,NULL,NULL), - (250,125,4,'b_a',63,'Sibling of',41,'Sibling of',1,NULL,NULL,NULL), - (251,126,8,'a_b',146,'Household Member of',182,'Household Member is',1,NULL,NULL,NULL), - (252,126,8,'b_a',182,'Household Member is',146,'Household Member of',1,NULL,NULL,NULL), - (253,127,8,'a_b',63,'Household Member of',182,'Household Member is',1,NULL,NULL,NULL), - (254,127,8,'b_a',182,'Household Member is',63,'Household Member of',1,NULL,NULL,NULL), - (255,128,8,'a_b',41,'Household Member of',182,'Household Member is',1,NULL,NULL,NULL), - (256,128,8,'b_a',182,'Household Member is',41,'Household Member of',1,NULL,NULL,NULL), - (257,129,7,'a_b',26,'Head of Household for',182,'Head of Household is',1,NULL,NULL,NULL), - (258,129,7,'b_a',182,'Head of Household is',26,'Head of Household for',1,NULL,NULL,NULL), - (259,130,2,'a_b',146,'Spouse of',26,'Spouse of',1,NULL,NULL,NULL), - (260,130,2,'b_a',26,'Spouse of',146,'Spouse of',1,NULL,NULL,NULL), - (261,131,1,'a_b',161,'Child of',148,'Parent of',1,NULL,NULL,NULL), - (262,131,1,'b_a',148,'Parent of',161,'Child of',1,NULL,NULL,NULL), - (263,132,1,'a_b',59,'Child of',148,'Parent of',1,NULL,NULL,NULL), - (264,132,1,'b_a',148,'Parent of',59,'Child of',1,NULL,NULL,NULL), - (265,133,1,'a_b',161,'Child of',65,'Parent of',1,NULL,NULL,NULL), - (266,133,1,'b_a',65,'Parent of',161,'Child of',1,NULL,NULL,NULL), - (267,134,1,'a_b',59,'Child of',65,'Parent of',1,NULL,NULL,NULL), - (268,134,1,'b_a',65,'Parent of',59,'Child of',1,NULL,NULL,NULL), - (269,135,4,'a_b',59,'Sibling of',161,'Sibling of',1,NULL,NULL,NULL), - (270,135,4,'b_a',161,'Sibling of',59,'Sibling of',1,NULL,NULL,NULL), - (271,136,8,'a_b',65,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL), - (272,136,8,'b_a',51,'Household Member is',65,'Household Member of',1,NULL,NULL,NULL), - (273,137,8,'a_b',161,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL), - (274,137,8,'b_a',51,'Household Member is',161,'Household Member of',1,NULL,NULL,NULL), - (275,138,8,'a_b',59,'Household Member of',51,'Household Member is',1,NULL,NULL,NULL), - (276,138,8,'b_a',51,'Household Member is',59,'Household Member of',1,NULL,NULL,NULL), - (277,139,7,'a_b',148,'Head of Household for',51,'Head of Household is',0,NULL,NULL,NULL), - (278,139,7,'b_a',51,'Head of Household is',148,'Head of Household for',0,NULL,NULL,NULL), - (279,140,2,'a_b',65,'Spouse of',148,'Spouse of',0,NULL,NULL,NULL), - (280,140,2,'b_a',148,'Spouse of',65,'Spouse of',0,NULL,NULL,NULL), - (281,141,1,'a_b',33,'Child of',136,'Parent of',1,NULL,NULL,NULL), - (282,141,1,'b_a',136,'Parent of',33,'Child of',1,NULL,NULL,NULL), - (283,142,1,'a_b',50,'Child of',136,'Parent of',1,NULL,NULL,NULL), - (284,142,1,'b_a',136,'Parent of',50,'Child of',1,NULL,NULL,NULL), - (285,143,1,'a_b',33,'Child of',17,'Parent of',1,NULL,NULL,NULL), - (286,143,1,'b_a',17,'Parent of',33,'Child of',1,NULL,NULL,NULL), - (287,144,1,'a_b',50,'Child of',17,'Parent of',1,NULL,NULL,NULL), - (288,144,1,'b_a',17,'Parent of',50,'Child of',1,NULL,NULL,NULL), - (289,145,4,'a_b',50,'Sibling of',33,'Sibling of',1,NULL,NULL,NULL), - (290,145,4,'b_a',33,'Sibling of',50,'Sibling of',1,NULL,NULL,NULL), - (291,146,8,'a_b',17,'Household Member of',112,'Household Member is',1,NULL,NULL,NULL), - (292,146,8,'b_a',112,'Household Member is',17,'Household Member of',1,NULL,NULL,NULL), - (293,147,8,'a_b',33,'Household Member of',112,'Household Member is',1,NULL,NULL,NULL), - (294,147,8,'b_a',112,'Household Member is',33,'Household Member of',1,NULL,NULL,NULL), - (295,148,8,'a_b',50,'Household Member of',112,'Household Member is',1,NULL,NULL,NULL), - (296,148,8,'b_a',112,'Household Member is',50,'Household Member of',1,NULL,NULL,NULL), - (297,149,7,'a_b',136,'Head of Household for',112,'Head of Household is',1,NULL,NULL,NULL), - (298,149,7,'b_a',112,'Head of Household is',136,'Head of Household for',1,NULL,NULL,NULL), - (299,150,2,'a_b',17,'Spouse of',136,'Spouse of',1,NULL,NULL,NULL), - (300,150,2,'b_a',136,'Spouse of',17,'Spouse of',1,NULL,NULL,NULL), - (301,151,1,'a_b',168,'Child of',196,'Parent of',1,NULL,NULL,NULL), - (302,151,1,'b_a',196,'Parent of',168,'Child of',1,NULL,NULL,NULL), - (303,152,1,'a_b',44,'Child of',196,'Parent of',1,NULL,NULL,NULL), - (304,152,1,'b_a',196,'Parent of',44,'Child of',1,NULL,NULL,NULL), - (305,153,1,'a_b',168,'Child of',137,'Parent of',1,NULL,NULL,NULL), - (306,153,1,'b_a',137,'Parent of',168,'Child of',1,NULL,NULL,NULL), - (307,154,1,'a_b',44,'Child of',137,'Parent of',1,NULL,NULL,NULL), - (308,154,1,'b_a',137,'Parent of',44,'Child of',1,NULL,NULL,NULL), - (309,155,4,'a_b',44,'Sibling of',168,'Sibling of',1,NULL,NULL,NULL), - (310,155,4,'b_a',168,'Sibling of',44,'Sibling of',1,NULL,NULL,NULL), - (311,156,8,'a_b',137,'Household Member of',85,'Household Member is',1,NULL,NULL,NULL), - (312,156,8,'b_a',85,'Household Member is',137,'Household Member of',1,NULL,NULL,NULL), - (313,157,8,'a_b',168,'Household Member of',85,'Household Member is',1,NULL,NULL,NULL), - (314,157,8,'b_a',85,'Household Member is',168,'Household Member of',1,NULL,NULL,NULL), - (315,158,8,'a_b',44,'Household Member of',85,'Household Member is',1,NULL,NULL,NULL), - (316,158,8,'b_a',85,'Household Member is',44,'Household Member of',1,NULL,NULL,NULL), - (317,159,7,'a_b',196,'Head of Household for',85,'Head of Household is',1,NULL,NULL,NULL), - (318,159,7,'b_a',85,'Head of Household is',196,'Head of Household for',1,NULL,NULL,NULL), - (319,160,2,'a_b',137,'Spouse of',196,'Spouse of',1,NULL,NULL,NULL), - (320,160,2,'b_a',196,'Spouse of',137,'Spouse of',1,NULL,NULL,NULL), - (321,161,1,'a_b',198,'Child of',92,'Parent of',1,NULL,NULL,NULL), - (322,161,1,'b_a',92,'Parent of',198,'Child of',1,NULL,NULL,NULL), - (323,162,1,'a_b',187,'Child of',92,'Parent of',1,NULL,NULL,NULL), - (324,162,1,'b_a',92,'Parent of',187,'Child of',1,NULL,NULL,NULL), - (325,163,1,'a_b',198,'Child of',117,'Parent of',1,NULL,NULL,NULL), - (326,163,1,'b_a',117,'Parent of',198,'Child of',1,NULL,NULL,NULL), - (327,164,1,'a_b',187,'Child of',117,'Parent of',1,NULL,NULL,NULL), - (328,164,1,'b_a',117,'Parent of',187,'Child of',1,NULL,NULL,NULL), - (329,165,4,'a_b',187,'Sibling of',198,'Sibling of',1,NULL,NULL,NULL), - (330,165,4,'b_a',198,'Sibling of',187,'Sibling of',1,NULL,NULL,NULL), - (331,166,8,'a_b',117,'Household Member of',195,'Household Member is',1,NULL,NULL,NULL), - (332,166,8,'b_a',195,'Household Member is',117,'Household Member of',1,NULL,NULL,NULL), - (333,167,8,'a_b',198,'Household Member of',195,'Household Member is',1,NULL,NULL,NULL), - (334,167,8,'b_a',195,'Household Member is',198,'Household Member of',1,NULL,NULL,NULL), - (335,168,8,'a_b',187,'Household Member of',195,'Household Member is',1,NULL,NULL,NULL), - (336,168,8,'b_a',195,'Household Member is',187,'Household Member of',1,NULL,NULL,NULL), - (337,169,7,'a_b',92,'Head of Household for',195,'Head of Household is',0,NULL,NULL,NULL), - (338,169,7,'b_a',195,'Head of Household is',92,'Head of Household for',0,NULL,NULL,NULL), - (339,170,2,'a_b',117,'Spouse of',92,'Spouse of',0,NULL,NULL,NULL), - (340,170,2,'b_a',92,'Spouse of',117,'Spouse of',0,NULL,NULL,NULL), - (341,171,1,'a_b',118,'Child of',64,'Parent of',1,NULL,NULL,NULL), - (342,171,1,'b_a',64,'Parent of',118,'Child of',1,NULL,NULL,NULL), - (343,172,1,'a_b',173,'Child of',64,'Parent of',1,NULL,NULL,NULL), - (344,172,1,'b_a',64,'Parent of',173,'Child of',1,NULL,NULL,NULL), - (345,173,1,'a_b',118,'Child of',6,'Parent of',1,NULL,NULL,NULL), - (346,173,1,'b_a',6,'Parent of',118,'Child of',1,NULL,NULL,NULL), - (347,174,1,'a_b',173,'Child of',6,'Parent of',1,NULL,NULL,NULL), - (348,174,1,'b_a',6,'Parent of',173,'Child of',1,NULL,NULL,NULL), - (349,175,4,'a_b',173,'Sibling of',118,'Sibling of',1,NULL,NULL,NULL), - (350,175,4,'b_a',118,'Sibling of',173,'Sibling of',1,NULL,NULL,NULL), - (351,176,8,'a_b',6,'Household Member of',163,'Household Member is',1,NULL,NULL,NULL), - (352,176,8,'b_a',163,'Household Member is',6,'Household Member of',1,NULL,NULL,NULL), - (353,177,8,'a_b',118,'Household Member of',163,'Household Member is',1,NULL,NULL,NULL), - (354,177,8,'b_a',163,'Household Member is',118,'Household Member of',1,NULL,NULL,NULL), - (355,178,8,'a_b',173,'Household Member of',163,'Household Member is',1,NULL,NULL,NULL), - (356,178,8,'b_a',163,'Household Member is',173,'Household Member of',1,NULL,NULL,NULL), - (357,179,7,'a_b',64,'Head of Household for',163,'Head of Household is',0,NULL,NULL,NULL), - (358,179,7,'b_a',163,'Head of Household is',64,'Head of Household for',0,NULL,NULL,NULL), - (359,180,2,'a_b',6,'Spouse of',64,'Spouse of',0,NULL,NULL,NULL), - (360,180,2,'b_a',64,'Spouse of',6,'Spouse of',0,NULL,NULL,NULL), - (361,181,1,'a_b',74,'Child of',29,'Parent of',1,NULL,NULL,NULL), - (362,181,1,'b_a',29,'Parent of',74,'Child of',1,NULL,NULL,NULL), - (363,182,1,'a_b',133,'Child of',29,'Parent of',1,NULL,NULL,NULL), - (364,182,1,'b_a',29,'Parent of',133,'Child of',1,NULL,NULL,NULL), - (365,183,1,'a_b',74,'Child of',176,'Parent of',1,NULL,NULL,NULL), - (366,183,1,'b_a',176,'Parent of',74,'Child of',1,NULL,NULL,NULL), - (367,184,1,'a_b',133,'Child of',176,'Parent of',1,NULL,NULL,NULL), - (368,184,1,'b_a',176,'Parent of',133,'Child of',1,NULL,NULL,NULL), - (369,185,4,'a_b',133,'Sibling of',74,'Sibling of',1,NULL,NULL,NULL), - (370,185,4,'b_a',74,'Sibling of',133,'Sibling of',1,NULL,NULL,NULL), - (371,186,8,'a_b',176,'Household Member of',172,'Household Member is',1,NULL,NULL,NULL), - (372,186,8,'b_a',172,'Household Member is',176,'Household Member of',1,NULL,NULL,NULL), - (373,187,8,'a_b',74,'Household Member of',172,'Household Member is',1,NULL,NULL,NULL), - (374,187,8,'b_a',172,'Household Member is',74,'Household Member of',1,NULL,NULL,NULL), - (375,188,8,'a_b',133,'Household Member of',172,'Household Member is',1,NULL,NULL,NULL), - (376,188,8,'b_a',172,'Household Member is',133,'Household Member of',1,NULL,NULL,NULL), - (377,189,7,'a_b',29,'Head of Household for',172,'Head of Household is',1,NULL,NULL,NULL), - (378,189,7,'b_a',172,'Head of Household is',29,'Head of Household for',1,NULL,NULL,NULL), - (379,190,2,'a_b',176,'Spouse of',29,'Spouse of',1,NULL,NULL,NULL), - (380,190,2,'b_a',29,'Spouse of',176,'Spouse of',1,NULL,NULL,NULL), - (381,191,1,'a_b',178,'Child of',32,'Parent of',1,NULL,NULL,NULL), - (382,191,1,'b_a',32,'Parent of',178,'Child of',1,NULL,NULL,NULL), - (383,192,1,'a_b',127,'Child of',32,'Parent of',1,NULL,NULL,NULL), - (384,192,1,'b_a',32,'Parent of',127,'Child of',1,NULL,NULL,NULL), - (385,193,1,'a_b',178,'Child of',102,'Parent of',1,NULL,NULL,NULL), - (386,193,1,'b_a',102,'Parent of',178,'Child of',1,NULL,NULL,NULL), - (387,194,1,'a_b',127,'Child of',102,'Parent of',1,NULL,NULL,NULL), - (388,194,1,'b_a',102,'Parent of',127,'Child of',1,NULL,NULL,NULL), - (389,195,4,'a_b',127,'Sibling of',178,'Sibling of',1,NULL,NULL,NULL), - (390,195,4,'b_a',178,'Sibling of',127,'Sibling of',1,NULL,NULL,NULL), - (391,196,8,'a_b',102,'Household Member of',167,'Household Member is',1,NULL,NULL,NULL), - (392,196,8,'b_a',167,'Household Member is',102,'Household Member of',1,NULL,NULL,NULL), - (393,197,8,'a_b',178,'Household Member of',167,'Household Member is',1,NULL,NULL,NULL), - (394,197,8,'b_a',167,'Household Member is',178,'Household Member of',1,NULL,NULL,NULL), - (395,198,8,'a_b',127,'Household Member of',167,'Household Member is',1,NULL,NULL,NULL), - (396,198,8,'b_a',167,'Household Member is',127,'Household Member of',1,NULL,NULL,NULL), - (397,199,7,'a_b',32,'Head of Household for',167,'Head of Household is',1,NULL,NULL,NULL), - (398,199,7,'b_a',167,'Head of Household is',32,'Head of Household for',1,NULL,NULL,NULL), - (399,200,2,'a_b',102,'Spouse of',32,'Spouse of',1,NULL,NULL,NULL), - (400,200,2,'b_a',32,'Spouse of',102,'Spouse of',1,NULL,NULL,NULL), - (401,201,5,'a_b',16,'Employee of',18,'Employer of',1,NULL,NULL,NULL), - (402,201,5,'b_a',18,'Employer of',16,'Employee of',1,NULL,NULL,NULL), - (403,202,5,'a_b',197,'Employee of',25,'Employer of',1,NULL,NULL,NULL), - (404,202,5,'b_a',25,'Employer of',197,'Employee of',1,NULL,NULL,NULL), - (405,203,5,'a_b',114,'Employee of',35,'Employer of',1,NULL,NULL,NULL), - (406,203,5,'b_a',35,'Employer of',114,'Employee of',1,NULL,NULL,NULL), - (407,204,5,'a_b',146,'Employee of',52,'Employer of',1,NULL,NULL,NULL), - (408,204,5,'b_a',52,'Employer of',146,'Employee of',1,NULL,NULL,NULL), - (409,205,5,'a_b',87,'Employee of',67,'Employer of',1,NULL,NULL,NULL), - (410,205,5,'b_a',67,'Employer of',87,'Employee of',1,NULL,NULL,NULL), - (411,206,5,'a_b',119,'Employee of',76,'Employer of',1,NULL,NULL,NULL), - (412,206,5,'b_a',76,'Employer of',119,'Employee of',1,NULL,NULL,NULL), - (413,207,5,'a_b',95,'Employee of',80,'Employer of',1,NULL,NULL,NULL), - (414,207,5,'b_a',80,'Employer of',95,'Employee of',1,NULL,NULL,NULL), - (415,208,5,'a_b',66,'Employee of',98,'Employer of',1,NULL,NULL,NULL), - (416,208,5,'b_a',98,'Employer of',66,'Employee of',1,NULL,NULL,NULL), - (417,209,5,'a_b',201,'Employee of',124,'Employer of',1,NULL,NULL,NULL), - (418,209,5,'b_a',124,'Employer of',201,'Employee of',1,NULL,NULL,NULL), - (419,210,5,'a_b',150,'Employee of',130,'Employer of',1,NULL,NULL,NULL), - (420,210,5,'b_a',130,'Employer of',150,'Employee of',1,NULL,NULL,NULL), - (421,211,5,'a_b',12,'Employee of',132,'Employer of',1,NULL,NULL,NULL), - (422,211,5,'b_a',132,'Employer of',12,'Employee of',1,NULL,NULL,NULL), - (423,212,5,'a_b',19,'Employee of',145,'Employer of',1,NULL,NULL,NULL), - (424,212,5,'b_a',145,'Employer of',19,'Employee of',1,NULL,NULL,NULL), - (425,213,5,'a_b',140,'Employee of',159,'Employer of',1,NULL,NULL,NULL), - (426,213,5,'b_a',159,'Employer of',140,'Employee of',1,NULL,NULL,NULL), - (427,214,5,'a_b',79,'Employee of',177,'Employer of',1,NULL,NULL,NULL), - (428,214,5,'b_a',177,'Employer of',79,'Employee of',1,NULL,NULL,NULL), - (429,215,5,'a_b',174,'Employee of',183,'Employer of',1,NULL,NULL,NULL), - (430,215,5,'b_a',183,'Employer of',174,'Employee of',1,NULL,NULL,NULL), - (431,216,5,'a_b',151,'Employee of',184,'Employer of',1,NULL,NULL,NULL), - (432,216,5,'b_a',184,'Employer of',151,'Employee of',1,NULL,NULL,NULL), - (433,217,5,'a_b',158,'Employee of',190,'Employer of',1,NULL,NULL,NULL), - (434,217,5,'b_a',190,'Employer of',158,'Employee of',1,NULL,NULL,NULL), - (435,218,5,'a_b',20,'Employee of',199,'Employer of',1,NULL,NULL,NULL), - (436,218,5,'b_a',199,'Employer of',20,'Employee of',1,NULL,NULL,NULL); + (1,1,1,'a_b',54,'Child of',20,'Parent of',1,NULL,NULL,NULL), + (2,1,1,'b_a',20,'Parent of',54,'Child of',1,NULL,NULL,NULL), + (3,2,1,'a_b',102,'Child of',20,'Parent of',1,NULL,NULL,NULL), + (4,2,1,'b_a',20,'Parent of',102,'Child of',1,NULL,NULL,NULL), + (5,3,1,'a_b',54,'Child of',52,'Parent of',1,NULL,NULL,NULL), + (6,3,1,'b_a',52,'Parent of',54,'Child of',1,NULL,NULL,NULL), + (7,4,1,'a_b',102,'Child of',52,'Parent of',1,NULL,NULL,NULL), + (8,4,1,'b_a',52,'Parent of',102,'Child of',1,NULL,NULL,NULL), + (9,5,4,'a_b',102,'Sibling of',54,'Sibling of',1,NULL,NULL,NULL), + (10,5,4,'b_a',54,'Sibling of',102,'Sibling of',1,NULL,NULL,NULL), + (11,6,8,'a_b',52,'Household Member of',84,'Household Member is',1,NULL,NULL,NULL), + (12,6,8,'b_a',84,'Household Member is',52,'Household Member of',1,NULL,NULL,NULL), + (13,7,8,'a_b',54,'Household Member of',84,'Household Member is',1,NULL,NULL,NULL), + (14,7,8,'b_a',84,'Household Member is',54,'Household Member of',1,NULL,NULL,NULL), + (15,8,8,'a_b',102,'Household Member of',84,'Household Member is',1,NULL,NULL,NULL), + (16,8,8,'b_a',84,'Household Member is',102,'Household Member of',1,NULL,NULL,NULL), + (17,9,7,'a_b',20,'Head of Household for',84,'Head of Household is',1,NULL,NULL,NULL), + (18,9,7,'b_a',84,'Head of Household is',20,'Head of Household for',1,NULL,NULL,NULL), + (19,10,2,'a_b',52,'Spouse of',20,'Spouse of',1,NULL,NULL,NULL), + (20,10,2,'b_a',20,'Spouse of',52,'Spouse of',1,NULL,NULL,NULL), + (21,11,1,'a_b',72,'Child of',183,'Parent of',1,NULL,NULL,NULL), + (22,11,1,'b_a',183,'Parent of',72,'Child of',1,NULL,NULL,NULL), + (23,12,1,'a_b',167,'Child of',183,'Parent of',1,NULL,NULL,NULL), + (24,12,1,'b_a',183,'Parent of',167,'Child of',1,NULL,NULL,NULL), + (25,13,1,'a_b',72,'Child of',14,'Parent of',1,NULL,NULL,NULL), + (26,13,1,'b_a',14,'Parent of',72,'Child of',1,NULL,NULL,NULL), + (27,14,1,'a_b',167,'Child of',14,'Parent of',1,NULL,NULL,NULL), + (28,14,1,'b_a',14,'Parent of',167,'Child of',1,NULL,NULL,NULL), + (29,15,4,'a_b',167,'Sibling of',72,'Sibling of',1,NULL,NULL,NULL), + (30,15,4,'b_a',72,'Sibling of',167,'Sibling of',1,NULL,NULL,NULL), + (31,16,8,'a_b',14,'Household Member of',31,'Household Member is',1,NULL,NULL,NULL), + (32,16,8,'b_a',31,'Household Member is',14,'Household Member of',1,NULL,NULL,NULL), + (33,17,8,'a_b',72,'Household Member of',31,'Household Member is',1,NULL,NULL,NULL), + (34,17,8,'b_a',31,'Household Member is',72,'Household Member of',1,NULL,NULL,NULL), + (35,18,8,'a_b',167,'Household Member of',31,'Household Member is',1,NULL,NULL,NULL), + (36,18,8,'b_a',31,'Household Member is',167,'Household Member of',1,NULL,NULL,NULL), + (37,19,7,'a_b',183,'Head of Household for',31,'Head of Household is',0,NULL,NULL,NULL), + (38,19,7,'b_a',31,'Head of Household is',183,'Head of Household for',0,NULL,NULL,NULL), + (39,20,2,'a_b',14,'Spouse of',183,'Spouse of',0,NULL,NULL,NULL), + (40,20,2,'b_a',183,'Spouse of',14,'Spouse of',0,NULL,NULL,NULL), + (41,21,1,'a_b',11,'Child of',176,'Parent of',1,NULL,NULL,NULL), + (42,21,1,'b_a',176,'Parent of',11,'Child of',1,NULL,NULL,NULL), + (43,22,1,'a_b',190,'Child of',176,'Parent of',1,NULL,NULL,NULL), + (44,22,1,'b_a',176,'Parent of',190,'Child of',1,NULL,NULL,NULL), + (45,23,1,'a_b',11,'Child of',155,'Parent of',1,NULL,NULL,NULL), + (46,23,1,'b_a',155,'Parent of',11,'Child of',1,NULL,NULL,NULL), + (47,24,1,'a_b',190,'Child of',155,'Parent of',1,NULL,NULL,NULL), + (48,24,1,'b_a',155,'Parent of',190,'Child of',1,NULL,NULL,NULL), + (49,25,4,'a_b',190,'Sibling of',11,'Sibling of',1,NULL,NULL,NULL), + (50,25,4,'b_a',11,'Sibling of',190,'Sibling of',1,NULL,NULL,NULL), + (51,26,8,'a_b',155,'Household Member of',32,'Household Member is',1,NULL,NULL,NULL), + (52,26,8,'b_a',32,'Household Member is',155,'Household Member of',1,NULL,NULL,NULL), + (53,27,8,'a_b',11,'Household Member of',32,'Household Member is',1,NULL,NULL,NULL), + (54,27,8,'b_a',32,'Household Member is',11,'Household Member of',1,NULL,NULL,NULL), + (55,28,8,'a_b',190,'Household Member of',32,'Household Member is',1,NULL,NULL,NULL), + (56,28,8,'b_a',32,'Household Member is',190,'Household Member of',1,NULL,NULL,NULL), + (57,29,7,'a_b',176,'Head of Household for',32,'Head of Household is',1,NULL,NULL,NULL), + (58,29,7,'b_a',32,'Head of Household is',176,'Head of Household for',1,NULL,NULL,NULL), + (59,30,2,'a_b',155,'Spouse of',176,'Spouse of',1,NULL,NULL,NULL), + (60,30,2,'b_a',176,'Spouse of',155,'Spouse of',1,NULL,NULL,NULL), + (61,31,1,'a_b',68,'Child of',101,'Parent of',1,NULL,NULL,NULL), + (62,31,1,'b_a',101,'Parent of',68,'Child of',1,NULL,NULL,NULL), + (63,32,1,'a_b',127,'Child of',101,'Parent of',1,NULL,NULL,NULL), + (64,32,1,'b_a',101,'Parent of',127,'Child of',1,NULL,NULL,NULL), + (65,33,1,'a_b',68,'Child of',45,'Parent of',1,NULL,NULL,NULL), + (66,33,1,'b_a',45,'Parent of',68,'Child of',1,NULL,NULL,NULL), + (67,34,1,'a_b',127,'Child of',45,'Parent of',1,NULL,NULL,NULL), + (68,34,1,'b_a',45,'Parent of',127,'Child of',1,NULL,NULL,NULL), + (69,35,4,'a_b',127,'Sibling of',68,'Sibling of',1,NULL,NULL,NULL), + (70,35,4,'b_a',68,'Sibling of',127,'Sibling of',1,NULL,NULL,NULL), + (71,36,8,'a_b',45,'Household Member of',113,'Household Member is',1,NULL,NULL,NULL), + (72,36,8,'b_a',113,'Household Member is',45,'Household Member of',1,NULL,NULL,NULL), + (73,37,8,'a_b',68,'Household Member of',113,'Household Member is',1,NULL,NULL,NULL), + (74,37,8,'b_a',113,'Household Member is',68,'Household Member of',1,NULL,NULL,NULL), + (75,38,8,'a_b',127,'Household Member of',113,'Household Member is',1,NULL,NULL,NULL), + (76,38,8,'b_a',113,'Household Member is',127,'Household Member of',1,NULL,NULL,NULL), + (77,39,7,'a_b',101,'Head of Household for',113,'Head of Household is',1,NULL,NULL,NULL), + (78,39,7,'b_a',113,'Head of Household is',101,'Head of Household for',1,NULL,NULL,NULL), + (79,40,2,'a_b',45,'Spouse of',101,'Spouse of',1,NULL,NULL,NULL), + (80,40,2,'b_a',101,'Spouse of',45,'Spouse of',1,NULL,NULL,NULL), + (81,41,1,'a_b',96,'Child of',5,'Parent of',1,NULL,NULL,NULL), + (82,41,1,'b_a',5,'Parent of',96,'Child of',1,NULL,NULL,NULL), + (83,42,1,'a_b',59,'Child of',5,'Parent of',1,NULL,NULL,NULL), + (84,42,1,'b_a',5,'Parent of',59,'Child of',1,NULL,NULL,NULL), + (85,43,1,'a_b',96,'Child of',19,'Parent of',1,NULL,NULL,NULL), + (86,43,1,'b_a',19,'Parent of',96,'Child of',1,NULL,NULL,NULL), + (87,44,1,'a_b',59,'Child of',19,'Parent of',1,NULL,NULL,NULL), + (88,44,1,'b_a',19,'Parent of',59,'Child of',1,NULL,NULL,NULL), + (89,45,4,'a_b',59,'Sibling of',96,'Sibling of',1,NULL,NULL,NULL), + (90,45,4,'b_a',96,'Sibling of',59,'Sibling of',1,NULL,NULL,NULL), + (91,46,8,'a_b',19,'Household Member of',34,'Household Member is',1,NULL,NULL,NULL), + (92,46,8,'b_a',34,'Household Member is',19,'Household Member of',1,NULL,NULL,NULL), + (93,47,8,'a_b',96,'Household Member of',34,'Household Member is',1,NULL,NULL,NULL), + (94,47,8,'b_a',34,'Household Member is',96,'Household Member of',1,NULL,NULL,NULL), + (95,48,8,'a_b',59,'Household Member of',34,'Household Member is',1,NULL,NULL,NULL), + (96,48,8,'b_a',34,'Household Member is',59,'Household Member of',1,NULL,NULL,NULL), + (97,49,7,'a_b',5,'Head of Household for',34,'Head of Household is',0,NULL,NULL,NULL), + (98,49,7,'b_a',34,'Head of Household is',5,'Head of Household for',0,NULL,NULL,NULL), + (99,50,2,'a_b',19,'Spouse of',5,'Spouse of',0,NULL,NULL,NULL), + (100,50,2,'b_a',5,'Spouse of',19,'Spouse of',0,NULL,NULL,NULL), + (101,51,1,'a_b',172,'Child of',168,'Parent of',1,NULL,NULL,NULL), + (102,51,1,'b_a',168,'Parent of',172,'Child of',1,NULL,NULL,NULL), + (103,52,1,'a_b',47,'Child of',168,'Parent of',1,NULL,NULL,NULL), + (104,52,1,'b_a',168,'Parent of',47,'Child of',1,NULL,NULL,NULL), + (105,53,1,'a_b',172,'Child of',171,'Parent of',1,NULL,NULL,NULL), + (106,53,1,'b_a',171,'Parent of',172,'Child of',1,NULL,NULL,NULL), + (107,54,1,'a_b',47,'Child of',171,'Parent of',1,NULL,NULL,NULL), + (108,54,1,'b_a',171,'Parent of',47,'Child of',1,NULL,NULL,NULL), + (109,55,4,'a_b',47,'Sibling of',172,'Sibling of',1,NULL,NULL,NULL), + (110,55,4,'b_a',172,'Sibling of',47,'Sibling of',1,NULL,NULL,NULL), + (111,56,8,'a_b',171,'Household Member of',92,'Household Member is',1,NULL,NULL,NULL), + (112,56,8,'b_a',92,'Household Member is',171,'Household Member of',1,NULL,NULL,NULL), + (113,57,8,'a_b',172,'Household Member of',92,'Household Member is',1,NULL,NULL,NULL), + (114,57,8,'b_a',92,'Household Member is',172,'Household Member of',1,NULL,NULL,NULL), + (115,58,8,'a_b',47,'Household Member of',92,'Household Member is',1,NULL,NULL,NULL), + (116,58,8,'b_a',92,'Household Member is',47,'Household Member of',1,NULL,NULL,NULL), + (117,59,7,'a_b',168,'Head of Household for',92,'Head of Household is',1,NULL,NULL,NULL), + (118,59,7,'b_a',92,'Head of Household is',168,'Head of Household for',1,NULL,NULL,NULL), + (119,60,2,'a_b',171,'Spouse of',168,'Spouse of',1,NULL,NULL,NULL), + (120,60,2,'b_a',168,'Spouse of',171,'Spouse of',1,NULL,NULL,NULL), + (121,61,1,'a_b',186,'Child of',106,'Parent of',1,NULL,NULL,NULL), + (122,61,1,'b_a',106,'Parent of',186,'Child of',1,NULL,NULL,NULL), + (123,62,1,'a_b',138,'Child of',106,'Parent of',1,NULL,NULL,NULL), + (124,62,1,'b_a',106,'Parent of',138,'Child of',1,NULL,NULL,NULL), + (125,63,1,'a_b',186,'Child of',12,'Parent of',1,NULL,NULL,NULL), + (126,63,1,'b_a',12,'Parent of',186,'Child of',1,NULL,NULL,NULL), + (127,64,1,'a_b',138,'Child of',12,'Parent of',1,NULL,NULL,NULL), + (128,64,1,'b_a',12,'Parent of',138,'Child of',1,NULL,NULL,NULL), + (129,65,4,'a_b',138,'Sibling of',186,'Sibling of',1,NULL,NULL,NULL), + (130,65,4,'b_a',186,'Sibling of',138,'Sibling of',1,NULL,NULL,NULL), + (131,66,8,'a_b',12,'Household Member of',88,'Household Member is',1,NULL,NULL,NULL), + (132,66,8,'b_a',88,'Household Member is',12,'Household Member of',1,NULL,NULL,NULL), + (133,67,8,'a_b',186,'Household Member of',88,'Household Member is',1,NULL,NULL,NULL), + (134,67,8,'b_a',88,'Household Member is',186,'Household Member of',1,NULL,NULL,NULL), + (135,68,8,'a_b',138,'Household Member of',88,'Household Member is',1,NULL,NULL,NULL), + (136,68,8,'b_a',88,'Household Member is',138,'Household Member of',1,NULL,NULL,NULL), + (137,69,7,'a_b',106,'Head of Household for',88,'Head of Household is',1,NULL,NULL,NULL), + (138,69,7,'b_a',88,'Head of Household is',106,'Head of Household for',1,NULL,NULL,NULL), + (139,70,2,'a_b',12,'Spouse of',106,'Spouse of',1,NULL,NULL,NULL), + (140,70,2,'b_a',106,'Spouse of',12,'Spouse of',1,NULL,NULL,NULL), + (141,71,1,'a_b',97,'Child of',163,'Parent of',1,NULL,NULL,NULL), + (142,71,1,'b_a',163,'Parent of',97,'Child of',1,NULL,NULL,NULL), + (143,72,1,'a_b',76,'Child of',163,'Parent of',1,NULL,NULL,NULL), + (144,72,1,'b_a',163,'Parent of',76,'Child of',1,NULL,NULL,NULL), + (145,73,1,'a_b',97,'Child of',120,'Parent of',1,NULL,NULL,NULL), + (146,73,1,'b_a',120,'Parent of',97,'Child of',1,NULL,NULL,NULL), + (147,74,1,'a_b',76,'Child of',120,'Parent of',1,NULL,NULL,NULL), + (148,74,1,'b_a',120,'Parent of',76,'Child of',1,NULL,NULL,NULL), + (149,75,4,'a_b',76,'Sibling of',97,'Sibling of',1,NULL,NULL,NULL), + (150,75,4,'b_a',97,'Sibling of',76,'Sibling of',1,NULL,NULL,NULL), + (151,76,8,'a_b',120,'Household Member of',42,'Household Member is',1,NULL,NULL,NULL), + (152,76,8,'b_a',42,'Household Member is',120,'Household Member of',1,NULL,NULL,NULL), + (153,77,8,'a_b',97,'Household Member of',42,'Household Member is',1,NULL,NULL,NULL), + (154,77,8,'b_a',42,'Household Member is',97,'Household Member of',1,NULL,NULL,NULL), + (155,78,8,'a_b',76,'Household Member of',42,'Household Member is',1,NULL,NULL,NULL), + (156,78,8,'b_a',42,'Household Member is',76,'Household Member of',1,NULL,NULL,NULL), + (157,79,7,'a_b',163,'Head of Household for',42,'Head of Household is',0,NULL,NULL,NULL), + (158,79,7,'b_a',42,'Head of Household is',163,'Head of Household for',0,NULL,NULL,NULL), + (159,80,2,'a_b',120,'Spouse of',163,'Spouse of',0,NULL,NULL,NULL), + (160,80,2,'b_a',163,'Spouse of',120,'Spouse of',0,NULL,NULL,NULL), + (161,81,1,'a_b',99,'Child of',77,'Parent of',1,NULL,NULL,NULL), + (162,81,1,'b_a',77,'Parent of',99,'Child of',1,NULL,NULL,NULL), + (163,82,1,'a_b',85,'Child of',77,'Parent of',1,NULL,NULL,NULL), + (164,82,1,'b_a',77,'Parent of',85,'Child of',1,NULL,NULL,NULL), + (165,83,1,'a_b',99,'Child of',193,'Parent of',1,NULL,NULL,NULL), + (166,83,1,'b_a',193,'Parent of',99,'Child of',1,NULL,NULL,NULL), + (167,84,1,'a_b',85,'Child of',193,'Parent of',1,NULL,NULL,NULL), + (168,84,1,'b_a',193,'Parent of',85,'Child of',1,NULL,NULL,NULL), + (169,85,4,'a_b',85,'Sibling of',99,'Sibling of',1,NULL,NULL,NULL), + (170,85,4,'b_a',99,'Sibling of',85,'Sibling of',1,NULL,NULL,NULL), + (171,86,8,'a_b',193,'Household Member of',43,'Household Member is',1,NULL,NULL,NULL), + (172,86,8,'b_a',43,'Household Member is',193,'Household Member of',1,NULL,NULL,NULL), + (173,87,8,'a_b',99,'Household Member of',43,'Household Member is',1,NULL,NULL,NULL), + (174,87,8,'b_a',43,'Household Member is',99,'Household Member of',1,NULL,NULL,NULL), + (175,88,8,'a_b',85,'Household Member of',43,'Household Member is',1,NULL,NULL,NULL), + (176,88,8,'b_a',43,'Household Member is',85,'Household Member of',1,NULL,NULL,NULL), + (177,89,7,'a_b',77,'Head of Household for',43,'Head of Household is',0,NULL,NULL,NULL), + (178,89,7,'b_a',43,'Head of Household is',77,'Head of Household for',0,NULL,NULL,NULL), + (179,90,2,'a_b',193,'Spouse of',77,'Spouse of',0,NULL,NULL,NULL), + (180,90,2,'b_a',77,'Spouse of',193,'Spouse of',0,NULL,NULL,NULL), + (181,91,1,'a_b',82,'Child of',83,'Parent of',1,NULL,NULL,NULL), + (182,91,1,'b_a',83,'Parent of',82,'Child of',1,NULL,NULL,NULL), + (183,92,1,'a_b',90,'Child of',83,'Parent of',1,NULL,NULL,NULL), + (184,92,1,'b_a',83,'Parent of',90,'Child of',1,NULL,NULL,NULL), + (185,93,1,'a_b',82,'Child of',118,'Parent of',1,NULL,NULL,NULL), + (186,93,1,'b_a',118,'Parent of',82,'Child of',1,NULL,NULL,NULL), + (187,94,1,'a_b',90,'Child of',118,'Parent of',1,NULL,NULL,NULL), + (188,94,1,'b_a',118,'Parent of',90,'Child of',1,NULL,NULL,NULL), + (189,95,4,'a_b',90,'Sibling of',82,'Sibling of',1,NULL,NULL,NULL), + (190,95,4,'b_a',82,'Sibling of',90,'Sibling of',1,NULL,NULL,NULL), + (191,96,8,'a_b',118,'Household Member of',188,'Household Member is',1,NULL,NULL,NULL), + (192,96,8,'b_a',188,'Household Member is',118,'Household Member of',1,NULL,NULL,NULL), + (193,97,8,'a_b',82,'Household Member of',188,'Household Member is',1,NULL,NULL,NULL), + (194,97,8,'b_a',188,'Household Member is',82,'Household Member of',1,NULL,NULL,NULL), + (195,98,8,'a_b',90,'Household Member of',188,'Household Member is',1,NULL,NULL,NULL), + (196,98,8,'b_a',188,'Household Member is',90,'Household Member of',1,NULL,NULL,NULL), + (197,99,7,'a_b',83,'Head of Household for',188,'Head of Household is',0,NULL,NULL,NULL), + (198,99,7,'b_a',188,'Head of Household is',83,'Head of Household for',0,NULL,NULL,NULL), + (199,100,2,'a_b',118,'Spouse of',83,'Spouse of',0,NULL,NULL,NULL), + (200,100,2,'b_a',83,'Spouse of',118,'Spouse of',0,NULL,NULL,NULL), + (201,101,1,'a_b',122,'Child of',117,'Parent of',1,NULL,NULL,NULL), + (202,101,1,'b_a',117,'Parent of',122,'Child of',1,NULL,NULL,NULL), + (203,102,1,'a_b',95,'Child of',117,'Parent of',1,NULL,NULL,NULL), + (204,102,1,'b_a',117,'Parent of',95,'Child of',1,NULL,NULL,NULL), + (205,103,1,'a_b',122,'Child of',137,'Parent of',1,NULL,NULL,NULL), + (206,103,1,'b_a',137,'Parent of',122,'Child of',1,NULL,NULL,NULL), + (207,104,1,'a_b',95,'Child of',137,'Parent of',1,NULL,NULL,NULL), + (208,104,1,'b_a',137,'Parent of',95,'Child of',1,NULL,NULL,NULL), + (209,105,4,'a_b',95,'Sibling of',122,'Sibling of',1,NULL,NULL,NULL), + (210,105,4,'b_a',122,'Sibling of',95,'Sibling of',1,NULL,NULL,NULL), + (211,106,8,'a_b',137,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL), + (212,106,8,'b_a',119,'Household Member is',137,'Household Member of',1,NULL,NULL,NULL), + (213,107,8,'a_b',122,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL), + (214,107,8,'b_a',119,'Household Member is',122,'Household Member of',1,NULL,NULL,NULL), + (215,108,8,'a_b',95,'Household Member of',119,'Household Member is',1,NULL,NULL,NULL), + (216,108,8,'b_a',119,'Household Member is',95,'Household Member of',1,NULL,NULL,NULL), + (217,109,7,'a_b',117,'Head of Household for',119,'Head of Household is',0,NULL,NULL,NULL), + (218,109,7,'b_a',119,'Head of Household is',117,'Head of Household for',0,NULL,NULL,NULL), + (219,110,2,'a_b',137,'Spouse of',117,'Spouse of',0,NULL,NULL,NULL), + (220,110,2,'b_a',117,'Spouse of',137,'Spouse of',0,NULL,NULL,NULL), + (221,111,1,'a_b',63,'Child of',129,'Parent of',1,NULL,NULL,NULL), + (222,111,1,'b_a',129,'Parent of',63,'Child of',1,NULL,NULL,NULL), + (223,112,1,'a_b',18,'Child of',129,'Parent of',1,NULL,NULL,NULL), + (224,112,1,'b_a',129,'Parent of',18,'Child of',1,NULL,NULL,NULL), + (225,113,1,'a_b',63,'Child of',144,'Parent of',1,NULL,NULL,NULL), + (226,113,1,'b_a',144,'Parent of',63,'Child of',1,NULL,NULL,NULL), + (227,114,1,'a_b',18,'Child of',144,'Parent of',1,NULL,NULL,NULL), + (228,114,1,'b_a',144,'Parent of',18,'Child of',1,NULL,NULL,NULL), + (229,115,4,'a_b',18,'Sibling of',63,'Sibling of',1,NULL,NULL,NULL), + (230,115,4,'b_a',63,'Sibling of',18,'Sibling of',1,NULL,NULL,NULL), + (231,116,8,'a_b',144,'Household Member of',22,'Household Member is',1,NULL,NULL,NULL), + (232,116,8,'b_a',22,'Household Member is',144,'Household Member of',1,NULL,NULL,NULL), + (233,117,8,'a_b',63,'Household Member of',22,'Household Member is',1,NULL,NULL,NULL), + (234,117,8,'b_a',22,'Household Member is',63,'Household Member of',1,NULL,NULL,NULL), + (235,118,8,'a_b',18,'Household Member of',22,'Household Member is',1,NULL,NULL,NULL), + (236,118,8,'b_a',22,'Household Member is',18,'Household Member of',1,NULL,NULL,NULL), + (237,119,7,'a_b',129,'Head of Household for',22,'Head of Household is',0,NULL,NULL,NULL), + (238,119,7,'b_a',22,'Head of Household is',129,'Head of Household for',0,NULL,NULL,NULL), + (239,120,2,'a_b',144,'Spouse of',129,'Spouse of',0,NULL,NULL,NULL), + (240,120,2,'b_a',129,'Spouse of',144,'Spouse of',0,NULL,NULL,NULL), + (241,121,1,'a_b',53,'Child of',200,'Parent of',1,NULL,NULL,NULL), + (242,121,1,'b_a',200,'Parent of',53,'Child of',1,NULL,NULL,NULL), + (243,122,1,'a_b',110,'Child of',200,'Parent of',1,NULL,NULL,NULL), + (244,122,1,'b_a',200,'Parent of',110,'Child of',1,NULL,NULL,NULL), + (245,123,1,'a_b',53,'Child of',74,'Parent of',1,NULL,NULL,NULL), + (246,123,1,'b_a',74,'Parent of',53,'Child of',1,NULL,NULL,NULL), + (247,124,1,'a_b',110,'Child of',74,'Parent of',1,NULL,NULL,NULL), + (248,124,1,'b_a',74,'Parent of',110,'Child of',1,NULL,NULL,NULL), + (249,125,4,'a_b',110,'Sibling of',53,'Sibling of',1,NULL,NULL,NULL), + (250,125,4,'b_a',53,'Sibling of',110,'Sibling of',1,NULL,NULL,NULL), + (251,126,8,'a_b',74,'Household Member of',71,'Household Member is',1,NULL,NULL,NULL), + (252,126,8,'b_a',71,'Household Member is',74,'Household Member of',1,NULL,NULL,NULL), + (253,127,8,'a_b',53,'Household Member of',71,'Household Member is',1,NULL,NULL,NULL), + (254,127,8,'b_a',71,'Household Member is',53,'Household Member of',1,NULL,NULL,NULL), + (255,128,8,'a_b',110,'Household Member of',71,'Household Member is',1,NULL,NULL,NULL), + (256,128,8,'b_a',71,'Household Member is',110,'Household Member of',1,NULL,NULL,NULL), + (257,129,7,'a_b',200,'Head of Household for',71,'Head of Household is',1,NULL,NULL,NULL), + (258,129,7,'b_a',71,'Head of Household is',200,'Head of Household for',1,NULL,NULL,NULL), + (259,130,2,'a_b',74,'Spouse of',200,'Spouse of',1,NULL,NULL,NULL), + (260,130,2,'b_a',200,'Spouse of',74,'Spouse of',1,NULL,NULL,NULL), + (261,131,1,'a_b',50,'Child of',79,'Parent of',1,NULL,NULL,NULL), + (262,131,1,'b_a',79,'Parent of',50,'Child of',1,NULL,NULL,NULL), + (263,132,1,'a_b',51,'Child of',79,'Parent of',1,NULL,NULL,NULL), + (264,132,1,'b_a',79,'Parent of',51,'Child of',1,NULL,NULL,NULL), + (265,133,1,'a_b',50,'Child of',56,'Parent of',1,NULL,NULL,NULL), + (266,133,1,'b_a',56,'Parent of',50,'Child of',1,NULL,NULL,NULL), + (267,134,1,'a_b',51,'Child of',56,'Parent of',1,NULL,NULL,NULL), + (268,134,1,'b_a',56,'Parent of',51,'Child of',1,NULL,NULL,NULL), + (269,135,4,'a_b',51,'Sibling of',50,'Sibling of',1,NULL,NULL,NULL), + (270,135,4,'b_a',50,'Sibling of',51,'Sibling of',1,NULL,NULL,NULL), + (271,136,8,'a_b',56,'Household Member of',9,'Household Member is',1,NULL,NULL,NULL), + (272,136,8,'b_a',9,'Household Member is',56,'Household Member of',1,NULL,NULL,NULL), + (273,137,8,'a_b',50,'Household Member of',9,'Household Member is',1,NULL,NULL,NULL), + (274,137,8,'b_a',9,'Household Member is',50,'Household Member of',1,NULL,NULL,NULL), + (275,138,8,'a_b',51,'Household Member of',9,'Household Member is',1,NULL,NULL,NULL), + (276,138,8,'b_a',9,'Household Member is',51,'Household Member of',1,NULL,NULL,NULL), + (277,139,7,'a_b',79,'Head of Household for',9,'Head of Household is',0,NULL,NULL,NULL), + (278,139,7,'b_a',9,'Head of Household is',79,'Head of Household for',0,NULL,NULL,NULL), + (279,140,2,'a_b',56,'Spouse of',79,'Spouse of',0,NULL,NULL,NULL), + (280,140,2,'b_a',79,'Spouse of',56,'Spouse of',0,NULL,NULL,NULL), + (281,141,1,'a_b',41,'Child of',165,'Parent of',1,NULL,NULL,NULL), + (282,141,1,'b_a',165,'Parent of',41,'Child of',1,NULL,NULL,NULL), + (283,142,1,'a_b',98,'Child of',165,'Parent of',1,NULL,NULL,NULL), + (284,142,1,'b_a',165,'Parent of',98,'Child of',1,NULL,NULL,NULL), + (285,143,1,'a_b',41,'Child of',107,'Parent of',1,NULL,NULL,NULL), + (286,143,1,'b_a',107,'Parent of',41,'Child of',1,NULL,NULL,NULL), + (287,144,1,'a_b',98,'Child of',107,'Parent of',1,NULL,NULL,NULL), + (288,144,1,'b_a',107,'Parent of',98,'Child of',1,NULL,NULL,NULL), + (289,145,4,'a_b',98,'Sibling of',41,'Sibling of',1,NULL,NULL,NULL), + (290,145,4,'b_a',41,'Sibling of',98,'Sibling of',1,NULL,NULL,NULL), + (291,146,8,'a_b',107,'Household Member of',103,'Household Member is',1,NULL,NULL,NULL), + (292,146,8,'b_a',103,'Household Member is',107,'Household Member of',1,NULL,NULL,NULL), + (293,147,8,'a_b',41,'Household Member of',103,'Household Member is',1,NULL,NULL,NULL), + (294,147,8,'b_a',103,'Household Member is',41,'Household Member of',1,NULL,NULL,NULL), + (295,148,8,'a_b',98,'Household Member of',103,'Household Member is',1,NULL,NULL,NULL), + (296,148,8,'b_a',103,'Household Member is',98,'Household Member of',1,NULL,NULL,NULL), + (297,149,7,'a_b',165,'Head of Household for',103,'Head of Household is',1,NULL,NULL,NULL), + (298,149,7,'b_a',103,'Head of Household is',165,'Head of Household for',1,NULL,NULL,NULL), + (299,150,2,'a_b',107,'Spouse of',165,'Spouse of',1,NULL,NULL,NULL), + (300,150,2,'b_a',165,'Spouse of',107,'Spouse of',1,NULL,NULL,NULL), + (301,151,1,'a_b',115,'Child of',187,'Parent of',1,NULL,NULL,NULL), + (302,151,1,'b_a',187,'Parent of',115,'Child of',1,NULL,NULL,NULL), + (303,152,1,'a_b',81,'Child of',187,'Parent of',1,NULL,NULL,NULL), + (304,152,1,'b_a',187,'Parent of',81,'Child of',1,NULL,NULL,NULL), + (305,153,1,'a_b',115,'Child of',131,'Parent of',1,NULL,NULL,NULL), + (306,153,1,'b_a',131,'Parent of',115,'Child of',1,NULL,NULL,NULL), + (307,154,1,'a_b',81,'Child of',131,'Parent of',1,NULL,NULL,NULL), + (308,154,1,'b_a',131,'Parent of',81,'Child of',1,NULL,NULL,NULL), + (309,155,4,'a_b',81,'Sibling of',115,'Sibling of',1,NULL,NULL,NULL), + (310,155,4,'b_a',115,'Sibling of',81,'Sibling of',1,NULL,NULL,NULL), + (311,156,8,'a_b',131,'Household Member of',86,'Household Member is',1,NULL,NULL,NULL), + (312,156,8,'b_a',86,'Household Member is',131,'Household Member of',1,NULL,NULL,NULL), + (313,157,8,'a_b',115,'Household Member of',86,'Household Member is',1,NULL,NULL,NULL), + (314,157,8,'b_a',86,'Household Member is',115,'Household Member of',1,NULL,NULL,NULL), + (315,158,8,'a_b',81,'Household Member of',86,'Household Member is',1,NULL,NULL,NULL), + (316,158,8,'b_a',86,'Household Member is',81,'Household Member of',1,NULL,NULL,NULL), + (317,159,7,'a_b',187,'Head of Household for',86,'Head of Household is',1,NULL,NULL,NULL), + (318,159,7,'b_a',86,'Head of Household is',187,'Head of Household for',1,NULL,NULL,NULL), + (319,160,2,'a_b',131,'Spouse of',187,'Spouse of',1,NULL,NULL,NULL), + (320,160,2,'b_a',187,'Spouse of',131,'Spouse of',1,NULL,NULL,NULL), + (321,161,1,'a_b',70,'Child of',111,'Parent of',1,NULL,NULL,NULL), + (322,161,1,'b_a',111,'Parent of',70,'Child of',1,NULL,NULL,NULL), + (323,162,1,'a_b',67,'Child of',111,'Parent of',1,NULL,NULL,NULL), + (324,162,1,'b_a',111,'Parent of',67,'Child of',1,NULL,NULL,NULL), + (325,163,1,'a_b',70,'Child of',164,'Parent of',1,NULL,NULL,NULL), + (326,163,1,'b_a',164,'Parent of',70,'Child of',1,NULL,NULL,NULL), + (327,164,1,'a_b',67,'Child of',164,'Parent of',1,NULL,NULL,NULL), + (328,164,1,'b_a',164,'Parent of',67,'Child of',1,NULL,NULL,NULL), + (329,165,4,'a_b',67,'Sibling of',70,'Sibling of',1,NULL,NULL,NULL), + (330,165,4,'b_a',70,'Sibling of',67,'Sibling of',1,NULL,NULL,NULL), + (331,166,8,'a_b',164,'Household Member of',13,'Household Member is',1,NULL,NULL,NULL), + (332,166,8,'b_a',13,'Household Member is',164,'Household Member of',1,NULL,NULL,NULL), + (333,167,8,'a_b',70,'Household Member of',13,'Household Member is',1,NULL,NULL,NULL), + (334,167,8,'b_a',13,'Household Member is',70,'Household Member of',1,NULL,NULL,NULL), + (335,168,8,'a_b',67,'Household Member of',13,'Household Member is',1,NULL,NULL,NULL), + (336,168,8,'b_a',13,'Household Member is',67,'Household Member of',1,NULL,NULL,NULL), + (337,169,7,'a_b',111,'Head of Household for',13,'Head of Household is',0,NULL,NULL,NULL), + (338,169,7,'b_a',13,'Head of Household is',111,'Head of Household for',0,NULL,NULL,NULL), + (339,170,2,'a_b',164,'Spouse of',111,'Spouse of',0,NULL,NULL,NULL), + (340,170,2,'b_a',111,'Spouse of',164,'Spouse of',0,NULL,NULL,NULL), + (341,171,1,'a_b',195,'Child of',175,'Parent of',1,NULL,NULL,NULL), + (342,171,1,'b_a',175,'Parent of',195,'Child of',1,NULL,NULL,NULL), + (343,172,1,'a_b',130,'Child of',175,'Parent of',1,NULL,NULL,NULL), + (344,172,1,'b_a',175,'Parent of',130,'Child of',1,NULL,NULL,NULL), + (345,173,1,'a_b',195,'Child of',64,'Parent of',1,NULL,NULL,NULL), + (346,173,1,'b_a',64,'Parent of',195,'Child of',1,NULL,NULL,NULL), + (347,174,1,'a_b',130,'Child of',64,'Parent of',1,NULL,NULL,NULL), + (348,174,1,'b_a',64,'Parent of',130,'Child of',1,NULL,NULL,NULL), + (349,175,4,'a_b',130,'Sibling of',195,'Sibling of',1,NULL,NULL,NULL), + (350,175,4,'b_a',195,'Sibling of',130,'Sibling of',1,NULL,NULL,NULL), + (351,176,8,'a_b',64,'Household Member of',25,'Household Member is',1,NULL,NULL,NULL), + (352,176,8,'b_a',25,'Household Member is',64,'Household Member of',1,NULL,NULL,NULL), + (353,177,8,'a_b',195,'Household Member of',25,'Household Member is',1,NULL,NULL,NULL), + (354,177,8,'b_a',25,'Household Member is',195,'Household Member of',1,NULL,NULL,NULL), + (355,178,8,'a_b',130,'Household Member of',25,'Household Member is',1,NULL,NULL,NULL), + (356,178,8,'b_a',25,'Household Member is',130,'Household Member of',1,NULL,NULL,NULL), + (357,179,7,'a_b',175,'Head of Household for',25,'Head of Household is',1,NULL,NULL,NULL), + (358,179,7,'b_a',25,'Head of Household is',175,'Head of Household for',1,NULL,NULL,NULL), + (359,180,2,'a_b',64,'Spouse of',175,'Spouse of',1,NULL,NULL,NULL), + (360,180,2,'b_a',175,'Spouse of',64,'Spouse of',1,NULL,NULL,NULL), + (361,181,1,'a_b',37,'Child of',156,'Parent of',1,NULL,NULL,NULL), + (362,181,1,'b_a',156,'Parent of',37,'Child of',1,NULL,NULL,NULL), + (363,182,1,'a_b',197,'Child of',156,'Parent of',1,NULL,NULL,NULL), + (364,182,1,'b_a',156,'Parent of',197,'Child of',1,NULL,NULL,NULL), + (365,183,1,'a_b',37,'Child of',121,'Parent of',1,NULL,NULL,NULL), + (366,183,1,'b_a',121,'Parent of',37,'Child of',1,NULL,NULL,NULL), + (367,184,1,'a_b',197,'Child of',121,'Parent of',1,NULL,NULL,NULL), + (368,184,1,'b_a',121,'Parent of',197,'Child of',1,NULL,NULL,NULL), + (369,185,4,'a_b',197,'Sibling of',37,'Sibling of',1,NULL,NULL,NULL), + (370,185,4,'b_a',37,'Sibling of',197,'Sibling of',1,NULL,NULL,NULL), + (371,186,8,'a_b',121,'Household Member of',162,'Household Member is',1,NULL,NULL,NULL), + (372,186,8,'b_a',162,'Household Member is',121,'Household Member of',1,NULL,NULL,NULL), + (373,187,8,'a_b',37,'Household Member of',162,'Household Member is',1,NULL,NULL,NULL), + (374,187,8,'b_a',162,'Household Member is',37,'Household Member of',1,NULL,NULL,NULL), + (375,188,8,'a_b',197,'Household Member of',162,'Household Member is',1,NULL,NULL,NULL), + (376,188,8,'b_a',162,'Household Member is',197,'Household Member of',1,NULL,NULL,NULL), + (377,189,7,'a_b',156,'Head of Household for',162,'Head of Household is',0,NULL,NULL,NULL), + (378,189,7,'b_a',162,'Head of Household is',156,'Head of Household for',0,NULL,NULL,NULL), + (379,190,2,'a_b',121,'Spouse of',156,'Spouse of',0,NULL,NULL,NULL), + (380,190,2,'b_a',156,'Spouse of',121,'Spouse of',0,NULL,NULL,NULL), + (381,191,1,'a_b',104,'Child of',8,'Parent of',1,NULL,NULL,NULL), + (382,191,1,'b_a',8,'Parent of',104,'Child of',1,NULL,NULL,NULL), + (383,192,1,'a_b',91,'Child of',8,'Parent of',1,NULL,NULL,NULL), + (384,192,1,'b_a',8,'Parent of',91,'Child of',1,NULL,NULL,NULL), + (385,193,1,'a_b',104,'Child of',191,'Parent of',1,NULL,NULL,NULL), + (386,193,1,'b_a',191,'Parent of',104,'Child of',1,NULL,NULL,NULL), + (387,194,1,'a_b',91,'Child of',191,'Parent of',1,NULL,NULL,NULL), + (388,194,1,'b_a',191,'Parent of',91,'Child of',1,NULL,NULL,NULL), + (389,195,4,'a_b',91,'Sibling of',104,'Sibling of',1,NULL,NULL,NULL), + (390,195,4,'b_a',104,'Sibling of',91,'Sibling of',1,NULL,NULL,NULL), + (391,196,8,'a_b',191,'Household Member of',184,'Household Member is',1,NULL,NULL,NULL), + (392,196,8,'b_a',184,'Household Member is',191,'Household Member of',1,NULL,NULL,NULL), + (393,197,8,'a_b',104,'Household Member of',184,'Household Member is',1,NULL,NULL,NULL), + (394,197,8,'b_a',184,'Household Member is',104,'Household Member of',1,NULL,NULL,NULL), + (395,198,8,'a_b',91,'Household Member of',184,'Household Member is',1,NULL,NULL,NULL), + (396,198,8,'b_a',184,'Household Member is',91,'Household Member of',1,NULL,NULL,NULL), + (397,199,7,'a_b',8,'Head of Household for',184,'Head of Household is',1,NULL,NULL,NULL), + (398,199,7,'b_a',184,'Head of Household is',8,'Head of Household for',1,NULL,NULL,NULL), + (399,200,2,'a_b',191,'Spouse of',8,'Spouse of',1,NULL,NULL,NULL), + (400,200,2,'b_a',8,'Spouse of',191,'Spouse of',1,NULL,NULL,NULL), + (401,201,5,'a_b',23,'Employee of',17,'Employer of',1,NULL,NULL,NULL), + (402,201,5,'b_a',17,'Employer of',23,'Employee of',1,NULL,NULL,NULL), + (403,202,5,'a_b',157,'Employee of',21,'Employer of',1,NULL,NULL,NULL), + (404,202,5,'b_a',21,'Employer of',157,'Employee of',1,NULL,NULL,NULL), + (405,203,5,'a_b',45,'Employee of',26,'Employer of',1,NULL,NULL,NULL), + (406,203,5,'b_a',26,'Employer of',45,'Employee of',1,NULL,NULL,NULL), + (407,204,5,'a_b',153,'Employee of',62,'Employer of',1,NULL,NULL,NULL), + (408,204,5,'b_a',62,'Employer of',153,'Employee of',1,NULL,NULL,NULL), + (409,205,5,'a_b',115,'Employee of',66,'Employer of',1,NULL,NULL,NULL), + (410,205,5,'b_a',66,'Employer of',115,'Employee of',1,NULL,NULL,NULL), + (411,206,5,'a_b',48,'Employee of',105,'Employer of',1,NULL,NULL,NULL), + (412,206,5,'b_a',105,'Employer of',48,'Employee of',1,NULL,NULL,NULL), + (413,207,5,'a_b',193,'Employee of',109,'Employer of',1,NULL,NULL,NULL), + (414,207,5,'b_a',109,'Employer of',193,'Employee of',1,NULL,NULL,NULL), + (415,208,5,'a_b',181,'Employee of',114,'Employer of',1,NULL,NULL,NULL), + (416,208,5,'b_a',114,'Employer of',181,'Employee of',1,NULL,NULL,NULL), + (417,209,5,'a_b',169,'Employee of',124,'Employer of',1,NULL,NULL,NULL), + (418,209,5,'b_a',124,'Employer of',169,'Employee of',1,NULL,NULL,NULL), + (419,210,5,'a_b',112,'Employee of',133,'Employer of',1,NULL,NULL,NULL), + (420,210,5,'b_a',133,'Employer of',112,'Employee of',1,NULL,NULL,NULL), + (421,211,5,'a_b',155,'Employee of',146,'Employer of',1,NULL,NULL,NULL), + (422,211,5,'b_a',146,'Employer of',155,'Employee of',1,NULL,NULL,NULL), + (423,212,5,'a_b',201,'Employee of',150,'Employer of',1,NULL,NULL,NULL), + (424,212,5,'b_a',150,'Employer of',201,'Employee of',1,NULL,NULL,NULL), + (425,213,5,'a_b',123,'Employee of',154,'Employer of',1,NULL,NULL,NULL), + (426,213,5,'b_a',154,'Employer of',123,'Employee of',1,NULL,NULL,NULL), + (427,214,5,'a_b',30,'Employee of',170,'Employer of',1,NULL,NULL,NULL), + (428,214,5,'b_a',170,'Employer of',30,'Employee of',1,NULL,NULL,NULL), + (429,215,5,'a_b',177,'Employee of',180,'Employer of',1,NULL,NULL,NULL), + (430,215,5,'b_a',180,'Employer of',177,'Employee of',1,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_relationship_cache` ENABLE KEYS */; UNLOCK TABLES; @@ -12155,90 +12208,90 @@ 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,185,2,'2022-02-25 03:38:08','Email','Added',NULL), - (2,180,2,'2022-10-09 23:23:38','Admin','Added',NULL), - (3,152,2,'2021-11-03 19:03:47','Email','Added',NULL), - (4,193,2,'2022-06-15 18:32:53','Admin','Added',NULL), - (5,83,2,'2021-11-07 16:17:10','Admin','Added',NULL), - (6,91,2,'2022-02-25 21:45:52','Admin','Added',NULL), - (7,111,2,'2022-09-19 20:22:47','Admin','Added',NULL), - (8,153,2,'2022-05-27 18:11:42','Email','Added',NULL), - (9,189,2,'2022-03-01 14:45:05','Email','Added',NULL), - (10,108,2,'2021-11-01 12:22:47','Email','Added',NULL), - (11,10,2,'2022-05-20 20:27:14','Email','Added',NULL), - (12,120,2,'2022-03-27 19:59:28','Admin','Added',NULL), - (13,81,2,'2022-04-06 04:51:14','Email','Added',NULL), - (14,78,2,'2021-11-01 13:51:30','Admin','Added',NULL), - (15,201,2,'2021-10-23 01:33:05','Email','Added',NULL), - (16,150,2,'2021-11-24 03:15:43','Admin','Added',NULL), - (17,154,2,'2021-11-21 05:47:24','Admin','Added',NULL), - (18,38,2,'2021-10-22 16:59:16','Admin','Added',NULL), - (19,181,2,'2022-03-21 17:14:17','Email','Added',NULL), - (20,8,2,'2021-12-22 05:29:48','Admin','Added',NULL), - (21,126,2,'2022-04-06 19:35:45','Email','Added',NULL), - (22,138,2,'2022-09-08 07:16:41','Admin','Added',NULL), - (23,16,2,'2022-09-26 00:38:18','Email','Added',NULL), - (24,69,2,'2022-07-30 12:18:59','Email','Added',NULL), - (25,53,2,'2022-08-05 19:28:11','Admin','Added',NULL), - (26,122,2,'2022-08-07 16:28:43','Admin','Added',NULL), - (27,79,2,'2022-10-06 00:33:33','Email','Added',NULL), - (28,101,2,'2022-04-28 23:28:11','Email','Added',NULL), - (29,68,2,'2022-10-11 19:30:32','Email','Added',NULL), - (30,113,2,'2021-10-27 12:34:55','Admin','Added',NULL), - (31,66,2,'2022-02-05 00:11:27','Admin','Added',NULL), - (32,3,2,'2021-10-24 16:58:23','Email','Added',NULL), - (33,24,2,'2021-11-24 22:49:03','Email','Added',NULL), - (34,27,2,'2022-06-09 19:31:29','Email','Added',NULL), - (35,109,2,'2022-05-27 00:34:10','Email','Added',NULL), - (36,62,2,'2021-12-04 15:28:26','Email','Added',NULL), - (37,116,2,'2022-06-21 17:25:15','Email','Added',NULL), - (38,95,2,'2022-02-27 07:28:52','Admin','Added',NULL), - (39,165,2,'2022-04-10 12:45:16','Email','Added',NULL), - (40,15,2,'2022-08-18 16:53:09','Email','Added',NULL), - (41,166,2,'2022-06-08 00:14:10','Email','Added',NULL), - (42,107,2,'2022-01-10 07:16:16','Email','Added',NULL), - (43,93,2,'2022-03-24 17:49:39','Admin','Added',NULL), - (44,20,2,'2022-05-03 01:09:38','Admin','Added',NULL), - (45,42,2,'2022-07-23 23:40:45','Admin','Added',NULL), - (46,110,2,'2022-04-28 03:41:20','Admin','Added',NULL), - (47,97,2,'2021-10-31 07:56:19','Admin','Added',NULL), - (48,9,2,'2022-03-04 15:56:46','Admin','Added',NULL), - (49,103,2,'2022-07-02 03:47:40','Admin','Added',NULL), - (50,142,2,'2022-07-31 15:10:49','Admin','Added',NULL), - (51,162,2,'2022-01-19 21:37:02','Email','Added',NULL), - (52,31,2,'2022-01-13 08:31:12','Admin','Added',NULL), - (53,28,2,'2021-12-17 10:11:22','Admin','Added',NULL), - (54,147,2,'2021-12-23 14:10:05','Admin','Added',NULL), - (55,46,2,'2021-11-02 15:35:52','Admin','Added',NULL), - (56,71,2,'2022-10-07 12:08:49','Admin','Added',NULL), - (57,86,2,'2022-02-15 21:52:02','Email','Added',NULL), - (58,135,2,'2021-11-23 17:18:06','Email','Added',NULL), - (59,82,2,'2022-08-26 11:27:25','Email','Added',NULL), - (60,119,2,'2022-06-03 14:51:04','Email','Added',NULL), - (61,39,3,'2022-08-29 11:31:04','Admin','Added',NULL), - (62,186,3,'2022-09-22 10:35:28','Email','Added',NULL), - (63,70,3,'2021-11-11 16:15:01','Admin','Added',NULL), - (64,22,3,'2022-05-05 18:14:39','Email','Added',NULL), - (65,34,3,'2022-03-07 14:16:37','Email','Added',NULL), - (66,73,3,'2021-11-26 03:30:12','Email','Added',NULL), - (67,48,3,'2021-12-11 20:27:13','Email','Added',NULL), - (68,164,3,'2021-10-12 19:16:31','Admin','Added',NULL), - (69,192,3,'2022-01-16 14:22:30','Email','Added',NULL), - (70,45,3,'2022-01-24 05:41:06','Admin','Added',NULL), - (71,21,3,'2022-04-16 00:03:19','Email','Added',NULL), - (72,131,3,'2021-10-26 17:08:54','Email','Added',NULL), - (73,90,3,'2022-07-07 07:55:12','Admin','Added',NULL), - (74,191,3,'2021-12-31 16:02:19','Email','Added',NULL), - (75,114,3,'2022-01-07 17:11:16','Admin','Added',NULL), - (76,185,4,'2022-09-04 13:46:15','Email','Added',NULL), - (77,153,4,'2022-07-03 08:17:31','Email','Added',NULL), - (78,201,4,'2022-03-21 10:32:15','Admin','Added',NULL), - (79,138,4,'2022-05-22 20:03:16','Email','Added',NULL), - (80,68,4,'2022-09-26 23:10:23','Email','Added',NULL), - (81,62,4,'2022-02-13 12:49:44','Email','Added',NULL), - (82,93,4,'2022-02-22 03:16:57','Admin','Added',NULL), - (83,142,4,'2021-11-21 12:02:29','Admin','Added',NULL), - (84,202,4,'2022-02-01 01:20:14','Admin','Added',NULL); + (1,157,2,'2022-08-20 18:50:51','Email','Added',NULL), + (2,30,2,'2022-04-14 08:05:54','Email','Added',NULL), + (3,142,2,'2022-01-15 02:55:19','Email','Added',NULL), + (4,125,2,'2022-02-19 17:58:37','Email','Added',NULL), + (5,58,2,'2022-06-08 21:55:16','Admin','Added',NULL), + (6,174,2,'2022-03-07 08:20:30','Email','Added',NULL), + (7,134,2,'2022-03-31 03:19:22','Email','Added',NULL), + (8,27,2,'2022-03-14 12:53:24','Admin','Added',NULL), + (9,61,2,'2021-12-15 01:33:32','Admin','Added',NULL), + (10,36,2,'2022-08-22 22:35:48','Admin','Added',NULL), + (11,152,2,'2022-06-07 05:26:07','Admin','Added',NULL), + (12,153,2,'2022-03-22 21:22:14','Email','Added',NULL), + (13,181,2,'2021-10-22 19:53:20','Email','Added',NULL), + (14,4,2,'2021-10-21 20:13:48','Admin','Added',NULL), + (15,10,2,'2022-09-01 07:45:38','Email','Added',NULL), + (16,189,2,'2022-03-28 09:24:57','Admin','Added',NULL), + (17,2,2,'2022-08-07 16:32:20','Email','Added',NULL), + (18,112,2,'2022-08-31 13:45:34','Email','Added',NULL), + (19,40,2,'2022-04-21 10:38:24','Email','Added',NULL), + (20,48,2,'2022-05-06 17:53:11','Email','Added',NULL), + (21,178,2,'2022-04-25 11:36:22','Admin','Added',NULL), + (22,123,2,'2022-07-26 23:21:23','Email','Added',NULL), + (23,135,2,'2022-06-29 12:02:26','Email','Added',NULL), + (24,160,2,'2022-01-04 23:06:14','Admin','Added',NULL), + (25,57,2,'2021-11-08 05:39:47','Email','Added',NULL), + (26,159,2,'2022-05-06 03:39:54','Admin','Added',NULL), + (27,139,2,'2022-06-12 22:38:28','Email','Added',NULL), + (28,44,2,'2022-03-18 22:02:41','Admin','Added',NULL), + (29,128,2,'2022-07-22 06:00:59','Email','Added',NULL), + (30,6,2,'2022-03-05 05:00:56','Admin','Added',NULL), + (31,100,2,'2022-01-17 11:42:35','Admin','Added',NULL), + (32,179,2,'2021-11-17 09:12:27','Email','Added',NULL), + (33,69,2,'2021-12-11 14:46:25','Admin','Added',NULL), + (34,75,2,'2021-12-24 21:35:10','Admin','Added',NULL), + (35,65,2,'2022-03-29 21:00:09','Email','Added',NULL), + (36,149,2,'2022-01-05 08:12:12','Email','Added',NULL), + (37,148,2,'2022-04-21 18:38:37','Email','Added',NULL), + (38,87,2,'2022-06-27 02:10:23','Email','Added',NULL), + (39,182,2,'2022-03-21 21:28:42','Admin','Added',NULL), + (40,73,2,'2022-08-10 08:46:18','Admin','Added',NULL), + (41,16,2,'2021-10-27 22:38:21','Email','Added',NULL), + (42,23,2,'2022-04-10 01:00:56','Admin','Added',NULL), + (43,145,2,'2021-10-30 17:46:50','Admin','Added',NULL), + (44,15,2,'2022-03-16 19:32:06','Email','Added',NULL), + (45,196,2,'2021-11-18 03:36:38','Admin','Added',NULL), + (46,201,2,'2022-01-26 00:29:15','Email','Added',NULL), + (47,108,2,'2022-09-04 21:30:42','Admin','Added',NULL), + (48,132,2,'2022-05-20 09:20:59','Email','Added',NULL), + (49,151,2,'2022-04-16 21:37:48','Admin','Added',NULL), + (50,136,2,'2022-09-10 06:46:36','Admin','Added',NULL), + (51,29,2,'2022-03-16 22:22:10','Email','Added',NULL), + (52,143,2,'2021-12-20 17:00:19','Email','Added',NULL), + (53,166,2,'2022-10-10 07:02:11','Admin','Added',NULL), + (54,60,2,'2022-09-25 14:52:26','Email','Added',NULL), + (55,80,2,'2021-12-26 10:30:32','Admin','Added',NULL), + (56,94,2,'2022-05-04 00:31:48','Email','Added',NULL), + (57,194,2,'2022-03-22 10:38:05','Email','Added',NULL), + (58,161,2,'2021-11-14 14:04:31','Admin','Added',NULL), + (59,177,2,'2022-01-19 17:09:24','Admin','Added',NULL), + (60,198,2,'2022-09-01 06:15:52','Admin','Added',NULL), + (61,78,3,'2021-12-14 09:55:18','Admin','Added',NULL), + (62,199,3,'2022-02-11 10:50:57','Admin','Added',NULL), + (63,28,3,'2022-07-24 04:55:19','Email','Added',NULL), + (64,185,3,'2022-03-06 18:56:31','Email','Added',NULL), + (65,147,3,'2022-09-18 14:03:03','Email','Added',NULL), + (66,46,3,'2022-06-14 05:45:04','Email','Added',NULL), + (67,173,3,'2022-05-17 16:22:56','Email','Added',NULL), + (68,141,3,'2021-10-18 13:10:50','Admin','Added',NULL), + (69,38,3,'2022-09-08 13:28:28','Admin','Added',NULL), + (70,192,3,'2021-12-12 18:20:15','Email','Added',NULL), + (71,39,3,'2022-02-27 12:44:03','Email','Added',NULL), + (72,116,3,'2022-10-16 14:51:16','Email','Added',NULL), + (73,93,3,'2022-09-30 18:57:33','Email','Added',NULL), + (74,158,3,'2022-08-06 08:22:33','Admin','Added',NULL), + (75,126,3,'2022-01-20 19:31:30','Email','Added',NULL), + (76,157,4,'2022-02-15 23:25:03','Admin','Added',NULL), + (77,27,4,'2022-01-18 06:55:48','Admin','Added',NULL), + (78,10,4,'2021-12-23 01:35:46','Admin','Added',NULL), + (79,123,4,'2022-06-02 16:07:37','Admin','Added',NULL), + (80,128,4,'2022-06-17 12:39:10','Admin','Added',NULL), + (81,149,4,'2022-10-09 19:41:51','Admin','Added',NULL), + (82,145,4,'2022-06-14 00:03:24','Email','Added',NULL), + (83,136,4,'2022-02-24 06:08:20','Admin','Added',NULL), + (84,202,4,'2022-10-13 11:11:51','Admin','Added',NULL); /*!40000 ALTER TABLE `civicrm_subscription_history` ENABLE KEYS */; UNLOCK TABLES; @@ -12464,22 +12517,23 @@ UNLOCK TABLES; LOCK TABLES `civicrm_website` WRITE; /*!40000 ALTER TABLE `civicrm_website` DISABLE KEYS */; INSERT INTO `civicrm_website` (`id`, `contact_id`, `url`, `website_type_id`) VALUES - (1,159,'http://hawaiifamilyacademy.org',1), - (2,80,'http://glennliteracy.org',1), - (3,183,'http://dowlencollective.org',1), - (4,124,'http://friendssoftware.org',1), - (5,14,'http://localfellowship.org',1), - (6,25,'http://globalacademy.org',1), - (7,98,'http://localagriculture.org',1), - (8,145,'http://wilmingtonhealthtrust.org',1), - (9,67,'http://nypeacefellowship.org',1), - (10,177,'http://louisianasoftwarefund.org',1), - (11,184,'http://edinburgenvironmentalcollective.org',1), - (12,115,'http://collegelegalcenter.org',1), - (13,35,'http://progressivetrust.org',1), - (14,132,'http://progressivesustainability.org',1), - (15,130,'http://cadelltechnologyschool.org',1), - (16,52,'http://globalagriculturefellowship.org',1); + (1,17,'http://hatchnetwork.org',1), + (2,154,'http://ruralservices.org',1), + (3,170,'http://northpointaction.org',1), + (4,114,'http://perrymanadvocacyassociation.org',1), + (5,105,'http://nebraskaenvironmental.org',1), + (6,7,'http://candosoftwaresolutions.org',1), + (7,26,'http://beechalliance.org',1), + (8,146,'http://mainenvironmental.org',1), + (9,24,'http://hamletadvocacy.org',1), + (10,66,'http://maenvironmentalpartnership.org',1), + (11,109,'http://secondassociation.org',1), + (12,124,'http://dortonartsalliance.org',1), + (13,140,'http://floridaculturefund.org',1), + (14,180,'http://dowlenhealthcenter.org',1), + (15,150,'http://idahotechnology.org',1), + (16,62,'http://floridaagriculture.org',1), + (17,55,'http://greenoughsportstrust.org',1); /*!40000 ALTER TABLE `civicrm_website` ENABLE KEYS */; UNLOCK TABLES; @@ -12517,7 +12571,7 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2022-10-12 3:42:28 +-- Dump completed on 2022-10-17 14:12:09 -- +--------------------------------------------------------------------+ -- | Copyright CiviCRM LLC. All rights reserved. | -- | | diff --git a/xml/templates/civicrm_data.tpl b/xml/templates/civicrm_data.tpl index 0ef0e96fe9..2012ca4755 100644 --- a/xml/templates/civicrm_data.tpl +++ b/xml/templates/civicrm_data.tpl @@ -1017,15 +1017,17 @@ VALUES (@option_group_id_date_filter, '{ts escape="sql"}Previous 2 calendar months{/ts}', 'previous_2.month', 'previous_2.month', NULL, NULL, 0,51, NULL, 0, 0, 1, NULL, NULL, NULL), (@option_group_id_date_filter, '{ts escape="sql"}Previous 2 quarters{/ts}', 'previous_2.quarter', 'previous_2.quarter', NULL, NULL, 0,52, NULL, 0, 0, 1, NULL, NULL, NULL), (@option_group_id_date_filter, '{ts escape="sql"}Previous 2 calendar years{/ts}', 'previous_2.year', 'previous_2.year', NULL, NULL, 0,53, NULL, 0, 0, 1, NULL, NULL, NULL), - (@option_group_id_date_filter, '{ts escape="sql"}Day prior to yesterday{/ts}', 'previous_before.day', 'previous_before.day', NULL, NULL, 0,54, NULL, 0, 0, 1, NULL, NULL, NULL), - (@option_group_id_date_filter, '{ts escape="sql"}Week prior to previous week{/ts}', 'previous_before.week', 'previous_before.week', NULL, NULL, 0,55, NULL, 0, 0, 1, NULL, NULL, NULL), - (@option_group_id_date_filter, '{ts escape="sql"}Month prior to previous calendar month{/ts}', 'previous_before.month', 'previous_before.month', NULL, NULL, NULL,56, NULL, 0, 0, 1, NULL, NULL, NULL), - (@option_group_id_date_filter, '{ts escape="sql"}Quarter prior to previous quarter{/ts}', 'previous_before.quarter', 'previous_before.quarter', NULL, NULL, 0,57, NULL, 0, 0, 1, NULL, NULL, NULL), - (@option_group_id_date_filter, '{ts escape="sql"}Year prior to previous calendar year{/ts}', 'previous_before.year', 'previous_before.year', NULL, NULL, 0,58, NULL, 0, 0, 1, NULL, NULL, NULL), - (@option_group_id_date_filter, '{ts escape="sql"}From end of previous week{/ts}', 'greater_previous.week', 'greater_previous.week', NULL, NULL, 0,59, NULL, 0, 0, 1, NULL, NULL, NULL), - (@option_group_id_date_filter, '{ts escape="sql"}From end of previous calendar month{/ts}', 'greater_previous.month', 'greater_previous.month', NULL, NULL, 0,60, NULL, 0, 0, 1, NULL, NULL, NULL), - (@option_group_id_date_filter, '{ts escape="sql"}From end of previous quarter{/ts}', 'greater_previous.quarter', 'greater_previous.quarter', NULL, NULL, 0,61, NULL, 0, 0, 1, NULL, NULL, NULL), - (@option_group_id_date_filter, '{ts escape="sql"}From end of previous calendar year{/ts}', 'greater_previous.year', 'greater_previous.year', NULL, NULL, 0,62, NULL, 0, 0, 1, NULL, NULL, NULL), + (@option_group_id_date_filter, '{ts escape="sql"}Previous 2 fiscal years{/ts}', 'previous_2.fiscal_year', 'previous_2.fiscal_year', NULL, NULL, 0,54, NULL, 0, 0, 1, NULL, NULL, NULL), + (@option_group_id_date_filter, '{ts escape="sql"}Day prior to yesterday{/ts}', 'previous_before.day', 'previous_before.day', NULL, NULL, 0,55, NULL, 0, 0, 1, NULL, NULL, NULL), + (@option_group_id_date_filter, '{ts escape="sql"}Week prior to previous week{/ts}', 'previous_before.week', 'previous_before.week', NULL, NULL, 0,56, NULL, 0, 0, 1, NULL, NULL, NULL), + (@option_group_id_date_filter, '{ts escape="sql"}Month prior to previous calendar month{/ts}', 'previous_before.month', 'previous_before.month', NULL, NULL, NULL,57, NULL, 0, 0, 1, NULL, NULL, NULL), + (@option_group_id_date_filter, '{ts escape="sql"}Quarter prior to previous quarter{/ts}', 'previous_before.quarter', 'previous_before.quarter', NULL, NULL, 0,58, NULL, 0, 0, 1, NULL, NULL, NULL), + (@option_group_id_date_filter, '{ts escape="sql"}Year prior to previous calendar year{/ts}', 'previous_before.year', 'previous_before.year', NULL, NULL, 0,59, NULL, 0, 0, 1, NULL, NULL, NULL), + (@option_group_id_date_filter, '{ts escape="sql"}Fiscal year prior to previous fiscal year{/ts}', 'previous_before.fiscal_year', 'previous_before.fiscal_year', NULL, NULL, 0,60, NULL, 0, 0, 1, NULL, NULL, NULL), + (@option_group_id_date_filter, '{ts escape="sql"}From end of previous week{/ts}', 'greater_previous.week', 'greater_previous.week', NULL, NULL, 0,61, NULL, 0, 0, 1, NULL, NULL, NULL), + (@option_group_id_date_filter, '{ts escape="sql"}From end of previous calendar month{/ts}', 'greater_previous.month', 'greater_previous.month', NULL, NULL, 0,62, NULL, 0, 0, 1, NULL, NULL, NULL), + (@option_group_id_date_filter, '{ts escape="sql"}From end of previous quarter{/ts}', 'greater_previous.quarter', 'greater_previous.quarter', NULL, NULL, 0,63, NULL, 0, 0, 1, NULL, NULL, NULL), + (@option_group_id_date_filter, '{ts escape="sql"}From end of previous calendar year{/ts}', 'greater_previous.year', 'greater_previous.year', NULL, NULL, 0,64, NULL, 0, 0, 1, NULL, NULL, NULL), -- Pledge Status (@option_group_id_ps, '{ts escape="sql"}Completed{/ts}' , 1, 'Completed' , NULL, 0, 0, 1, NULL, 0, 1, 1, NULL, NULL, NULL), -- 2.25.1