policyengine-uk 2.35.0__py3-none-any.whl → 2.36.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- policyengine_uk/__init__.py +4 -0
- policyengine_uk/data/__init__.py +0 -4
- policyengine_uk/data/dataset_schema.py +32 -2
- policyengine_uk/data/economic_assumptions.py +12 -23
- policyengine_uk/data/uprating_growth_factors.csv +83 -83
- policyengine_uk/parameters/gov/benefit_uprating_cpi.yaml +2 -1
- policyengine_uk/parameters/gov/contrib/create_private_pension_uprating.py +7 -11
- policyengine_uk/parameters/gov/dwp/IIDB/maximum.yaml +1 -1
- policyengine_uk/parameters/gov/dwp/state_pension/basic_state_pension/amount.yaml +1 -1
- policyengine_uk/parameters/gov/dwp/state_pension/new_state_pension/amount.yaml +1 -1
- policyengine_uk/parameters/gov/dwp/state_pension/triple_lock/create_triple_lock.py +23 -15
- policyengine_uk/parameters/gov/dwp/state_pension/triple_lock/include_earnings.yaml +8 -0
- policyengine_uk/parameters/gov/dwp/state_pension/triple_lock/include_inflation.yaml +6 -0
- policyengine_uk/parameters/gov/economic_assumptions/create_economic_assumption_indices.py +64 -0
- policyengine_uk/parameters/gov/economic_assumptions/yoy_growth.yaml +265 -0
- policyengine_uk/parameters/gov/hmrc/fuel_duty/petrol_and_diesel.yaml +1 -1
- policyengine_uk/parameters/gov/hmrc/income_tax/allowances/personal_allowance/amount.yaml +1 -1
- policyengine_uk/parameters/gov/hmrc/income_tax/rates/scotland/rates.yaml +6 -6
- policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/thresholds/lower_earnings_limit.yaml +1 -1
- policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/thresholds/primary_threshold.yaml +1 -1
- policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/thresholds/secondary_threshold.yaml +1 -1
- policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/thresholds/upper_earnings_limit.yaml +1 -1
- policyengine_uk/parameters/gov/hmrc/national_insurance/class_2/small_profits_threshold.yaml +1 -1
- policyengine_uk/parameters/gov/hmrc/national_insurance/class_4/thresholds/lower_profits_limit.yaml +1 -1
- policyengine_uk/parameters/gov/hmrc/national_insurance/class_4/thresholds/upper_profits_limit.yaml +1 -1
- policyengine_uk/parameters/gov/indices/private_rent_index.yaml +1 -1
- policyengine_uk/parameters/gov/simulation/private_school_vat/private_school_fees.yaml +1 -1
- policyengine_uk/parameters/gov/social_security_scotland/pawhp/amount/base.yaml +1 -1
- policyengine_uk/parameters/gov/social_security_scotland/pawhp/amount/higher.yaml +1 -1
- policyengine_uk/parameters/gov/social_security_scotland/pawhp/amount/lower.yaml +1 -1
- policyengine_uk/parameters/household/consumption/total_by_category.yaml +1 -1
- policyengine_uk/parameters/household/poverty/absolute_poverty_threshold_ahc.yaml +2 -1
- policyengine_uk/parameters/household/poverty/absolute_poverty_threshold_bhc.yaml +2 -1
- policyengine_uk/parameters/household/wealth/national_balance_sheet.yaml +1 -1
- policyengine_uk/system.py +33 -11
- policyengine_uk/tests/microsimulation/reforms_config.yaml +4 -4
- policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement.yaml +2 -2
- policyengine_uk/utils/create_triple_lock.py +6 -2
- policyengine_uk/variables/gov/dfe/free_school_fruit_veg.py +1 -1
- policyengine_uk/variables/gov/dfe/free_school_meals.py +1 -1
- policyengine_uk/variables/gov/dfe/free_school_milk.py +1 -1
- policyengine_uk/variables/gov/dwp/afcs_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/attendance_allowance_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/basic_state_pension.py +1 -1
- policyengine_uk/variables/gov/dwp/bsp_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/carers_allowance_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/child_tax_credit_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/dla/dla_m_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/dla/dla_sc_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/esa_contrib_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/esa_income_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/housing_benefit/housing_benefit_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/iidb_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/incapacity_benefit_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/income_support_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/jsa_contrib_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/jsa_income_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/maternity_allowance_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/pension_credit/pension_credit_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/pip/pip_dl_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/pip/pip_m_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/sda_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/state_pension_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/universal_credit/universal_credit_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/winter_fuel_allowance_reported.py +1 -1
- policyengine_uk/variables/gov/dwp/working_tax_credit_reported.py +1 -1
- policyengine_uk/variables/gov/gov_tax.py +1 -0
- policyengine_uk/variables/gov/hmrc/capital_gains_tax/capital_gains_before_response.py +1 -1
- policyengine_uk/variables/gov/hmrc/child_benefit_reported.py +1 -1
- policyengine_uk/variables/gov/hmrc/student_loan_repayments.py +1 -1
- policyengine_uk/variables/household/demographic/household_weight.py +1 -1
- policyengine_uk/variables/household/income/capital_gains.py +1 -1
- policyengine_uk/variables/household/income/inflation_adjustment.py +3 -1
- policyengine_uk/variables/household/income/statutory_maternity_pay.py +1 -1
- policyengine_uk/variables/household/income/statutory_paternity_pay.py +1 -1
- policyengine_uk/variables/household/income/statutory_sick_pay.py +1 -1
- policyengine_uk/variables/household/wealth/gross_financial_wealth.py +1 -1
- policyengine_uk/variables/household/wealth/net_financial_wealth.py +1 -1
- policyengine_uk/variables/household/wealth/savings.py +1 -1
- policyengine_uk/variables/input/consumption/alcohol_and_tobacco_consumption.py +1 -1
- policyengine_uk/variables/input/consumption/childcare_expenses.py +1 -1
- policyengine_uk/variables/input/consumption/clothing_and_footwear_consumption.py +1 -1
- policyengine_uk/variables/input/consumption/communication_consumption.py +1 -1
- policyengine_uk/variables/input/consumption/diesel_spending.py +1 -1
- policyengine_uk/variables/input/consumption/education_consumption.py +1 -1
- policyengine_uk/variables/input/consumption/energy.py +1 -1
- policyengine_uk/variables/input/consumption/food_and_non_alcoholic_beverages_consumption.py +1 -1
- policyengine_uk/variables/input/consumption/health_consumption.py +1 -1
- policyengine_uk/variables/input/consumption/household_furnishings_consumption.py +1 -1
- policyengine_uk/variables/input/consumption/housing_water_and_electricity_consumption.py +1 -1
- policyengine_uk/variables/input/consumption/miscellaneous_consumption.py +1 -1
- policyengine_uk/variables/input/consumption/petrol_spending.py +1 -1
- policyengine_uk/variables/input/consumption/property/council_tax.py +1 -1
- policyengine_uk/variables/input/consumption/property/employee_pension_contributions.py +1 -1
- policyengine_uk/variables/input/consumption/property/employer_pension_contributions.py +1 -1
- policyengine_uk/variables/input/consumption/property/maintenance_expenses.py +1 -1
- policyengine_uk/variables/input/consumption/property/mortgage_capital_repayment.py +1 -1
- policyengine_uk/variables/input/consumption/property/mortgage_interest_repayment.py +1 -1
- policyengine_uk/variables/input/consumption/property/personal_pension_contributions.py +1 -1
- policyengine_uk/variables/input/consumption/recreation_consumption.py +1 -1
- policyengine_uk/variables/input/consumption/restaurants_and_hotels_consumption.py +1 -1
- policyengine_uk/variables/input/consumption/transport_consumption.py +1 -1
- policyengine_uk/variables/input/corporate_wealth.py +1 -1
- policyengine_uk/variables/input/dividend_income.py +1 -1
- policyengine_uk/variables/input/employment_income.py +1 -1
- policyengine_uk/variables/input/employment_income_before_lsr.py +1 -1
- policyengine_uk/variables/input/lump_sum_income.py +1 -1
- policyengine_uk/variables/input/main_residence_value.py +1 -1
- policyengine_uk/variables/input/maintenance_income.py +1 -1
- policyengine_uk/variables/input/miscellaneous_income.py +1 -1
- policyengine_uk/variables/input/non_residential_property_value.py +1 -1
- policyengine_uk/variables/input/other_investment_income.py +1 -1
- policyengine_uk/variables/input/other_residential_property_value.py +1 -1
- policyengine_uk/variables/input/owned_land.py +1 -1
- policyengine_uk/variables/input/pension_income.py +1 -1
- policyengine_uk/variables/input/private_pension_income.py +1 -1
- policyengine_uk/variables/input/private_transfer_income.py +1 -1
- policyengine_uk/variables/input/property_income.py +1 -1
- policyengine_uk/variables/input/rent.py +1 -1
- policyengine_uk/variables/input/savings_interest_income.py +1 -1
- policyengine_uk/variables/input/self_employment_income.py +1 -1
- policyengine_uk/variables/input/state_pension.py +1 -1
- policyengine_uk/variables/input/sublet_income.py +1 -1
- {policyengine_uk-2.35.0.data → policyengine_uk-2.36.0.data}/data/share/openfisca/openfisca-country-template/CHANGELOG.md +17 -0
- {policyengine_uk-2.35.0.dist-info → policyengine_uk-2.36.0.dist-info}/METADATA +1 -1
- {policyengine_uk-2.35.0.dist-info → policyengine_uk-2.36.0.dist-info}/RECORD +130 -143
- policyengine_uk/parameters/gov/obr/add_per_capita_parameters.py +0 -40
- policyengine_uk/parameters/gov/obr/average_earnings.yaml +0 -30
- policyengine_uk/parameters/gov/obr/consumer_price_index.yaml +0 -28
- policyengine_uk/parameters/gov/obr/council_tax.yaml +0 -18
- policyengine_uk/parameters/gov/obr/employment_income.yaml +0 -28
- policyengine_uk/parameters/gov/obr/extend_forecast.py +0 -32
- policyengine_uk/parameters/gov/obr/gdp.yaml +0 -28
- policyengine_uk/parameters/gov/obr/house_prices.yaml +0 -27
- policyengine_uk/parameters/gov/obr/mixed_income.yaml +0 -24
- policyengine_uk/parameters/gov/obr/mortgage_interest.yaml +0 -27
- policyengine_uk/parameters/gov/obr/non_labour_income.yaml +0 -24
- policyengine_uk/parameters/gov/obr/rent.yaml +0 -27
- policyengine_uk/parameters/gov/obr/rpi.yaml +0 -29
- policyengine_uk/parameters/gov/ons/README.md +0 -3
- policyengine_uk/parameters/gov/ons/household.yaml +0 -51
- policyengine_uk/parameters/gov/ons/population.yaml +0 -37
- policyengine_uk/parameters/gov/ons/rpi.yaml +0 -19
- {policyengine_uk-2.35.0.data → policyengine_uk-2.36.0.data}/data/share/openfisca/openfisca-country-template/LICENSE +0 -0
- {policyengine_uk-2.35.0.data → policyengine_uk-2.36.0.data}/data/share/openfisca/openfisca-country-template/README.md +0 -0
- {policyengine_uk-2.35.0.dist-info → policyengine_uk-2.36.0.dist-info}/WHEEL +0 -0
- {policyengine_uk-2.35.0.dist-info → policyengine_uk-2.36.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,19 +1,19 @@
|
|
1
|
-
policyengine_uk/__init__.py,sha256=
|
1
|
+
policyengine_uk/__init__.py,sha256=LTr9qkIQZVtaMRZhxsNAq4Q5PEORxhSKRXfl94KpHiU,465
|
2
2
|
policyengine_uk/entities.py,sha256=9yUbkUWQr3WydNE-gHhUudG97HGyXIZY3dkgQ6Z3t9A,1212
|
3
3
|
policyengine_uk/model_api.py,sha256=D5OuQpQbdBXiF6r7LvCLWjsTkAWtkeBJWz2ebsJ-GN0,189
|
4
4
|
policyengine_uk/modelled_policies.yaml,sha256=TLhvmkuI9ip-Fjq63n66RzDErCkN8K4BzY6XLxLMtFg,463
|
5
5
|
policyengine_uk/repo.py,sha256=-dqpIMUD7UUj94ql9XwaMrFJUYKvNhFQ_9uj83Z8uh0,55
|
6
|
-
policyengine_uk/system.py,sha256=
|
7
|
-
policyengine_uk/data/__init__.py,sha256=
|
8
|
-
policyengine_uk/data/dataset_schema.py,sha256=
|
9
|
-
policyengine_uk/data/economic_assumptions.py,sha256=
|
10
|
-
policyengine_uk/data/uprating_growth_factors.csv,sha256=
|
6
|
+
policyengine_uk/system.py,sha256=A17rqR23iIMdvskuucahMvGZnMxwzuTYqGiFGKRu9kE,8613
|
7
|
+
policyengine_uk/data/__init__.py,sha256=9o7hH2qcHChfwDYq8Oqf2jE3b5WDS3TXJm3bf9VC4Ks,58
|
8
|
+
policyengine_uk/data/dataset_schema.py,sha256=YVjYz5uN4HWkD-CD3WLWEsNmi6XTYDTp9BtHCDG-Ons,3680
|
9
|
+
policyengine_uk/data/economic_assumptions.py,sha256=heEro-NYCszFzW-TJ3Vt3DUUrpDkysOpyvZVymJN3-8,5722
|
10
|
+
policyengine_uk/data/uprating_growth_factors.csv,sha256=6H5dq02mRsSgBJ9cYe4lut3fsvVzJXL20FvwT7SnlVc,10378
|
11
11
|
policyengine_uk/parameters/gov/README.md,sha256=bHUep1_2pLHD3Or8SwjStOWXDIbW9OuYxOd4ml8IXcM,13
|
12
|
-
policyengine_uk/parameters/gov/benefit_uprating_cpi.yaml,sha256=
|
12
|
+
policyengine_uk/parameters/gov/benefit_uprating_cpi.yaml,sha256=I-gRDcu8NeD23HPx2EqzIC8RdtIehTYLCgMVlsoQbhc,260
|
13
13
|
policyengine_uk/parameters/gov/contrib/README.md,sha256=b282dmUFAmj7cXSfiMLyE81q5Y0Gnehy-6atLus-ESs,70
|
14
14
|
policyengine_uk/parameters/gov/contrib/abolish_council_tax.yaml,sha256=QwL8jKTMTk6GC0nxS0WNb482jAuSAA8uuWT0-D77UVc,149
|
15
15
|
policyengine_uk/parameters/gov/contrib/abolish_state_pension.yaml,sha256=mLI9_hOj9v__-znYIS1Zddj_BiOWWa0J2P_n-NjkOfw,129
|
16
|
-
policyengine_uk/parameters/gov/contrib/create_private_pension_uprating.py,sha256=
|
16
|
+
policyengine_uk/parameters/gov/contrib/create_private_pension_uprating.py,sha256=NQfAPHOI6gzSxF3WNopbSsOQpnDb9uV1Z9hMZIi5KuI,677
|
17
17
|
policyengine_uk/parameters/gov/contrib/freeze_pension_credit.yaml,sha256=mjaknwypiBZg8sapZPsfP3qC6meiKJttQmIhllKI_LI,206
|
18
18
|
policyengine_uk/parameters/gov/contrib/benefit_uprating/README.md,sha256=Hvkt1efzCjWXxalgaYrGEuizDKg6Ulil8HzNV2hViwo,19
|
19
19
|
policyengine_uk/parameters/gov/contrib/benefit_uprating/all.yaml,sha256=IGlYHO9wK9P5aw8hgl5qN6tZxTLMuBm-HyfEpsWWO2I,131
|
@@ -117,7 +117,7 @@ policyengine_uk/parameters/gov/dwp/ESA/income/income_disregard_lone_parent.yaml,
|
|
117
117
|
policyengine_uk/parameters/gov/dwp/ESA/income/income_disregard_single.yaml,sha256=_sOzpy1kEx0AGvmRpPMHFA7KxmUAK0Ul1myOOfA051M,383
|
118
118
|
policyengine_uk/parameters/gov/dwp/ESA/income/pension_disregard.yaml,sha256=87UWRAtbsFkCTFB6uMWecCHDNzbF_4tE1r7SiqOZ-J0,377
|
119
119
|
policyengine_uk/parameters/gov/dwp/IIDB/README.md,sha256=ft39_bCbZ8jZR4ftO6v9Kyg9WrAb5A6W6kNYvizolfU,42
|
120
|
-
policyengine_uk/parameters/gov/dwp/IIDB/maximum.yaml,sha256=
|
120
|
+
policyengine_uk/parameters/gov/dwp/IIDB/maximum.yaml,sha256=EenjUNTLAwF1zHA-6taWl1Cds2ihxT8d0pn8o6xg_Zc,561
|
121
121
|
policyengine_uk/parameters/gov/dwp/JSA/README.md,sha256=8Pi8xHqGX0ezKDkeAndeokXfLcBVL7CgyUuZm9Omj18,24
|
122
122
|
policyengine_uk/parameters/gov/dwp/JSA/contrib/amount_18_24.yaml,sha256=Z0I70_Edin5yx0R3Hg9a-wx4uUYcN-a4JozWY93blcA,427
|
123
123
|
policyengine_uk/parameters/gov/dwp/JSA/contrib/amount_over_25.yaml,sha256=9gMvghcX-s7rWb7cNU3u8dLNj02OOHmfPlfsvoU_11Y,431
|
@@ -242,11 +242,13 @@ policyengine_uk/parameters/gov/dwp/ssmg/rate.yaml,sha256=JgiCwGh0tATWdV3ROGgDEW_
|
|
242
242
|
policyengine_uk/parameters/gov/dwp/state_pension/README.md,sha256=ijFd3N5LMQN6lTl9lZe4cYb1CMOnocm-BOdq31bM9vM,16
|
243
243
|
policyengine_uk/parameters/gov/dwp/state_pension/age/female.yaml,sha256=hjXiYz1NO9wcYOQy7oITryNoUuIzuCs1C1btE1w67Y8,295
|
244
244
|
policyengine_uk/parameters/gov/dwp/state_pension/age/male.yaml,sha256=p116oGbBC81hR74KbOpeckEzgXs5doL_xbrVkmBRKvA,208
|
245
|
-
policyengine_uk/parameters/gov/dwp/state_pension/basic_state_pension/amount.yaml,sha256=
|
245
|
+
policyengine_uk/parameters/gov/dwp/state_pension/basic_state_pension/amount.yaml,sha256=VLyg3utkKV8L24m4iW_YoTZjqlhMg9UMHmdh6hMPFQQ,839
|
246
246
|
policyengine_uk/parameters/gov/dwp/state_pension/new_state_pension/active.yaml,sha256=31yqYe2VfiCLgwE--Mqac3jxzNbTloK8VXmE1lOiXBw,299
|
247
|
-
policyengine_uk/parameters/gov/dwp/state_pension/new_state_pension/amount.yaml,sha256=
|
247
|
+
policyengine_uk/parameters/gov/dwp/state_pension/new_state_pension/amount.yaml,sha256=pe0_25EIa5VO0jh7WiRS9w0UyLkkGKTx0_pWjSHxY0s,550
|
248
248
|
policyengine_uk/parameters/gov/dwp/state_pension/triple_lock/active.yaml,sha256=MoFwK-tV_2IA0ng5S0hfrmFPbSizePCQjtLqYuzLWkk,132
|
249
|
-
policyengine_uk/parameters/gov/dwp/state_pension/triple_lock/create_triple_lock.py,sha256=
|
249
|
+
policyengine_uk/parameters/gov/dwp/state_pension/triple_lock/create_triple_lock.py,sha256=lPSqEd7geUxpfCvjmj-IlTi1WxYom_9LQhlqhwp-cDs,1477
|
250
|
+
policyengine_uk/parameters/gov/dwp/state_pension/triple_lock/include_earnings.yaml,sha256=4H_4nzdlUmN3x2L_AeSjZPBg_WLaf-6nosLaIQmEJ68,207
|
251
|
+
policyengine_uk/parameters/gov/dwp/state_pension/triple_lock/include_inflation.yaml,sha256=6I35fd7lpPmgwwsDYpN2OhWveZ8-7zp9PqZrmpYUFYw,154
|
250
252
|
policyengine_uk/parameters/gov/dwp/state_pension/triple_lock/minimum_rate.yaml,sha256=wuV19PhtYeUqrOceNPeX9bCUeaT2bM_FETDGyFli_TU,183
|
251
253
|
policyengine_uk/parameters/gov/dwp/tax_credits/README.md,sha256=yhlVo5RSBhp2zKwgIxuznoLemDPFVughLP647Rm916A,14
|
252
254
|
policyengine_uk/parameters/gov/dwp/tax_credits/min_benefit.yaml,sha256=llAYn2hFTHsOCuuH-J76P2IYM6sSOtB0z_vFW7-taC4,440
|
@@ -308,6 +310,8 @@ policyengine_uk/parameters/gov/dwp/winter_fuel_payment/eligibility/require_benef
|
|
308
310
|
policyengine_uk/parameters/gov/dwp/winter_fuel_payment/eligibility/state_pension_age_requirement.yaml,sha256=8wXlC5wX-ceoZ-s2kOk4IhAiomsXSCM-vnRRbL2kChA,356
|
309
311
|
policyengine_uk/parameters/gov/dwp/winter_fuel_payment/eligibility/taxable_income_test/maximum_taxable_income.yaml,sha256=gLj2M2zoCMPuZ-0UgNSf-FTA5I4CCXhxBsd3qVro7Ck,260
|
310
312
|
policyengine_uk/parameters/gov/dwp/winter_fuel_payment/eligibility/taxable_income_test/use_maximum_taxable_income.yaml,sha256=pHldHvNHeGhG0mcn7LvjYA3b-q_AxrAxm5bu-mkTn1A,261
|
313
|
+
policyengine_uk/parameters/gov/economic_assumptions/create_economic_assumption_indices.py,sha256=Z4dYghSit5gXo4V3wBpnLIc9zgTX4cfEyb_TUlJkTGY,1937
|
314
|
+
policyengine_uk/parameters/gov/economic_assumptions/yoy_growth.yaml,sha256=LyvtJYhIekZQkEtpy-CkqGOyhnukAqpwEQdbfJLxBZU,6959
|
311
315
|
policyengine_uk/parameters/gov/hmrc/README.md,sha256=nkHVZl6lsjI93sR8uC7wAbul3_61wJrsP08iaW8f5lk,7
|
312
316
|
policyengine_uk/parameters/gov/hmrc/minimum_wage.yaml,sha256=1oMbevU0ESHR51mcAG39POd1DA1FgPUep4hL6ojj-P4,2049
|
313
317
|
policyengine_uk/parameters/gov/hmrc/business_rates/README.md,sha256=9ud50i_gMjGj6VymF-nzFDTzkFRMMJx6ybpLwbWzvpI,17
|
@@ -325,7 +329,7 @@ policyengine_uk/parameters/gov/hmrc/child_benefit/amount/index.yaml,sha256=0zz2k
|
|
325
329
|
policyengine_uk/parameters/gov/hmrc/child_benefit/takeup/by_age.yaml,sha256=XE9pwNm78hbSvJ3C7ElZw8HMMXgQIH7RHOHdLe2PgKs,1822
|
326
330
|
policyengine_uk/parameters/gov/hmrc/child_benefit/takeup/overall.yaml,sha256=I4cLNM0g9zpFqj3uJWJRECtAwQcEk-PK_XKwDTCVAOQ,450
|
327
331
|
policyengine_uk/parameters/gov/hmrc/fuel_duty/README.md,sha256=i8_ngnDkWvmQ1SjHXmSTkFj40BZJzTCqzGvksIdNrzE,12
|
328
|
-
policyengine_uk/parameters/gov/hmrc/fuel_duty/petrol_and_diesel.yaml,sha256=
|
332
|
+
policyengine_uk/parameters/gov/hmrc/fuel_duty/petrol_and_diesel.yaml,sha256=WTifbx_DnF5bio-jsInXljdYZ4O-6s2_TNy1I8U2y4A,1360
|
329
333
|
policyengine_uk/parameters/gov/hmrc/income_tax/README.md,sha256=DGg1BC_RLDTTDj08QfIaCAs9eBuwMmXXr1UayNk6CQk,13
|
330
334
|
policyengine_uk/parameters/gov/hmrc/income_tax/adjusted_net_income_components.yaml,sha256=gReVEqY20UaLCaBZaVrEOKARnQNYsDnh3eXdZuEjHrU,546
|
331
335
|
policyengine_uk/parameters/gov/hmrc/income_tax/earned_taxable_income_exclusions.yaml,sha256=7jbaE5HW08a9T0vMNARycw3vDNt9IPk-0xLW5gpPUy0,415
|
@@ -347,7 +351,7 @@ policyengine_uk/parameters/gov/hmrc/income_tax/allowances/marriage_allowance/tak
|
|
347
351
|
policyengine_uk/parameters/gov/hmrc/income_tax/allowances/married_couples_allowance/README.md,sha256=OP7iQxle5zwwvkuZIAuEvwy0ZPV1Y24y8ldz6UuH6mA,29
|
348
352
|
policyengine_uk/parameters/gov/hmrc/income_tax/allowances/married_couples_allowance/deduction_rate.yaml,sha256=L684ImX90ftNV1TBEX0S6RTT9IDlEXaZgSi3weGIWNg,209
|
349
353
|
policyengine_uk/parameters/gov/hmrc/income_tax/allowances/personal_allowance/README.md,sha256=6cIVAsbUX5K5Ne1mX8FiWPuWguHPzGjSX5EkWvjkVh8,21
|
350
|
-
policyengine_uk/parameters/gov/hmrc/income_tax/allowances/personal_allowance/amount.yaml,sha256=
|
354
|
+
policyengine_uk/parameters/gov/hmrc/income_tax/allowances/personal_allowance/amount.yaml,sha256=qyF7RMKjthE1aDctmuMIP8Xe66rwxVTJnyvdSQGgn10,492
|
351
355
|
policyengine_uk/parameters/gov/hmrc/income_tax/allowances/personal_allowance/maximum_ANI.yaml,sha256=RYeg-6Fvq2nKJWLO7TrYK3DHPmJBkKwcvDREqOzzJYA,453
|
352
356
|
policyengine_uk/parameters/gov/hmrc/income_tax/allowances/personal_allowance/reduction_rate.yaml,sha256=WfVy1EylmMRI7MX7WNUj59-LhpwkbAovWUt92KkLMDE,340
|
353
357
|
policyengine_uk/parameters/gov/hmrc/income_tax/allowances/personal_savings_allowance/README.md,sha256=LVw1PolWIoLm74zrutwtSDnu_rEeodIW-26D5h9dwYk,29
|
@@ -366,7 +370,7 @@ policyengine_uk/parameters/gov/hmrc/income_tax/rates/savings_starter_rate/README
|
|
366
370
|
policyengine_uk/parameters/gov/hmrc/income_tax/rates/savings_starter_rate/allowance.yaml,sha256=lJuV43tvUYd-9gNBk1SE8IMt9S1JRiJA4KlKy4Cfbas,230
|
367
371
|
policyengine_uk/parameters/gov/hmrc/income_tax/rates/savings_starter_rate/phase_out.yaml,sha256=2_tjV4GUbmTl9tms7Bgc1J7atJ6A2crtL_5FW67_VUU,383
|
368
372
|
policyengine_uk/parameters/gov/hmrc/income_tax/rates/scotland/README.md,sha256=sWfJe4by5HnFgctBQDZz3emj4mvU_0_mQ8_n0OFjXog,17
|
369
|
-
policyengine_uk/parameters/gov/hmrc/income_tax/rates/scotland/rates.yaml,sha256=
|
373
|
+
policyengine_uk/parameters/gov/hmrc/income_tax/rates/scotland/rates.yaml,sha256=KoVwBMDzaa3SJVoKPhPWp25VBhmEMel33miagexI26s,2154
|
370
374
|
policyengine_uk/parameters/gov/hmrc/income_tax/reliefs/README.md,sha256=5bhGUG9EvXeSVbp_-VJqlNMv0wbqeB8_ANDvIidfmSU,14
|
371
375
|
policyengine_uk/parameters/gov/hmrc/income_tax/reliefs/pension_contribution/README.md,sha256=LxD9BC-17WK_PJdp-TETff6Sr705bdsy1o0kGZGoWjw,24
|
372
376
|
policyengine_uk/parameters/gov/hmrc/income_tax/reliefs/pension_contribution/basic_amount.yaml,sha256=1gzhdvjz54Jyny04Gf96ocO-GJ8O7HJqZRmfC8ggGiQ,329
|
@@ -379,20 +383,20 @@ policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/rates/employee/RE
|
|
379
383
|
policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/rates/employee/additional.yaml,sha256=27_wnSiLAkvmaYx8YayjA4hqZ3QifL6xvGRX22olMU0,844
|
380
384
|
policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/rates/employee/main.yaml,sha256=TPGUGN6wMf5qU7-oOTB4J3yV-9JhVoFraxqUzfmj5wU,1347
|
381
385
|
policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/thresholds/README.md,sha256=A3U8dX-UwsRqx6VISR_0HE3DvhJN-LedFoylZYQA4gg,13
|
382
|
-
policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/thresholds/lower_earnings_limit.yaml,sha256=
|
383
|
-
policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/thresholds/primary_threshold.yaml,sha256=
|
384
|
-
policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/thresholds/secondary_threshold.yaml,sha256=
|
385
|
-
policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/thresholds/upper_earnings_limit.yaml,sha256=
|
386
|
+
policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/thresholds/lower_earnings_limit.yaml,sha256=11ys64O-72FSt_bjyl2vZiYdgFNw_iGfhxzZh6a7wzE,1220
|
387
|
+
policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/thresholds/primary_threshold.yaml,sha256=lFwaQAMvG7KO9awxYU6fGSL13iQvFbodE3Q8pP3p1MU,1488
|
388
|
+
policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/thresholds/secondary_threshold.yaml,sha256=ngK5a4ED9FW0Xfl9pu0KiZYZMdjy4l49rdA-utAUli0,1219
|
389
|
+
policyengine_uk/parameters/gov/hmrc/national_insurance/class_1/thresholds/upper_earnings_limit.yaml,sha256=siF2hhpJUUqfZ-oSOlU_rsuFwQ6k80U62kbGreQvFhw,704
|
386
390
|
policyengine_uk/parameters/gov/hmrc/national_insurance/class_2/README.md,sha256=FUkXZpnOvHr6Ydifr9-o9FgL3hdkz1xzTn__5CyFzMk,10
|
387
391
|
policyengine_uk/parameters/gov/hmrc/national_insurance/class_2/flat_rate.yaml,sha256=6owZwy9I52M6rFqcH8VmOpceZd5g5LLDZzlciqFOKFY,1138
|
388
|
-
policyengine_uk/parameters/gov/hmrc/national_insurance/class_2/small_profits_threshold.yaml,sha256
|
392
|
+
policyengine_uk/parameters/gov/hmrc/national_insurance/class_2/small_profits_threshold.yaml,sha256=-dpZr7v5kRmJMTRvrSksZPa8x8SKtn1R8xSjVTLw6B8,959
|
389
393
|
policyengine_uk/parameters/gov/hmrc/national_insurance/class_4/README.md,sha256=lFvMmokgzL5MQJq9mq0J3wbS98vCbJv-ztBfBRyYzEI,10
|
390
394
|
policyengine_uk/parameters/gov/hmrc/national_insurance/class_4/rates/README.md,sha256=7BQUZXeqLAYckXMwDUfcQBuFTvTECmSMdGf9xDeTXNY,8
|
391
395
|
policyengine_uk/parameters/gov/hmrc/national_insurance/class_4/rates/additional.yaml,sha256=hy51hOrpSK_RDL3p-QImRQ0rXHqRto6OCXMAuZ-aXHI,840
|
392
396
|
policyengine_uk/parameters/gov/hmrc/national_insurance/class_4/rates/main.yaml,sha256=r9Y29tlsEIsvqUF-WArXIrtsu4Wx1XTWNhBLzFLpuik,1038
|
393
397
|
policyengine_uk/parameters/gov/hmrc/national_insurance/class_4/thresholds/README.md,sha256=A3U8dX-UwsRqx6VISR_0HE3DvhJN-LedFoylZYQA4gg,13
|
394
|
-
policyengine_uk/parameters/gov/hmrc/national_insurance/class_4/thresholds/lower_profits_limit.yaml,sha256=
|
395
|
-
policyengine_uk/parameters/gov/hmrc/national_insurance/class_4/thresholds/upper_profits_limit.yaml,sha256=
|
398
|
+
policyengine_uk/parameters/gov/hmrc/national_insurance/class_4/thresholds/lower_profits_limit.yaml,sha256=JvhuLqjpVqSwFMiRaafKTGIph4hZEMjQY-h_F1wWRLY,1150
|
399
|
+
policyengine_uk/parameters/gov/hmrc/national_insurance/class_4/thresholds/upper_profits_limit.yaml,sha256=Jxv1wJucAD-T-KHGCCGWYa8HQO9x-Mnktyr_SUksYYE,767
|
396
400
|
policyengine_uk/parameters/gov/hmrc/pensions/pension_contributions_relief_age_limit.yaml,sha256=zlWmBVzxWIuFbuXEeKAr-uAWUqkpVhLWIRlUYa4hsdU,332
|
397
401
|
policyengine_uk/parameters/gov/hmrc/pensions/pensions_programs.yaml,sha256=EnIOZ7S73j_s6pSb-RUqJom_LbnF9aoNyCJy0yT1YDQ,197
|
398
402
|
policyengine_uk/parameters/gov/hmrc/stamp_duty/README.md,sha256=7fpvGUG92xb_jnwb5tIFNDcE9_IvK13IOtJeBkohd9c,22
|
@@ -422,31 +426,14 @@ policyengine_uk/parameters/gov/hmrc/tax_free_childcare/income/income_limit.yaml,
|
|
422
426
|
policyengine_uk/parameters/gov/hmrc/vat/reduced_rate.yaml,sha256=I2PKuZFND7N26yiv3Rr5wWLFeyIP90DPSn1TBMnY6gc,343
|
423
427
|
policyengine_uk/parameters/gov/hmrc/vat/reduced_rate_share.yaml,sha256=JmBvkZ60TGUye1tJnHIjGcc_RZBU2ByKe1fg7uEoJ5A,283
|
424
428
|
policyengine_uk/parameters/gov/hmrc/vat/standard_rate.yaml,sha256=nwb_ZtC0w6nCtS1kjarOW7SvplhiG7CCIo_1Rva8cmk,399
|
425
|
-
policyengine_uk/parameters/gov/indices/private_rent_index.yaml,sha256=
|
429
|
+
policyengine_uk/parameters/gov/indices/private_rent_index.yaml,sha256=6l_2sK8vFBDnwo19L7KB3MR1n0GrHGzOReUM2fNVqu8,2580
|
426
430
|
policyengine_uk/parameters/gov/local_authorities/README.md,sha256=XVumqnA1PuLF98hZ3hTQkhU6j2ehCIQHLkkC8Ha16Q8,20
|
427
431
|
policyengine_uk/parameters/gov/local_authorities/domestic_rates/README.md,sha256=jtgXDDSsCB4PXS80IKeB1XHBhUPCxlbqs2uzlAx5rMI,17
|
428
432
|
policyengine_uk/parameters/gov/local_authorities/domestic_rates/rates.yaml,sha256=fzOm_kHrqVjkvZh72PQyS-Yi7KyTcjin2ZqPUSU8ti4,623
|
429
|
-
policyengine_uk/parameters/gov/obr/add_per_capita_parameters.py,sha256=R3axHYDZK28YNjbWJroVQ5HR2mTpFi8Sc0MMF08XhBw,1137
|
430
|
-
policyengine_uk/parameters/gov/obr/average_earnings.yaml,sha256=4yFXGZHBp794Cit04DwR5I6dkMUrGyU6SaScaV08R80,712
|
431
|
-
policyengine_uk/parameters/gov/obr/consumer_price_index.yaml,sha256=FMc8riBxXxe-V5JVGANhIabMWqGbBxTKKBJsb35kh44,599
|
432
|
-
policyengine_uk/parameters/gov/obr/council_tax.yaml,sha256=3HvH7TvxHBU1oFTOzhLOfeOQ3Hd3UUuIfgU60pFc1qQ,1015
|
433
|
-
policyengine_uk/parameters/gov/obr/employment_income.yaml,sha256=13iYEGwys3B8TR64wmB9Ro7BVW-ySRfhEuAZzBc50Mg,631
|
434
|
-
policyengine_uk/parameters/gov/obr/extend_forecast.py,sha256=fj6zb7YpFKAj-wNaNAbUtIPlZ51mqPrcF6h9JQrJWAM,1008
|
435
|
-
policyengine_uk/parameters/gov/obr/gdp.yaml,sha256=074cMi4JlZTz6nAT7EMTf9wln7NmY-lHesiClIeWCsY,709
|
436
|
-
policyengine_uk/parameters/gov/obr/house_prices.yaml,sha256=PexqvrQEzpW7-ft2RjZvDXUHsOq_l041Pz-k8ewwkh0,582
|
437
|
-
policyengine_uk/parameters/gov/obr/mixed_income.yaml,sha256=XUc24pEIHzKVKg9aRFBKvnZBYEpCcFr3f-JrZ9Z3Pas,570
|
438
|
-
policyengine_uk/parameters/gov/obr/mortgage_interest.yaml,sha256=vTQdKLJTBMHJDFiBuiC8a4jfxIuf0TdtIzp9iSjCJtc,613
|
439
|
-
policyengine_uk/parameters/gov/obr/non_labour_income.yaml,sha256=yIGPb-Ze1Ss2DGhcWHox1Pey4rNyTH7a7bGXbqJ3UgI,542
|
440
|
-
policyengine_uk/parameters/gov/obr/rent.yaml,sha256=khnoIDdAB7yvRGj9GkKmUs-8qBd6r7bWPcHxWK7mQsg,594
|
441
|
-
policyengine_uk/parameters/gov/obr/rpi.yaml,sha256=7PeXkCXh3kJ2ImQkiyDfMoa5U4ZLfAKSUGTkPJS6GRk,679
|
442
433
|
policyengine_uk/parameters/gov/ofgem/README.md,sha256=UdBbFoPVn4dUlEdn25Vlzfq1YToXkcI3gRfxZMm2IKw,8
|
443
434
|
policyengine_uk/parameters/gov/ofgem/energy_price_cap.yaml,sha256=bfp8OQ_bHTKE9fVXpdZDHvKyuWya3eYKnJxc908PFHI,1181
|
444
435
|
policyengine_uk/parameters/gov/ofgem/energy_price_guarantee.yaml,sha256=owNU_WuFr-Qm4v7L5paTr50ELnQb_npXKTAJ1JY-wv4,1206
|
445
436
|
policyengine_uk/parameters/gov/ofgem/index.yaml,sha256=p0GAehNvpMy5sryxFGO0xMOT3EJZw4FPGAFdaJWTQ2I,77
|
446
|
-
policyengine_uk/parameters/gov/ons/README.md,sha256=ekbF_vctnFqSIj1UYfRbdIa1I4TPKcv-fG2b_6TMqfQ,38
|
447
|
-
policyengine_uk/parameters/gov/ons/household.yaml,sha256=2Mu1LfLBiXB77s4k1PJ4DHZsqq_2qNfEkmnbpzW5qSA,1420
|
448
|
-
policyengine_uk/parameters/gov/ons/population.yaml,sha256=miXtCk3EP7VGYutEDM22-SIwI-ifRzn6Mewz-MfXcRM,1074
|
449
|
-
policyengine_uk/parameters/gov/ons/rpi.yaml,sha256=MYKseb3xXtpOaW-M-dlSjDQEXQNkZ19x07fAbOBLqTg,462
|
450
437
|
policyengine_uk/parameters/gov/revenue_scotland/README.md,sha256=NsZu7_tQEi9s1PXXW45WN8vz1mANnqRKpgfIQVb9gLI,19
|
451
438
|
policyengine_uk/parameters/gov/revenue_scotland/index.yaml,sha256=Z2MNyP9bhtcTeG3KzwKLJpg0x0Gz9zsDf-C187NoXCY,67
|
452
439
|
policyengine_uk/parameters/gov/revenue_scotland/lbtt/README.md,sha256=Mk1zrz_aJzOLtJMqPWT6sRERYDkQpMkQ0OBz312erDQ,36
|
@@ -469,11 +456,11 @@ policyengine_uk/parameters/gov/simulation/labor_supply_responses/bounds/effectiv
|
|
469
456
|
policyengine_uk/parameters/gov/simulation/labor_supply_responses/bounds/income_change.yaml,sha256=G3jBCDCS9aVPm_fIk7MroG3eeHC9R4FHFvyvFylhzXI,157
|
470
457
|
policyengine_uk/parameters/gov/simulation/private_school_vat/private_school_attendance_rate.yaml,sha256=-pNH1tyMNVIxU5l_XYPbEVjhTV3GEU2uXe6DEznEV8Y,853
|
471
458
|
policyengine_uk/parameters/gov/simulation/private_school_vat/private_school_factor.yaml,sha256=f7by_ueR2KBKwVMZvyVhm4YoHKUyCyVUf8BFd5g2Lzo,161
|
472
|
-
policyengine_uk/parameters/gov/simulation/private_school_vat/private_school_fees.yaml,sha256=
|
459
|
+
policyengine_uk/parameters/gov/simulation/private_school_vat/private_school_fees.yaml,sha256=shZ021MnC45ea7O_RtkekvQpeDlOBf25EQISArwTU-E,384
|
473
460
|
policyengine_uk/parameters/gov/simulation/private_school_vat/private_school_vat_basis.yaml,sha256=aDi3RgrODzBzgmIi9uj15SIofNjtqTa06jAYJRHNiXI,509
|
474
|
-
policyengine_uk/parameters/gov/social_security_scotland/pawhp/amount/base.yaml,sha256=
|
475
|
-
policyengine_uk/parameters/gov/social_security_scotland/pawhp/amount/higher.yaml,sha256=
|
476
|
-
policyengine_uk/parameters/gov/social_security_scotland/pawhp/amount/lower.yaml,sha256=
|
461
|
+
policyengine_uk/parameters/gov/social_security_scotland/pawhp/amount/base.yaml,sha256=YSPWzyDwGAYob-OryLg64g6KYVUXhjSAOildjWxe_AQ,246
|
462
|
+
policyengine_uk/parameters/gov/social_security_scotland/pawhp/amount/higher.yaml,sha256=nt_aPZwjfjWSD6ctxyae776sclvBU3qZlfJoCQbpVPE,155
|
463
|
+
policyengine_uk/parameters/gov/social_security_scotland/pawhp/amount/lower.yaml,sha256=EYcbRDuQR1QT-B1MMwuicO469-0LDWgj1y7qVYDn3jA,154
|
477
464
|
policyengine_uk/parameters/gov/social_security_scotland/pawhp/eligibility/higher_age_requirement.yaml,sha256=fRqjILWehOpE2IvqTowSi_gYZag7b5C4RCKycto92MM,169
|
478
465
|
policyengine_uk/parameters/gov/social_security_scotland/pawhp/eligibility/require_benefits.yaml,sha256=Zjyk1hxdtOzvJ4eRorEAtr6XcUB4ascqd8GgRf54DJ0,237
|
479
466
|
policyengine_uk/parameters/gov/social_security_scotland/pawhp/eligibility/state_pension_age_requirement.yaml,sha256=a3Tr9ggMsgNJLJhgZmTpglFp5Eer3br4EhBAclGNHRU,180
|
@@ -502,7 +489,7 @@ policyengine_uk/parameters/gov/wra/land_transaction_tax/rent.yaml,sha256=Q-B0fHT
|
|
502
489
|
policyengine_uk/parameters/gov/wra/land_transaction_tax/residential/README.md,sha256=So9nz3FSNR4zBvos2XBUNRLzKpTJpbR1rfKMj_Bfp58,14
|
503
490
|
policyengine_uk/parameters/gov/wra/land_transaction_tax/residential/higher_rate.yaml,sha256=OrBuYuTeS74pTQD9aTuWcN5xx1N9CNW3KnazL9VI1nM,1160
|
504
491
|
policyengine_uk/parameters/gov/wra/land_transaction_tax/residential/primary.yaml,sha256=9gBdScoexgggPXWOVfY45j-avWAthTTtFz95zcA9pf4,1372
|
505
|
-
policyengine_uk/parameters/household/consumption/total_by_category.yaml,sha256=
|
492
|
+
policyengine_uk/parameters/household/consumption/total_by_category.yaml,sha256=ebwVmHS3udZ923XRHfH9r-zXs1HzT9CmP3j-VgNSBZE,917
|
506
493
|
policyengine_uk/parameters/household/consumption/carbon/consumption.yaml,sha256=MWkKmBnYhf7lDT5xYzl2r1Sgls7j7ZcV2ZhNs5xGLxg,354
|
507
494
|
policyengine_uk/parameters/household/consumption/carbon/emissions.yaml,sha256=WVwYiIJ1YxPdpdet37-c0YnV20weHngVndZE-cCNz9Q,1235
|
508
495
|
policyengine_uk/parameters/household/consumption/carbon/intensity.yaml,sha256=Td3ysh7hyRp_oRHVdaaaMb7D2zzgxwK-G4rxyqRbt9w,1073
|
@@ -518,12 +505,12 @@ policyengine_uk/parameters/household/demographic/equiv/bhc/child_over_14.yaml,sh
|
|
518
505
|
policyengine_uk/parameters/household/demographic/equiv/bhc/child_under_14.yaml,sha256=VmUqVzApVo7LNLDf7pBkHQKSDUPeg8FjeOmlcDz_NT4,104
|
519
506
|
policyengine_uk/parameters/household/demographic/equiv/bhc/first_adult.yaml,sha256=FBZP85jVKDY3q2vaWx_CvD9NAEhZhKN4Os9nS3LS4e4,103
|
520
507
|
policyengine_uk/parameters/household/demographic/equiv/bhc/second_adult.yaml,sha256=nran5CfD_ECKnbAfh6RUcg_EwTyUbn59iV272f0D4s8,104
|
521
|
-
policyengine_uk/parameters/household/poverty/absolute_poverty_threshold_ahc.yaml,sha256=
|
522
|
-
policyengine_uk/parameters/household/poverty/absolute_poverty_threshold_bhc.yaml,sha256=
|
508
|
+
policyengine_uk/parameters/household/poverty/absolute_poverty_threshold_ahc.yaml,sha256=1bcC1hBI5NaU8I_oqVucveb84nGu45claQISTAhzJNk,561
|
509
|
+
policyengine_uk/parameters/household/poverty/absolute_poverty_threshold_bhc.yaml,sha256=C_AYzOXB97gElgsAaUq09sUP89hHcnyNq-kou2GgFTg,562
|
523
510
|
policyengine_uk/parameters/household/poverty/exclude_non_hbai_income.yaml,sha256=aGEDIsnkgfeBMOMJ7oxPnUrRBVm78vz2bglhYs4KSQA,156
|
524
511
|
policyengine_uk/parameters/household/wealth/corporate_wealth.yaml,sha256=ZKk7n2KawhCdnlXRk5V3GseCQPIo4L0N3eVkbX7Wkm4,180
|
525
512
|
policyengine_uk/parameters/household/wealth/financial_assets.yaml,sha256=00IZ1SC3QE0vI6rQAP9kBCjOYgkHt8CQjQ35KD5TMGg,771
|
526
|
-
policyengine_uk/parameters/household/wealth/national_balance_sheet.yaml,sha256=
|
513
|
+
policyengine_uk/parameters/household/wealth/national_balance_sheet.yaml,sha256=vjHGRwJSv5ujN08Qy-Bao4JtAAY9y-kXNfrFrkA-a1E,534
|
527
514
|
policyengine_uk/parameters/household/wealth/property_wealth.yaml,sha256=uA-snYer-iBi10GaY-OREPjaf-YsRn4YDzK3d38xeBM,178
|
528
515
|
policyengine_uk/parameters/household/wealth/land/intensity.yaml,sha256=fIYU02CuFazm7hIRmJs-wkgH_7lVrlf8yflQ4_QdktY,224
|
529
516
|
policyengine_uk/parameters/household/wealth/land/value.yaml,sha256=QjYr-yAbjhTclJArvuIcxsDaBwlkcMzSi02kWowHp_A,1349
|
@@ -539,7 +526,7 @@ policyengine_uk/reforms/policyengine/disable_simulated_benefits.py,sha256=siEs1E
|
|
539
526
|
policyengine_uk/tests/test_parameter_metadata.py,sha256=_2w2dSokAf5Jskye_KIL8eh80N7yIrUszlmqnZtwQws,450
|
540
527
|
policyengine_uk/tests/code_health/test_variables.py,sha256=9Y-KpmzhyRGy9eEqocK9z91NXHX5QIF3mDMNGvegb7Q,1398
|
541
528
|
policyengine_uk/tests/microsimulation/README.md,sha256=1toB1Z06ynlUielTrsAaeo9Vb-c3ZrB3tbbR4E1xUGk,3924
|
542
|
-
policyengine_uk/tests/microsimulation/reforms_config.yaml,sha256=
|
529
|
+
policyengine_uk/tests/microsimulation/reforms_config.yaml,sha256=cNTQgfD7Dsty1r4CRpya3DurtgvD_54i0UfUrr8cqLQ,1086
|
543
530
|
policyengine_uk/tests/microsimulation/test_reform_impacts.py,sha256=xM3M2pclEhA9JIFpnuiPMy1fEBFOKcSzroRPk73FPls,2635
|
544
531
|
policyengine_uk/tests/microsimulation/test_validity.py,sha256=RWhbSKrnrZCNQRVmGYlM8hnpe1_Blo5_xP8vr8u3kV0,694
|
545
532
|
policyengine_uk/tests/microsimulation/update_reform_impacts.py,sha256=2pxp2RNLWxV4CesGKKHmg3qBs79Jq2Jcq3GJIBk4euU,4824
|
@@ -610,7 +597,7 @@ policyengine_uk/tests/policy/baseline/gov/dcms/bbc/tv_licence_discount.yaml,sha2
|
|
610
597
|
policyengine_uk/tests/policy/baseline/gov/dcms/bbc/tv-licence/tv_licence.yaml,sha256=cYAZlmmoAxWymv7L0lDzPcX6dexNAERQnVQMOB0HVzE,562
|
611
598
|
policyengine_uk/tests/policy/baseline/gov/dfe/care_to_learn/care_to_learn.yaml,sha256=i5RIghjT2T7uWn_xvaeYb2dIJ7JsreSr_f12UPtFqpg,508
|
612
599
|
policyengine_uk/tests/policy/baseline/gov/dfe/care_to_learn/care_to_learn_eligible.yaml,sha256=XPeMlYk3ibEpT6GgVzVk_IPnsTHLDzM4mlcru1jwA-k,3745
|
613
|
-
policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement.yaml,sha256=
|
600
|
+
policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement.yaml,sha256=I7L3fj0WQ5wP3HPPZy7sx0zkZO02j-G446itRtg0g5o,4765
|
614
601
|
policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement_eligible.yaml,sha256=fE6Cm9K0xQsTWrFS90lrVa8pgwC8gdpGtmttBgLsZhw,4305
|
615
602
|
policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement_income_condition.yaml,sha256=5PihH858DmLIkWZTrDMuqF9X9PXCzejffjbKc_LhZPI,1250
|
616
603
|
policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement_work_condition.yaml,sha256=7KmrVQddB70kbtn2TbdJ8q2ER58H9GhAJmeak0sODoE,2300
|
@@ -696,7 +683,7 @@ policyengine_uk/tests/policy/reforms/parametric/two_child_limit/age_exemption.ya
|
|
696
683
|
policyengine_uk/tests/policy/reforms/parametric/two_child_limit/ctc_age_exemption.yaml,sha256=xOgctFi4eLVW7agHdRPUU9szoRzt4p0R9eiMvPqwv_s,3577
|
697
684
|
policyengine_uk/tests/policy/reforms/parametric/winter_fuel_allowance/taxable_income_test.yaml,sha256=QY3LYJ92VzYH9mXU54XD_6PhefwHNK80kGYQ0R5I0SM,6289
|
698
685
|
policyengine_uk/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
699
|
-
policyengine_uk/utils/create_triple_lock.py,sha256=
|
686
|
+
policyengine_uk/utils/create_triple_lock.py,sha256=E8qR51cq5jPL6EOXFoPi1qJhrcUBXg3dfWTvdqWN2Bo,948
|
700
687
|
policyengine_uk/utils/parameters.py,sha256=OQTzTkHMdwbphCo0mV7_n_FJT0rdwIKNFTsk_lsdETE,1301
|
701
688
|
policyengine_uk/utils/solve_private_school_attendance_factor.py,sha256=LUZCgHKAQTY5qHlGJutn7pOFUWT0AP16YcJy-YUjQ3Q,1609
|
702
689
|
policyengine_uk/variables/contrib/cec/non_primary_residence_wealth_tax.py,sha256=Hx5HCHc9ioK6InqTgTt6fX9JwI0sroTLgPB5N5YCJz0,668
|
@@ -728,15 +715,15 @@ policyengine_uk/variables/contrib/ubi_center/basic_income/bi_maximum.py,sha256=N
|
|
728
715
|
policyengine_uk/variables/contrib/ubi_center/basic_income/bi_phaseout.py,sha256=CcTdVg4KABnB8Uj0DpiO4wXfpUsRMGn1aHgoQqxBCaI,259
|
729
716
|
policyengine_uk/variables/gov/gov_balance.py,sha256=fNo-e-Nc3SIVAoCQR0VUMKj3-qre9IpYcfz-KEYkQ5w,328
|
730
717
|
policyengine_uk/variables/gov/gov_spending.py,sha256=VWWnDaCWuyIUmxvAjiD7gwrk-TwK63j9ZcLiFRw-8dI,1382
|
731
|
-
policyengine_uk/variables/gov/gov_tax.py,sha256=
|
718
|
+
policyengine_uk/variables/gov/gov_tax.py,sha256=on7t0SwteBvxp4JF1_sTIzDxbjVvCLMGaprxxBbLy3E,1299
|
732
719
|
policyengine_uk/variables/gov/dcms/bbc/tv_licence/free_tv_licence_value.py,sha256=3W9zi4rnq5-HAPBHr_DLZHlyMVHs5TL3ZhB0GdfDTyM,710
|
733
720
|
policyengine_uk/variables/gov/dcms/bbc/tv_licence/tv_licence.py,sha256=kHCMt8s6EQjzFN3AZUw05HwJf4GFJDjJQzsVYKCe2QY,689
|
734
721
|
policyengine_uk/variables/gov/dcms/bbc/tv_licence/tv_licence_discount.py,sha256=h-zV_TtYl2hMKmilq-QK_hci0C66k4_gnhk2IAyLbI8,1233
|
735
722
|
policyengine_uk/variables/gov/dcms/bbc/tv_licence/would_evade_tv_licence_fee.py,sha256=cnwODZJMJddJ9MWIrcIldXD2m-rNXPOI16fTSj5CDHc,482
|
736
723
|
policyengine_uk/variables/gov/dfe/dfe_education_spending.py,sha256=vt5MDY26xIaPrMfeF0I-K6c2VwzdcaLgFDc2BByY6Yk,281
|
737
|
-
policyengine_uk/variables/gov/dfe/free_school_fruit_veg.py,sha256=
|
738
|
-
policyengine_uk/variables/gov/dfe/free_school_meals.py,sha256=
|
739
|
-
policyengine_uk/variables/gov/dfe/free_school_milk.py,sha256=
|
724
|
+
policyengine_uk/variables/gov/dfe/free_school_fruit_veg.py,sha256=cxZjhJz12VEWzR1fzsabBDinZh_OltVX2ioL-B4cj4E,290
|
725
|
+
policyengine_uk/variables/gov/dfe/free_school_meals.py,sha256=s8NaBPWhM3hbbW0Dqfj2JBMEfF3Cv4r7QDdva-tXtFI,271
|
726
|
+
policyengine_uk/variables/gov/dfe/free_school_milk.py,sha256=QfqkKIEYbUfsIF_2_BvL1lVE4_Pq2E_0rTiJx1ktc7o,269
|
740
727
|
policyengine_uk/variables/gov/dfe/max_free_entitlement_hours_used.py,sha256=nKMzHjdBRMj6Ysqa65nu43o7Mrm4ssMNxqwEZ66VUp0,345
|
741
728
|
policyengine_uk/variables/gov/dfe/care_to_learn/care_to_learn.py,sha256=Ittkq882Cvibw5zv4D36_xcP1Ysf8EzmVehStV_aXsY,684
|
742
729
|
policyengine_uk/variables/gov/dfe/care_to_learn/care_to_learn_eligible.py,sha256=LVQ9Wyb8E1czeaGqRNAHZA9Mk0iMryrKkigKEtMX-zg,1414
|
@@ -793,25 +780,25 @@ policyengine_uk/variables/gov/dwp/access_fund.py,sha256=A5qKLeuwBsvPVrNfQi9grBb-
|
|
793
780
|
policyengine_uk/variables/gov/dwp/additional_state_pension.py,sha256=l-0avxdT7pvqhn42nc-Fi3SZM4DSvpHvmTQKhAS0Vp4,872
|
794
781
|
policyengine_uk/variables/gov/dwp/adult_ema.py,sha256=M3VfIALFbILPhaOb6NeY3ffBg4HR-ASBuECvDRQPoVE,247
|
795
782
|
policyengine_uk/variables/gov/dwp/afcs.py,sha256=rReaIh1KfrsZUyKRYFElTB_eLAge6zee1Yc5DRoBT7w,228
|
796
|
-
policyengine_uk/variables/gov/dwp/afcs_reported.py,sha256=
|
783
|
+
policyengine_uk/variables/gov/dwp/afcs_reported.py,sha256=JueDBWlD1hhSedf8q54EdpqFDEgFdMpBwGWwrMTVDNE,293
|
797
784
|
policyengine_uk/variables/gov/dwp/afip.py,sha256=upFrBznZE-Vv4cAg251VJVITWSDjQK9Npsh6_zEitOs,228
|
798
785
|
policyengine_uk/variables/gov/dwp/attendance_allowance.py,sha256=1t0EaIVLYZK1bYdX3LtJscsTVBMKc3eMurrVZFZ90kE,697
|
799
|
-
policyengine_uk/variables/gov/dwp/attendance_allowance_reported.py,sha256=
|
786
|
+
policyengine_uk/variables/gov/dwp/attendance_allowance_reported.py,sha256=6RD4NqPlFxmDvAcaD0sVlXBbBHEcZHygUx-JaW9VXMg,297
|
800
787
|
policyengine_uk/variables/gov/dwp/baseline_ctc_entitlement.py,sha256=Z6aAfyDCvaepEX6PPfTdjQPwGgFnMhP4lpQjZ8P8AkE,445
|
801
788
|
policyengine_uk/variables/gov/dwp/baseline_income_support_entitlement.py,sha256=TvcCQjTPbtvrbwWTUhaBPqZSiu93ys6qcoNU7S4kqRU,232
|
802
789
|
policyengine_uk/variables/gov/dwp/baseline_wtc_entitlement.py,sha256=0BKhLGQAPlJBR6P7Yk28XFlyrFojCsVsFkJC00FMgkc,436
|
803
|
-
policyengine_uk/variables/gov/dwp/basic_state_pension.py,sha256=
|
790
|
+
policyengine_uk/variables/gov/dwp/basic_state_pension.py,sha256=g_HMjratM1DRmQH-Ys5EpdoeFXPR84y5BUnaKAfFsVc,1040
|
804
791
|
policyengine_uk/variables/gov/dwp/benefit_cap.py,sha256=x6ad7zFYKX6jaNoXV8xj0Hql5O3HraXKZlFFmxYGuSU,1287
|
805
792
|
policyengine_uk/variables/gov/dwp/benefit_cap_reduction.py,sha256=lbRftEtfkQQOt5ojhNnRYlinnDGiqTH9XwAd2fdR7Kg,777
|
806
793
|
policyengine_uk/variables/gov/dwp/bsp.py,sha256=D8WzwacEe789RHAIvB5RYQ1NOq9nsoFMNhDPrvb4qM0,221
|
807
|
-
policyengine_uk/variables/gov/dwp/bsp_reported.py,sha256=
|
794
|
+
policyengine_uk/variables/gov/dwp/bsp_reported.py,sha256=WzUcvFYODeJh9nyr9mnhbjpdX0tHSr7K-avv63WNQj8,287
|
808
795
|
policyengine_uk/variables/gov/dwp/care_hours.py,sha256=aV4MC9Jm00bpuJYjzTABUwN4zRjOJ-nuTCyNx8wUPDY,255
|
809
796
|
policyengine_uk/variables/gov/dwp/carers_allowance.py,sha256=CbbYUqDrL6zkBkBZNUmJTTIFYZTJ_uf4zh-r7I6TR-k,568
|
810
|
-
policyengine_uk/variables/gov/dwp/carers_allowance_reported.py,sha256=
|
797
|
+
policyengine_uk/variables/gov/dwp/carers_allowance_reported.py,sha256=aCp6LGWiuMJDPJiQ6hr5R7YVGfu15hRx8hO9jEurGpM,290
|
811
798
|
policyengine_uk/variables/gov/dwp/child_ema.py,sha256=zD4wisHQCXeO5JK79kmcSJ8UA4UmT0Q45jZBHAW6rvM,249
|
812
799
|
policyengine_uk/variables/gov/dwp/child_tax_credit.py,sha256=5sVJRufrsylrVKErwe8iLcxAA3MHO8iYNVev4pje12I,262
|
813
800
|
policyengine_uk/variables/gov/dwp/child_tax_credit_pre_minimum.py,sha256=MwaI1lDRGTMopWqpinfmqmn2zVqyYzQr0lCZnQkljCo,677
|
814
|
-
policyengine_uk/variables/gov/dwp/child_tax_credit_reported.py,sha256=
|
801
|
+
policyengine_uk/variables/gov/dwp/child_tax_credit_reported.py,sha256=A-8yaQBGnqypmmM-6x13rzybbbZ-Bjq7vg3h5kG3QqY,280
|
815
802
|
policyengine_uk/variables/gov/dwp/council_tax_benefit.py,sha256=ZboGvVTZSgfkgeGAbRhbElvA230e6aDCcw_JFpgvTno,246
|
816
803
|
policyengine_uk/variables/gov/dwp/council_tax_benefit_reported.py,sha256=96PLpa2q2RzHq5U1oPmbMLwXnzghwCOTLipGc7iqslc,281
|
817
804
|
policyengine_uk/variables/gov/dwp/ctc_child_limit_affected.py,sha256=FW295fcIFA3tG8OhqVaLpgSox9lhja2qZ8NG23KuNRQ,1003
|
@@ -819,20 +806,20 @@ policyengine_uk/variables/gov/dwp/ctc_entitlement.py,sha256=dZVXjXGahKqjAU7qA9FJ
|
|
819
806
|
policyengine_uk/variables/gov/dwp/education_grants.py,sha256=Ed9N-An-qLxIGilWcvaNm4Om0XWe5zEb78kzZtgZbII,237
|
820
807
|
policyengine_uk/variables/gov/dwp/esa.py,sha256=9u7RXIPBXe7_h5vE5Vgb1ffhXIeHHXLOm7NQ-Z15k34,209
|
821
808
|
policyengine_uk/variables/gov/dwp/esa_contrib.py,sha256=K18qmK39_Tr-Q13QTacPZhvJ887bH-k3vuZ9ov5ZRHU,234
|
822
|
-
policyengine_uk/variables/gov/dwp/esa_contrib_reported.py,sha256=
|
809
|
+
policyengine_uk/variables/gov/dwp/esa_contrib_reported.py,sha256=r3PCTb2ydXPbI9pxmYRT-7P5aNzBnuPubsjqA5WD_oA,321
|
823
810
|
policyengine_uk/variables/gov/dwp/esa_income.py,sha256=Rekfi5lPa8Mz6xPLKa-hzqk-UlNnleR9YomPIM1JYA4,282
|
824
|
-
policyengine_uk/variables/gov/dwp/esa_income_reported.py,sha256=
|
811
|
+
policyengine_uk/variables/gov/dwp/esa_income_reported.py,sha256=d1c_179T4XDx980FMY-yayEhQ5C6adg1XMkfuKZGhes,292
|
825
812
|
policyengine_uk/variables/gov/dwp/healthy_start_vouchers.py,sha256=UFJJV13G0wGh7hgO1dm6pEu78NwPXDXvUbgRD1bVHAM,206
|
826
813
|
policyengine_uk/variables/gov/dwp/iidb.py,sha256=NnOOT-djxASXUbqgVei8PVhUGkMrT_YwH8JU_QHZY0o,235
|
827
|
-
policyengine_uk/variables/gov/dwp/iidb_reported.py,sha256=
|
814
|
+
policyengine_uk/variables/gov/dwp/iidb_reported.py,sha256=Xw2660Nfjt8FKs5pk1oF24wzkYL0mzv1NnJDpSB9C6g,300
|
828
815
|
policyengine_uk/variables/gov/dwp/incapacity_benefit.py,sha256=PYNsnRc7HumQb-Gw8QF1l7ipy5vg50a551rmX-VhSAc,242
|
829
|
-
policyengine_uk/variables/gov/dwp/incapacity_benefit_reported.py,sha256=
|
816
|
+
policyengine_uk/variables/gov/dwp/incapacity_benefit_reported.py,sha256=L9iaMXCNWN6FAN8HTEeE9qpHrKJW2nJYn2fCPe3EFZ4,293
|
830
817
|
policyengine_uk/variables/gov/dwp/income_support.py,sha256=ib5PG1ymG_Eu4TltTX2GnIZvBHlTPag5FIcwrsl3pcg,268
|
831
818
|
policyengine_uk/variables/gov/dwp/income_support_applicable_amount.py,sha256=9W0keYOHpvyTnxjLyEQLmU1Mxra-M-5-rOMEG3wfMbU,1946
|
832
819
|
policyengine_uk/variables/gov/dwp/income_support_applicable_income.py,sha256=Q36ClVAAUqzUCPJcX8T7QIw_AE8FBW7Ku8VkbIGSuhw,1890
|
833
820
|
policyengine_uk/variables/gov/dwp/income_support_eligible.py,sha256=2slaAZ7De_9Joj4LPgFG8BSUdWV-p4aJOAdwzjccAC8,946
|
834
821
|
policyengine_uk/variables/gov/dwp/income_support_entitlement.py,sha256=Ct-uEKrdHHKpV5y7vS1WvF8SbS_uaL_7gHovSQ8arsM,501
|
835
|
-
policyengine_uk/variables/gov/dwp/income_support_reported.py,sha256=
|
822
|
+
policyengine_uk/variables/gov/dwp/income_support_reported.py,sha256=twdQtU8mtslfy06NnW-RzI-jiNQiTHDKsusc5z0xsow,292
|
836
823
|
policyengine_uk/variables/gov/dwp/is_CTC_child_limit_exempt.py,sha256=_kSBwtMuTLbppTHPR_w2_3TzXUbBMWdh7Khy0xdp91s,1041
|
837
824
|
policyengine_uk/variables/gov/dwp/is_CTC_eligible.py,sha256=vAbT8-DwUh5YZKVpRMbJay6jeWZvk3NrBsCTMEaH35Q,515
|
838
825
|
policyengine_uk/variables/gov/dwp/is_SP_age.py,sha256=yiDWUA5FicwN4PSXVQ9CDXwONj96LFtlsGoT22kYH8s,364
|
@@ -841,18 +828,18 @@ policyengine_uk/variables/gov/dwp/is_benefit_cap_exempt.py,sha256=JbXVGLI3bUpG52
|
|
841
828
|
policyengine_uk/variables/gov/dwp/is_child_for_CTC.py,sha256=p1vdgGohyqRWy-0nppBa5McUr3alDPIwWZl9vC_NDWk,336
|
842
829
|
policyengine_uk/variables/gov/dwp/jsa.py,sha256=2m9V-fwcawZzpOLC6TyWEl-Odze9E6vLH5E2h26kBQA,254
|
843
830
|
policyengine_uk/variables/gov/dwp/jsa_contrib.py,sha256=6rdONNAAl2OYAmGfLxx2RNo2g0OyMzCn5Fd-S7GHizQ,234
|
844
|
-
policyengine_uk/variables/gov/dwp/jsa_contrib_reported.py,sha256=
|
831
|
+
policyengine_uk/variables/gov/dwp/jsa_contrib_reported.py,sha256=xLU5MYZSTPg20dJ4nMtXxgg2IKekNjsgd5bEXiolw9U,311
|
845
832
|
policyengine_uk/variables/gov/dwp/jsa_income.py,sha256=aPryfo6JepyDDD4eHfuvKauNRAUXYKFs6Vr5c1Wjhhs,292
|
846
|
-
policyengine_uk/variables/gov/dwp/jsa_income_reported.py,sha256=
|
833
|
+
policyengine_uk/variables/gov/dwp/jsa_income_reported.py,sha256=InnxSTL80MSKOu9WYLaOU_L9WUvxfLm9bZevKUPP06E,292
|
847
834
|
policyengine_uk/variables/gov/dwp/maternity_allowance.py,sha256=jljYqvQq28F-F215VU45GUfPloOUoiOiFSShaBTnLr4,245
|
848
|
-
policyengine_uk/variables/gov/dwp/maternity_allowance_reported.py,sha256=
|
835
|
+
policyengine_uk/variables/gov/dwp/maternity_allowance_reported.py,sha256=HZqV13Uu8W-_SqQH7f0kO9EtK0n4MbKo5aqGGkrz-4M,284
|
849
836
|
policyengine_uk/variables/gov/dwp/new_state_pension.py,sha256=0TLPUQnjabRXFxmNFcjpKaQ6je65Ae2QjKJS-olDob8,568
|
850
837
|
policyengine_uk/variables/gov/dwp/sda.py,sha256=915mmTcRyeim6CSkFH2X3td33RpVUPjmhACjCOMSkzs,559
|
851
|
-
policyengine_uk/variables/gov/dwp/sda_reported.py,sha256=
|
838
|
+
policyengine_uk/variables/gov/dwp/sda_reported.py,sha256=aQ0JhkFK5KWxREPkj8hoLiqzAp77zy1pBwzNGcqwAlA,288
|
852
839
|
policyengine_uk/variables/gov/dwp/ssmg.py,sha256=FI4wjTGmmsuzBabg3NiRn6qAx_09H4TTNwDq6Zz67ek,372
|
853
840
|
policyengine_uk/variables/gov/dwp/ssmg_reported.py,sha256=tEEFR7AZEyN8Omf_RxBul_ZzKpsT29jhy2r_sY-0tLs,212
|
854
841
|
policyengine_uk/variables/gov/dwp/state_pension_age.py,sha256=YYl1sKFJMtsqwsrmLWZc-VjPLUh-N36SQ6fTeCQeWDQ,391
|
855
|
-
policyengine_uk/variables/gov/dwp/state_pension_reported.py,sha256=
|
842
|
+
policyengine_uk/variables/gov/dwp/state_pension_reported.py,sha256=_bCvePQjMuiA4xlXh7r_vE3K8Y45QHSetMlyexNgHGs,414
|
856
843
|
policyengine_uk/variables/gov/dwp/state_pension_type.py,sha256=fDSfvrs5XILxoPxwtsW6jj2-4KgQs_h3Ibm-Z9OCxf4,1321
|
857
844
|
policyengine_uk/variables/gov/dwp/student_loans.py,sha256=_qWQZYOAdijMkztxb1Rw1B-2-tP5hhiAyprwYpCk0uI,188
|
858
845
|
policyengine_uk/variables/gov/dwp/student_payments.py,sha256=DkHigY4bNofKucCSSZD53Q5Xh3qEJpB2mInvxByKWH8,268
|
@@ -860,26 +847,26 @@ policyengine_uk/variables/gov/dwp/tax_credits.py,sha256=i9_4SmPY-NQMu5uUNzsWTRK3
|
|
860
847
|
policyengine_uk/variables/gov/dwp/tax_credits_applicable_income.py,sha256=dWxPPtQYfdP9JjrmC5DBqOMOMMJtCvahSOkaBXUEoyg,1328
|
861
848
|
policyengine_uk/variables/gov/dwp/tax_credits_reduction.py,sha256=H7Dtfga6Bh49hqPEdyqUYUoj5ZA_anBXk1rP1dY9twM,841
|
862
849
|
policyengine_uk/variables/gov/dwp/winter_fuel_allowance.py,sha256=20nsmxZC3Hk4FZR6mcV1WDQB2knEr2H-gD3oQMRPPc8,2326
|
863
|
-
policyengine_uk/variables/gov/dwp/winter_fuel_allowance_reported.py,sha256=
|
850
|
+
policyengine_uk/variables/gov/dwp/winter_fuel_allowance_reported.py,sha256=kXsOG2hGYZ6uZKWtKlDgL_bgz-L8cLgSWA4x9nYw-lA,288
|
864
851
|
policyengine_uk/variables/gov/dwp/working_tax_credit.py,sha256=I0KQwybLrpyKTc7hMGFI3c2itFap-QXHv_S3IgfJLeY,266
|
865
852
|
policyengine_uk/variables/gov/dwp/working_tax_credit_pre_minimum.py,sha256=HJSC1BxmunGJYs3Ja8Avi_iSHlbBR6I6FRlYDhQgXyI,561
|
866
|
-
policyengine_uk/variables/gov/dwp/working_tax_credit_reported.py,sha256=
|
853
|
+
policyengine_uk/variables/gov/dwp/working_tax_credit_reported.py,sha256=rIj6Iyy7jsaWxqlWbAx-7KuYrnQK2ILe1dAPY3VdJpE,282
|
867
854
|
policyengine_uk/variables/gov/dwp/would_claim_CTC.py,sha256=XdBWO-oGvZv0_h2UPojQUOTLtpWhfuGoAeEu2B15FGc,583
|
868
855
|
policyengine_uk/variables/gov/dwp/would_claim_IS.py,sha256=oL4BTduH-b7izOvVuzWJ1gTONu99n6ftWfOOLhgT2n0,574
|
869
856
|
policyengine_uk/variables/gov/dwp/would_claim_WTC.py,sha256=BN2FSugZk4ELqNEOG2XK3gDqim_1HFWFLYHfdMbUpLk,613
|
870
857
|
policyengine_uk/variables/gov/dwp/wtc_entitlement.py,sha256=PjNdlmNocYDHFj0JlQvr3CiqcisfQ00KvmQNOlW-8bA,434
|
871
858
|
policyengine_uk/variables/gov/dwp/dla/dla.py,sha256=wOXnew9jPbw4xtf5eDUcspgItT0OIIlpOysAKVgv-GU,224
|
872
859
|
policyengine_uk/variables/gov/dwp/dla/dla_m.py,sha256=1kEzmeHnsoVQELUy9aujovRtggfD7iyLqkT07acDT8g,784
|
873
|
-
policyengine_uk/variables/gov/dwp/dla/dla_m_reported.py,sha256=
|
860
|
+
policyengine_uk/variables/gov/dwp/dla/dla_m_reported.py,sha256=X18T9yvit3utHh4LVIjzr-rroN_zQFl6b7cSo4Cel7w,276
|
874
861
|
policyengine_uk/variables/gov/dwp/dla/dla_sc.py,sha256=PP2KPK9yb8QmLXyYrIqNNAbl5Cv-n28FlGr21DRYxCI,877
|
875
862
|
policyengine_uk/variables/gov/dwp/dla/dla_sc_middle_plus.py,sha256=6CsLxSpQniiUzItgqnfaniJMUAyv5jYMYxEcamaMNac,460
|
876
|
-
policyengine_uk/variables/gov/dwp/dla/dla_sc_reported.py,sha256=
|
863
|
+
policyengine_uk/variables/gov/dwp/dla/dla_sc_reported.py,sha256=Z0dXKt8QiN7quxQxjlYs6dvo5tpIptE8Sq5kr24oCBw,278
|
877
864
|
policyengine_uk/variables/gov/dwp/dla/receives_highest_dla_sc.py,sha256=3gcIiODm-KimRzE-PspbpDlKMm4Dc96U_rDkV3h_wOk,372
|
878
865
|
policyengine_uk/variables/gov/dwp/housing_benefit/housing_benefit.py,sha256=krsMpNwIgS962aK5xNUDYZGCS1P4pUnv6WsvaK8PNTw,548
|
879
866
|
policyengine_uk/variables/gov/dwp/housing_benefit/housing_benefit_applicable_amount.py,sha256=6GYK92cQ7gHUT3aXqbh_C1I2O_Ot5L2MGNDoNdflWPI,1854
|
880
867
|
policyengine_uk/variables/gov/dwp/housing_benefit/housing_benefit_eligible.py,sha256=b0-Dp_phCtxtmchH4zP3zwSbtn4A4uYYWTRLTwD_63k,615
|
881
868
|
policyengine_uk/variables/gov/dwp/housing_benefit/housing_benefit_pre_benefit_cap.py,sha256=cE5-77DqEHHTvG6VjSblFmPcoBhN4K7Sn5Rt6mlozuA,547
|
882
|
-
policyengine_uk/variables/gov/dwp/housing_benefit/housing_benefit_reported.py,sha256=
|
869
|
+
policyengine_uk/variables/gov/dwp/housing_benefit/housing_benefit_reported.py,sha256=fgEEw1kcE_ZizhMSv1TAn4G6QjsPjbWGcVmsS-x9nJ4,292
|
883
870
|
policyengine_uk/variables/gov/dwp/housing_benefit/would_claim_housing_benefit.py,sha256=w0m2MDeIZ5QwKnz1KJiYepyRJ4IbtaFN6NQwD3xyxDU,594
|
884
871
|
policyengine_uk/variables/gov/dwp/housing_benefit/applicable_income/housing_benefit_applicable_income.py,sha256=TSmEDnyIaa-m7oEI96vpQzXvYagVmQOb_Z9QvoX4CSs,2386
|
885
872
|
policyengine_uk/variables/gov/dwp/housing_benefit/applicable_income/housing_benefit_applicable_income_childcare_element.py,sha256=GDeF9JvAvjNDaJDFP5auNGBSKF4VwAg7ZuT6ANEstJk,1092
|
@@ -895,7 +882,7 @@ policyengine_uk/variables/gov/dwp/pension_credit/pension_credit.py,sha256=71VH5G
|
|
895
882
|
policyengine_uk/variables/gov/dwp/pension_credit/pension_credit_earnings.py,sha256=SD5F6gwcZo0dPI3igKK7HdP9CDwCYZ5DI9LH1hsfh5Q,362
|
896
883
|
policyengine_uk/variables/gov/dwp/pension_credit/pension_credit_entitlement.py,sha256=W6mOC_I9IiUtKB8Aj7POJCROWSu6YE3xSWG1b6ngdM8,300
|
897
884
|
policyengine_uk/variables/gov/dwp/pension_credit/pension_credit_income.py,sha256=ojHXPyNHtu1BoawOc78g5kn051jow4hYIsAcwbNJ_OQ,1000
|
898
|
-
policyengine_uk/variables/gov/dwp/pension_credit/pension_credit_reported.py,sha256=
|
885
|
+
policyengine_uk/variables/gov/dwp/pension_credit/pension_credit_reported.py,sha256=PpW7F730SXswCxxkP5zH7NWoSdhyRHJIxBTyqeJtkLg,285
|
899
886
|
policyengine_uk/variables/gov/dwp/pension_credit/would_claim.py,sha256=aOQkhy0znND2fT_bnc7Pe1e-dloikYSTuVTau9MJgKQ,940
|
900
887
|
policyengine_uk/variables/gov/dwp/pension_credit/guarantee_credit/guarantee_credit.py,sha256=VBPoHL-yDrqDXgFq1FHGXQpOnQAVo9KSBNMUOTkAG6E,567
|
901
888
|
policyengine_uk/variables/gov/dwp/pension_credit/guarantee_credit/is_guarantee_credit_eligible.py,sha256=qeWcE4ZocWztJFmfbynymUa43n-HXNDv58TMdEAGKCk,427
|
@@ -911,9 +898,9 @@ policyengine_uk/variables/gov/dwp/pension_credit/savings_credit/savings_credit.p
|
|
911
898
|
policyengine_uk/variables/gov/dwp/pension_credit/savings_credit/savings_credit_income.py,sha256=Lr9TKzwFqKkDMFc-gYRWGTwIdYwXEb3xJZCAntNZGDs,755
|
912
899
|
policyengine_uk/variables/gov/dwp/pip/pip.py,sha256=KSqnP3ROFlJmTrE7r2WEFHSkpzmVhjpW7WxdFbvn178,323
|
913
900
|
policyengine_uk/variables/gov/dwp/pip/pip_dl.py,sha256=ni7ogzRtZe4vK16Z4NTBZ3GeA9R8E_NIDHrg1n3jRTU,830
|
914
|
-
policyengine_uk/variables/gov/dwp/pip/pip_dl_reported.py,sha256=
|
901
|
+
policyengine_uk/variables/gov/dwp/pip/pip_dl_reported.py,sha256=GLGLtOPUgqATwZjCOUzAd8QsPFvZZHVbdP6Z4prEWzo,347
|
915
902
|
policyengine_uk/variables/gov/dwp/pip/pip_m.py,sha256=6GoGYGFFJYjiAOv3EtzZUTbU9K-1_MTUkM1VIGDXja4,817
|
916
|
-
policyengine_uk/variables/gov/dwp/pip/pip_m_reported.py,sha256=
|
903
|
+
policyengine_uk/variables/gov/dwp/pip/pip_m_reported.py,sha256=rshV6G7g_6AY52OlF1548Ic7tuwGLv3ZcauPPhaSKh4,342
|
917
904
|
policyengine_uk/variables/gov/dwp/pip/receives_enhanced_pip_dl.py,sha256=lukj4TPlI8WF2pIqxe6AnGpBMAayq83KuseW28qHUlg,391
|
918
905
|
policyengine_uk/variables/gov/dwp/universal_credit/is_uc_eligible.py,sha256=exznkV08A4sb497XlJVkU9fQi49zVUccvU0d8GSnwRw,383
|
919
906
|
policyengine_uk/variables/gov/dwp/universal_credit/is_uc_entitled.py,sha256=_OYEsUBwES772HHCTLNKCaxTN9RTvjK7zEfKPq4Yvio,336
|
@@ -921,7 +908,7 @@ policyengine_uk/variables/gov/dwp/universal_credit/is_uc_entitled_baseline.py,sh
|
|
921
908
|
policyengine_uk/variables/gov/dwp/universal_credit/uc_maximum_amount.py,sha256=Ius2Mp4f8B6M65wavhBR9X7tDdHWAoyjECjwQXDzfR8,559
|
922
909
|
policyengine_uk/variables/gov/dwp/universal_credit/universal_credit.py,sha256=KN3J8dYJg8uX_e4tRYdrW9JZF5elS4A22qGWjuJ1O7U,520
|
923
910
|
policyengine_uk/variables/gov/dwp/universal_credit/universal_credit_pre_benefit_cap.py,sha256=5rwkwz4X2rnEwxZ5q-kLYposbXWpPD1Rp19HqBXgUrw,422
|
924
|
-
policyengine_uk/variables/gov/dwp/universal_credit/universal_credit_reported.py,sha256=
|
911
|
+
policyengine_uk/variables/gov/dwp/universal_credit/universal_credit_reported.py,sha256=y9_KgwYbeR6-UuMMi0MsF5t7tmpBwA1lQxdzYwa9ZM0,347
|
925
912
|
policyengine_uk/variables/gov/dwp/universal_credit/would_claim_uc.py,sha256=mfqg0r57ADKA-t0sBcNuqECyRmyjFewtmLbyXmd-9Uc,621
|
926
913
|
policyengine_uk/variables/gov/dwp/universal_credit/carer_element/uc_carer_element.py,sha256=7Ght38zCnwfuoE6g9lDwODYQgO1yuiAx8aPy1-fUcqo,406
|
927
914
|
policyengine_uk/variables/gov/dwp/universal_credit/child_element/uc_child_element.py,sha256=r0B1qP7gPhHuj7oc8T6tzmOy-mPlDjc86d9XV87C_24,253
|
@@ -962,7 +949,7 @@ policyengine_uk/variables/gov/hmrc/child_benefit.py,sha256=t0w6-n6tyxV6D3bK2otVK
|
|
962
949
|
policyengine_uk/variables/gov/hmrc/child_benefit_entitlement.py,sha256=KsYf76-v9atrG2HGxN1luAwiAW_5svRk94nj9V43AQY,250
|
963
950
|
policyengine_uk/variables/gov/hmrc/child_benefit_less_tax_charge.py,sha256=uzE_5UffwSjaLRA9BzZ3NCstTZ5GpQHEpu-vfZKPkd4,381
|
964
951
|
policyengine_uk/variables/gov/hmrc/child_benefit_opts_out.py,sha256=RWr9HrIuc8q5yoiDU443-I1FUmVZfMtOJHuKFtQ3LqM,938
|
965
|
-
policyengine_uk/variables/gov/hmrc/child_benefit_reported.py,sha256=
|
952
|
+
policyengine_uk/variables/gov/hmrc/child_benefit_reported.py,sha256=YSG1d5A1FhGwVIB0jcrI5Dw6l2bm8SGpc6sLA3voYMw,355
|
966
953
|
policyengine_uk/variables/gov/hmrc/child_benefit_respective_amount.py,sha256=BYjZEww3bmhkP7tohteTsxIEsx3eHMtMfawHkrCmWvc,1153
|
967
954
|
policyengine_uk/variables/gov/hmrc/corporate_sdlt.py,sha256=-RvgqRVU_w3jfT1m9x9wM8PuLxtkp-8vT7y76mPdk-A,573
|
968
955
|
policyengine_uk/variables/gov/hmrc/expected_sdlt.py,sha256=kKejNXGwb_hvNH-604Y9N8hab_FMqv6XjogCA0cKFQE,578
|
@@ -975,7 +962,7 @@ policyengine_uk/variables/gov/hmrc/sdlt_on_residential_property_rent.py,sha256=S
|
|
975
962
|
policyengine_uk/variables/gov/hmrc/sdlt_on_residential_property_transactions.py,sha256=P7ABnZt0i0HQItdaqj459CFh7arCi1x6xUt5OluoDv8,1652
|
976
963
|
policyengine_uk/variables/gov/hmrc/sdlt_on_transactions.py,sha256=5gnGDJ6WIO_KUF3rMNdswiXN9Ztki9rVCLT8VtNTW_c,482
|
977
964
|
policyengine_uk/variables/gov/hmrc/stamp_duty_land_tax.py,sha256=lcPg2fcDo0-fDol_qbZvjvHlPXzSfigE_JI6iLbuf8g,446
|
978
|
-
policyengine_uk/variables/gov/hmrc/student_loan_repayments.py,sha256=
|
965
|
+
policyengine_uk/variables/gov/hmrc/student_loan_repayments.py,sha256=aRR7vZhADQrAhzHBZEmyubyaH0OIdmyyjjnRAr7m3Xs,279
|
979
966
|
policyengine_uk/variables/gov/hmrc/tax.py,sha256=Cn_xr0u-ejkS7EKbWOE-UhoV6znaEG72oK_QcUxNK-4,219
|
980
967
|
policyengine_uk/variables/gov/hmrc/tax_modelling.py,sha256=g-6IJHFKGrlbO8aw0hNCt7TENSe_MzbzsY5qGq9Axms,283
|
981
968
|
policyengine_uk/variables/gov/hmrc/tax_reported.py,sha256=B_PpVUqmtoymiFyr9oI_nGk5dv5rN12A4sYVb2Frvdo,191
|
@@ -983,7 +970,7 @@ policyengine_uk/variables/gov/hmrc/vat.py,sha256=UQ0WC1ueFBCer7fRJ7ynobqkAfSRFQI
|
|
983
970
|
policyengine_uk/variables/gov/hmrc/vat_change.py,sha256=zJWY3Z4Nenq-h_4tqTvhPSdTCNYhL2fnzjlDSKk2QNo,261
|
984
971
|
policyengine_uk/variables/gov/hmrc/would_claim_child_benefit.py,sha256=9eXptp3MDA7OBnGf7AJG8vTVmtO-wHV9ad-vyAWOuRc,569
|
985
972
|
policyengine_uk/variables/gov/hmrc/capital_gains_tax/adult_index_cg.py,sha256=ORngDLoM6rSbQ9Y9iMyF_H-krBX5jB7n2hcRc40J71I,541
|
986
|
-
policyengine_uk/variables/gov/hmrc/capital_gains_tax/capital_gains_before_response.py,sha256=
|
973
|
+
policyengine_uk/variables/gov/hmrc/capital_gains_tax/capital_gains_before_response.py,sha256=Sv-sp8qR7Bx9ibLCJgUj9137qj_InrHdiGClHrlmcl8,334
|
987
974
|
policyengine_uk/variables/gov/hmrc/capital_gains_tax/capital_gains_behavioural_response.py,sha256=57ZfrH_ika8ItTMelG1kHQNYZa0b2G_KSE5qcaLGoVg,1003
|
988
975
|
policyengine_uk/variables/gov/hmrc/capital_gains_tax/capital_gains_elasticity.py,sha256=9ZUTsoDBewYm6NR9t8HSBYw3njvGOR_q8T_ODYGdiEA,419
|
989
976
|
policyengine_uk/variables/gov/hmrc/capital_gains_tax/capital_gains_tax.py,sha256=RFDRfROk5T6gS4TMxJCt5qZh6EnWvMRp-aIeFlZtNE0,1521
|
@@ -1182,7 +1169,7 @@ policyengine_uk/variables/household/demographic/household_equivalisation_bhc.py,
|
|
1182
1169
|
policyengine_uk/variables/household/demographic/household_id.py,sha256=JIVr4fckOE3kQ6xfSxYl3bvuUv8wEY_6EMXG0YvpHoE,257
|
1183
1170
|
policyengine_uk/variables/household/demographic/household_num_benunits.py,sha256=gXnObKhYhKLU_IqyCixW4w0Iml_qH0AdA6ikFXhW9FE,420
|
1184
1171
|
policyengine_uk/variables/household/demographic/household_owns_tv.py,sha256=-0Trrw6XHZQNxPPLJqEUl4oMxCoOZqhCFnp_QHUZij0,459
|
1185
|
-
policyengine_uk/variables/household/demographic/household_weight.py,sha256=
|
1172
|
+
policyengine_uk/variables/household/demographic/household_weight.py,sha256=yfXSaDYIo-fE47TnlaZjpqJ_ban4If5H3ipWUgXZI5s,361
|
1186
1173
|
policyengine_uk/variables/household/demographic/households.py,sha256=pwdYUm3ScuALwVYf5miaEc5Pl-OlFNT7AjHlfkw0jW8,286
|
1187
1174
|
policyengine_uk/variables/household/demographic/in_FE.py,sha256=tLY2oelMnx8LjzDas6rV8-KBHIScQyRkTTLFfCQDG08,259
|
1188
1175
|
policyengine_uk/variables/household/demographic/in_HE.py,sha256=dJyJ5GJh1WCMDDj0CFS4PYBUWDb2WOsqyrSh-EpwgcQ,296
|
@@ -1242,7 +1229,7 @@ policyengine_uk/variables/household/income/base_net_income.py,sha256=9WcVGU3QbCJ
|
|
1242
1229
|
policyengine_uk/variables/household/income/baseline_hbai_excluded_income.py,sha256=qlLnaZIPuX1n14HbsDOhUo5hHYFTFBoTp-qlUUj83Z0,638
|
1243
1230
|
policyengine_uk/variables/household/income/benefits_premiums.py,sha256=7kNsT5LeWPWZlNDiKFFuV7wNvcu5lhqLrK0jPMDy_wE,380
|
1244
1231
|
policyengine_uk/variables/household/income/benunit_weekly_hours.py,sha256=T9n8TeSSCOnCS8NgW2SJ277lCnk096aoXsKszrpFmmI,272
|
1245
|
-
policyengine_uk/variables/household/income/capital_gains.py,sha256=
|
1232
|
+
policyengine_uk/variables/household/income/capital_gains.py,sha256=78fBMuxP8yxLjrEgkl2LTWwUnnSL1wpZr6C-yFYZN28,398
|
1246
1233
|
policyengine_uk/variables/household/income/capital_income.py,sha256=R6lChhP2g25sRE1DssitvMK53yf4Cb8_zOQLI2zPqlI,302
|
1247
1234
|
policyengine_uk/variables/household/income/claims_all_entitled_benefits.py,sha256=eVazemPVinVwY0iDPTavt9nw20N7M-u_6RHFRsQ3QWM,935
|
1248
1235
|
policyengine_uk/variables/household/income/claims_legacy_benefits.py,sha256=ExzKI5TgSkfWoi1k26FOn3R1pRG9uIOd0ZKlpVuv8aI,665
|
@@ -1275,7 +1262,7 @@ policyengine_uk/variables/household/income/in_relative_poverty_ahc.py,sha256=335
|
|
1275
1262
|
policyengine_uk/variables/household/income/in_relative_poverty_bhc.py,sha256=Okhc5V844qoNhTPR5db_T8Kcq412BhfzenSDOUTjppg,525
|
1276
1263
|
policyengine_uk/variables/household/income/in_work.py,sha256=D5rBwUIb2WjIDZODI_4vVBTtCPsilvAkqoL8tuN653w,506
|
1277
1264
|
policyengine_uk/variables/household/income/income_decile.py,sha256=pcUUESL0K74YVFG0aismjk4IQTyGmTdmnnEI37UgZUQ,468
|
1278
|
-
policyengine_uk/variables/household/income/inflation_adjustment.py,sha256=
|
1265
|
+
policyengine_uk/variables/household/income/inflation_adjustment.py,sha256=x8Qn6g450S1RXTNrw-N0wB5f8SGe30o-9WfuabotiSo,612
|
1279
1266
|
policyengine_uk/variables/household/income/is_QYP.py,sha256=QlsndiWhoJLX-p0XRSRIQRnE73McnFJM7ra3C_7coTc,513
|
1280
1267
|
policyengine_uk/variables/household/income/is_apprentice.py,sha256=isDDLgrwhRGHLhl-0O_g_38A1UV82mqhVTp8noNLBH0,250
|
1281
1268
|
policyengine_uk/variables/household/income/is_child_or_QYP.py,sha256=c97SUoxXTklzBp4LJFrjv_wRr-W8E-Z3tIzp-1rDWn4,353
|
@@ -1295,81 +1282,81 @@ policyengine_uk/variables/household/income/poverty_line_bhc.py,sha256=iXhCY3QdVg
|
|
1295
1282
|
policyengine_uk/variables/household/income/poverty_threshold_bhc.py,sha256=yt7zc8JO6UAxgTTY-pWPVAZdwfWiEfhayzPZptg5wQI,393
|
1296
1283
|
policyengine_uk/variables/household/income/real_household_net_income.py,sha256=s4fVdcU3Z_HDxBuG1xWyEzEUd3IeZDx9dC8nuv5UKAY,489
|
1297
1284
|
policyengine_uk/variables/household/income/real_household_net_income_ahc.py,sha256=CPpVY6VWDR20DV85CNl0pfj6vsoOjOcG2lAjq0jdxgI,497
|
1298
|
-
policyengine_uk/variables/household/income/statutory_maternity_pay.py,sha256=
|
1299
|
-
policyengine_uk/variables/household/income/statutory_paternity_pay.py,sha256=
|
1300
|
-
policyengine_uk/variables/household/income/statutory_sick_pay.py,sha256=
|
1285
|
+
policyengine_uk/variables/household/income/statutory_maternity_pay.py,sha256=Y0yb_UPFLOUcHz640saLbeBwjhpRGrGuHj4HhcUDja8,318
|
1286
|
+
policyengine_uk/variables/household/income/statutory_paternity_pay.py,sha256=5Cvxa_orPcYIeGMbI3e7vKfC7MpZIj8VpwSCFwai7yY,318
|
1287
|
+
policyengine_uk/variables/household/income/statutory_sick_pay.py,sha256=ZVE1nsghwww0DnEx97D1fpa2v7B0JNVAWfdgv-XXPaA,308
|
1301
1288
|
policyengine_uk/variables/household/income/weekly_hours.py,sha256=_mUFXzYCXEX63fkImXCJbbgshHTg5gyt6JQhMKDic-8,407
|
1302
1289
|
policyengine_uk/variables/household/wealth/corporate_land_value.py,sha256=TfQOLQO3Lf_PLsR_0ObV49V2derIuUKiK7965_LArqE,704
|
1303
1290
|
policyengine_uk/variables/household/wealth/corporate_tax_incidence.py,sha256=esU0frRbCe3CMb3pu64uUE8k_vjbZohoD7Fs2oqwtp4,389
|
1304
|
-
policyengine_uk/variables/household/wealth/gross_financial_wealth.py,sha256=
|
1291
|
+
policyengine_uk/variables/household/wealth/gross_financial_wealth.py,sha256=6QofCSuzDw20veqL3bn53WiCtJb4ndqxkiQjQDFic_U,278
|
1305
1292
|
policyengine_uk/variables/household/wealth/household_land_value.py,sha256=SyBM78G-ZyYMYQGVVxS7z4IOziRxe8OejdCd2rwCOEs,754
|
1306
1293
|
policyengine_uk/variables/household/wealth/household_wealth_decile.py,sha256=oDYB9s7CbC9ZHdzKsUbxAAwObklkGJL6T0Rx2mzaoI4,857
|
1307
1294
|
policyengine_uk/variables/household/wealth/land_value.py,sha256=SP6W3V3GXOUQ1HqPFfvUwNqpAcz5zrroMGT23g6Wh4Q,369
|
1308
|
-
policyengine_uk/variables/household/wealth/net_financial_wealth.py,sha256=
|
1295
|
+
policyengine_uk/variables/household/wealth/net_financial_wealth.py,sha256=UrBv1UToTYJCnsap246qQX0318B0_VbI42eIinbnhkE,274
|
1309
1296
|
policyengine_uk/variables/household/wealth/property_wealth.py,sha256=fAtjM2pPIWIH4m9oEkEX4_xqrzY9KGkrKuGUSCeeinY,369
|
1310
1297
|
policyengine_uk/variables/household/wealth/residential_property_value.py,sha256=z-PJnsnkHRlaD1HEJy7XqIWRIjqid0VrzLNQcTYaDoY,384
|
1311
|
-
policyengine_uk/variables/household/wealth/savings.py,sha256=
|
1298
|
+
policyengine_uk/variables/household/wealth/savings.py,sha256=eAFqj9rtXITVHFU9eufT8Sb8ZLN_1AiqnmqKeZsZYlY,295
|
1312
1299
|
policyengine_uk/variables/household/wealth/shareholding.py,sha256=GFggUcEwp5ZzuGVgNfLwfXFCWZ8yYlGZQk3ixom7j_4,865
|
1313
1300
|
policyengine_uk/variables/household/wealth/total_wealth.py,sha256=4Zbx5A5BP3ikfFc_ZRA_fMj2TIHK_3SVqPX3JdETSJc,241
|
1314
1301
|
policyengine_uk/variables/input/README.md,sha256=OOFtoYQlhJFEZrEdxQxP0tr5ajnNM3OwsTPyLNELV8o,8
|
1315
1302
|
policyengine_uk/variables/input/care.py,sha256=ZPnLmdGVd5knLb1fOq4ZSiiWhJBT29XQkg8-HItQngg,383
|
1316
|
-
policyengine_uk/variables/input/corporate_wealth.py,sha256
|
1303
|
+
policyengine_uk/variables/input/corporate_wealth.py,sha256=-U3wGFqCk2gzpMZgfCecpmq74KR-A-MM0Sn1R8zeESI,349
|
1317
1304
|
policyengine_uk/variables/input/council_tax_band.py,sha256=8x7dl8jBNotPxGJHtvFBSM6gFig5PoP-e1EBXjo5hUg,393
|
1318
1305
|
policyengine_uk/variables/input/demographic.py,sha256=EvMRkW0FNL7WZRcmQsifXbdryuHUgY796r5SBU3xvM4,317
|
1319
|
-
policyengine_uk/variables/input/dividend_income.py,sha256=
|
1306
|
+
policyengine_uk/variables/input/dividend_income.py,sha256=GhK_mCERVDS3W1-1QlzOOJ7mm6IYAsn1GBjILT5cPTM,430
|
1320
1307
|
policyengine_uk/variables/input/dla_m_category.py,sha256=2IVe8T8l1GoEVqbDHL6slhmo3Llywp27pc2JBto1Cn8,1265
|
1321
1308
|
policyengine_uk/variables/input/dla_sc_category.py,sha256=o1HwQeE3fym9IQaCuG6wGu6IHDE2gUPJSaGNUnobAs8,1450
|
1322
|
-
policyengine_uk/variables/input/employment_income.py,sha256
|
1323
|
-
policyengine_uk/variables/input/employment_income_before_lsr.py,sha256=
|
1324
|
-
policyengine_uk/variables/input/lump_sum_income.py,sha256=
|
1325
|
-
policyengine_uk/variables/input/main_residence_value.py,sha256=
|
1326
|
-
policyengine_uk/variables/input/maintenance_income.py,sha256=
|
1327
|
-
policyengine_uk/variables/input/miscellaneous_income.py,sha256=
|
1328
|
-
policyengine_uk/variables/input/non_residential_property_value.py,sha256=
|
1329
|
-
policyengine_uk/variables/input/other_investment_income.py,sha256=
|
1330
|
-
policyengine_uk/variables/input/other_residential_property_value.py,sha256=
|
1331
|
-
policyengine_uk/variables/input/owned_land.py,sha256=
|
1332
|
-
policyengine_uk/variables/input/pension_income.py,sha256=
|
1309
|
+
policyengine_uk/variables/input/employment_income.py,sha256=YPavkxQ7DZTbqPn-FzCo9RLBqlv3PAAEtf93Be9k8wE,669
|
1310
|
+
policyengine_uk/variables/input/employment_income_before_lsr.py,sha256=dOyAKGHy1XMCSrP8phR0vDPnJc3s472iCvvdkPZMFKs,308
|
1311
|
+
policyengine_uk/variables/input/lump_sum_income.py,sha256=rsoaF2b-JOtR6ozcWhymlB0XdDQ55oVY-iRRbZy9-Bo,305
|
1312
|
+
policyengine_uk/variables/input/main_residence_value.py,sha256=UqpvN-EnnfhYf2D7uA8xGEObZoXfchqDFeqbn-AoVB4,356
|
1313
|
+
policyengine_uk/variables/input/maintenance_income.py,sha256=Yy-KeCfr390YMJKvzZgC6ngKcFf2uxxlWK7nlEzBbGM,337
|
1314
|
+
policyengine_uk/variables/input/miscellaneous_income.py,sha256=aSNnoFqGMkyVbRt7GyoV5eEtyU0QaEoABTQO0m_sgLc,322
|
1315
|
+
policyengine_uk/variables/input/non_residential_property_value.py,sha256=m-7I_3q2oFMxnE1te98sse37qXP-Z-L7Gy7lWU2WMdI,425
|
1316
|
+
policyengine_uk/variables/input/other_investment_income.py,sha256=mWu63HS9fsHwK3bBhBDgWkiIOFw2SDeFVvgS_gA079c,511
|
1317
|
+
policyengine_uk/variables/input/other_residential_property_value.py,sha256=C_7FbMHM9Y8jpvZiz8gAdmLb4MB1G5hLiZ_KizZ9EzI,414
|
1318
|
+
policyengine_uk/variables/input/owned_land.py,sha256=MxZd4wm9CuLy-oOBK1xdNYSOiDLJ26vZEDdif77ofs0,366
|
1319
|
+
policyengine_uk/variables/input/pension_income.py,sha256=h98Vuiq4ptErFFUTAsqH6SmtTuQDrspyDp4ihygIvTc,638
|
1333
1320
|
policyengine_uk/variables/input/pip_dl_category.py,sha256=lH_lN6Mh9zWpFV-Odlr2ahgOJGOJ41FFmVbYqtbyQK4,1303
|
1334
1321
|
policyengine_uk/variables/input/pip_m_category.py,sha256=UfgnVrg5p5bR5n1jdcJb8qoiTvY8sI355EoPrGaoTvo,1251
|
1335
|
-
policyengine_uk/variables/input/private_pension_income.py,sha256=
|
1336
|
-
policyengine_uk/variables/input/private_transfer_income.py,sha256=
|
1337
|
-
policyengine_uk/variables/input/property_income.py,sha256=
|
1338
|
-
policyengine_uk/variables/input/rent.py,sha256=
|
1339
|
-
policyengine_uk/variables/input/savings_interest_income.py,sha256=
|
1340
|
-
policyengine_uk/variables/input/self_employment_income.py,sha256=
|
1341
|
-
policyengine_uk/variables/input/state_pension.py,sha256=
|
1342
|
-
policyengine_uk/variables/input/sublet_income.py,sha256=
|
1322
|
+
policyengine_uk/variables/input/private_pension_income.py,sha256=nquIdGsghUZtXY8nWCJM6qsd9zg9jCsuwiXPf3khYQk,473
|
1323
|
+
policyengine_uk/variables/input/private_transfer_income.py,sha256=gS8QXT__YKCHAqQWrupujXTre-INgJftup4Y_IpZIqw,329
|
1324
|
+
policyengine_uk/variables/input/property_income.py,sha256=o0JeFu77h9N8LWjlLDw55c8fRBrdcY5lWW_w0tGgnNA,413
|
1325
|
+
policyengine_uk/variables/input/rent.py,sha256=fc5u7vBV5wailiU23pF19lPkcDsTJqwBF9Td6c03R48,355
|
1326
|
+
policyengine_uk/variables/input/savings_interest_income.py,sha256=B8AXrGGPl4MI9nvBaOKI-QYdm35qwNSVQxtpNWEosHA,448
|
1327
|
+
policyengine_uk/variables/input/self_employment_income.py,sha256=66eqP3jk3czOpmxA6wQOtsWM0Ll9lU2cw4_kuc7SgUA,492
|
1328
|
+
policyengine_uk/variables/input/state_pension.py,sha256=o4LrBumOYadV-lZ6NC5-3lvafkLVJ_RNKjTrclQA0N4,957
|
1329
|
+
policyengine_uk/variables/input/sublet_income.py,sha256=34mMWlAuyk_bGT0U9RXY2q_CmQo4SoyulCRF6zzigAk,313
|
1343
1330
|
policyengine_uk/variables/input/consumption/README.md,sha256=08taYSLiEbj6tkR4xXonmFogsg21FBOLAf7RlxTzXYA,14
|
1344
|
-
policyengine_uk/variables/input/consumption/alcohol_and_tobacco_consumption.py,sha256=
|
1345
|
-
policyengine_uk/variables/input/consumption/childcare_expenses.py,sha256=
|
1346
|
-
policyengine_uk/variables/input/consumption/clothing_and_footwear_consumption.py,sha256=
|
1347
|
-
policyengine_uk/variables/input/consumption/communication_consumption.py,sha256=
|
1331
|
+
policyengine_uk/variables/input/consumption/alcohol_and_tobacco_consumption.py,sha256=sxro89CtMBEb3QIUckGbHctgud_NZSLO_6DqE28_13I,455
|
1332
|
+
policyengine_uk/variables/input/consumption/childcare_expenses.py,sha256=AXk-bWPR1k1Yet3uIL2NSbV4ctNi3gPCXnoa_9TPR0I,388
|
1333
|
+
policyengine_uk/variables/input/consumption/clothing_and_footwear_consumption.py,sha256=JGtbXaXl-qgKi5XwrLR9hojRFnq0djAU8F2m_H-33VA,461
|
1334
|
+
policyengine_uk/variables/input/consumption/communication_consumption.py,sha256=a8Ms8ffxNMlx__ZqRwlCUqmmkzIDUZWex2zyzxjbtbM,437
|
1348
1335
|
policyengine_uk/variables/input/consumption/consumption.py,sha256=hpz2yv_hrVFuogKdZ1YKRpPX_Ucw_Ojv5TNlM2tB4XI,767
|
1349
|
-
policyengine_uk/variables/input/consumption/diesel_spending.py,sha256=
|
1350
|
-
policyengine_uk/variables/input/consumption/education_consumption.py,sha256=
|
1351
|
-
policyengine_uk/variables/input/consumption/energy.py,sha256=
|
1352
|
-
policyengine_uk/variables/input/consumption/food_and_non_alcoholic_beverages_consumption.py,sha256=
|
1353
|
-
policyengine_uk/variables/input/consumption/health_consumption.py,sha256=
|
1354
|
-
policyengine_uk/variables/input/consumption/household_furnishings_consumption.py,sha256=
|
1355
|
-
policyengine_uk/variables/input/consumption/housing_water_and_electricity_consumption.py,sha256=
|
1356
|
-
policyengine_uk/variables/input/consumption/miscellaneous_consumption.py,sha256=
|
1357
|
-
policyengine_uk/variables/input/consumption/petrol_spending.py,sha256=
|
1358
|
-
policyengine_uk/variables/input/consumption/recreation_consumption.py,sha256=
|
1359
|
-
policyengine_uk/variables/input/consumption/restaurants_and_hotels_consumption.py,sha256=
|
1360
|
-
policyengine_uk/variables/input/consumption/transport_consumption.py,sha256=
|
1336
|
+
policyengine_uk/variables/input/consumption/diesel_spending.py,sha256=QGQxFUW1C_F3pNZwanUbgy9xJC5GTZPqTJBbEbuWIx0,356
|
1337
|
+
policyengine_uk/variables/input/consumption/education_consumption.py,sha256=yn0uiBhVMFkfxh9vEdPrJMNS-9AhtivB5Rjdn26TDKQ,425
|
1338
|
+
policyengine_uk/variables/input/consumption/energy.py,sha256=zW0xtaf0Oh7i7IMYiRpQlrcg5Oa4ss0LCVs0vPIXsDM,403
|
1339
|
+
policyengine_uk/variables/input/consumption/food_and_non_alcoholic_beverages_consumption.py,sha256=gtlm-ikF4-JDIQYwGb3wv9GAxLmg_iQP1kO3t1eVGf0,485
|
1340
|
+
policyengine_uk/variables/input/consumption/health_consumption.py,sha256=nEDSw7Vq0aNhT3MaDRLqJ7BwT5uTnWGmrM_thFwQVa8,416
|
1341
|
+
policyengine_uk/variables/input/consumption/household_furnishings_consumption.py,sha256=L9vX0Shm0y4C8LF3WhMtcl21cb-JkLN8hpvAfKBJEsY,461
|
1342
|
+
policyengine_uk/variables/input/consumption/housing_water_and_electricity_consumption.py,sha256=HbLU05rOU2_rTjDZ56LtoJ9sjxs5CivUR3OH2RUwYkQ,503
|
1343
|
+
policyengine_uk/variables/input/consumption/miscellaneous_consumption.py,sha256=tVLdnXUWIRiYpkzmomoztKu_cVdszuFVpbsTBVg2zWw,443
|
1344
|
+
policyengine_uk/variables/input/consumption/petrol_spending.py,sha256=Yi6K4iXwDF-LvhCDObdQMK3LlK5U3szxow50drqGfD0,356
|
1345
|
+
policyengine_uk/variables/input/consumption/recreation_consumption.py,sha256=47INd43ZzimH-SEWYIpWM2c_OMGZbjdvqQC9EmjGcDQ,428
|
1346
|
+
policyengine_uk/variables/input/consumption/restaurants_and_hotels_consumption.py,sha256=plke30Xdy_zFvjqkXOhWtVdYqE8NfwMKnWaOD5n4IdM,464
|
1347
|
+
policyengine_uk/variables/input/consumption/transport_consumption.py,sha256=5JfmRMpap6GOGZwl0PIRyUJvDaZrQyelEUE9z61GAfI,425
|
1361
1348
|
policyengine_uk/variables/input/consumption/property/README.md,sha256=IP9_pLLNXMHRMS5sEjRRqsM1nQMffQC2PJII-z-I6wI,11
|
1362
|
-
policyengine_uk/variables/input/consumption/property/council_tax.py,sha256=
|
1349
|
+
policyengine_uk/variables/input/consumption/property/council_tax.py,sha256=FrnYs0JqGW4EABFVf-keuJ1SHZ17QxKk7P0R9AKPlmI,357
|
1363
1350
|
policyengine_uk/variables/input/consumption/property/cumulative_non_residential_rent.py,sha256=rhqlRphsTMSx2Xij-B9RjSZeuLTjAyt3sx2VK66Nkf8,338
|
1364
1351
|
policyengine_uk/variables/input/consumption/property/cumulative_residential_rent.py,sha256=KMbISuubgfGaH34kJDe_tfOsKzVUHSJneDhyd-fLeI4,326
|
1365
|
-
policyengine_uk/variables/input/consumption/property/employee_pension_contributions.py,sha256=
|
1366
|
-
policyengine_uk/variables/input/consumption/property/employer_pension_contributions.py,sha256=
|
1352
|
+
policyengine_uk/variables/input/consumption/property/employee_pension_contributions.py,sha256=J8Ead71hjCZ0vktrl9MbMMgsPCWsdPWSTbVPsVYkgcU,293
|
1353
|
+
policyengine_uk/variables/input/consumption/property/employer_pension_contributions.py,sha256=tnhLfxtpBPaKnrOPBxGh_ZEYbnktPoauJe2yiTc1iro,368
|
1367
1354
|
policyengine_uk/variables/input/consumption/property/housing_service_charges.py,sha256=SlAA7a5rxn1sgSpbSYSkmBv2ayaIstQDDz2Lc-DtazY,279
|
1368
|
-
policyengine_uk/variables/input/consumption/property/maintenance_expenses.py,sha256=
|
1369
|
-
policyengine_uk/variables/input/consumption/property/mortgage_capital_repayment.py,sha256=
|
1370
|
-
policyengine_uk/variables/input/consumption/property/mortgage_interest_repayment.py,sha256=
|
1355
|
+
policyengine_uk/variables/input/consumption/property/maintenance_expenses.py,sha256=AlOm8_QM08uQfiyE8TAdLKWNRS6eOinnySwCcmD0iaI,277
|
1356
|
+
policyengine_uk/variables/input/consumption/property/mortgage_capital_repayment.py,sha256=LN_9rWK7k0LfxJy1nTSCizT-xOVn2YiufQHqJdG0rfU,287
|
1357
|
+
policyengine_uk/variables/input/consumption/property/mortgage_interest_repayment.py,sha256=v13s6wjO--fZmyRLFwQqeHrbYjTObjVTdV04E1S5sn0,365
|
1371
1358
|
policyengine_uk/variables/input/consumption/property/non_residential_rent.py,sha256=ksf_xqI_iezcZzRG4TNHDJGcPji8ar1diRmw84RKpR0,316
|
1372
|
-
policyengine_uk/variables/input/consumption/property/personal_pension_contributions.py,sha256=
|
1359
|
+
policyengine_uk/variables/input/consumption/property/personal_pension_contributions.py,sha256=dZToRCzd-0QhCE2hDnpzqIfjx_uPv2keNK4VblzbpdU,293
|
1373
1360
|
policyengine_uk/variables/input/consumption/property/property_purchased.py,sha256=an296H9Lqw2fFcQLqQeUFv5e0Y7RW0MPjU90CF4o7D0,292
|
1374
1361
|
policyengine_uk/variables/input/consumption/property/water_and_sewerage_charges.py,sha256=MQK3USx_JNPvIuKL_-kcn3AI64rqAjHvBv7tcYD6Y6I,273
|
1375
1362
|
policyengine_uk/variables/misc/in_original_frs.py,sha256=sqqMJDPkhqaWBjCXU6W06JZLge0qxVD-B-iumHs0DI0,303
|
@@ -1377,10 +1364,10 @@ policyengine_uk/variables/misc/spi_imputed.py,sha256=iPVlBF_TisM0rtKvO-3-PQ2UYCe
|
|
1377
1364
|
policyengine_uk/variables/misc/uc_migrated.py,sha256=zFNcUJaO8gwmbL1iY9GKgUt3G6J9yrCraqBV_5dCvlM,306
|
1378
1365
|
policyengine_uk/variables/misc/categories/lower_middle_or_higher.py,sha256=C54tHYz2DmOyvQYCC1bF8RJwRZinhAq_e3aYC-9F5fM,157
|
1379
1366
|
policyengine_uk/variables/misc/categories/lower_or_higher.py,sha256=81NIbLLabRr9NwjpUZDuV8IV8_mqmp5NM-CZvt55TwE,129
|
1380
|
-
policyengine_uk-2.
|
1381
|
-
policyengine_uk-2.
|
1382
|
-
policyengine_uk-2.
|
1383
|
-
policyengine_uk-2.
|
1384
|
-
policyengine_uk-2.
|
1385
|
-
policyengine_uk-2.
|
1386
|
-
policyengine_uk-2.
|
1367
|
+
policyengine_uk-2.36.0.data/data/share/openfisca/openfisca-country-template/CHANGELOG.md,sha256=atI8cKBwIzLuByemCjTrTe49wVtxQSOoqzUV2sdf7j8,55226
|
1368
|
+
policyengine_uk-2.36.0.data/data/share/openfisca/openfisca-country-template/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
|
1369
|
+
policyengine_uk-2.36.0.data/data/share/openfisca/openfisca-country-template/README.md,sha256=PCy7LRLdUDQS8U4PaeHeBVnyBZAqHv1dAVDDvEcom20,1976
|
1370
|
+
policyengine_uk-2.36.0.dist-info/METADATA,sha256=JXAeVXMsLWaQPss4LTndjK9mpCvGHJ9u2wiHlYEFpA0,3453
|
1371
|
+
policyengine_uk-2.36.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
1372
|
+
policyengine_uk-2.36.0.dist-info/licenses/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
|
1373
|
+
policyengine_uk-2.36.0.dist-info/RECORD,,
|