active_mocker 1.1.23 → 1.2.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +12 -22
- data/active_mocker.gemspec +1 -0
- data/lib/active_hash/init.rb +1 -1
- data/lib/active_mocker.rb +4 -5
- data/lib/active_mocker/active_record/schema.rb +2 -4
- data/lib/active_mocker/config.rb +6 -22
- data/lib/active_mocker/field.rb +3 -1
- data/lib/active_mocker/generate.rb +161 -0
- data/lib/active_mocker/mock_class_methods.rb +82 -0
- data/lib/active_mocker/mock_instance_methods.rb +81 -0
- data/lib/active_mocker/mock_requires.rb +12 -0
- data/lib/active_mocker/mock_task.rb +12 -0
- data/lib/active_mocker/mock_template.erb +84 -0
- data/lib/active_mocker/public_methods.rb +6 -2
- data/lib/active_mocker/schema_reader.rb +35 -16
- data/lib/active_mocker/table.rb +2 -0
- data/lib/active_mocker/version.rb +1 -1
- data/mocks/micropost_mock.rb +100 -0
- data/mocks/relationship_mock.rb +100 -0
- data/mocks/user_mock.rb +196 -0
- data/plan_mock.rb +2323 -0
- data/spec/lib/active_mocker/generate_spec.rb +49 -0
- data/spec/lib/active_mocker/{base_spec.rb → performance/base_spec.rb} +17 -37
- data/spec/lib/active_mocker/performance/large_schema.rb +3576 -0
- data/spec/lib/active_mocker/performance/migration/20140327205359_migration.rb +0 -0
- data/spec/lib/active_mocker/performance/schema_reader_spec.rb +96 -0
- data/spec/lib/active_mocker/schema_reader_spec.rb +12 -27
- data/spec/lib/compare_mocker_and_record_spec.rb +3 -2
- data/spec/lib/readme_spec.rb +205 -0
- data/spec/mocks/micropost_mock.rb +100 -0
- data/spec/mocks/relationship_mock.rb +100 -0
- data/spec/mocks/user_mock.rb +196 -0
- data/spec/mocks/user_mock_spec.rb +173 -0
- metadata +48 -9
- data/lib/active_mocker/base.rb +0 -356
- data/spec/lib/active_mocker/active_record/schema_spec.rb +0 -2721
data/mocks/user_mock.rb
ADDED
@@ -0,0 +1,196 @@
|
|
1
|
+
require 'active_mocker/mock_requires'
|
2
|
+
|
3
|
+
Object.send(:remove_const, 'UserMock') if class_exists? 'UserMock'
|
4
|
+
|
5
|
+
class UserMock < ::ActiveHash::Base
|
6
|
+
include ActiveMocker::ActiveHash::ARApi
|
7
|
+
include ActiveMocker::MockInstanceMethods
|
8
|
+
extend ActiveMocker::MockClassMethods
|
9
|
+
|
10
|
+
def self.column_names
|
11
|
+
["id", "name", "email", "created_at", "updated_at", "password_digest", "remember_token", "admin"]
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.association_names
|
15
|
+
@association_names = [:microposts, :relationships, :followed_users, :reverse_relationships, :followers]
|
16
|
+
end
|
17
|
+
|
18
|
+
def self.attribute_names
|
19
|
+
@attribute_names = [:id, :name, :email, :created_at, :updated_at, :password_digest, :remember_token, :admin]
|
20
|
+
end
|
21
|
+
|
22
|
+
|
23
|
+
def id
|
24
|
+
attributes['id']
|
25
|
+
end
|
26
|
+
|
27
|
+
def id=(val)
|
28
|
+
attributes['id'] = val
|
29
|
+
end
|
30
|
+
|
31
|
+
def name
|
32
|
+
attributes['name']
|
33
|
+
end
|
34
|
+
|
35
|
+
def name=(val)
|
36
|
+
attributes['name'] = val
|
37
|
+
end
|
38
|
+
|
39
|
+
def email
|
40
|
+
attributes['email']
|
41
|
+
end
|
42
|
+
|
43
|
+
def email=(val)
|
44
|
+
attributes['email'] = val
|
45
|
+
end
|
46
|
+
|
47
|
+
def created_at
|
48
|
+
attributes['created_at']
|
49
|
+
end
|
50
|
+
|
51
|
+
def created_at=(val)
|
52
|
+
attributes['created_at'] = val
|
53
|
+
end
|
54
|
+
|
55
|
+
def updated_at
|
56
|
+
attributes['updated_at']
|
57
|
+
end
|
58
|
+
|
59
|
+
def updated_at=(val)
|
60
|
+
attributes['updated_at'] = val
|
61
|
+
end
|
62
|
+
|
63
|
+
def password_digest
|
64
|
+
attributes['password_digest']
|
65
|
+
end
|
66
|
+
|
67
|
+
def password_digest=(val)
|
68
|
+
attributes['password_digest'] = val
|
69
|
+
end
|
70
|
+
|
71
|
+
def remember_token
|
72
|
+
attributes['remember_token']
|
73
|
+
end
|
74
|
+
|
75
|
+
def remember_token=(val)
|
76
|
+
attributes['remember_token'] = val
|
77
|
+
end
|
78
|
+
|
79
|
+
def admin
|
80
|
+
attributes['admin']
|
81
|
+
end
|
82
|
+
|
83
|
+
def admin=(val)
|
84
|
+
attributes['admin'] = val
|
85
|
+
end
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
def microposts
|
92
|
+
associations['microposts']
|
93
|
+
end
|
94
|
+
|
95
|
+
def microposts=(val)
|
96
|
+
associations['microposts'] = ActiveMocker::CollectionAssociation.new(val)
|
97
|
+
end
|
98
|
+
|
99
|
+
def relationships
|
100
|
+
associations['relationships']
|
101
|
+
end
|
102
|
+
|
103
|
+
def relationships=(val)
|
104
|
+
associations['relationships'] = ActiveMocker::CollectionAssociation.new(val)
|
105
|
+
end
|
106
|
+
|
107
|
+
def followed_users
|
108
|
+
associations['followed_users']
|
109
|
+
end
|
110
|
+
|
111
|
+
def followed_users=(val)
|
112
|
+
associations['followed_users'] = ActiveMocker::CollectionAssociation.new(val)
|
113
|
+
end
|
114
|
+
|
115
|
+
def reverse_relationships
|
116
|
+
associations['reverse_relationships']
|
117
|
+
end
|
118
|
+
|
119
|
+
def reverse_relationships=(val)
|
120
|
+
associations['reverse_relationships'] = ActiveMocker::CollectionAssociation.new(val)
|
121
|
+
end
|
122
|
+
|
123
|
+
def followers
|
124
|
+
associations['followers']
|
125
|
+
end
|
126
|
+
|
127
|
+
def followers=(val)
|
128
|
+
associations['followers'] = ActiveMocker::CollectionAssociation.new(val)
|
129
|
+
end
|
130
|
+
|
131
|
+
|
132
|
+
def self.model_instance_methods
|
133
|
+
return @model_instance_methods if @model_instance_methods
|
134
|
+
@model_instance_methods = {}
|
135
|
+
@model_instance_methods[:feed] = :not_implemented
|
136
|
+
|
137
|
+
@model_instance_methods[:following?] = :not_implemented
|
138
|
+
|
139
|
+
@model_instance_methods[:follow!] = :not_implemented
|
140
|
+
|
141
|
+
@model_instance_methods[:unfollow!] = :not_implemented
|
142
|
+
|
143
|
+
@model_instance_methods
|
144
|
+
end
|
145
|
+
|
146
|
+
def self.model_class_methods
|
147
|
+
return @model_class_methods if @model_class_methods
|
148
|
+
@model_class_methods = {}
|
149
|
+
@model_class_methods[:new_remember_token] = :not_implemented
|
150
|
+
|
151
|
+
@model_class_methods[:digest] = :not_implemented
|
152
|
+
|
153
|
+
@model_class_methods
|
154
|
+
end
|
155
|
+
|
156
|
+
|
157
|
+
def feed()
|
158
|
+
block = model_instance_methods[:feed]
|
159
|
+
self.class.is_implemented(block, "#feed")
|
160
|
+
instance_exec(*[], &block)
|
161
|
+
end
|
162
|
+
|
163
|
+
def following?(other_user)
|
164
|
+
block = model_instance_methods[:following?]
|
165
|
+
self.class.is_implemented(block, "#following?")
|
166
|
+
instance_exec(*[other_user], &block)
|
167
|
+
end
|
168
|
+
|
169
|
+
def follow!(other_user)
|
170
|
+
block = model_instance_methods[:follow!]
|
171
|
+
self.class.is_implemented(block, "#follow!")
|
172
|
+
instance_exec(*[other_user], &block)
|
173
|
+
end
|
174
|
+
|
175
|
+
def unfollow!(other_user)
|
176
|
+
block = model_instance_methods[:unfollow!]
|
177
|
+
self.class.is_implemented(block, "#unfollow!")
|
178
|
+
instance_exec(*[other_user], &block)
|
179
|
+
end
|
180
|
+
|
181
|
+
|
182
|
+
|
183
|
+
def self.new_remember_token()
|
184
|
+
block = model_class_methods[:new_remember_token]
|
185
|
+
is_implemented(block, "::new_remember_token")
|
186
|
+
instance_exec(*[], &block)
|
187
|
+
end
|
188
|
+
|
189
|
+
def self.digest(token)
|
190
|
+
block = model_class_methods[:digest]
|
191
|
+
is_implemented(block, "::digest")
|
192
|
+
instance_exec(*[token], &block)
|
193
|
+
end
|
194
|
+
|
195
|
+
|
196
|
+
end
|
data/plan_mock.rb
ADDED
@@ -0,0 +1,2323 @@
|
|
1
|
+
require 'active_mocker/mock_instance_methods'
|
2
|
+
require 'active_mocker/mock_class_methods'
|
3
|
+
require 'active_hash'
|
4
|
+
require 'active_hash/ar_api'
|
5
|
+
|
6
|
+
class PlanMock < ::ActiveHash::Base
|
7
|
+
include ActiveMocker::ActiveHash::ARApi
|
8
|
+
include ActiveMocker::MockInstanceMethods
|
9
|
+
extend ActiveMocker::MockClassMethods
|
10
|
+
|
11
|
+
def self.column_names
|
12
|
+
["id", "plan_id_legacy", "name", "plan_number", "user_id_owner", "form5500_id", "user_id_primary_sponsor_contact", "user_id_recordkeeper", "user_id_tpa", "user_id_advisor", "company_id_sponsor", "ein_plan_code", "plan_number_3_digit", "customer_identifier", "disclosure_name", "disclosure_assets", "disclosure_participants", "user_id_recordkeeper_disclosure", "user_id_tpa_disclosure", "disclosure_fiduciary_status", "prospect_plan", "split_id", "is_advisor_12b1_broker", "twelveb1_dispersal_id", "user_id_referred_by", "logo_location", "advisor_fee_support_location", "rank_factor_investments", "rank_factor_vendor_mgmt", "rank_factor_plan_mgmt", "rank_factor_part_services", "rank_factor_plan_complexity", "rank_factor_recordkeeping", "rank_factor_administration", "rank_factor_compliance_consulting", "rank_factor_communication_education", "total_advisable_plan_assets", "total_proprietary_plan_assets", "is_held_away", "brokerage_assets_12_months_ago", "participant_internet_capability", "annual_per_participant_advice_fee", "percent_assets_in_target_date_funds", "percent_assets_in_risk_based_funds_or_balanced_funds", "percent_assets_in_model_portfolios_from_core", "percent_assets_in_managed_accounts", "percent_delegators", "percent_doers_diversified", "percent_doers_auto_rebalance", "percent_doers_diversified_and_auto_rebalance", "percent_with_a_loan", "percent_taking_loan_last_12mos", "percent_taking_age_59_5_withdrawal_last_12mos", "percent_taking_hardship_withdrawal_last_12mos", "percent_terms_dollars_of_last_12_mos_preserving_percent_resp", "duns_number", "assets_as_of_date", "redacted_plan_number", "redacted_sponsor_ein", "contract_id_future", "is_active", "creation_date", "termination_date", "contract_expiration_date", "last_comprehensive_review_date", "naics_code", "plan_type_id", "is_csp_408b2", "total_plan_assets", "loan_assets", "revenue_method_id", "erisa_remainder", "trustee_custodian_code", "trustee_custodian_name", "employer_controlled_group", "eligible_age_service_single_requirement", "eligible_age_service_multiple_requirement", "eligible_age_single_requirement", "eligible_age_multiple_requirement", "entry_date", "autoenroll", "autoenroll_percent", "autoincrease_annual_max", "autoincrease_overall_max", "pretax_max_percent", "roth_max_percent", "catchup", "aftertax_max_percent", "rollover_in", "employer_matching", "employer_matching_formula_type", "employer_matching_tier1_percent", "employer_matching_tier1_amount_percent", "employer_matching_tier1_amount_amt", "employer_matching_tier2_percent", "employer_matching_tier2_amount_percent", "employer_matching_tier2_amount_amt", "employer_matching_tier3_percent", "employer_matching_tier3_amount_percent", "employer_matching_tier3_amount_amt", "employer_matching_formula_amtmax_applies", "employer_matching_formula_amtmax_amount", "employer_matching_trueup", "employer_matching_eoy", "employer_matching_1000_hrs", "employer_matching_vesting", "employer_matching_vesting_years", "employer_required", "employer_required_amtmax_applies", "employer_required_amtmax_amount", "employer_required_percent", "employer_required_eoy", "employer_required_1000_hrs", "employer_required_vesting", "employer_required_vesting_years", "employer_discretionary", "employer_discretionary_percent", "employer_discretionary_amtmax_applies", "employer_discretionary_amtmax_amount", "employer_discretionary_eoy", "employer_discretionary_1000_hrs", "employer_discretionary_vesting", "employer_discretionary_years", "model_strategy_id", "models_number", "all_employees_defaulted_into_qdia", "auto_rebalance", "loans_allowed_general_purpose", "loans_allowed_home", "loans_allowed_hardship", "max_loans", "age_59_5_withdrawals", "hardship_withdrawals", "installment_payments", "annuity_option", "cash_out", "lifetime_income_option", "lifetime_income_service", "valuation_frequency", "startup_startup_newlyeligible_volumes", "m_and_a_volumes_acquisitions", "m_and_a_volumes_divestitures", "ineligible_participants_volumes", "eligible_participants_volumes", "active_participants_account_balance", "terminated_participants_account_balance", "participant_count", "processing_payroll_volumes", "processing_employer_match_volumes", "processing_employer_other_volumes", "deferral_rate_changes_manual", "deferral_rate_changes_automated", "processing_forfeiture_allocations", "processing_corrected_contributions", "processing_adp_acp_refunds", "processing_adp_acp_contributions", "rollover_in_volumes", "investment_transfer_volumes", "loan_origination_volumes", "loans_maintenance_volumes", "age_59_5_volumes", "hardship_process_volumes", "mrds_volumes", "qdro_process_volumes", "distributions_processed_volumes", "distributions_processed_volumes_cashout", "fund_adds_volumes", "fund_deletes_volumes", "company_stock", "company_stock_dividend_allocation", "company_stock_dividend_type", "models_nav_type", "support_annual_audit", "plan_design_changes_volumes", "implement_plan_startup_processes", "provide_plan_document_spd", "provide_plan_document_amendments", "determine_newly_eligible_employees", "send_enrollment_materials_hardcopy", "send_enrollment_materials_digital", "census_validation_for_payroll", "calculate_employer_match_volumes", "calculate_employer_match_trueup", "calculate_other_employer_contribution", "calculate_forfeiture_allocation", "forfeiture_allocations_type", "distribute_required_notices_digital", "distribute_required_notices_hardcopy", "distribute_404a5_participant_disclosures", "calculate_contribution_corrections", "rollover_in_review", "loan_origination_review", "hardship_review", "age_59_5_review", "mrds_review", "qdro_review", "terms_review", "administer_erisa_spending_accounts", "erisa_spending_accounts_usage", "prepare_form_5500", "conducts_adp_acp_testing", "adp_acp_testing_type", "calculate_adp_acp_refunds", "calculate_adp_acp_contributions", "conducts_415_testing", "conducts_top_heavy_testing", "calculate_top_heavy_minimum", "conducts_compensation_ratio_testing", "calculates_eligible_compensation_of_self_employed", "definition_of_compensation", "meet_with_plan_committee", "type_of_plan_committee_meetings", "conducts_401a4_testing", "conducts_410b_testing", "monitor_section_16_insider_trading_rules", "type_of_section_16_insider_trading_window", "consult_on_plan_design_changes", "merger_and_acquisition_work", "assist_with_irs_and_dol_audits", "consult_on_plan_defect_correction", "manage_plan_transition_to_new_vendor", "enrollment_kit_volumes", "mail_s_enrollment_kit_type", "toll_free_number_recordkeepers_volumes", "toll_free_number_recordkeepers_type", "internet_participants_type", "hardcopy_statement_volumes", "hardcopy_statement_type", "digital_stmts_volumes", "digital_stmts_type", "retirement_projection_hardcopy_statement_volumes", "retirement_projection_hardcopy_statement_type", "retirement_projection_digital_statement_volumes", "retirement_projection_digital_statement_type", "hardcopy_plan_driven_events", "hardcopy_plan_driven_events_type", "digital_plan_driven_events", "digital_plan_driven_events_type", "hardcopy_campaigns", "hardcopy_campaign_type", "digital_campaigns", "digital_campaign_type", "group_meetings", "group_meetings_type", "one_on_one_meetings", "one_on_one_meetings_type", "participation_pre_tax_rate_overall", "participation_pre_tax_rate_hces", "participation_pre_tax_rate_nhces", "pre_tax_deferral_percent_overall", "pre_tax_deferral_percent_hces", "pre_tax_deferral_percent_nhces", "participation_roth_rate_overall", "participation_roth_rate_hces", "participation_roth_rate_nhces", "roth_deferral_percent_overall", "roth_deferral_percent_hces", "roth_deferral_percent_nhces", "auto_escalate_percent_parts", "auto_escalate_avg_increase", "max_company_match_percent_parts", "catchup_percent_parts", "dollars_in_models", "terms_volumes", "terms_still_in_plan_percent_parts_12mos", "terms_rolled_over_percent_parts_12mos", "terms_cashed_out_percent_parts_12mos", "terms_still_in_plan_amt_12mos", "terms_rolled_over_amt_12mos", "terms_cashed_out_amt_12mos", "advisor_twelve_b1_fees_broker_of_record", "advisor_twelve_b1_how_dispensed_picklist_feesdispensedoptions", "participation_pre_tax_deferral_percent_hces", "participation_pre_tax_deferral_percent_nhces", "created_at", "updated_at", "company_id_recordkeeper", "company_id_tpa", "company_id_advisor_firm", "person_id_advisor", "advisor_makes_payments_to_providers", "advisor_credits_plan_or_participants", "service_group_id"]
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.association_names
|
16
|
+
@association_names = []
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.attribute_names
|
20
|
+
@attribute_names = [:id, :plan_id_legacy, :name, :plan_number, :user_id_owner, :form5500_id, :user_id_primary_sponsor_contact, :user_id_recordkeeper, :user_id_tpa, :user_id_advisor, :company_id_sponsor, :ein_plan_code, :plan_number_3_digit, :customer_identifier, :disclosure_name, :disclosure_assets, :disclosure_participants, :user_id_recordkeeper_disclosure, :user_id_tpa_disclosure, :disclosure_fiduciary_status, :prospect_plan, :split_id, :is_advisor_12b1_broker, :twelveb1_dispersal_id, :user_id_referred_by, :logo_location, :advisor_fee_support_location, :rank_factor_investments, :rank_factor_vendor_mgmt, :rank_factor_plan_mgmt, :rank_factor_part_services, :rank_factor_plan_complexity, :rank_factor_recordkeeping, :rank_factor_administration, :rank_factor_compliance_consulting, :rank_factor_communication_education, :total_advisable_plan_assets, :total_proprietary_plan_assets, :is_held_away, :brokerage_assets_12_months_ago, :participant_internet_capability, :annual_per_participant_advice_fee, :percent_assets_in_target_date_funds, :percent_assets_in_risk_based_funds_or_balanced_funds, :percent_assets_in_model_portfolios_from_core, :percent_assets_in_managed_accounts, :percent_delegators, :percent_doers_diversified, :percent_doers_auto_rebalance, :percent_doers_diversified_and_auto_rebalance, :percent_with_a_loan, :percent_taking_loan_last_12mos, :percent_taking_age_59_5_withdrawal_last_12mos, :percent_taking_hardship_withdrawal_last_12mos, :percent_terms_dollars_of_last_12_mos_preserving_percent_resp, :duns_number, :assets_as_of_date, :redacted_plan_number, :redacted_sponsor_ein, :contract_id_future, :is_active, :creation_date, :termination_date, :contract_expiration_date, :last_comprehensive_review_date, :naics_code, :plan_type_id, :is_csp_408b2, :total_plan_assets, :loan_assets, :revenue_method_id, :erisa_remainder, :trustee_custodian_code, :trustee_custodian_name, :employer_controlled_group, :eligible_age_service_single_requirement, :eligible_age_service_multiple_requirement, :eligible_age_single_requirement, :eligible_age_multiple_requirement, :entry_date, :autoenroll, :autoenroll_percent, :autoincrease_annual_max, :autoincrease_overall_max, :pretax_max_percent, :roth_max_percent, :catchup, :aftertax_max_percent, :rollover_in, :employer_matching, :employer_matching_formula_type, :employer_matching_tier1_percent, :employer_matching_tier1_amount_percent, :employer_matching_tier1_amount_amt, :employer_matching_tier2_percent, :employer_matching_tier2_amount_percent, :employer_matching_tier2_amount_amt, :employer_matching_tier3_percent, :employer_matching_tier3_amount_percent, :employer_matching_tier3_amount_amt, :employer_matching_formula_amtmax_applies, :employer_matching_formula_amtmax_amount, :employer_matching_trueup, :employer_matching_eoy, :employer_matching_1000_hrs, :employer_matching_vesting, :employer_matching_vesting_years, :employer_required, :employer_required_amtmax_applies, :employer_required_amtmax_amount, :employer_required_percent, :employer_required_eoy, :employer_required_1000_hrs, :employer_required_vesting, :employer_required_vesting_years, :employer_discretionary, :employer_discretionary_percent, :employer_discretionary_amtmax_applies, :employer_discretionary_amtmax_amount, :employer_discretionary_eoy, :employer_discretionary_1000_hrs, :employer_discretionary_vesting, :employer_discretionary_years, :model_strategy_id, :models_number, :all_employees_defaulted_into_qdia, :auto_rebalance, :loans_allowed_general_purpose, :loans_allowed_home, :loans_allowed_hardship, :max_loans, :age_59_5_withdrawals, :hardship_withdrawals, :installment_payments, :annuity_option, :cash_out, :lifetime_income_option, :lifetime_income_service, :valuation_frequency, :startup_startup_newlyeligible_volumes, :m_and_a_volumes_acquisitions, :m_and_a_volumes_divestitures, :ineligible_participants_volumes, :eligible_participants_volumes, :active_participants_account_balance, :terminated_participants_account_balance, :participant_count, :processing_payroll_volumes, :processing_employer_match_volumes, :processing_employer_other_volumes, :deferral_rate_changes_manual, :deferral_rate_changes_automated, :processing_forfeiture_allocations, :processing_corrected_contributions, :processing_adp_acp_refunds, :processing_adp_acp_contributions, :rollover_in_volumes, :investment_transfer_volumes, :loan_origination_volumes, :loans_maintenance_volumes, :age_59_5_volumes, :hardship_process_volumes, :mrds_volumes, :qdro_process_volumes, :distributions_processed_volumes, :distributions_processed_volumes_cashout, :fund_adds_volumes, :fund_deletes_volumes, :company_stock, :company_stock_dividend_allocation, :company_stock_dividend_type, :models_nav_type, :support_annual_audit, :plan_design_changes_volumes, :implement_plan_startup_processes, :provide_plan_document_spd, :provide_plan_document_amendments, :determine_newly_eligible_employees, :send_enrollment_materials_hardcopy, :send_enrollment_materials_digital, :census_validation_for_payroll, :calculate_employer_match_volumes, :calculate_employer_match_trueup, :calculate_other_employer_contribution, :calculate_forfeiture_allocation, :forfeiture_allocations_type, :distribute_required_notices_digital, :distribute_required_notices_hardcopy, :distribute_404a5_participant_disclosures, :calculate_contribution_corrections, :rollover_in_review, :loan_origination_review, :hardship_review, :age_59_5_review, :mrds_review, :qdro_review, :terms_review, :administer_erisa_spending_accounts, :erisa_spending_accounts_usage, :prepare_form_5500, :conducts_adp_acp_testing, :adp_acp_testing_type, :calculate_adp_acp_refunds, :calculate_adp_acp_contributions, :conducts_415_testing, :conducts_top_heavy_testing, :calculate_top_heavy_minimum, :conducts_compensation_ratio_testing, :calculates_eligible_compensation_of_self_employed, :definition_of_compensation, :meet_with_plan_committee, :type_of_plan_committee_meetings, :conducts_401a4_testing, :conducts_410b_testing, :monitor_section_16_insider_trading_rules, :type_of_section_16_insider_trading_window, :consult_on_plan_design_changes, :merger_and_acquisition_work, :assist_with_irs_and_dol_audits, :consult_on_plan_defect_correction, :manage_plan_transition_to_new_vendor, :enrollment_kit_volumes, :mail_s_enrollment_kit_type, :toll_free_number_recordkeepers_volumes, :toll_free_number_recordkeepers_type, :internet_participants_type, :hardcopy_statement_volumes, :hardcopy_statement_type, :digital_stmts_volumes, :digital_stmts_type, :retirement_projection_hardcopy_statement_volumes, :retirement_projection_hardcopy_statement_type, :retirement_projection_digital_statement_volumes, :retirement_projection_digital_statement_type, :hardcopy_plan_driven_events, :hardcopy_plan_driven_events_type, :digital_plan_driven_events, :digital_plan_driven_events_type, :hardcopy_campaigns, :hardcopy_campaign_type, :digital_campaigns, :digital_campaign_type, :group_meetings, :group_meetings_type, :one_on_one_meetings, :one_on_one_meetings_type, :participation_pre_tax_rate_overall, :participation_pre_tax_rate_hces, :participation_pre_tax_rate_nhces, :pre_tax_deferral_percent_overall, :pre_tax_deferral_percent_hces, :pre_tax_deferral_percent_nhces, :participation_roth_rate_overall, :participation_roth_rate_hces, :participation_roth_rate_nhces, :roth_deferral_percent_overall, :roth_deferral_percent_hces, :roth_deferral_percent_nhces, :auto_escalate_percent_parts, :auto_escalate_avg_increase, :max_company_match_percent_parts, :catchup_percent_parts, :dollars_in_models, :terms_volumes, :terms_still_in_plan_percent_parts_12mos, :terms_rolled_over_percent_parts_12mos, :terms_cashed_out_percent_parts_12mos, :terms_still_in_plan_amt_12mos, :terms_rolled_over_amt_12mos, :terms_cashed_out_amt_12mos, :advisor_twelve_b1_fees_broker_of_record, :advisor_twelve_b1_how_dispensed_picklist_feesdispensedoptions, :participation_pre_tax_deferral_percent_hces, :participation_pre_tax_deferral_percent_nhces, :created_at, :updated_at, :company_id_recordkeeper, :company_id_tpa, :company_id_advisor_firm, :person_id_advisor, :advisor_makes_payments_to_providers, :advisor_credits_plan_or_participants, :service_group_id]
|
21
|
+
end
|
22
|
+
|
23
|
+
|
24
|
+
def id
|
25
|
+
attributes['id']
|
26
|
+
end
|
27
|
+
|
28
|
+
def id=(val)
|
29
|
+
attributes['id'] = val
|
30
|
+
end
|
31
|
+
|
32
|
+
def plan_id_legacy
|
33
|
+
attributes['plan_id_legacy']
|
34
|
+
end
|
35
|
+
|
36
|
+
def plan_id_legacy=(val)
|
37
|
+
attributes['plan_id_legacy'] = val
|
38
|
+
end
|
39
|
+
|
40
|
+
def name
|
41
|
+
attributes['name']
|
42
|
+
end
|
43
|
+
|
44
|
+
def name=(val)
|
45
|
+
attributes['name'] = val
|
46
|
+
end
|
47
|
+
|
48
|
+
def plan_number
|
49
|
+
attributes['plan_number']
|
50
|
+
end
|
51
|
+
|
52
|
+
def plan_number=(val)
|
53
|
+
attributes['plan_number'] = val
|
54
|
+
end
|
55
|
+
|
56
|
+
def user_id_owner
|
57
|
+
attributes['user_id_owner']
|
58
|
+
end
|
59
|
+
|
60
|
+
def user_id_owner=(val)
|
61
|
+
attributes['user_id_owner'] = val
|
62
|
+
end
|
63
|
+
|
64
|
+
def form5500_id
|
65
|
+
attributes['form5500_id']
|
66
|
+
end
|
67
|
+
|
68
|
+
def form5500_id=(val)
|
69
|
+
attributes['form5500_id'] = val
|
70
|
+
end
|
71
|
+
|
72
|
+
def user_id_primary_sponsor_contact
|
73
|
+
attributes['user_id_primary_sponsor_contact']
|
74
|
+
end
|
75
|
+
|
76
|
+
def user_id_primary_sponsor_contact=(val)
|
77
|
+
attributes['user_id_primary_sponsor_contact'] = val
|
78
|
+
end
|
79
|
+
|
80
|
+
def user_id_recordkeeper
|
81
|
+
attributes['user_id_recordkeeper']
|
82
|
+
end
|
83
|
+
|
84
|
+
def user_id_recordkeeper=(val)
|
85
|
+
attributes['user_id_recordkeeper'] = val
|
86
|
+
end
|
87
|
+
|
88
|
+
def user_id_tpa
|
89
|
+
attributes['user_id_tpa']
|
90
|
+
end
|
91
|
+
|
92
|
+
def user_id_tpa=(val)
|
93
|
+
attributes['user_id_tpa'] = val
|
94
|
+
end
|
95
|
+
|
96
|
+
def user_id_advisor
|
97
|
+
attributes['user_id_advisor']
|
98
|
+
end
|
99
|
+
|
100
|
+
def user_id_advisor=(val)
|
101
|
+
attributes['user_id_advisor'] = val
|
102
|
+
end
|
103
|
+
|
104
|
+
def company_id_sponsor
|
105
|
+
attributes['company_id_sponsor']
|
106
|
+
end
|
107
|
+
|
108
|
+
def company_id_sponsor=(val)
|
109
|
+
attributes['company_id_sponsor'] = val
|
110
|
+
end
|
111
|
+
|
112
|
+
def ein_plan_code
|
113
|
+
attributes['ein_plan_code']
|
114
|
+
end
|
115
|
+
|
116
|
+
def ein_plan_code=(val)
|
117
|
+
attributes['ein_plan_code'] = val
|
118
|
+
end
|
119
|
+
|
120
|
+
def plan_number_3_digit
|
121
|
+
attributes['plan_number_3_digit']
|
122
|
+
end
|
123
|
+
|
124
|
+
def plan_number_3_digit=(val)
|
125
|
+
attributes['plan_number_3_digit'] = val
|
126
|
+
end
|
127
|
+
|
128
|
+
def customer_identifier
|
129
|
+
attributes['customer_identifier']
|
130
|
+
end
|
131
|
+
|
132
|
+
def customer_identifier=(val)
|
133
|
+
attributes['customer_identifier'] = val
|
134
|
+
end
|
135
|
+
|
136
|
+
def disclosure_name
|
137
|
+
attributes['disclosure_name']
|
138
|
+
end
|
139
|
+
|
140
|
+
def disclosure_name=(val)
|
141
|
+
attributes['disclosure_name'] = val
|
142
|
+
end
|
143
|
+
|
144
|
+
def disclosure_assets
|
145
|
+
attributes['disclosure_assets']
|
146
|
+
end
|
147
|
+
|
148
|
+
def disclosure_assets=(val)
|
149
|
+
attributes['disclosure_assets'] = val
|
150
|
+
end
|
151
|
+
|
152
|
+
def disclosure_participants
|
153
|
+
attributes['disclosure_participants']
|
154
|
+
end
|
155
|
+
|
156
|
+
def disclosure_participants=(val)
|
157
|
+
attributes['disclosure_participants'] = val
|
158
|
+
end
|
159
|
+
|
160
|
+
def user_id_recordkeeper_disclosure
|
161
|
+
attributes['user_id_recordkeeper_disclosure']
|
162
|
+
end
|
163
|
+
|
164
|
+
def user_id_recordkeeper_disclosure=(val)
|
165
|
+
attributes['user_id_recordkeeper_disclosure'] = val
|
166
|
+
end
|
167
|
+
|
168
|
+
def user_id_tpa_disclosure
|
169
|
+
attributes['user_id_tpa_disclosure']
|
170
|
+
end
|
171
|
+
|
172
|
+
def user_id_tpa_disclosure=(val)
|
173
|
+
attributes['user_id_tpa_disclosure'] = val
|
174
|
+
end
|
175
|
+
|
176
|
+
def disclosure_fiduciary_status
|
177
|
+
attributes['disclosure_fiduciary_status']
|
178
|
+
end
|
179
|
+
|
180
|
+
def disclosure_fiduciary_status=(val)
|
181
|
+
attributes['disclosure_fiduciary_status'] = val
|
182
|
+
end
|
183
|
+
|
184
|
+
def prospect_plan
|
185
|
+
attributes['prospect_plan']
|
186
|
+
end
|
187
|
+
|
188
|
+
def prospect_plan=(val)
|
189
|
+
attributes['prospect_plan'] = val
|
190
|
+
end
|
191
|
+
|
192
|
+
def split_id
|
193
|
+
attributes['split_id']
|
194
|
+
end
|
195
|
+
|
196
|
+
def split_id=(val)
|
197
|
+
attributes['split_id'] = val
|
198
|
+
end
|
199
|
+
|
200
|
+
def is_advisor_12b1_broker
|
201
|
+
attributes['is_advisor_12b1_broker']
|
202
|
+
end
|
203
|
+
|
204
|
+
def is_advisor_12b1_broker=(val)
|
205
|
+
attributes['is_advisor_12b1_broker'] = val
|
206
|
+
end
|
207
|
+
|
208
|
+
def twelveb1_dispersal_id
|
209
|
+
attributes['twelveb1_dispersal_id']
|
210
|
+
end
|
211
|
+
|
212
|
+
def twelveb1_dispersal_id=(val)
|
213
|
+
attributes['twelveb1_dispersal_id'] = val
|
214
|
+
end
|
215
|
+
|
216
|
+
def user_id_referred_by
|
217
|
+
attributes['user_id_referred_by']
|
218
|
+
end
|
219
|
+
|
220
|
+
def user_id_referred_by=(val)
|
221
|
+
attributes['user_id_referred_by'] = val
|
222
|
+
end
|
223
|
+
|
224
|
+
def logo_location
|
225
|
+
attributes['logo_location']
|
226
|
+
end
|
227
|
+
|
228
|
+
def logo_location=(val)
|
229
|
+
attributes['logo_location'] = val
|
230
|
+
end
|
231
|
+
|
232
|
+
def advisor_fee_support_location
|
233
|
+
attributes['advisor_fee_support_location']
|
234
|
+
end
|
235
|
+
|
236
|
+
def advisor_fee_support_location=(val)
|
237
|
+
attributes['advisor_fee_support_location'] = val
|
238
|
+
end
|
239
|
+
|
240
|
+
def rank_factor_investments
|
241
|
+
attributes['rank_factor_investments']
|
242
|
+
end
|
243
|
+
|
244
|
+
def rank_factor_investments=(val)
|
245
|
+
attributes['rank_factor_investments'] = val
|
246
|
+
end
|
247
|
+
|
248
|
+
def rank_factor_vendor_mgmt
|
249
|
+
attributes['rank_factor_vendor_mgmt']
|
250
|
+
end
|
251
|
+
|
252
|
+
def rank_factor_vendor_mgmt=(val)
|
253
|
+
attributes['rank_factor_vendor_mgmt'] = val
|
254
|
+
end
|
255
|
+
|
256
|
+
def rank_factor_plan_mgmt
|
257
|
+
attributes['rank_factor_plan_mgmt']
|
258
|
+
end
|
259
|
+
|
260
|
+
def rank_factor_plan_mgmt=(val)
|
261
|
+
attributes['rank_factor_plan_mgmt'] = val
|
262
|
+
end
|
263
|
+
|
264
|
+
def rank_factor_part_services
|
265
|
+
attributes['rank_factor_part_services']
|
266
|
+
end
|
267
|
+
|
268
|
+
def rank_factor_part_services=(val)
|
269
|
+
attributes['rank_factor_part_services'] = val
|
270
|
+
end
|
271
|
+
|
272
|
+
def rank_factor_plan_complexity
|
273
|
+
attributes['rank_factor_plan_complexity']
|
274
|
+
end
|
275
|
+
|
276
|
+
def rank_factor_plan_complexity=(val)
|
277
|
+
attributes['rank_factor_plan_complexity'] = val
|
278
|
+
end
|
279
|
+
|
280
|
+
def rank_factor_recordkeeping
|
281
|
+
attributes['rank_factor_recordkeeping']
|
282
|
+
end
|
283
|
+
|
284
|
+
def rank_factor_recordkeeping=(val)
|
285
|
+
attributes['rank_factor_recordkeeping'] = val
|
286
|
+
end
|
287
|
+
|
288
|
+
def rank_factor_administration
|
289
|
+
attributes['rank_factor_administration']
|
290
|
+
end
|
291
|
+
|
292
|
+
def rank_factor_administration=(val)
|
293
|
+
attributes['rank_factor_administration'] = val
|
294
|
+
end
|
295
|
+
|
296
|
+
def rank_factor_compliance_consulting
|
297
|
+
attributes['rank_factor_compliance_consulting']
|
298
|
+
end
|
299
|
+
|
300
|
+
def rank_factor_compliance_consulting=(val)
|
301
|
+
attributes['rank_factor_compliance_consulting'] = val
|
302
|
+
end
|
303
|
+
|
304
|
+
def rank_factor_communication_education
|
305
|
+
attributes['rank_factor_communication_education']
|
306
|
+
end
|
307
|
+
|
308
|
+
def rank_factor_communication_education=(val)
|
309
|
+
attributes['rank_factor_communication_education'] = val
|
310
|
+
end
|
311
|
+
|
312
|
+
def total_advisable_plan_assets
|
313
|
+
attributes['total_advisable_plan_assets']
|
314
|
+
end
|
315
|
+
|
316
|
+
def total_advisable_plan_assets=(val)
|
317
|
+
attributes['total_advisable_plan_assets'] = val
|
318
|
+
end
|
319
|
+
|
320
|
+
def total_proprietary_plan_assets
|
321
|
+
attributes['total_proprietary_plan_assets']
|
322
|
+
end
|
323
|
+
|
324
|
+
def total_proprietary_plan_assets=(val)
|
325
|
+
attributes['total_proprietary_plan_assets'] = val
|
326
|
+
end
|
327
|
+
|
328
|
+
def is_held_away
|
329
|
+
attributes['is_held_away']
|
330
|
+
end
|
331
|
+
|
332
|
+
def is_held_away=(val)
|
333
|
+
attributes['is_held_away'] = val
|
334
|
+
end
|
335
|
+
|
336
|
+
def brokerage_assets_12_months_ago
|
337
|
+
attributes['brokerage_assets_12_months_ago']
|
338
|
+
end
|
339
|
+
|
340
|
+
def brokerage_assets_12_months_ago=(val)
|
341
|
+
attributes['brokerage_assets_12_months_ago'] = val
|
342
|
+
end
|
343
|
+
|
344
|
+
def participant_internet_capability
|
345
|
+
attributes['participant_internet_capability']
|
346
|
+
end
|
347
|
+
|
348
|
+
def participant_internet_capability=(val)
|
349
|
+
attributes['participant_internet_capability'] = val
|
350
|
+
end
|
351
|
+
|
352
|
+
def annual_per_participant_advice_fee
|
353
|
+
attributes['annual_per_participant_advice_fee']
|
354
|
+
end
|
355
|
+
|
356
|
+
def annual_per_participant_advice_fee=(val)
|
357
|
+
attributes['annual_per_participant_advice_fee'] = val
|
358
|
+
end
|
359
|
+
|
360
|
+
def percent_assets_in_target_date_funds
|
361
|
+
attributes['percent_assets_in_target_date_funds']
|
362
|
+
end
|
363
|
+
|
364
|
+
def percent_assets_in_target_date_funds=(val)
|
365
|
+
attributes['percent_assets_in_target_date_funds'] = val
|
366
|
+
end
|
367
|
+
|
368
|
+
def percent_assets_in_risk_based_funds_or_balanced_funds
|
369
|
+
attributes['percent_assets_in_risk_based_funds_or_balanced_funds']
|
370
|
+
end
|
371
|
+
|
372
|
+
def percent_assets_in_risk_based_funds_or_balanced_funds=(val)
|
373
|
+
attributes['percent_assets_in_risk_based_funds_or_balanced_funds'] = val
|
374
|
+
end
|
375
|
+
|
376
|
+
def percent_assets_in_model_portfolios_from_core
|
377
|
+
attributes['percent_assets_in_model_portfolios_from_core']
|
378
|
+
end
|
379
|
+
|
380
|
+
def percent_assets_in_model_portfolios_from_core=(val)
|
381
|
+
attributes['percent_assets_in_model_portfolios_from_core'] = val
|
382
|
+
end
|
383
|
+
|
384
|
+
def percent_assets_in_managed_accounts
|
385
|
+
attributes['percent_assets_in_managed_accounts']
|
386
|
+
end
|
387
|
+
|
388
|
+
def percent_assets_in_managed_accounts=(val)
|
389
|
+
attributes['percent_assets_in_managed_accounts'] = val
|
390
|
+
end
|
391
|
+
|
392
|
+
def percent_delegators
|
393
|
+
attributes['percent_delegators']
|
394
|
+
end
|
395
|
+
|
396
|
+
def percent_delegators=(val)
|
397
|
+
attributes['percent_delegators'] = val
|
398
|
+
end
|
399
|
+
|
400
|
+
def percent_doers_diversified
|
401
|
+
attributes['percent_doers_diversified']
|
402
|
+
end
|
403
|
+
|
404
|
+
def percent_doers_diversified=(val)
|
405
|
+
attributes['percent_doers_diversified'] = val
|
406
|
+
end
|
407
|
+
|
408
|
+
def percent_doers_auto_rebalance
|
409
|
+
attributes['percent_doers_auto_rebalance']
|
410
|
+
end
|
411
|
+
|
412
|
+
def percent_doers_auto_rebalance=(val)
|
413
|
+
attributes['percent_doers_auto_rebalance'] = val
|
414
|
+
end
|
415
|
+
|
416
|
+
def percent_doers_diversified_and_auto_rebalance
|
417
|
+
attributes['percent_doers_diversified_and_auto_rebalance']
|
418
|
+
end
|
419
|
+
|
420
|
+
def percent_doers_diversified_and_auto_rebalance=(val)
|
421
|
+
attributes['percent_doers_diversified_and_auto_rebalance'] = val
|
422
|
+
end
|
423
|
+
|
424
|
+
def percent_with_a_loan
|
425
|
+
attributes['percent_with_a_loan']
|
426
|
+
end
|
427
|
+
|
428
|
+
def percent_with_a_loan=(val)
|
429
|
+
attributes['percent_with_a_loan'] = val
|
430
|
+
end
|
431
|
+
|
432
|
+
def percent_taking_loan_last_12mos
|
433
|
+
attributes['percent_taking_loan_last_12mos']
|
434
|
+
end
|
435
|
+
|
436
|
+
def percent_taking_loan_last_12mos=(val)
|
437
|
+
attributes['percent_taking_loan_last_12mos'] = val
|
438
|
+
end
|
439
|
+
|
440
|
+
def percent_taking_age_59_5_withdrawal_last_12mos
|
441
|
+
attributes['percent_taking_age_59_5_withdrawal_last_12mos']
|
442
|
+
end
|
443
|
+
|
444
|
+
def percent_taking_age_59_5_withdrawal_last_12mos=(val)
|
445
|
+
attributes['percent_taking_age_59_5_withdrawal_last_12mos'] = val
|
446
|
+
end
|
447
|
+
|
448
|
+
def percent_taking_hardship_withdrawal_last_12mos
|
449
|
+
attributes['percent_taking_hardship_withdrawal_last_12mos']
|
450
|
+
end
|
451
|
+
|
452
|
+
def percent_taking_hardship_withdrawal_last_12mos=(val)
|
453
|
+
attributes['percent_taking_hardship_withdrawal_last_12mos'] = val
|
454
|
+
end
|
455
|
+
|
456
|
+
def percent_terms_dollars_of_last_12_mos_preserving_percent_resp
|
457
|
+
attributes['percent_terms_dollars_of_last_12_mos_preserving_percent_resp']
|
458
|
+
end
|
459
|
+
|
460
|
+
def percent_terms_dollars_of_last_12_mos_preserving_percent_resp=(val)
|
461
|
+
attributes['percent_terms_dollars_of_last_12_mos_preserving_percent_resp'] = val
|
462
|
+
end
|
463
|
+
|
464
|
+
def duns_number
|
465
|
+
attributes['duns_number']
|
466
|
+
end
|
467
|
+
|
468
|
+
def duns_number=(val)
|
469
|
+
attributes['duns_number'] = val
|
470
|
+
end
|
471
|
+
|
472
|
+
def assets_as_of_date
|
473
|
+
attributes['assets_as_of_date']
|
474
|
+
end
|
475
|
+
|
476
|
+
def assets_as_of_date=(val)
|
477
|
+
attributes['assets_as_of_date'] = val
|
478
|
+
end
|
479
|
+
|
480
|
+
def redacted_plan_number
|
481
|
+
attributes['redacted_plan_number']
|
482
|
+
end
|
483
|
+
|
484
|
+
def redacted_plan_number=(val)
|
485
|
+
attributes['redacted_plan_number'] = val
|
486
|
+
end
|
487
|
+
|
488
|
+
def redacted_sponsor_ein
|
489
|
+
attributes['redacted_sponsor_ein']
|
490
|
+
end
|
491
|
+
|
492
|
+
def redacted_sponsor_ein=(val)
|
493
|
+
attributes['redacted_sponsor_ein'] = val
|
494
|
+
end
|
495
|
+
|
496
|
+
def contract_id_future
|
497
|
+
attributes['contract_id_future']
|
498
|
+
end
|
499
|
+
|
500
|
+
def contract_id_future=(val)
|
501
|
+
attributes['contract_id_future'] = val
|
502
|
+
end
|
503
|
+
|
504
|
+
def is_active
|
505
|
+
attributes['is_active']
|
506
|
+
end
|
507
|
+
|
508
|
+
def is_active=(val)
|
509
|
+
attributes['is_active'] = val
|
510
|
+
end
|
511
|
+
|
512
|
+
def creation_date
|
513
|
+
attributes['creation_date']
|
514
|
+
end
|
515
|
+
|
516
|
+
def creation_date=(val)
|
517
|
+
attributes['creation_date'] = val
|
518
|
+
end
|
519
|
+
|
520
|
+
def termination_date
|
521
|
+
attributes['termination_date']
|
522
|
+
end
|
523
|
+
|
524
|
+
def termination_date=(val)
|
525
|
+
attributes['termination_date'] = val
|
526
|
+
end
|
527
|
+
|
528
|
+
def contract_expiration_date
|
529
|
+
attributes['contract_expiration_date']
|
530
|
+
end
|
531
|
+
|
532
|
+
def contract_expiration_date=(val)
|
533
|
+
attributes['contract_expiration_date'] = val
|
534
|
+
end
|
535
|
+
|
536
|
+
def last_comprehensive_review_date
|
537
|
+
attributes['last_comprehensive_review_date']
|
538
|
+
end
|
539
|
+
|
540
|
+
def last_comprehensive_review_date=(val)
|
541
|
+
attributes['last_comprehensive_review_date'] = val
|
542
|
+
end
|
543
|
+
|
544
|
+
def naics_code
|
545
|
+
attributes['naics_code']
|
546
|
+
end
|
547
|
+
|
548
|
+
def naics_code=(val)
|
549
|
+
attributes['naics_code'] = val
|
550
|
+
end
|
551
|
+
|
552
|
+
def plan_type_id
|
553
|
+
attributes['plan_type_id']
|
554
|
+
end
|
555
|
+
|
556
|
+
def plan_type_id=(val)
|
557
|
+
attributes['plan_type_id'] = val
|
558
|
+
end
|
559
|
+
|
560
|
+
def is_csp_408b2
|
561
|
+
attributes['is_csp_408b2']
|
562
|
+
end
|
563
|
+
|
564
|
+
def is_csp_408b2=(val)
|
565
|
+
attributes['is_csp_408b2'] = val
|
566
|
+
end
|
567
|
+
|
568
|
+
def total_plan_assets
|
569
|
+
attributes['total_plan_assets']
|
570
|
+
end
|
571
|
+
|
572
|
+
def total_plan_assets=(val)
|
573
|
+
attributes['total_plan_assets'] = val
|
574
|
+
end
|
575
|
+
|
576
|
+
def loan_assets
|
577
|
+
attributes['loan_assets']
|
578
|
+
end
|
579
|
+
|
580
|
+
def loan_assets=(val)
|
581
|
+
attributes['loan_assets'] = val
|
582
|
+
end
|
583
|
+
|
584
|
+
def revenue_method_id
|
585
|
+
attributes['revenue_method_id']
|
586
|
+
end
|
587
|
+
|
588
|
+
def revenue_method_id=(val)
|
589
|
+
attributes['revenue_method_id'] = val
|
590
|
+
end
|
591
|
+
|
592
|
+
def erisa_remainder
|
593
|
+
attributes['erisa_remainder']
|
594
|
+
end
|
595
|
+
|
596
|
+
def erisa_remainder=(val)
|
597
|
+
attributes['erisa_remainder'] = val
|
598
|
+
end
|
599
|
+
|
600
|
+
def trustee_custodian_code
|
601
|
+
attributes['trustee_custodian_code']
|
602
|
+
end
|
603
|
+
|
604
|
+
def trustee_custodian_code=(val)
|
605
|
+
attributes['trustee_custodian_code'] = val
|
606
|
+
end
|
607
|
+
|
608
|
+
def trustee_custodian_name
|
609
|
+
attributes['trustee_custodian_name']
|
610
|
+
end
|
611
|
+
|
612
|
+
def trustee_custodian_name=(val)
|
613
|
+
attributes['trustee_custodian_name'] = val
|
614
|
+
end
|
615
|
+
|
616
|
+
def employer_controlled_group
|
617
|
+
attributes['employer_controlled_group']
|
618
|
+
end
|
619
|
+
|
620
|
+
def employer_controlled_group=(val)
|
621
|
+
attributes['employer_controlled_group'] = val
|
622
|
+
end
|
623
|
+
|
624
|
+
def eligible_age_service_single_requirement
|
625
|
+
attributes['eligible_age_service_single_requirement']
|
626
|
+
end
|
627
|
+
|
628
|
+
def eligible_age_service_single_requirement=(val)
|
629
|
+
attributes['eligible_age_service_single_requirement'] = val
|
630
|
+
end
|
631
|
+
|
632
|
+
def eligible_age_service_multiple_requirement
|
633
|
+
attributes['eligible_age_service_multiple_requirement']
|
634
|
+
end
|
635
|
+
|
636
|
+
def eligible_age_service_multiple_requirement=(val)
|
637
|
+
attributes['eligible_age_service_multiple_requirement'] = val
|
638
|
+
end
|
639
|
+
|
640
|
+
def eligible_age_single_requirement
|
641
|
+
attributes['eligible_age_single_requirement']
|
642
|
+
end
|
643
|
+
|
644
|
+
def eligible_age_single_requirement=(val)
|
645
|
+
attributes['eligible_age_single_requirement'] = val
|
646
|
+
end
|
647
|
+
|
648
|
+
def eligible_age_multiple_requirement
|
649
|
+
attributes['eligible_age_multiple_requirement']
|
650
|
+
end
|
651
|
+
|
652
|
+
def eligible_age_multiple_requirement=(val)
|
653
|
+
attributes['eligible_age_multiple_requirement'] = val
|
654
|
+
end
|
655
|
+
|
656
|
+
def entry_date
|
657
|
+
attributes['entry_date']
|
658
|
+
end
|
659
|
+
|
660
|
+
def entry_date=(val)
|
661
|
+
attributes['entry_date'] = val
|
662
|
+
end
|
663
|
+
|
664
|
+
def autoenroll
|
665
|
+
attributes['autoenroll']
|
666
|
+
end
|
667
|
+
|
668
|
+
def autoenroll=(val)
|
669
|
+
attributes['autoenroll'] = val
|
670
|
+
end
|
671
|
+
|
672
|
+
def autoenroll_percent
|
673
|
+
attributes['autoenroll_percent']
|
674
|
+
end
|
675
|
+
|
676
|
+
def autoenroll_percent=(val)
|
677
|
+
attributes['autoenroll_percent'] = val
|
678
|
+
end
|
679
|
+
|
680
|
+
def autoincrease_annual_max
|
681
|
+
attributes['autoincrease_annual_max']
|
682
|
+
end
|
683
|
+
|
684
|
+
def autoincrease_annual_max=(val)
|
685
|
+
attributes['autoincrease_annual_max'] = val
|
686
|
+
end
|
687
|
+
|
688
|
+
def autoincrease_overall_max
|
689
|
+
attributes['autoincrease_overall_max']
|
690
|
+
end
|
691
|
+
|
692
|
+
def autoincrease_overall_max=(val)
|
693
|
+
attributes['autoincrease_overall_max'] = val
|
694
|
+
end
|
695
|
+
|
696
|
+
def pretax_max_percent
|
697
|
+
attributes['pretax_max_percent']
|
698
|
+
end
|
699
|
+
|
700
|
+
def pretax_max_percent=(val)
|
701
|
+
attributes['pretax_max_percent'] = val
|
702
|
+
end
|
703
|
+
|
704
|
+
def roth_max_percent
|
705
|
+
attributes['roth_max_percent']
|
706
|
+
end
|
707
|
+
|
708
|
+
def roth_max_percent=(val)
|
709
|
+
attributes['roth_max_percent'] = val
|
710
|
+
end
|
711
|
+
|
712
|
+
def catchup
|
713
|
+
attributes['catchup']
|
714
|
+
end
|
715
|
+
|
716
|
+
def catchup=(val)
|
717
|
+
attributes['catchup'] = val
|
718
|
+
end
|
719
|
+
|
720
|
+
def aftertax_max_percent
|
721
|
+
attributes['aftertax_max_percent']
|
722
|
+
end
|
723
|
+
|
724
|
+
def aftertax_max_percent=(val)
|
725
|
+
attributes['aftertax_max_percent'] = val
|
726
|
+
end
|
727
|
+
|
728
|
+
def rollover_in
|
729
|
+
attributes['rollover_in']
|
730
|
+
end
|
731
|
+
|
732
|
+
def rollover_in=(val)
|
733
|
+
attributes['rollover_in'] = val
|
734
|
+
end
|
735
|
+
|
736
|
+
def employer_matching
|
737
|
+
attributes['employer_matching']
|
738
|
+
end
|
739
|
+
|
740
|
+
def employer_matching=(val)
|
741
|
+
attributes['employer_matching'] = val
|
742
|
+
end
|
743
|
+
|
744
|
+
def employer_matching_formula_type
|
745
|
+
attributes['employer_matching_formula_type']
|
746
|
+
end
|
747
|
+
|
748
|
+
def employer_matching_formula_type=(val)
|
749
|
+
attributes['employer_matching_formula_type'] = val
|
750
|
+
end
|
751
|
+
|
752
|
+
def employer_matching_tier1_percent
|
753
|
+
attributes['employer_matching_tier1_percent']
|
754
|
+
end
|
755
|
+
|
756
|
+
def employer_matching_tier1_percent=(val)
|
757
|
+
attributes['employer_matching_tier1_percent'] = val
|
758
|
+
end
|
759
|
+
|
760
|
+
def employer_matching_tier1_amount_percent
|
761
|
+
attributes['employer_matching_tier1_amount_percent']
|
762
|
+
end
|
763
|
+
|
764
|
+
def employer_matching_tier1_amount_percent=(val)
|
765
|
+
attributes['employer_matching_tier1_amount_percent'] = val
|
766
|
+
end
|
767
|
+
|
768
|
+
def employer_matching_tier1_amount_amt
|
769
|
+
attributes['employer_matching_tier1_amount_amt']
|
770
|
+
end
|
771
|
+
|
772
|
+
def employer_matching_tier1_amount_amt=(val)
|
773
|
+
attributes['employer_matching_tier1_amount_amt'] = val
|
774
|
+
end
|
775
|
+
|
776
|
+
def employer_matching_tier2_percent
|
777
|
+
attributes['employer_matching_tier2_percent']
|
778
|
+
end
|
779
|
+
|
780
|
+
def employer_matching_tier2_percent=(val)
|
781
|
+
attributes['employer_matching_tier2_percent'] = val
|
782
|
+
end
|
783
|
+
|
784
|
+
def employer_matching_tier2_amount_percent
|
785
|
+
attributes['employer_matching_tier2_amount_percent']
|
786
|
+
end
|
787
|
+
|
788
|
+
def employer_matching_tier2_amount_percent=(val)
|
789
|
+
attributes['employer_matching_tier2_amount_percent'] = val
|
790
|
+
end
|
791
|
+
|
792
|
+
def employer_matching_tier2_amount_amt
|
793
|
+
attributes['employer_matching_tier2_amount_amt']
|
794
|
+
end
|
795
|
+
|
796
|
+
def employer_matching_tier2_amount_amt=(val)
|
797
|
+
attributes['employer_matching_tier2_amount_amt'] = val
|
798
|
+
end
|
799
|
+
|
800
|
+
def employer_matching_tier3_percent
|
801
|
+
attributes['employer_matching_tier3_percent']
|
802
|
+
end
|
803
|
+
|
804
|
+
def employer_matching_tier3_percent=(val)
|
805
|
+
attributes['employer_matching_tier3_percent'] = val
|
806
|
+
end
|
807
|
+
|
808
|
+
def employer_matching_tier3_amount_percent
|
809
|
+
attributes['employer_matching_tier3_amount_percent']
|
810
|
+
end
|
811
|
+
|
812
|
+
def employer_matching_tier3_amount_percent=(val)
|
813
|
+
attributes['employer_matching_tier3_amount_percent'] = val
|
814
|
+
end
|
815
|
+
|
816
|
+
def employer_matching_tier3_amount_amt
|
817
|
+
attributes['employer_matching_tier3_amount_amt']
|
818
|
+
end
|
819
|
+
|
820
|
+
def employer_matching_tier3_amount_amt=(val)
|
821
|
+
attributes['employer_matching_tier3_amount_amt'] = val
|
822
|
+
end
|
823
|
+
|
824
|
+
def employer_matching_formula_amtmax_applies
|
825
|
+
attributes['employer_matching_formula_amtmax_applies']
|
826
|
+
end
|
827
|
+
|
828
|
+
def employer_matching_formula_amtmax_applies=(val)
|
829
|
+
attributes['employer_matching_formula_amtmax_applies'] = val
|
830
|
+
end
|
831
|
+
|
832
|
+
def employer_matching_formula_amtmax_amount
|
833
|
+
attributes['employer_matching_formula_amtmax_amount']
|
834
|
+
end
|
835
|
+
|
836
|
+
def employer_matching_formula_amtmax_amount=(val)
|
837
|
+
attributes['employer_matching_formula_amtmax_amount'] = val
|
838
|
+
end
|
839
|
+
|
840
|
+
def employer_matching_trueup
|
841
|
+
attributes['employer_matching_trueup']
|
842
|
+
end
|
843
|
+
|
844
|
+
def employer_matching_trueup=(val)
|
845
|
+
attributes['employer_matching_trueup'] = val
|
846
|
+
end
|
847
|
+
|
848
|
+
def employer_matching_eoy
|
849
|
+
attributes['employer_matching_eoy']
|
850
|
+
end
|
851
|
+
|
852
|
+
def employer_matching_eoy=(val)
|
853
|
+
attributes['employer_matching_eoy'] = val
|
854
|
+
end
|
855
|
+
|
856
|
+
def employer_matching_1000_hrs
|
857
|
+
attributes['employer_matching_1000_hrs']
|
858
|
+
end
|
859
|
+
|
860
|
+
def employer_matching_1000_hrs=(val)
|
861
|
+
attributes['employer_matching_1000_hrs'] = val
|
862
|
+
end
|
863
|
+
|
864
|
+
def employer_matching_vesting
|
865
|
+
attributes['employer_matching_vesting']
|
866
|
+
end
|
867
|
+
|
868
|
+
def employer_matching_vesting=(val)
|
869
|
+
attributes['employer_matching_vesting'] = val
|
870
|
+
end
|
871
|
+
|
872
|
+
def employer_matching_vesting_years
|
873
|
+
attributes['employer_matching_vesting_years']
|
874
|
+
end
|
875
|
+
|
876
|
+
def employer_matching_vesting_years=(val)
|
877
|
+
attributes['employer_matching_vesting_years'] = val
|
878
|
+
end
|
879
|
+
|
880
|
+
def employer_required
|
881
|
+
attributes['employer_required']
|
882
|
+
end
|
883
|
+
|
884
|
+
def employer_required=(val)
|
885
|
+
attributes['employer_required'] = val
|
886
|
+
end
|
887
|
+
|
888
|
+
def employer_required_amtmax_applies
|
889
|
+
attributes['employer_required_amtmax_applies']
|
890
|
+
end
|
891
|
+
|
892
|
+
def employer_required_amtmax_applies=(val)
|
893
|
+
attributes['employer_required_amtmax_applies'] = val
|
894
|
+
end
|
895
|
+
|
896
|
+
def employer_required_amtmax_amount
|
897
|
+
attributes['employer_required_amtmax_amount']
|
898
|
+
end
|
899
|
+
|
900
|
+
def employer_required_amtmax_amount=(val)
|
901
|
+
attributes['employer_required_amtmax_amount'] = val
|
902
|
+
end
|
903
|
+
|
904
|
+
def employer_required_percent
|
905
|
+
attributes['employer_required_percent']
|
906
|
+
end
|
907
|
+
|
908
|
+
def employer_required_percent=(val)
|
909
|
+
attributes['employer_required_percent'] = val
|
910
|
+
end
|
911
|
+
|
912
|
+
def employer_required_eoy
|
913
|
+
attributes['employer_required_eoy']
|
914
|
+
end
|
915
|
+
|
916
|
+
def employer_required_eoy=(val)
|
917
|
+
attributes['employer_required_eoy'] = val
|
918
|
+
end
|
919
|
+
|
920
|
+
def employer_required_1000_hrs
|
921
|
+
attributes['employer_required_1000_hrs']
|
922
|
+
end
|
923
|
+
|
924
|
+
def employer_required_1000_hrs=(val)
|
925
|
+
attributes['employer_required_1000_hrs'] = val
|
926
|
+
end
|
927
|
+
|
928
|
+
def employer_required_vesting
|
929
|
+
attributes['employer_required_vesting']
|
930
|
+
end
|
931
|
+
|
932
|
+
def employer_required_vesting=(val)
|
933
|
+
attributes['employer_required_vesting'] = val
|
934
|
+
end
|
935
|
+
|
936
|
+
def employer_required_vesting_years
|
937
|
+
attributes['employer_required_vesting_years']
|
938
|
+
end
|
939
|
+
|
940
|
+
def employer_required_vesting_years=(val)
|
941
|
+
attributes['employer_required_vesting_years'] = val
|
942
|
+
end
|
943
|
+
|
944
|
+
def employer_discretionary
|
945
|
+
attributes['employer_discretionary']
|
946
|
+
end
|
947
|
+
|
948
|
+
def employer_discretionary=(val)
|
949
|
+
attributes['employer_discretionary'] = val
|
950
|
+
end
|
951
|
+
|
952
|
+
def employer_discretionary_percent
|
953
|
+
attributes['employer_discretionary_percent']
|
954
|
+
end
|
955
|
+
|
956
|
+
def employer_discretionary_percent=(val)
|
957
|
+
attributes['employer_discretionary_percent'] = val
|
958
|
+
end
|
959
|
+
|
960
|
+
def employer_discretionary_amtmax_applies
|
961
|
+
attributes['employer_discretionary_amtmax_applies']
|
962
|
+
end
|
963
|
+
|
964
|
+
def employer_discretionary_amtmax_applies=(val)
|
965
|
+
attributes['employer_discretionary_amtmax_applies'] = val
|
966
|
+
end
|
967
|
+
|
968
|
+
def employer_discretionary_amtmax_amount
|
969
|
+
attributes['employer_discretionary_amtmax_amount']
|
970
|
+
end
|
971
|
+
|
972
|
+
def employer_discretionary_amtmax_amount=(val)
|
973
|
+
attributes['employer_discretionary_amtmax_amount'] = val
|
974
|
+
end
|
975
|
+
|
976
|
+
def employer_discretionary_eoy
|
977
|
+
attributes['employer_discretionary_eoy']
|
978
|
+
end
|
979
|
+
|
980
|
+
def employer_discretionary_eoy=(val)
|
981
|
+
attributes['employer_discretionary_eoy'] = val
|
982
|
+
end
|
983
|
+
|
984
|
+
def employer_discretionary_1000_hrs
|
985
|
+
attributes['employer_discretionary_1000_hrs']
|
986
|
+
end
|
987
|
+
|
988
|
+
def employer_discretionary_1000_hrs=(val)
|
989
|
+
attributes['employer_discretionary_1000_hrs'] = val
|
990
|
+
end
|
991
|
+
|
992
|
+
def employer_discretionary_vesting
|
993
|
+
attributes['employer_discretionary_vesting']
|
994
|
+
end
|
995
|
+
|
996
|
+
def employer_discretionary_vesting=(val)
|
997
|
+
attributes['employer_discretionary_vesting'] = val
|
998
|
+
end
|
999
|
+
|
1000
|
+
def employer_discretionary_years
|
1001
|
+
attributes['employer_discretionary_years']
|
1002
|
+
end
|
1003
|
+
|
1004
|
+
def employer_discretionary_years=(val)
|
1005
|
+
attributes['employer_discretionary_years'] = val
|
1006
|
+
end
|
1007
|
+
|
1008
|
+
def model_strategy_id
|
1009
|
+
attributes['model_strategy_id']
|
1010
|
+
end
|
1011
|
+
|
1012
|
+
def model_strategy_id=(val)
|
1013
|
+
attributes['model_strategy_id'] = val
|
1014
|
+
end
|
1015
|
+
|
1016
|
+
def models_number
|
1017
|
+
attributes['models_number']
|
1018
|
+
end
|
1019
|
+
|
1020
|
+
def models_number=(val)
|
1021
|
+
attributes['models_number'] = val
|
1022
|
+
end
|
1023
|
+
|
1024
|
+
def all_employees_defaulted_into_qdia
|
1025
|
+
attributes['all_employees_defaulted_into_qdia']
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
def all_employees_defaulted_into_qdia=(val)
|
1029
|
+
attributes['all_employees_defaulted_into_qdia'] = val
|
1030
|
+
end
|
1031
|
+
|
1032
|
+
def auto_rebalance
|
1033
|
+
attributes['auto_rebalance']
|
1034
|
+
end
|
1035
|
+
|
1036
|
+
def auto_rebalance=(val)
|
1037
|
+
attributes['auto_rebalance'] = val
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
def loans_allowed_general_purpose
|
1041
|
+
attributes['loans_allowed_general_purpose']
|
1042
|
+
end
|
1043
|
+
|
1044
|
+
def loans_allowed_general_purpose=(val)
|
1045
|
+
attributes['loans_allowed_general_purpose'] = val
|
1046
|
+
end
|
1047
|
+
|
1048
|
+
def loans_allowed_home
|
1049
|
+
attributes['loans_allowed_home']
|
1050
|
+
end
|
1051
|
+
|
1052
|
+
def loans_allowed_home=(val)
|
1053
|
+
attributes['loans_allowed_home'] = val
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
def loans_allowed_hardship
|
1057
|
+
attributes['loans_allowed_hardship']
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
def loans_allowed_hardship=(val)
|
1061
|
+
attributes['loans_allowed_hardship'] = val
|
1062
|
+
end
|
1063
|
+
|
1064
|
+
def max_loans
|
1065
|
+
attributes['max_loans']
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
def max_loans=(val)
|
1069
|
+
attributes['max_loans'] = val
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
def age_59_5_withdrawals
|
1073
|
+
attributes['age_59_5_withdrawals']
|
1074
|
+
end
|
1075
|
+
|
1076
|
+
def age_59_5_withdrawals=(val)
|
1077
|
+
attributes['age_59_5_withdrawals'] = val
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
def hardship_withdrawals
|
1081
|
+
attributes['hardship_withdrawals']
|
1082
|
+
end
|
1083
|
+
|
1084
|
+
def hardship_withdrawals=(val)
|
1085
|
+
attributes['hardship_withdrawals'] = val
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
def installment_payments
|
1089
|
+
attributes['installment_payments']
|
1090
|
+
end
|
1091
|
+
|
1092
|
+
def installment_payments=(val)
|
1093
|
+
attributes['installment_payments'] = val
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
def annuity_option
|
1097
|
+
attributes['annuity_option']
|
1098
|
+
end
|
1099
|
+
|
1100
|
+
def annuity_option=(val)
|
1101
|
+
attributes['annuity_option'] = val
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
def cash_out
|
1105
|
+
attributes['cash_out']
|
1106
|
+
end
|
1107
|
+
|
1108
|
+
def cash_out=(val)
|
1109
|
+
attributes['cash_out'] = val
|
1110
|
+
end
|
1111
|
+
|
1112
|
+
def lifetime_income_option
|
1113
|
+
attributes['lifetime_income_option']
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
def lifetime_income_option=(val)
|
1117
|
+
attributes['lifetime_income_option'] = val
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
def lifetime_income_service
|
1121
|
+
attributes['lifetime_income_service']
|
1122
|
+
end
|
1123
|
+
|
1124
|
+
def lifetime_income_service=(val)
|
1125
|
+
attributes['lifetime_income_service'] = val
|
1126
|
+
end
|
1127
|
+
|
1128
|
+
def valuation_frequency
|
1129
|
+
attributes['valuation_frequency']
|
1130
|
+
end
|
1131
|
+
|
1132
|
+
def valuation_frequency=(val)
|
1133
|
+
attributes['valuation_frequency'] = val
|
1134
|
+
end
|
1135
|
+
|
1136
|
+
def startup_startup_newlyeligible_volumes
|
1137
|
+
attributes['startup_startup_newlyeligible_volumes']
|
1138
|
+
end
|
1139
|
+
|
1140
|
+
def startup_startup_newlyeligible_volumes=(val)
|
1141
|
+
attributes['startup_startup_newlyeligible_volumes'] = val
|
1142
|
+
end
|
1143
|
+
|
1144
|
+
def m_and_a_volumes_acquisitions
|
1145
|
+
attributes['m_and_a_volumes_acquisitions']
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
def m_and_a_volumes_acquisitions=(val)
|
1149
|
+
attributes['m_and_a_volumes_acquisitions'] = val
|
1150
|
+
end
|
1151
|
+
|
1152
|
+
def m_and_a_volumes_divestitures
|
1153
|
+
attributes['m_and_a_volumes_divestitures']
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
def m_and_a_volumes_divestitures=(val)
|
1157
|
+
attributes['m_and_a_volumes_divestitures'] = val
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
def ineligible_participants_volumes
|
1161
|
+
attributes['ineligible_participants_volumes']
|
1162
|
+
end
|
1163
|
+
|
1164
|
+
def ineligible_participants_volumes=(val)
|
1165
|
+
attributes['ineligible_participants_volumes'] = val
|
1166
|
+
end
|
1167
|
+
|
1168
|
+
def eligible_participants_volumes
|
1169
|
+
attributes['eligible_participants_volumes']
|
1170
|
+
end
|
1171
|
+
|
1172
|
+
def eligible_participants_volumes=(val)
|
1173
|
+
attributes['eligible_participants_volumes'] = val
|
1174
|
+
end
|
1175
|
+
|
1176
|
+
def active_participants_account_balance
|
1177
|
+
attributes['active_participants_account_balance']
|
1178
|
+
end
|
1179
|
+
|
1180
|
+
def active_participants_account_balance=(val)
|
1181
|
+
attributes['active_participants_account_balance'] = val
|
1182
|
+
end
|
1183
|
+
|
1184
|
+
def terminated_participants_account_balance
|
1185
|
+
attributes['terminated_participants_account_balance']
|
1186
|
+
end
|
1187
|
+
|
1188
|
+
def terminated_participants_account_balance=(val)
|
1189
|
+
attributes['terminated_participants_account_balance'] = val
|
1190
|
+
end
|
1191
|
+
|
1192
|
+
def participant_count
|
1193
|
+
attributes['participant_count']
|
1194
|
+
end
|
1195
|
+
|
1196
|
+
def participant_count=(val)
|
1197
|
+
attributes['participant_count'] = val
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
def processing_payroll_volumes
|
1201
|
+
attributes['processing_payroll_volumes']
|
1202
|
+
end
|
1203
|
+
|
1204
|
+
def processing_payroll_volumes=(val)
|
1205
|
+
attributes['processing_payroll_volumes'] = val
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
def processing_employer_match_volumes
|
1209
|
+
attributes['processing_employer_match_volumes']
|
1210
|
+
end
|
1211
|
+
|
1212
|
+
def processing_employer_match_volumes=(val)
|
1213
|
+
attributes['processing_employer_match_volumes'] = val
|
1214
|
+
end
|
1215
|
+
|
1216
|
+
def processing_employer_other_volumes
|
1217
|
+
attributes['processing_employer_other_volumes']
|
1218
|
+
end
|
1219
|
+
|
1220
|
+
def processing_employer_other_volumes=(val)
|
1221
|
+
attributes['processing_employer_other_volumes'] = val
|
1222
|
+
end
|
1223
|
+
|
1224
|
+
def deferral_rate_changes_manual
|
1225
|
+
attributes['deferral_rate_changes_manual']
|
1226
|
+
end
|
1227
|
+
|
1228
|
+
def deferral_rate_changes_manual=(val)
|
1229
|
+
attributes['deferral_rate_changes_manual'] = val
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
def deferral_rate_changes_automated
|
1233
|
+
attributes['deferral_rate_changes_automated']
|
1234
|
+
end
|
1235
|
+
|
1236
|
+
def deferral_rate_changes_automated=(val)
|
1237
|
+
attributes['deferral_rate_changes_automated'] = val
|
1238
|
+
end
|
1239
|
+
|
1240
|
+
def processing_forfeiture_allocations
|
1241
|
+
attributes['processing_forfeiture_allocations']
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
def processing_forfeiture_allocations=(val)
|
1245
|
+
attributes['processing_forfeiture_allocations'] = val
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
def processing_corrected_contributions
|
1249
|
+
attributes['processing_corrected_contributions']
|
1250
|
+
end
|
1251
|
+
|
1252
|
+
def processing_corrected_contributions=(val)
|
1253
|
+
attributes['processing_corrected_contributions'] = val
|
1254
|
+
end
|
1255
|
+
|
1256
|
+
def processing_adp_acp_refunds
|
1257
|
+
attributes['processing_adp_acp_refunds']
|
1258
|
+
end
|
1259
|
+
|
1260
|
+
def processing_adp_acp_refunds=(val)
|
1261
|
+
attributes['processing_adp_acp_refunds'] = val
|
1262
|
+
end
|
1263
|
+
|
1264
|
+
def processing_adp_acp_contributions
|
1265
|
+
attributes['processing_adp_acp_contributions']
|
1266
|
+
end
|
1267
|
+
|
1268
|
+
def processing_adp_acp_contributions=(val)
|
1269
|
+
attributes['processing_adp_acp_contributions'] = val
|
1270
|
+
end
|
1271
|
+
|
1272
|
+
def rollover_in_volumes
|
1273
|
+
attributes['rollover_in_volumes']
|
1274
|
+
end
|
1275
|
+
|
1276
|
+
def rollover_in_volumes=(val)
|
1277
|
+
attributes['rollover_in_volumes'] = val
|
1278
|
+
end
|
1279
|
+
|
1280
|
+
def investment_transfer_volumes
|
1281
|
+
attributes['investment_transfer_volumes']
|
1282
|
+
end
|
1283
|
+
|
1284
|
+
def investment_transfer_volumes=(val)
|
1285
|
+
attributes['investment_transfer_volumes'] = val
|
1286
|
+
end
|
1287
|
+
|
1288
|
+
def loan_origination_volumes
|
1289
|
+
attributes['loan_origination_volumes']
|
1290
|
+
end
|
1291
|
+
|
1292
|
+
def loan_origination_volumes=(val)
|
1293
|
+
attributes['loan_origination_volumes'] = val
|
1294
|
+
end
|
1295
|
+
|
1296
|
+
def loans_maintenance_volumes
|
1297
|
+
attributes['loans_maintenance_volumes']
|
1298
|
+
end
|
1299
|
+
|
1300
|
+
def loans_maintenance_volumes=(val)
|
1301
|
+
attributes['loans_maintenance_volumes'] = val
|
1302
|
+
end
|
1303
|
+
|
1304
|
+
def age_59_5_volumes
|
1305
|
+
attributes['age_59_5_volumes']
|
1306
|
+
end
|
1307
|
+
|
1308
|
+
def age_59_5_volumes=(val)
|
1309
|
+
attributes['age_59_5_volumes'] = val
|
1310
|
+
end
|
1311
|
+
|
1312
|
+
def hardship_process_volumes
|
1313
|
+
attributes['hardship_process_volumes']
|
1314
|
+
end
|
1315
|
+
|
1316
|
+
def hardship_process_volumes=(val)
|
1317
|
+
attributes['hardship_process_volumes'] = val
|
1318
|
+
end
|
1319
|
+
|
1320
|
+
def mrds_volumes
|
1321
|
+
attributes['mrds_volumes']
|
1322
|
+
end
|
1323
|
+
|
1324
|
+
def mrds_volumes=(val)
|
1325
|
+
attributes['mrds_volumes'] = val
|
1326
|
+
end
|
1327
|
+
|
1328
|
+
def qdro_process_volumes
|
1329
|
+
attributes['qdro_process_volumes']
|
1330
|
+
end
|
1331
|
+
|
1332
|
+
def qdro_process_volumes=(val)
|
1333
|
+
attributes['qdro_process_volumes'] = val
|
1334
|
+
end
|
1335
|
+
|
1336
|
+
def distributions_processed_volumes
|
1337
|
+
attributes['distributions_processed_volumes']
|
1338
|
+
end
|
1339
|
+
|
1340
|
+
def distributions_processed_volumes=(val)
|
1341
|
+
attributes['distributions_processed_volumes'] = val
|
1342
|
+
end
|
1343
|
+
|
1344
|
+
def distributions_processed_volumes_cashout
|
1345
|
+
attributes['distributions_processed_volumes_cashout']
|
1346
|
+
end
|
1347
|
+
|
1348
|
+
def distributions_processed_volumes_cashout=(val)
|
1349
|
+
attributes['distributions_processed_volumes_cashout'] = val
|
1350
|
+
end
|
1351
|
+
|
1352
|
+
def fund_adds_volumes
|
1353
|
+
attributes['fund_adds_volumes']
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
def fund_adds_volumes=(val)
|
1357
|
+
attributes['fund_adds_volumes'] = val
|
1358
|
+
end
|
1359
|
+
|
1360
|
+
def fund_deletes_volumes
|
1361
|
+
attributes['fund_deletes_volumes']
|
1362
|
+
end
|
1363
|
+
|
1364
|
+
def fund_deletes_volumes=(val)
|
1365
|
+
attributes['fund_deletes_volumes'] = val
|
1366
|
+
end
|
1367
|
+
|
1368
|
+
def company_stock
|
1369
|
+
attributes['company_stock']
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
def company_stock=(val)
|
1373
|
+
attributes['company_stock'] = val
|
1374
|
+
end
|
1375
|
+
|
1376
|
+
def company_stock_dividend_allocation
|
1377
|
+
attributes['company_stock_dividend_allocation']
|
1378
|
+
end
|
1379
|
+
|
1380
|
+
def company_stock_dividend_allocation=(val)
|
1381
|
+
attributes['company_stock_dividend_allocation'] = val
|
1382
|
+
end
|
1383
|
+
|
1384
|
+
def company_stock_dividend_type
|
1385
|
+
attributes['company_stock_dividend_type']
|
1386
|
+
end
|
1387
|
+
|
1388
|
+
def company_stock_dividend_type=(val)
|
1389
|
+
attributes['company_stock_dividend_type'] = val
|
1390
|
+
end
|
1391
|
+
|
1392
|
+
def models_nav_type
|
1393
|
+
attributes['models_nav_type']
|
1394
|
+
end
|
1395
|
+
|
1396
|
+
def models_nav_type=(val)
|
1397
|
+
attributes['models_nav_type'] = val
|
1398
|
+
end
|
1399
|
+
|
1400
|
+
def support_annual_audit
|
1401
|
+
attributes['support_annual_audit']
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
def support_annual_audit=(val)
|
1405
|
+
attributes['support_annual_audit'] = val
|
1406
|
+
end
|
1407
|
+
|
1408
|
+
def plan_design_changes_volumes
|
1409
|
+
attributes['plan_design_changes_volumes']
|
1410
|
+
end
|
1411
|
+
|
1412
|
+
def plan_design_changes_volumes=(val)
|
1413
|
+
attributes['plan_design_changes_volumes'] = val
|
1414
|
+
end
|
1415
|
+
|
1416
|
+
def implement_plan_startup_processes
|
1417
|
+
attributes['implement_plan_startup_processes']
|
1418
|
+
end
|
1419
|
+
|
1420
|
+
def implement_plan_startup_processes=(val)
|
1421
|
+
attributes['implement_plan_startup_processes'] = val
|
1422
|
+
end
|
1423
|
+
|
1424
|
+
def provide_plan_document_spd
|
1425
|
+
attributes['provide_plan_document_spd']
|
1426
|
+
end
|
1427
|
+
|
1428
|
+
def provide_plan_document_spd=(val)
|
1429
|
+
attributes['provide_plan_document_spd'] = val
|
1430
|
+
end
|
1431
|
+
|
1432
|
+
def provide_plan_document_amendments
|
1433
|
+
attributes['provide_plan_document_amendments']
|
1434
|
+
end
|
1435
|
+
|
1436
|
+
def provide_plan_document_amendments=(val)
|
1437
|
+
attributes['provide_plan_document_amendments'] = val
|
1438
|
+
end
|
1439
|
+
|
1440
|
+
def determine_newly_eligible_employees
|
1441
|
+
attributes['determine_newly_eligible_employees']
|
1442
|
+
end
|
1443
|
+
|
1444
|
+
def determine_newly_eligible_employees=(val)
|
1445
|
+
attributes['determine_newly_eligible_employees'] = val
|
1446
|
+
end
|
1447
|
+
|
1448
|
+
def send_enrollment_materials_hardcopy
|
1449
|
+
attributes['send_enrollment_materials_hardcopy']
|
1450
|
+
end
|
1451
|
+
|
1452
|
+
def send_enrollment_materials_hardcopy=(val)
|
1453
|
+
attributes['send_enrollment_materials_hardcopy'] = val
|
1454
|
+
end
|
1455
|
+
|
1456
|
+
def send_enrollment_materials_digital
|
1457
|
+
attributes['send_enrollment_materials_digital']
|
1458
|
+
end
|
1459
|
+
|
1460
|
+
def send_enrollment_materials_digital=(val)
|
1461
|
+
attributes['send_enrollment_materials_digital'] = val
|
1462
|
+
end
|
1463
|
+
|
1464
|
+
def census_validation_for_payroll
|
1465
|
+
attributes['census_validation_for_payroll']
|
1466
|
+
end
|
1467
|
+
|
1468
|
+
def census_validation_for_payroll=(val)
|
1469
|
+
attributes['census_validation_for_payroll'] = val
|
1470
|
+
end
|
1471
|
+
|
1472
|
+
def calculate_employer_match_volumes
|
1473
|
+
attributes['calculate_employer_match_volumes']
|
1474
|
+
end
|
1475
|
+
|
1476
|
+
def calculate_employer_match_volumes=(val)
|
1477
|
+
attributes['calculate_employer_match_volumes'] = val
|
1478
|
+
end
|
1479
|
+
|
1480
|
+
def calculate_employer_match_trueup
|
1481
|
+
attributes['calculate_employer_match_trueup']
|
1482
|
+
end
|
1483
|
+
|
1484
|
+
def calculate_employer_match_trueup=(val)
|
1485
|
+
attributes['calculate_employer_match_trueup'] = val
|
1486
|
+
end
|
1487
|
+
|
1488
|
+
def calculate_other_employer_contribution
|
1489
|
+
attributes['calculate_other_employer_contribution']
|
1490
|
+
end
|
1491
|
+
|
1492
|
+
def calculate_other_employer_contribution=(val)
|
1493
|
+
attributes['calculate_other_employer_contribution'] = val
|
1494
|
+
end
|
1495
|
+
|
1496
|
+
def calculate_forfeiture_allocation
|
1497
|
+
attributes['calculate_forfeiture_allocation']
|
1498
|
+
end
|
1499
|
+
|
1500
|
+
def calculate_forfeiture_allocation=(val)
|
1501
|
+
attributes['calculate_forfeiture_allocation'] = val
|
1502
|
+
end
|
1503
|
+
|
1504
|
+
def forfeiture_allocations_type
|
1505
|
+
attributes['forfeiture_allocations_type']
|
1506
|
+
end
|
1507
|
+
|
1508
|
+
def forfeiture_allocations_type=(val)
|
1509
|
+
attributes['forfeiture_allocations_type'] = val
|
1510
|
+
end
|
1511
|
+
|
1512
|
+
def distribute_required_notices_digital
|
1513
|
+
attributes['distribute_required_notices_digital']
|
1514
|
+
end
|
1515
|
+
|
1516
|
+
def distribute_required_notices_digital=(val)
|
1517
|
+
attributes['distribute_required_notices_digital'] = val
|
1518
|
+
end
|
1519
|
+
|
1520
|
+
def distribute_required_notices_hardcopy
|
1521
|
+
attributes['distribute_required_notices_hardcopy']
|
1522
|
+
end
|
1523
|
+
|
1524
|
+
def distribute_required_notices_hardcopy=(val)
|
1525
|
+
attributes['distribute_required_notices_hardcopy'] = val
|
1526
|
+
end
|
1527
|
+
|
1528
|
+
def distribute_404a5_participant_disclosures
|
1529
|
+
attributes['distribute_404a5_participant_disclosures']
|
1530
|
+
end
|
1531
|
+
|
1532
|
+
def distribute_404a5_participant_disclosures=(val)
|
1533
|
+
attributes['distribute_404a5_participant_disclosures'] = val
|
1534
|
+
end
|
1535
|
+
|
1536
|
+
def calculate_contribution_corrections
|
1537
|
+
attributes['calculate_contribution_corrections']
|
1538
|
+
end
|
1539
|
+
|
1540
|
+
def calculate_contribution_corrections=(val)
|
1541
|
+
attributes['calculate_contribution_corrections'] = val
|
1542
|
+
end
|
1543
|
+
|
1544
|
+
def rollover_in_review
|
1545
|
+
attributes['rollover_in_review']
|
1546
|
+
end
|
1547
|
+
|
1548
|
+
def rollover_in_review=(val)
|
1549
|
+
attributes['rollover_in_review'] = val
|
1550
|
+
end
|
1551
|
+
|
1552
|
+
def loan_origination_review
|
1553
|
+
attributes['loan_origination_review']
|
1554
|
+
end
|
1555
|
+
|
1556
|
+
def loan_origination_review=(val)
|
1557
|
+
attributes['loan_origination_review'] = val
|
1558
|
+
end
|
1559
|
+
|
1560
|
+
def hardship_review
|
1561
|
+
attributes['hardship_review']
|
1562
|
+
end
|
1563
|
+
|
1564
|
+
def hardship_review=(val)
|
1565
|
+
attributes['hardship_review'] = val
|
1566
|
+
end
|
1567
|
+
|
1568
|
+
def age_59_5_review
|
1569
|
+
attributes['age_59_5_review']
|
1570
|
+
end
|
1571
|
+
|
1572
|
+
def age_59_5_review=(val)
|
1573
|
+
attributes['age_59_5_review'] = val
|
1574
|
+
end
|
1575
|
+
|
1576
|
+
def mrds_review
|
1577
|
+
attributes['mrds_review']
|
1578
|
+
end
|
1579
|
+
|
1580
|
+
def mrds_review=(val)
|
1581
|
+
attributes['mrds_review'] = val
|
1582
|
+
end
|
1583
|
+
|
1584
|
+
def qdro_review
|
1585
|
+
attributes['qdro_review']
|
1586
|
+
end
|
1587
|
+
|
1588
|
+
def qdro_review=(val)
|
1589
|
+
attributes['qdro_review'] = val
|
1590
|
+
end
|
1591
|
+
|
1592
|
+
def terms_review
|
1593
|
+
attributes['terms_review']
|
1594
|
+
end
|
1595
|
+
|
1596
|
+
def terms_review=(val)
|
1597
|
+
attributes['terms_review'] = val
|
1598
|
+
end
|
1599
|
+
|
1600
|
+
def administer_erisa_spending_accounts
|
1601
|
+
attributes['administer_erisa_spending_accounts']
|
1602
|
+
end
|
1603
|
+
|
1604
|
+
def administer_erisa_spending_accounts=(val)
|
1605
|
+
attributes['administer_erisa_spending_accounts'] = val
|
1606
|
+
end
|
1607
|
+
|
1608
|
+
def erisa_spending_accounts_usage
|
1609
|
+
attributes['erisa_spending_accounts_usage']
|
1610
|
+
end
|
1611
|
+
|
1612
|
+
def erisa_spending_accounts_usage=(val)
|
1613
|
+
attributes['erisa_spending_accounts_usage'] = val
|
1614
|
+
end
|
1615
|
+
|
1616
|
+
def prepare_form_5500
|
1617
|
+
attributes['prepare_form_5500']
|
1618
|
+
end
|
1619
|
+
|
1620
|
+
def prepare_form_5500=(val)
|
1621
|
+
attributes['prepare_form_5500'] = val
|
1622
|
+
end
|
1623
|
+
|
1624
|
+
def conducts_adp_acp_testing
|
1625
|
+
attributes['conducts_adp_acp_testing']
|
1626
|
+
end
|
1627
|
+
|
1628
|
+
def conducts_adp_acp_testing=(val)
|
1629
|
+
attributes['conducts_adp_acp_testing'] = val
|
1630
|
+
end
|
1631
|
+
|
1632
|
+
def adp_acp_testing_type
|
1633
|
+
attributes['adp_acp_testing_type']
|
1634
|
+
end
|
1635
|
+
|
1636
|
+
def adp_acp_testing_type=(val)
|
1637
|
+
attributes['adp_acp_testing_type'] = val
|
1638
|
+
end
|
1639
|
+
|
1640
|
+
def calculate_adp_acp_refunds
|
1641
|
+
attributes['calculate_adp_acp_refunds']
|
1642
|
+
end
|
1643
|
+
|
1644
|
+
def calculate_adp_acp_refunds=(val)
|
1645
|
+
attributes['calculate_adp_acp_refunds'] = val
|
1646
|
+
end
|
1647
|
+
|
1648
|
+
def calculate_adp_acp_contributions
|
1649
|
+
attributes['calculate_adp_acp_contributions']
|
1650
|
+
end
|
1651
|
+
|
1652
|
+
def calculate_adp_acp_contributions=(val)
|
1653
|
+
attributes['calculate_adp_acp_contributions'] = val
|
1654
|
+
end
|
1655
|
+
|
1656
|
+
def conducts_415_testing
|
1657
|
+
attributes['conducts_415_testing']
|
1658
|
+
end
|
1659
|
+
|
1660
|
+
def conducts_415_testing=(val)
|
1661
|
+
attributes['conducts_415_testing'] = val
|
1662
|
+
end
|
1663
|
+
|
1664
|
+
def conducts_top_heavy_testing
|
1665
|
+
attributes['conducts_top_heavy_testing']
|
1666
|
+
end
|
1667
|
+
|
1668
|
+
def conducts_top_heavy_testing=(val)
|
1669
|
+
attributes['conducts_top_heavy_testing'] = val
|
1670
|
+
end
|
1671
|
+
|
1672
|
+
def calculate_top_heavy_minimum
|
1673
|
+
attributes['calculate_top_heavy_minimum']
|
1674
|
+
end
|
1675
|
+
|
1676
|
+
def calculate_top_heavy_minimum=(val)
|
1677
|
+
attributes['calculate_top_heavy_minimum'] = val
|
1678
|
+
end
|
1679
|
+
|
1680
|
+
def conducts_compensation_ratio_testing
|
1681
|
+
attributes['conducts_compensation_ratio_testing']
|
1682
|
+
end
|
1683
|
+
|
1684
|
+
def conducts_compensation_ratio_testing=(val)
|
1685
|
+
attributes['conducts_compensation_ratio_testing'] = val
|
1686
|
+
end
|
1687
|
+
|
1688
|
+
def calculates_eligible_compensation_of_self_employed
|
1689
|
+
attributes['calculates_eligible_compensation_of_self_employed']
|
1690
|
+
end
|
1691
|
+
|
1692
|
+
def calculates_eligible_compensation_of_self_employed=(val)
|
1693
|
+
attributes['calculates_eligible_compensation_of_self_employed'] = val
|
1694
|
+
end
|
1695
|
+
|
1696
|
+
def definition_of_compensation
|
1697
|
+
attributes['definition_of_compensation']
|
1698
|
+
end
|
1699
|
+
|
1700
|
+
def definition_of_compensation=(val)
|
1701
|
+
attributes['definition_of_compensation'] = val
|
1702
|
+
end
|
1703
|
+
|
1704
|
+
def meet_with_plan_committee
|
1705
|
+
attributes['meet_with_plan_committee']
|
1706
|
+
end
|
1707
|
+
|
1708
|
+
def meet_with_plan_committee=(val)
|
1709
|
+
attributes['meet_with_plan_committee'] = val
|
1710
|
+
end
|
1711
|
+
|
1712
|
+
def type_of_plan_committee_meetings
|
1713
|
+
attributes['type_of_plan_committee_meetings']
|
1714
|
+
end
|
1715
|
+
|
1716
|
+
def type_of_plan_committee_meetings=(val)
|
1717
|
+
attributes['type_of_plan_committee_meetings'] = val
|
1718
|
+
end
|
1719
|
+
|
1720
|
+
def conducts_401a4_testing
|
1721
|
+
attributes['conducts_401a4_testing']
|
1722
|
+
end
|
1723
|
+
|
1724
|
+
def conducts_401a4_testing=(val)
|
1725
|
+
attributes['conducts_401a4_testing'] = val
|
1726
|
+
end
|
1727
|
+
|
1728
|
+
def conducts_410b_testing
|
1729
|
+
attributes['conducts_410b_testing']
|
1730
|
+
end
|
1731
|
+
|
1732
|
+
def conducts_410b_testing=(val)
|
1733
|
+
attributes['conducts_410b_testing'] = val
|
1734
|
+
end
|
1735
|
+
|
1736
|
+
def monitor_section_16_insider_trading_rules
|
1737
|
+
attributes['monitor_section_16_insider_trading_rules']
|
1738
|
+
end
|
1739
|
+
|
1740
|
+
def monitor_section_16_insider_trading_rules=(val)
|
1741
|
+
attributes['monitor_section_16_insider_trading_rules'] = val
|
1742
|
+
end
|
1743
|
+
|
1744
|
+
def type_of_section_16_insider_trading_window
|
1745
|
+
attributes['type_of_section_16_insider_trading_window']
|
1746
|
+
end
|
1747
|
+
|
1748
|
+
def type_of_section_16_insider_trading_window=(val)
|
1749
|
+
attributes['type_of_section_16_insider_trading_window'] = val
|
1750
|
+
end
|
1751
|
+
|
1752
|
+
def consult_on_plan_design_changes
|
1753
|
+
attributes['consult_on_plan_design_changes']
|
1754
|
+
end
|
1755
|
+
|
1756
|
+
def consult_on_plan_design_changes=(val)
|
1757
|
+
attributes['consult_on_plan_design_changes'] = val
|
1758
|
+
end
|
1759
|
+
|
1760
|
+
def merger_and_acquisition_work
|
1761
|
+
attributes['merger_and_acquisition_work']
|
1762
|
+
end
|
1763
|
+
|
1764
|
+
def merger_and_acquisition_work=(val)
|
1765
|
+
attributes['merger_and_acquisition_work'] = val
|
1766
|
+
end
|
1767
|
+
|
1768
|
+
def assist_with_irs_and_dol_audits
|
1769
|
+
attributes['assist_with_irs_and_dol_audits']
|
1770
|
+
end
|
1771
|
+
|
1772
|
+
def assist_with_irs_and_dol_audits=(val)
|
1773
|
+
attributes['assist_with_irs_and_dol_audits'] = val
|
1774
|
+
end
|
1775
|
+
|
1776
|
+
def consult_on_plan_defect_correction
|
1777
|
+
attributes['consult_on_plan_defect_correction']
|
1778
|
+
end
|
1779
|
+
|
1780
|
+
def consult_on_plan_defect_correction=(val)
|
1781
|
+
attributes['consult_on_plan_defect_correction'] = val
|
1782
|
+
end
|
1783
|
+
|
1784
|
+
def manage_plan_transition_to_new_vendor
|
1785
|
+
attributes['manage_plan_transition_to_new_vendor']
|
1786
|
+
end
|
1787
|
+
|
1788
|
+
def manage_plan_transition_to_new_vendor=(val)
|
1789
|
+
attributes['manage_plan_transition_to_new_vendor'] = val
|
1790
|
+
end
|
1791
|
+
|
1792
|
+
def enrollment_kit_volumes
|
1793
|
+
attributes['enrollment_kit_volumes']
|
1794
|
+
end
|
1795
|
+
|
1796
|
+
def enrollment_kit_volumes=(val)
|
1797
|
+
attributes['enrollment_kit_volumes'] = val
|
1798
|
+
end
|
1799
|
+
|
1800
|
+
def mail_s_enrollment_kit_type
|
1801
|
+
attributes['mail_s_enrollment_kit_type']
|
1802
|
+
end
|
1803
|
+
|
1804
|
+
def mail_s_enrollment_kit_type=(val)
|
1805
|
+
attributes['mail_s_enrollment_kit_type'] = val
|
1806
|
+
end
|
1807
|
+
|
1808
|
+
def toll_free_number_recordkeepers_volumes
|
1809
|
+
attributes['toll_free_number_recordkeepers_volumes']
|
1810
|
+
end
|
1811
|
+
|
1812
|
+
def toll_free_number_recordkeepers_volumes=(val)
|
1813
|
+
attributes['toll_free_number_recordkeepers_volumes'] = val
|
1814
|
+
end
|
1815
|
+
|
1816
|
+
def toll_free_number_recordkeepers_type
|
1817
|
+
attributes['toll_free_number_recordkeepers_type']
|
1818
|
+
end
|
1819
|
+
|
1820
|
+
def toll_free_number_recordkeepers_type=(val)
|
1821
|
+
attributes['toll_free_number_recordkeepers_type'] = val
|
1822
|
+
end
|
1823
|
+
|
1824
|
+
def internet_participants_type
|
1825
|
+
attributes['internet_participants_type']
|
1826
|
+
end
|
1827
|
+
|
1828
|
+
def internet_participants_type=(val)
|
1829
|
+
attributes['internet_participants_type'] = val
|
1830
|
+
end
|
1831
|
+
|
1832
|
+
def hardcopy_statement_volumes
|
1833
|
+
attributes['hardcopy_statement_volumes']
|
1834
|
+
end
|
1835
|
+
|
1836
|
+
def hardcopy_statement_volumes=(val)
|
1837
|
+
attributes['hardcopy_statement_volumes'] = val
|
1838
|
+
end
|
1839
|
+
|
1840
|
+
def hardcopy_statement_type
|
1841
|
+
attributes['hardcopy_statement_type']
|
1842
|
+
end
|
1843
|
+
|
1844
|
+
def hardcopy_statement_type=(val)
|
1845
|
+
attributes['hardcopy_statement_type'] = val
|
1846
|
+
end
|
1847
|
+
|
1848
|
+
def digital_stmts_volumes
|
1849
|
+
attributes['digital_stmts_volumes']
|
1850
|
+
end
|
1851
|
+
|
1852
|
+
def digital_stmts_volumes=(val)
|
1853
|
+
attributes['digital_stmts_volumes'] = val
|
1854
|
+
end
|
1855
|
+
|
1856
|
+
def digital_stmts_type
|
1857
|
+
attributes['digital_stmts_type']
|
1858
|
+
end
|
1859
|
+
|
1860
|
+
def digital_stmts_type=(val)
|
1861
|
+
attributes['digital_stmts_type'] = val
|
1862
|
+
end
|
1863
|
+
|
1864
|
+
def retirement_projection_hardcopy_statement_volumes
|
1865
|
+
attributes['retirement_projection_hardcopy_statement_volumes']
|
1866
|
+
end
|
1867
|
+
|
1868
|
+
def retirement_projection_hardcopy_statement_volumes=(val)
|
1869
|
+
attributes['retirement_projection_hardcopy_statement_volumes'] = val
|
1870
|
+
end
|
1871
|
+
|
1872
|
+
def retirement_projection_hardcopy_statement_type
|
1873
|
+
attributes['retirement_projection_hardcopy_statement_type']
|
1874
|
+
end
|
1875
|
+
|
1876
|
+
def retirement_projection_hardcopy_statement_type=(val)
|
1877
|
+
attributes['retirement_projection_hardcopy_statement_type'] = val
|
1878
|
+
end
|
1879
|
+
|
1880
|
+
def retirement_projection_digital_statement_volumes
|
1881
|
+
attributes['retirement_projection_digital_statement_volumes']
|
1882
|
+
end
|
1883
|
+
|
1884
|
+
def retirement_projection_digital_statement_volumes=(val)
|
1885
|
+
attributes['retirement_projection_digital_statement_volumes'] = val
|
1886
|
+
end
|
1887
|
+
|
1888
|
+
def retirement_projection_digital_statement_type
|
1889
|
+
attributes['retirement_projection_digital_statement_type']
|
1890
|
+
end
|
1891
|
+
|
1892
|
+
def retirement_projection_digital_statement_type=(val)
|
1893
|
+
attributes['retirement_projection_digital_statement_type'] = val
|
1894
|
+
end
|
1895
|
+
|
1896
|
+
def hardcopy_plan_driven_events
|
1897
|
+
attributes['hardcopy_plan_driven_events']
|
1898
|
+
end
|
1899
|
+
|
1900
|
+
def hardcopy_plan_driven_events=(val)
|
1901
|
+
attributes['hardcopy_plan_driven_events'] = val
|
1902
|
+
end
|
1903
|
+
|
1904
|
+
def hardcopy_plan_driven_events_type
|
1905
|
+
attributes['hardcopy_plan_driven_events_type']
|
1906
|
+
end
|
1907
|
+
|
1908
|
+
def hardcopy_plan_driven_events_type=(val)
|
1909
|
+
attributes['hardcopy_plan_driven_events_type'] = val
|
1910
|
+
end
|
1911
|
+
|
1912
|
+
def digital_plan_driven_events
|
1913
|
+
attributes['digital_plan_driven_events']
|
1914
|
+
end
|
1915
|
+
|
1916
|
+
def digital_plan_driven_events=(val)
|
1917
|
+
attributes['digital_plan_driven_events'] = val
|
1918
|
+
end
|
1919
|
+
|
1920
|
+
def digital_plan_driven_events_type
|
1921
|
+
attributes['digital_plan_driven_events_type']
|
1922
|
+
end
|
1923
|
+
|
1924
|
+
def digital_plan_driven_events_type=(val)
|
1925
|
+
attributes['digital_plan_driven_events_type'] = val
|
1926
|
+
end
|
1927
|
+
|
1928
|
+
def hardcopy_campaigns
|
1929
|
+
attributes['hardcopy_campaigns']
|
1930
|
+
end
|
1931
|
+
|
1932
|
+
def hardcopy_campaigns=(val)
|
1933
|
+
attributes['hardcopy_campaigns'] = val
|
1934
|
+
end
|
1935
|
+
|
1936
|
+
def hardcopy_campaign_type
|
1937
|
+
attributes['hardcopy_campaign_type']
|
1938
|
+
end
|
1939
|
+
|
1940
|
+
def hardcopy_campaign_type=(val)
|
1941
|
+
attributes['hardcopy_campaign_type'] = val
|
1942
|
+
end
|
1943
|
+
|
1944
|
+
def digital_campaigns
|
1945
|
+
attributes['digital_campaigns']
|
1946
|
+
end
|
1947
|
+
|
1948
|
+
def digital_campaigns=(val)
|
1949
|
+
attributes['digital_campaigns'] = val
|
1950
|
+
end
|
1951
|
+
|
1952
|
+
def digital_campaign_type
|
1953
|
+
attributes['digital_campaign_type']
|
1954
|
+
end
|
1955
|
+
|
1956
|
+
def digital_campaign_type=(val)
|
1957
|
+
attributes['digital_campaign_type'] = val
|
1958
|
+
end
|
1959
|
+
|
1960
|
+
def group_meetings
|
1961
|
+
attributes['group_meetings']
|
1962
|
+
end
|
1963
|
+
|
1964
|
+
def group_meetings=(val)
|
1965
|
+
attributes['group_meetings'] = val
|
1966
|
+
end
|
1967
|
+
|
1968
|
+
def group_meetings_type
|
1969
|
+
attributes['group_meetings_type']
|
1970
|
+
end
|
1971
|
+
|
1972
|
+
def group_meetings_type=(val)
|
1973
|
+
attributes['group_meetings_type'] = val
|
1974
|
+
end
|
1975
|
+
|
1976
|
+
def one_on_one_meetings
|
1977
|
+
attributes['one_on_one_meetings']
|
1978
|
+
end
|
1979
|
+
|
1980
|
+
def one_on_one_meetings=(val)
|
1981
|
+
attributes['one_on_one_meetings'] = val
|
1982
|
+
end
|
1983
|
+
|
1984
|
+
def one_on_one_meetings_type
|
1985
|
+
attributes['one_on_one_meetings_type']
|
1986
|
+
end
|
1987
|
+
|
1988
|
+
def one_on_one_meetings_type=(val)
|
1989
|
+
attributes['one_on_one_meetings_type'] = val
|
1990
|
+
end
|
1991
|
+
|
1992
|
+
def participation_pre_tax_rate_overall
|
1993
|
+
attributes['participation_pre_tax_rate_overall']
|
1994
|
+
end
|
1995
|
+
|
1996
|
+
def participation_pre_tax_rate_overall=(val)
|
1997
|
+
attributes['participation_pre_tax_rate_overall'] = val
|
1998
|
+
end
|
1999
|
+
|
2000
|
+
def participation_pre_tax_rate_hces
|
2001
|
+
attributes['participation_pre_tax_rate_hces']
|
2002
|
+
end
|
2003
|
+
|
2004
|
+
def participation_pre_tax_rate_hces=(val)
|
2005
|
+
attributes['participation_pre_tax_rate_hces'] = val
|
2006
|
+
end
|
2007
|
+
|
2008
|
+
def participation_pre_tax_rate_nhces
|
2009
|
+
attributes['participation_pre_tax_rate_nhces']
|
2010
|
+
end
|
2011
|
+
|
2012
|
+
def participation_pre_tax_rate_nhces=(val)
|
2013
|
+
attributes['participation_pre_tax_rate_nhces'] = val
|
2014
|
+
end
|
2015
|
+
|
2016
|
+
def pre_tax_deferral_percent_overall
|
2017
|
+
attributes['pre_tax_deferral_percent_overall']
|
2018
|
+
end
|
2019
|
+
|
2020
|
+
def pre_tax_deferral_percent_overall=(val)
|
2021
|
+
attributes['pre_tax_deferral_percent_overall'] = val
|
2022
|
+
end
|
2023
|
+
|
2024
|
+
def pre_tax_deferral_percent_hces
|
2025
|
+
attributes['pre_tax_deferral_percent_hces']
|
2026
|
+
end
|
2027
|
+
|
2028
|
+
def pre_tax_deferral_percent_hces=(val)
|
2029
|
+
attributes['pre_tax_deferral_percent_hces'] = val
|
2030
|
+
end
|
2031
|
+
|
2032
|
+
def pre_tax_deferral_percent_nhces
|
2033
|
+
attributes['pre_tax_deferral_percent_nhces']
|
2034
|
+
end
|
2035
|
+
|
2036
|
+
def pre_tax_deferral_percent_nhces=(val)
|
2037
|
+
attributes['pre_tax_deferral_percent_nhces'] = val
|
2038
|
+
end
|
2039
|
+
|
2040
|
+
def participation_roth_rate_overall
|
2041
|
+
attributes['participation_roth_rate_overall']
|
2042
|
+
end
|
2043
|
+
|
2044
|
+
def participation_roth_rate_overall=(val)
|
2045
|
+
attributes['participation_roth_rate_overall'] = val
|
2046
|
+
end
|
2047
|
+
|
2048
|
+
def participation_roth_rate_hces
|
2049
|
+
attributes['participation_roth_rate_hces']
|
2050
|
+
end
|
2051
|
+
|
2052
|
+
def participation_roth_rate_hces=(val)
|
2053
|
+
attributes['participation_roth_rate_hces'] = val
|
2054
|
+
end
|
2055
|
+
|
2056
|
+
def participation_roth_rate_nhces
|
2057
|
+
attributes['participation_roth_rate_nhces']
|
2058
|
+
end
|
2059
|
+
|
2060
|
+
def participation_roth_rate_nhces=(val)
|
2061
|
+
attributes['participation_roth_rate_nhces'] = val
|
2062
|
+
end
|
2063
|
+
|
2064
|
+
def roth_deferral_percent_overall
|
2065
|
+
attributes['roth_deferral_percent_overall']
|
2066
|
+
end
|
2067
|
+
|
2068
|
+
def roth_deferral_percent_overall=(val)
|
2069
|
+
attributes['roth_deferral_percent_overall'] = val
|
2070
|
+
end
|
2071
|
+
|
2072
|
+
def roth_deferral_percent_hces
|
2073
|
+
attributes['roth_deferral_percent_hces']
|
2074
|
+
end
|
2075
|
+
|
2076
|
+
def roth_deferral_percent_hces=(val)
|
2077
|
+
attributes['roth_deferral_percent_hces'] = val
|
2078
|
+
end
|
2079
|
+
|
2080
|
+
def roth_deferral_percent_nhces
|
2081
|
+
attributes['roth_deferral_percent_nhces']
|
2082
|
+
end
|
2083
|
+
|
2084
|
+
def roth_deferral_percent_nhces=(val)
|
2085
|
+
attributes['roth_deferral_percent_nhces'] = val
|
2086
|
+
end
|
2087
|
+
|
2088
|
+
def auto_escalate_percent_parts
|
2089
|
+
attributes['auto_escalate_percent_parts']
|
2090
|
+
end
|
2091
|
+
|
2092
|
+
def auto_escalate_percent_parts=(val)
|
2093
|
+
attributes['auto_escalate_percent_parts'] = val
|
2094
|
+
end
|
2095
|
+
|
2096
|
+
def auto_escalate_avg_increase
|
2097
|
+
attributes['auto_escalate_avg_increase']
|
2098
|
+
end
|
2099
|
+
|
2100
|
+
def auto_escalate_avg_increase=(val)
|
2101
|
+
attributes['auto_escalate_avg_increase'] = val
|
2102
|
+
end
|
2103
|
+
|
2104
|
+
def max_company_match_percent_parts
|
2105
|
+
attributes['max_company_match_percent_parts']
|
2106
|
+
end
|
2107
|
+
|
2108
|
+
def max_company_match_percent_parts=(val)
|
2109
|
+
attributes['max_company_match_percent_parts'] = val
|
2110
|
+
end
|
2111
|
+
|
2112
|
+
def catchup_percent_parts
|
2113
|
+
attributes['catchup_percent_parts']
|
2114
|
+
end
|
2115
|
+
|
2116
|
+
def catchup_percent_parts=(val)
|
2117
|
+
attributes['catchup_percent_parts'] = val
|
2118
|
+
end
|
2119
|
+
|
2120
|
+
def dollars_in_models
|
2121
|
+
attributes['dollars_in_models']
|
2122
|
+
end
|
2123
|
+
|
2124
|
+
def dollars_in_models=(val)
|
2125
|
+
attributes['dollars_in_models'] = val
|
2126
|
+
end
|
2127
|
+
|
2128
|
+
def terms_volumes
|
2129
|
+
attributes['terms_volumes']
|
2130
|
+
end
|
2131
|
+
|
2132
|
+
def terms_volumes=(val)
|
2133
|
+
attributes['terms_volumes'] = val
|
2134
|
+
end
|
2135
|
+
|
2136
|
+
def terms_still_in_plan_percent_parts_12mos
|
2137
|
+
attributes['terms_still_in_plan_percent_parts_12mos']
|
2138
|
+
end
|
2139
|
+
|
2140
|
+
def terms_still_in_plan_percent_parts_12mos=(val)
|
2141
|
+
attributes['terms_still_in_plan_percent_parts_12mos'] = val
|
2142
|
+
end
|
2143
|
+
|
2144
|
+
def terms_rolled_over_percent_parts_12mos
|
2145
|
+
attributes['terms_rolled_over_percent_parts_12mos']
|
2146
|
+
end
|
2147
|
+
|
2148
|
+
def terms_rolled_over_percent_parts_12mos=(val)
|
2149
|
+
attributes['terms_rolled_over_percent_parts_12mos'] = val
|
2150
|
+
end
|
2151
|
+
|
2152
|
+
def terms_cashed_out_percent_parts_12mos
|
2153
|
+
attributes['terms_cashed_out_percent_parts_12mos']
|
2154
|
+
end
|
2155
|
+
|
2156
|
+
def terms_cashed_out_percent_parts_12mos=(val)
|
2157
|
+
attributes['terms_cashed_out_percent_parts_12mos'] = val
|
2158
|
+
end
|
2159
|
+
|
2160
|
+
def terms_still_in_plan_amt_12mos
|
2161
|
+
attributes['terms_still_in_plan_amt_12mos']
|
2162
|
+
end
|
2163
|
+
|
2164
|
+
def terms_still_in_plan_amt_12mos=(val)
|
2165
|
+
attributes['terms_still_in_plan_amt_12mos'] = val
|
2166
|
+
end
|
2167
|
+
|
2168
|
+
def terms_rolled_over_amt_12mos
|
2169
|
+
attributes['terms_rolled_over_amt_12mos']
|
2170
|
+
end
|
2171
|
+
|
2172
|
+
def terms_rolled_over_amt_12mos=(val)
|
2173
|
+
attributes['terms_rolled_over_amt_12mos'] = val
|
2174
|
+
end
|
2175
|
+
|
2176
|
+
def terms_cashed_out_amt_12mos
|
2177
|
+
attributes['terms_cashed_out_amt_12mos']
|
2178
|
+
end
|
2179
|
+
|
2180
|
+
def terms_cashed_out_amt_12mos=(val)
|
2181
|
+
attributes['terms_cashed_out_amt_12mos'] = val
|
2182
|
+
end
|
2183
|
+
|
2184
|
+
def advisor_twelve_b1_fees_broker_of_record
|
2185
|
+
attributes['advisor_twelve_b1_fees_broker_of_record']
|
2186
|
+
end
|
2187
|
+
|
2188
|
+
def advisor_twelve_b1_fees_broker_of_record=(val)
|
2189
|
+
attributes['advisor_twelve_b1_fees_broker_of_record'] = val
|
2190
|
+
end
|
2191
|
+
|
2192
|
+
def advisor_twelve_b1_how_dispensed_picklist_feesdispensedoptions
|
2193
|
+
attributes['advisor_twelve_b1_how_dispensed_picklist_feesdispensedoptions']
|
2194
|
+
end
|
2195
|
+
|
2196
|
+
def advisor_twelve_b1_how_dispensed_picklist_feesdispensedoptions=(val)
|
2197
|
+
attributes['advisor_twelve_b1_how_dispensed_picklist_feesdispensedoptions'] = val
|
2198
|
+
end
|
2199
|
+
|
2200
|
+
def participation_pre_tax_deferral_percent_hces
|
2201
|
+
attributes['participation_pre_tax_deferral_percent_hces']
|
2202
|
+
end
|
2203
|
+
|
2204
|
+
def participation_pre_tax_deferral_percent_hces=(val)
|
2205
|
+
attributes['participation_pre_tax_deferral_percent_hces'] = val
|
2206
|
+
end
|
2207
|
+
|
2208
|
+
def participation_pre_tax_deferral_percent_nhces
|
2209
|
+
attributes['participation_pre_tax_deferral_percent_nhces']
|
2210
|
+
end
|
2211
|
+
|
2212
|
+
def participation_pre_tax_deferral_percent_nhces=(val)
|
2213
|
+
attributes['participation_pre_tax_deferral_percent_nhces'] = val
|
2214
|
+
end
|
2215
|
+
|
2216
|
+
def created_at
|
2217
|
+
attributes['created_at']
|
2218
|
+
end
|
2219
|
+
|
2220
|
+
def created_at=(val)
|
2221
|
+
attributes['created_at'] = val
|
2222
|
+
end
|
2223
|
+
|
2224
|
+
def updated_at
|
2225
|
+
attributes['updated_at']
|
2226
|
+
end
|
2227
|
+
|
2228
|
+
def updated_at=(val)
|
2229
|
+
attributes['updated_at'] = val
|
2230
|
+
end
|
2231
|
+
|
2232
|
+
def company_id_recordkeeper
|
2233
|
+
attributes['company_id_recordkeeper']
|
2234
|
+
end
|
2235
|
+
|
2236
|
+
def company_id_recordkeeper=(val)
|
2237
|
+
attributes['company_id_recordkeeper'] = val
|
2238
|
+
end
|
2239
|
+
|
2240
|
+
def company_id_tpa
|
2241
|
+
attributes['company_id_tpa']
|
2242
|
+
end
|
2243
|
+
|
2244
|
+
def company_id_tpa=(val)
|
2245
|
+
attributes['company_id_tpa'] = val
|
2246
|
+
end
|
2247
|
+
|
2248
|
+
def company_id_advisor_firm
|
2249
|
+
attributes['company_id_advisor_firm']
|
2250
|
+
end
|
2251
|
+
|
2252
|
+
def company_id_advisor_firm=(val)
|
2253
|
+
attributes['company_id_advisor_firm'] = val
|
2254
|
+
end
|
2255
|
+
|
2256
|
+
def person_id_advisor
|
2257
|
+
attributes['person_id_advisor']
|
2258
|
+
end
|
2259
|
+
|
2260
|
+
def person_id_advisor=(val)
|
2261
|
+
attributes['person_id_advisor'] = val
|
2262
|
+
end
|
2263
|
+
|
2264
|
+
def advisor_makes_payments_to_providers
|
2265
|
+
attributes['advisor_makes_payments_to_providers']
|
2266
|
+
end
|
2267
|
+
|
2268
|
+
def advisor_makes_payments_to_providers=(val)
|
2269
|
+
attributes['advisor_makes_payments_to_providers'] = val
|
2270
|
+
end
|
2271
|
+
|
2272
|
+
def advisor_credits_plan_or_participants
|
2273
|
+
attributes['advisor_credits_plan_or_participants']
|
2274
|
+
end
|
2275
|
+
|
2276
|
+
def advisor_credits_plan_or_participants=(val)
|
2277
|
+
attributes['advisor_credits_plan_or_participants'] = val
|
2278
|
+
end
|
2279
|
+
|
2280
|
+
def service_group_id
|
2281
|
+
attributes['service_group_id']
|
2282
|
+
end
|
2283
|
+
|
2284
|
+
def service_group_id=(val)
|
2285
|
+
attributes['service_group_id'] = val
|
2286
|
+
end
|
2287
|
+
|
2288
|
+
|
2289
|
+
|
2290
|
+
|
2291
|
+
|
2292
|
+
|
2293
|
+
def self.mock_instance_methods
|
2294
|
+
return @mock_instance_methods if @mock_instance_methods
|
2295
|
+
@mock_instance_methods = {}
|
2296
|
+
@mock_instance_methods[:bar] = :not_implemented
|
2297
|
+
|
2298
|
+
@mock_instance_methods[:baz] = :not_implemented
|
2299
|
+
@mock_instance_methods
|
2300
|
+
end
|
2301
|
+
|
2302
|
+
def self.mock_class_methods
|
2303
|
+
return @mock_class_methods if @mock_class_methods
|
2304
|
+
@mock_class_methods = {} @mock_class_methods
|
2305
|
+
end
|
2306
|
+
|
2307
|
+
|
2308
|
+
def bar(name, type=nil)
|
2309
|
+
block = mock_instance_methods[:bar]
|
2310
|
+
raise %Q[#bar is not Implemented for Class: PlanMock] if block.class == Symbol
|
2311
|
+
instance_exec(*[name, type], &block)
|
2312
|
+
end
|
2313
|
+
|
2314
|
+
def baz()
|
2315
|
+
block = mock_instance_methods[:baz]
|
2316
|
+
raise %Q[#baz is not Implemented for Class: PlanMock] if block.class == Symbol
|
2317
|
+
instance_exec(*[], &block)
|
2318
|
+
end
|
2319
|
+
|
2320
|
+
|
2321
|
+
|
2322
|
+
|
2323
|
+
end
|