From 5203c3ca998777c20195ead0c04d8e8b466cbc0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mar=C3=ADa=20Juaristi?= <127882282+juaristi22@users.noreply.github.com> Date: Tue, 1 Sep 2026 16:38:07 +0200 Subject: [PATCH 1/3] Add UK childcare source packages --- .gitattributes | 2 + chronicle/bundle.py | 3 + chronicle/source_package.py | 4 + chronicle/suite.py | 47 + .../headline_figures_feeac_2011_2026.csv | 225 + .../manifest.yaml | 18 + .../Tables_and_Statistics_March_2026.ods | Bin 0 -> 321791 bytes .../manifest.yaml | 19 + docs/pe-uk-source-checklist.md | 1 + .../source_package.yaml | 62967 ++++++++++++++++ .../source_package.yaml | 8127 ++ tests/test_childcare_source_packages.py | 241 + tests/test_chronicle_bundle.py | 71 +- 13 files changed, 71712 insertions(+), 13 deletions(-) create mode 100644 .gitattributes create mode 100644 db/data/dfe/funded_early_education_childcare_2026/headline_figures_feeac_2011_2026.csv create mode 100644 db/data/dfe/funded_early_education_childcare_2026/manifest.yaml create mode 100644 db/data/hmrc/tax_free_childcare_march_2026/Tables_and_Statistics_March_2026.ods create mode 100644 db/data/hmrc/tax_free_childcare_march_2026/manifest.yaml create mode 100644 packages/dfe/funded_early_education_childcare_2026/source_package.yaml create mode 100644 packages/hmrc/tax_free_childcare_march_2026/source_package.yaml create mode 100644 tests/test_childcare_source_packages.py diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..1bac0365 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Keep pinned source artifacts byte-for-byte identical to their publishers. +db/data/dfe/funded_early_education_childcare_2026/headline_figures_feeac_2011_2026.csv -diff diff --git a/chronicle/bundle.py b/chronicle/bundle.py index 2ff756c7..514b8b12 100644 --- a/chronicle/bundle.py +++ b/chronicle/bundle.py @@ -21,6 +21,7 @@ BUNDLE_SOURCES_SCHEMA_VERSION = "ledger.bundle_sources.v1" DEFAULT_BUNDLE_SOURCES = tuple(sorted(SOURCE_PACKAGE_ALIASES)) UK_BUNDLE_SOURCE_PREFIXES = ( + "dfe", "dft", "dwp", "hmrc", @@ -36,6 +37,7 @@ "welshgov", ) UK_BUNDLE_SOURCES = ( + "dfe-funded-early-education-childcare-2026", "dft-nts-vehicle-ownership-2024", "dwp-benefit-cap-november-2025", "dwp-benefit-statistics-february-2026", @@ -59,6 +61,7 @@ "hmrc-salary-sacrifice-relief-2024-25", "hmrc-spi-income-bands-2023-24", "hmrc-spi-income-by-area-2023-24", + "hmrc-tax-free-childcare-march-2026", "hmrc-vat-firm-sector-targets-2024-25", "hmrc-vat-firm-targets-2024-25", "isc-annual-census-2023", diff --git a/chronicle/source_package.py b/chronicle/source_package.py index 993b4d9f..daa201b3 100644 --- a/chronicle/source_package.py +++ b/chronicle/source_package.py @@ -93,6 +93,7 @@ "hmrc-salary-sacrifice-reform-2029-headcounts": Path( "hmrc/salary_sacrifice_reform_2029_headcounts" ), + "hmrc-tax-free-childcare-march-2026": Path("hmrc/tax_free_childcare_march_2026"), "ici-fact-book-table-30": Path("ici/fact_book_table_30"), "isc-annual-census-2023": Path("isc/annual_census_2023"), "isc-annual-census-2024": Path("isc/annual_census_2024"), @@ -129,6 +130,9 @@ "fpb-economic-outlook-2026-2031-june-2026": Path( "fpb/economic_outlook_2026_2031_june_2026" ), + "dfe-funded-early-education-childcare-2026": Path( + "dfe/funded_early_education_childcare_2026" + ), "dft-nts-vehicle-ownership-2024": Path("dft/nts_vehicle_ownership_2024"), "dwp-benefit-cap-november-2025": Path("dwp/benefit_cap_november_2025"), "dwp-benefit-statistics-february-2026": Path( diff --git a/chronicle/suite.py b/chronicle/suite.py index 110a50f2..a94abf2f 100644 --- a/chronicle/suite.py +++ b/chronicle/suite.py @@ -949,6 +949,12 @@ def _row_semantic_evidence_issues( if not matched_values: if _filter_evidenced_by_source_cells(cells, variable, value): continue + if _wide_table_filter_evidenced_by_source_column( + fact, + variable, + value, + ): + continue issues.append( AgentAcceptanceIssue( code="row_filter_not_evidenced", @@ -981,6 +987,8 @@ def _row_semantic_evidence_issues( continue if _constraint_evidenced_by_source_cells(cells, constraint): continue + if _wide_table_constraint_evidenced_by_source_column(fact, constraint): + continue matched_values = _source_row_values(rows, constraint.variable) if not matched_values: issues.append( @@ -1012,6 +1020,45 @@ def _row_semantic_evidence_issues( return issues +WIDE_TABLE_SOURCE_COLUMN_DIMENSIONS = { + "eligibilitybasis", + "provision", + "receptionstatus", + "registrationbasis", + "registrationstatus", +} + + +def _wide_table_filter_evidenced_by_source_column( + fact: AggregateFact, + variable: str, + expected: Any, +) -> bool: + """Accept categorical dimensions printed in a wide-table column name.""" + if _normalize_semantic_name(variable) not in WIDE_TABLE_SOURCE_COLUMN_DIMENSIONS: + return False + source_column_id = fact.layout.source_column_id if fact.layout else None + if not source_column_id: + return False + expected_name = _normalize_semantic_name(str(expected)) + return bool(expected_name) and expected_name in _normalize_semantic_name( + source_column_id + ) + + +def _wide_table_constraint_evidenced_by_source_column( + fact: AggregateFact, + constraint: Any, +) -> bool: + if constraint.operator != "==": + return False + return _wide_table_filter_evidenced_by_source_column( + fact, + str(constraint.variable), + constraint.value, + ) + + def _constraint_evidenced_by_source_cells( cells: list[SourceCell], constraint: Any, diff --git a/db/data/dfe/funded_early_education_childcare_2026/headline_figures_feeac_2011_2026.csv b/db/data/dfe/funded_early_education_childcare_2026/headline_figures_feeac_2011_2026.csv new file mode 100644 index 00000000..c58e46b9 --- /dev/null +++ b/db/data/dfe/funded_early_education_childcare_2026/headline_figures_feeac_2011_2026.csv @@ -0,0 +1,225 @@ +time_period,time_identifier,geographic_level,country_code,country_name,entitlement_type,age,registered_children_count,registered_children_nursery_count,registered_children_reception_count,eligible_children_count,eligible_children_nursery_count,eligible_children_universal_credit_count,eligible_children_legacy_benefit_count,registered_eligible_children_percent,registered_eligible_children_nursery_percent,all_children_count,registered_all_children_percent,providers_count,state_funded_schools_count,private_and_voluntary_providers_count,independent_schools_count,local_authority_day_nurseries_count,childminders_count,state_funded_governor_run_count,other_private_voluntary_and_independent_count,staff_count +2026,Reporting year,National,E92000001,England,Total,Total,1714427,x,x,z,x,z,z,z,x,2539433.484,67.512184,55340,16704,17322,795,401,19185,669,264,286675 +2026,Reporting year,National,E92000001,England,Working parents,Total,890483,x,x,1052000,x,z,z,85,x,2539433.484,35.066207,45822,7849,17161,547,382,18995,638,250,x +2026,Reporting year,National,E92000001,England,Working parents,9 to 11 months,30679,x,x,66000,x,z,z,46,x,135865,22.580503,13164,57,8406,83,172,4342,30,74,x +2026,Reporting year,National,E92000001,England,Working parents,1 year,210825,x,x,278000,x,z,z,76,x,571240.0346,36.906552,27768,153,11989,139,236,15070,59,122,x +2026,Reporting year,National,E92000001,England,Working parents,2 years,260238,x,x,283000,x,z,z,92,x,582143.2742,44.703428,34196,1984,16486,346,324,14499,340,217,x +2026,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,501742,x,x,627000,x,z,z,80,x,1289248.309,38.917406,38421,1988,16675,349,344,18486,360,219,x +2026,Reporting year,National,E92000001,England,Working parents,3 years,278490,x,x,297000,x,z,z,94,x,610427.2066,45.622147,35471,7605,16306,436,325,10007,564,228,x +2026,Reporting year,National,E92000001,England,Working parents,4 years,110251,x,x,128000,x,z,z,86,x,639757.9688,17.233236,26974,7188,14419,451,276,3936,515,189,x +2026,Reporting year,National,E92000001,England,Working parents,3 to 4 years,388741,x,x,425000,x,z,z,91,x,1250185.175,31.094674,37184,7809,16457,491,330,11286,579,232,x +2026,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,85629,x,x,119598,x,116929,2669,71.597351,x,582143.2742,14.709266,18786,2462,12678,139,263,2849,237,158,x +2026,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,85629,x,x,119598,x,116929,2669,71.597351,x,582143.2742,14.709266,18786,2462,12678,139,263,2849,237,158,x +2026,Reporting year,National,E92000001,England,Universal,Total,1127056,751322,375718,1250185.175,874467.1754,z,z,90.151125,85.91769,1250185.175,90.151125,46782,16703,16897,782,358,11178,611,253,x +2026,Reporting year,National,E92000001,England,Universal,3 years,535220,535209,5,610427.2066,610422.2066,z,z,87.679578,87.678494,610427.2066,87.679578,37869,9000,16856,703,356,10097,606,251,x +2026,Reporting year,National,E92000001,England,Universal,4 years,591836,216113,375713,639757.9688,264044.9688,z,z,92.50936,81.847043,639757.9688,92.50936,38360,16697,15952,772,326,3827,560,226,x +2025,Reporting year,National,E92000001,England,Total,Total,1717085,x,x,z,x,z,z,z,x,2594300.989,66.186807,55020,16757,17792,785,278,18546,840,22,272491 +2025,Reporting year,National,E92000001,England,Working parents,Total,845741,x,x,1082000,x,z,z,78,x,2594300.989,32.599957,44827,7366,17572,538,262,18267,803,19,x +2025,Reporting year,National,E92000001,England,Working parents,9 to 11 months,29155,x,x,67000,x,z,z,44,x,136292,21.391571,12424,32,8045,73,91,4158,25,0,x +2025,Reporting year,National,E92000001,England,Working parents,1 year,195104,x,x,283000,x,z,z,69,x,579283.9556,33.680201,26239,106,11685,113,148,14130,53,4,x +2025,Reporting year,National,E92000001,England,Working parents,2 years,242453,x,x,297000,x,z,z,82,x,608555.1105,39.840763,32434,1338,16715,327,207,13426,407,14,x +2025,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,466712,x,x,647000,x,z,z,72,x,1324131.066,35.246662,36864,1344,16937,328,223,17603,415,14,x +2025,Reporting year,National,E92000001,England,Working parents,3 years,278640,x,x,312000,x,z,z,89,x,638657.5107,43.629018,35307,7167,16527,419,221,10218,740,15,x +2025,Reporting year,National,E92000001,England,Working parents,4 years,100389,x,x,123000,x,z,z,81,x,631512.4121,15.8966,26010,6714,14382,415,191,3638,656,14,x +2025,Reporting year,National,E92000001,England,Working parents,3 to 4 years,379029,x,x,435000,x,z,z,87,x,1270169.923,29.840811,36832,7333,16730,468,226,11306,753,16,x +2025,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,95031,x,x,145824,x,140277,5547,65.168285,x,608555.1105,15.615841,19008,2129,13418,134,213,2808,299,7,x +2025,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,95031,x,x,145824,x,140277,5547,65.168285,x,608555.1105,15.615841,19008,2129,13418,134,213,2808,299,7,x +2025,Reporting year,National,E92000001,England,Universal,Total,1155342,775994,379311,1270169.923,890858.9228,z,z,90.959641,87.106272,1270169.923,90.959641,47337,16756,17379,779,252,11351,798,22,x +2025,Reporting year,National,E92000001,England,Universal,3 years,565961,565954,3,638657.5107,638654.5107,z,z,88.617293,88.616614,638657.5107,88.617293,38253,8668,17335,716,251,10477,789,17,x +2025,Reporting year,National,E92000001,England,Universal,4 years,589381,210040,379308,631512.4121,252204.4121,z,z,93.32849,83.281652,631512.4121,93.32849,38365,16750,16364,769,234,3495,737,16,x +2024,Reporting year,National,E92000001,England,Total,Total,1285393,x,x,z,x,z,z,z,x,1900554.742,67.632517,49194,16782,17511,807,277,12943,818,56,254285 +2024,Reporting year,National,E92000001,England,Working parents,Total,361790,x,x,430000,x,z,z,84,x,1270734.935,28.470926,35584,7065,16485,443,223,10575,740,53,x +2024,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2024,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2024,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2024,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2024,Reporting year,National,E92000001,England,Working parents,3 years,259103,x,x,305000,x,z,z,85,x,623155.0534,41.579218,33874,6900,16232,381,219,9362,729,51,x +2024,Reporting year,National,E92000001,England,Working parents,4 years,102687,x,x,125000,x,z,z,82,x,647579.8812,15.85704,25979,6522,14488,403,194,3670,659,43,x +2024,Reporting year,National,E92000001,England,Working parents,3 to 4 years,361790,x,x,430000,x,z,z,84,x,1270734.935,28.470926,35584,7065,16485,443,223,10575,740,53,x +2024,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,115852,x,x,154957,x,135850,19107,74.763967,x,629819.8071,18.394468,20613,1880,14226,123,222,3808,314,40,x +2024,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,115852,x,x,154957,x,135850,19107,74.763967,x,629819.8071,18.394468,20613,1880,14226,123,222,3808,314,40,x +2024,Reporting year,National,E92000001,England,Universal,Total,1169541,778327,391177,1270734.935,879557.9345,z,z,92.036582,88.490703,1270734.935,92.036582,46348,16782,17299,805,262,10364,784,52,x +2024,Reporting year,National,E92000001,England,Universal,3 years,559825,559813,7,623155.0534,623148.0534,z,z,89.837192,89.836275,623155.0534,89.837192,36997,8545,17248,730,259,9387,779,49,x +2024,Reporting year,National,E92000001,England,Universal,4 years,609716,218514,391170,647579.8812,256409.8812,z,z,94.153018,85.220585,647579.8812,94.153018,38409,16772,16378,792,237,3437,743,50,x +2023,Reporting year,National,E92000001,England,Total,Total,1320242,x,x,z,x,z,z,z,x,1876239.346,70.366396,49898,16794,17904,817,292,13173,889,29,250662 +2023,Reporting year,National,E92000001,England,Working parents,Total,362982,x,x,452000,x,z,z,80,x,1269736.277,28.587196,35753,6769,16728,443,229,10766,794,24,x +2023,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2023,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2023,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2023,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2023,Reporting year,National,E92000001,England,Working parents,3 years,260586,x,x,327000,x,z,z,80,x,631107.4063,41.290278,33965,6622,16488,383,227,9437,784,24,x +2023,Reporting year,National,E92000001,England,Working parents,4 years,102396,x,x,126000,x,z,z,81,x,638628.8712,16.033725,25997,6204,14632,396,203,3847,694,21,x +2023,Reporting year,National,E92000001,England,Working parents,3 to 4 years,362982,x,x,452000,x,z,z,80,x,1269736.277,28.587196,35753,6769,16728,443,229,10766,794,24,x +2023,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,124211,x,x,167976,x,141942,26034,73.945683,x,606503.0684,20.479863,21064,1905,14615,130,223,3816,355,20,x +2023,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,124211,x,x,167976,x,141942,26034,73.945683,x,606503.0684,20.479863,21064,1905,14615,130,223,3816,355,20,x +2023,Reporting year,National,E92000001,England,Universal,Total,1196031,800129,395860,1269736.277,873876.2775,z,z,94.195229,91.560902,1269736.277,94.195229,46719,16794,17676,815,275,10289,843,27,x +2023,Reporting year,National,E92000001,England,Universal,3 years,576886,576871,11,631107.4063,631096.4063,z,z,91.40853,91.407746,631107.4063,91.40853,37201,8475,17621,735,275,9232,836,27,x +2023,Reporting year,National,E92000001,England,Universal,4 years,619145,223258,395849,638628.8712,242779.8712,z,z,96.949109,91.959024,638628.8712,96.949109,38829,16782,16712,810,250,3453,799,23,x +2022,Reporting year,National,E92000001,England,Total,Total,1347644,x,x,z,x,z,z,z,x,1879259.827,71.711425,51323,16809,18526,806,230,13919,942,91,249263 +2022,Reporting year,National,E92000001,England,Working parents,Total,348126,x,x,425000,x,z,z,82,x,1263562.166,27.551157,36346,6428,17125,417,178,11280,841,77,x +2022,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2022,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2022,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2022,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2022,Reporting year,National,E92000001,England,Working parents,3 years,249388,x,x,308000,x,z,z,81,x,623763.8674,39.981155,34351,6282,16801,362,175,9834,821,76,x +2022,Reporting year,National,E92000001,England,Working parents,4 years,98738,x,x,117000,x,z,z,84,x,639798.2989,15.432676,26049,5897,14758,378,154,4049,748,65,x +2022,Reporting year,National,E92000001,England,Working parents,3 to 4 years,348126,x,x,425000,x,z,z,82,x,1263562.166,27.551157,36346,6428,17125,417,178,11280,841,77,x +2022,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,135410,x,x,188318,x,148298,40020,71.904969,x,615697.6604,21.992937,22136,1897,15274,118,194,4180,399,74,x +2022,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,135410,x,x,188318,x,148298,40020,71.904969,x,615697.6604,21.992937,22136,1897,15274,118,194,4180,399,74,x +2022,Reporting year,National,E92000001,England,Universal,Total,1212234,809512,402694,1263562.166,860868.1663,z,z,95.93782,94.034375,1263562.166,95.93782,47720,16809,18245,805,214,10658,903,86,x +2022,Reporting year,National,E92000001,England,Universal,3 years,582295,582288,6,623763.8674,623757.8674,z,z,93.351832,93.351608,623763.8674,93.351832,37970,8346,18175,723,214,9530,897,85,x +2022,Reporting year,National,E92000001,England,Universal,4 years,629939,227224,402688,639798.2989,237110.2989,z,z,98.458999,95.830506,639798.2989,98.458999,39488,16804,17172,799,192,3573,869,79,x +2021,Reporting year,National,E92000001,England,Total,Total,1336534,x,x,z,x,z,z,z,x,1905083.012,70.156208,52445,16789,18653,809,183,14816,889,306,243710 +2021,Reporting year,National,E92000001,England,Working parents,Total,328662,x,x,432000,x,z,z,76,x,1286697.826,25.54306,36340,6021,16931,394,137,11839,762,256,x +2021,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2021,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2021,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2021,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2021,Reporting year,National,E92000001,England,Working parents,3 years,234996,x,x,313000,x,z,z,75,x,634638.5903,37.028319,34031,5864,16589,336,135,10125,744,238,x +2021,Reporting year,National,E92000001,England,Working parents,4 years,93666,x,x,119000,x,z,z,79,x,652059.2361,14.364646,25628,5471,14478,364,111,4362,662,180,x +2021,Reporting year,National,E92000001,England,Working parents,3 to 4 years,328662,x,x,432000,x,z,z,76,x,1286697.826,25.54306,36340,6021,16931,394,137,11839,762,256,x +2021,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,124543,x,x,201562,x,136979,64583,61.788928,x,618385.1859,20.140036,21922,1742,15078,118,168,4245,385,186,x +2021,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,124543,x,x,201562,x,136979,64583,61.788928,x,618385.1859,20.140036,21922,1742,15078,118,168,4245,385,186,x +2021,Reporting year,National,E92000001,England,Universal,Total,1211991,800108,411844,1286697.826,874853.8264,z,z,94.193911,91.456193,1286697.826,94.193911,48839,16789,18392,807,171,11574,836,270,x +2021,Reporting year,National,E92000001,England,Universal,3 years,574845,574830,11,634638.5903,634627.5903,z,z,90.578324,90.577531,634638.5903,90.578324,38760,8220,18316,727,170,10235,831,261,x +2021,Reporting year,National,E92000001,England,Universal,4 years,637146,225278,411833,652059.2361,240226.2361,z,z,97.712902,93.777434,652059.2361,97.712902,39914,16784,17204,801,149,3997,788,191,x +2020,Reporting year,National,E92000001,England,Total,Total,1414983,x,x,z,x,z,z,z,x,1948051.146,72.635824,53934,16788,18822,808,329,15898,403,886,256379 +2020,Reporting year,National,E92000001,England,Working parents,Total,345704,x,x,440000,x,z,z,79,x,1310666.668,26.376195,37597,5801,17176,391,250,12884,354,741,x +2020,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2020,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2020,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2020,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2020,Reporting year,National,E92000001,England,Working parents,3 years,248399,x,x,321000,x,z,z,77,x,653992.3445,37.981943,35274,5676,16857,337,238,11118,347,701,x +2020,Reporting year,National,E92000001,England,Working parents,4 years,97305,x,x,119000,x,z,z,82,x,656674.323,14.817848,26316,5294,14745,354,204,4784,300,635,x +2020,Reporting year,National,E92000001,England,Working parents,3 to 4 years,345704,x,x,440000,x,z,z,79,x,1310666.668,26.376195,37597,5801,17176,391,250,12884,354,741,x +2020,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,143439,x,x,207392,x,87140,120252,69.163227,x,637384.4785,22.504313,22572,1734,15375,118,259,4403,215,468,x +2020,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,143439,x,x,207392,x,87140,120252,69.163227,x,637384.4785,22.504313,22572,1734,15375,118,259,4403,215,468,x +2020,Reporting year,National,E92000001,England,Universal,Total,1271544,857137,414352,1310666.668,896314.6676,z,z,97.015056,95.629028,1310666.668,97.015056,49397,16788,18502,807,288,11809,382,821,x +2020,Reporting year,National,E92000001,England,Universal,3 years,621351,621318,19,653992.3445,653973.3445,z,z,95.00891,95.006625,653992.3445,95.00891,39325,8170,18425,737,287,10512,381,813,x +2020,Reporting year,National,E92000001,England,Universal,4 years,650193,235819,414333,656674.323,242341.323,z,z,99.013008,97.308621,656674.323,99.013008,40066,16786,17254,796,256,3859,356,759,x +2019,Reporting year,National,E92000001,England,Total,Total,1425888,x,x,z,x,z,z,z,x,1971665.94,72.318945,53832,16760,19258,832,460,15661,x,861,261919 +2019,Reporting year,National,E92000001,England,Working parents,Total,328127,x,x,425000,x,z,z,77,x,1315386.334,24.945295,36561,5329,17220,385,366,12562,x,699,x +2019,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2019,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2019,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2019,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2019,Reporting year,National,E92000001,England,Working parents,3 years,236087,x,x,311000,x,z,z,76,x,658455.1615,35.854681,34210,5201,16856,319,352,10806,x,676,x +2019,Reporting year,National,E92000001,England,Working parents,4 years,92040,x,x,114000,x,z,z,81,x,656931.1728,14.0106,25550,4892,14657,344,318,4762,x,577,x +2019,Reporting year,National,E92000001,England,Working parents,3 to 4 years,328127,x,x,425000,x,z,z,77,x,1315386.334,24.945295,36561,5329,17220,385,366,12562,x,699,x +2019,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,148751,x,x,219316,x,32867,186449,67.824965,x,656279.6061,22.665797,22744,1662,15741,127,347,4447,x,420,x +2019,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,148751,x,x,219316,x,32867,186449,67.824965,x,656279.6061,22.665797,22744,1662,15741,127,347,4447,x,420,x +2019,Reporting year,National,E92000001,England,Universal,Total,1277137,861736,415343,1315386.334,900043.3344,z,z,97.09216,95.743834,1315386.334,97.09216,48954,16760,18914,830,407,11260,x,783,x +2019,Reporting year,National,E92000001,England,Universal,3 years,625658,625602,42,658455.1615,658413.1615,z,z,95.019074,95.01663,658455.1615,95.019074,38837,8080,18829,753,406,9994,x,775,x +2019,Reporting year,National,E92000001,England,Universal,4 years,651479,236134,415301,656931.1728,241630.1728,z,z,99.170054,97.725378,656931.1728,99.170054,39901,16753,17602,813,369,3673,x,691,x +2018,Reporting year,National,E92000001,England,Total,Total,1439594,x,x,z,x,z,z,z,x,1982394.943,72.61893,53582,16723,19290,813,425,15083,x,1248,254361 +2018,Reporting year,National,E92000001,England,Working parents,Total,296924,x,x,405000,x,z,z,73,x,1322233.551,22.456245,34915,4679,16869,339,311,11741,x,976,x +2018,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2018,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2018,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2018,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2018,Reporting year,National,E92000001,England,Working parents,3 years,216096,x,x,295000,x,z,z,73,x,658521.7711,32.815316,32801,4555,16501,290,307,10211,x,937,x +2018,Reporting year,National,E92000001,England,Working parents,4 years,80828,x,x,110000,x,z,z,74,x,663711.7798,12.178178,23646,4220,14046,292,260,4095,x,733,x +2018,Reporting year,National,E92000001,England,Working parents,3 to 4 years,296924,x,x,405000,x,z,z,73,x,1322233.551,22.456245,34915,4679,16869,339,311,11741,x,976,x +2018,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,154962,x,x,215879,x,0,215879,71.781878,x,660161.3925,23.473351,22828,1601,15761,125,342,4299,x,700,x +2018,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,154962,x,x,215879,x,0,215879,71.781878,x,660161.3925,23.473351,22828,1601,15761,125,342,4299,x,700,x +2018,Reporting year,National,E92000001,England,Universal,Total,1284632,865402,419176,1322233.551,903057.5508,z,z,97.15621,95.830216,1322233.551,97.15621,48529,16722,18927,810,382,10551,x,1137,x +2018,Reporting year,National,E92000001,England,Universal,3 years,628503,628476,16,658521.7711,658505.7711,z,z,95.441491,95.43971,658521.7711,95.441491,38621,8037,18853,732,382,9491,x,1126,x +2018,Reporting year,National,E92000001,England,Universal,4 years,656129,236926,419160,663711.7798,244551.7798,z,z,98.857519,96.881732,663711.7798,98.857519,39434,16713,17465,798,336,3143,x,979,x +2017,Reporting year,National,E92000001,England,Total,Total,1480907,x,x,z,x,z,z,z,x,2021847.78,73.245227,x,x,x,x,x,x,x,x,x +2017,Reporting year,National,E92000001,England,Working parents,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Working parents,3 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Working parents,4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Working parents,3 to 4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,163249,x,x,230892,x,0,230892,70.703619,x,660228.9254,24.726121,x,x,x,x,x,x,x,x,x +2017,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,163249,x,x,230892,x,0,230892,70.703619,x,660228.9254,24.726121,x,x,x,x,x,x,x,x,x +2017,Reporting year,National,E92000001,England,Universal,Total,1317658,x,x,1361618.855,x,z,z,96.771427,x,1361618.855,96.771427,x,x,x,x,x,x,x,x,x +2017,Reporting year,National,E92000001,England,Universal,3 years,632331,x,x,665008.0522,x,z,z,95.086217,x,665008.0522,95.086217,x,x,x,x,x,x,x,x,x +2017,Reporting year,National,E92000001,England,Universal,4 years,685327,x,x,696610.8024,x,z,z,98.380186,x,696610.8024,98.380186,x,x,x,x,x,x,x,x,x +2016,Reporting year,National,E92000001,England,Total,Total,1506355,x,x,z,x,z,z,z,x,2052444.766,73.393205,x,x,x,x,x,x,x,x,x +2016,Reporting year,National,E92000001,England,Working parents,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Working parents,3 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Working parents,4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Working parents,3 to 4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,166924,x,x,246085,x,0,246085,67.831847,x,665277.9188,25.090867,x,x,x,x,x,x,x,x,x +2016,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,166924,x,x,246085,x,0,246085,67.831847,x,665277.9188,25.090867,x,x,x,x,x,x,x,x,x +2016,Reporting year,National,E92000001,England,Universal,Total,1339431,x,x,1387166.847,x,z,z,96.558752,x,1387166.847,96.558752,x,x,x,x,x,x,x,x,x +2016,Reporting year,National,E92000001,England,Universal,3 years,660428,x,x,696745.7615,x,z,z,94.787516,x,696745.7615,94.787516,x,x,x,x,x,x,x,x,x +2016,Reporting year,National,E92000001,England,Universal,4 years,679003,x,x,690421.0859,x,z,z,98.346214,x,690421.0859,98.346214,x,x,x,x,x,x,x,x,x +2015,Reporting year,National,E92000001,England,Total,Total,1478933,x,x,z,x,z,z,z,x,2072485.842,71.360343,x,x,x,x,x,x,x,x,x +2015,Reporting year,National,E92000001,England,Working parents,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Working parents,3 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Working parents,4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Working parents,3 to 4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,157036,x,x,269777,x,0,269777,58.209558,x,695861.8141,22.567124,x,x,x,x,x,x,x,x,x +2015,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,157036,x,x,269777,x,0,269777,58.209558,x,695861.8141,22.567124,x,x,x,x,x,x,x,x,x +2015,Reporting year,National,E92000001,England,Universal,Total,1321897,x,x,1376624.028,x,z,z,96.024548,x,1376624.028,96.024548,x,x,x,x,x,x,x,x,x +2015,Reporting year,National,E92000001,England,Universal,3 years,646674,x,x,688946.6265,x,z,z,93.864165,x,688946.6265,93.864165,x,x,x,x,x,x,x,x,x +2015,Reporting year,National,E92000001,England,Universal,4 years,675223,x,x,687677.4015,x,z,z,98.188918,x,687677.4015,98.188918,x,x,x,x,x,x,x,x,x +2014,Reporting year,National,E92000001,England,Total,Total,1299908,x,x,z,x,z,z,z,x,1357281.491,95.772911,x,x,x,x,x,x,x,x,x +2014,Reporting year,National,E92000001,England,Working parents,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Working parents,3 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Working parents,4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Working parents,3 to 4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Universal,Total,1299908,x,x,1357281.491,x,z,z,95.772911,x,1357281.491,95.772911,x,x,x,x,x,x,x,x,x +2014,Reporting year,National,E92000001,England,Universal,3 years,641231,x,x,685217.002,x,z,z,93.580719,x,685217.002,93.580719,x,x,x,x,x,x,x,x,x +2014,Reporting year,National,E92000001,England,Universal,4 years,658677,x,x,672064.4885,x,z,z,98.008005,x,672064.4885,98.008005,x,x,x,x,x,x,x,x,x +2013,Reporting year,National,E92000001,England,Total,Total,1283497,x,x,z,x,z,z,z,x,1342766.429,95.586021,x,x,x,x,x,x,x,x,x +2013,Reporting year,National,E92000001,England,Working parents,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Working parents,3 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Working parents,4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Working parents,3 to 4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Universal,Total,1283497,x,x,1342766.429,x,z,z,95.586021,x,1342766.429,95.586021,x,x,x,x,x,x,x,x,x +2013,Reporting year,National,E92000001,England,Universal,3 years,625307,x,x,669351.4219,x,z,z,93.419836,x,669351.4219,93.419836,x,x,x,x,x,x,x,x,x +2013,Reporting year,National,E92000001,England,Universal,4 years,658190,x,x,673415.0071,x,z,z,97.739135,x,673415.0071,97.739135,x,x,x,x,x,x,x,x,x +2012,Reporting year,National,E92000001,England,Total,Total,1264416,x,x,z,x,z,z,z,x,1328609.861,95.168344,x,x,x,x,x,x,x,x,x +2012,Reporting year,National,E92000001,England,Working parents,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Working parents,3 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Working parents,4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Working parents,3 to 4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Universal,Total,1264416,x,x,1328609.861,x,z,z,95.168344,x,1328609.861,95.168344,x,x,x,x,x,x,x,x,x +2012,Reporting year,National,E92000001,England,Universal,3 years,625442,x,x,670729.0221,x,z,z,93.24809,x,670729.0221,93.24809,x,x,x,x,x,x,x,x,x +2012,Reporting year,National,E92000001,England,Universal,4 years,638974,x,x,657880.8393,x,z,z,97.1261,x,657880.8393,97.1261,x,x,x,x,x,x,x,x,x +2011,Reporting year,National,E92000001,England,Total,Total,1224465,x,x,z,x,z,z,z,x,z,z,x,x,x,x,x,x,x,x,x +2011,Reporting year,National,E92000001,England,Working parents,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Working parents,3 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Working parents,4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Working parents,3 to 4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Universal,Total,1224465,x,x,x,x,z,z,x,x,x,x,x,x,x,x,x,x,x,x,x +2011,Reporting year,National,E92000001,England,Universal,3 years,604315,x,x,x,x,z,z,x,x,x,x,x,x,x,x,x,x,x,x,x +2011,Reporting year,National,E92000001,England,Universal,4 years,620150,x,x,x,x,z,z,x,x,x,x,x,x,x,x,x,x,x,x,x diff --git a/db/data/dfe/funded_early_education_childcare_2026/manifest.yaml b/db/data/dfe/funded_early_education_childcare_2026/manifest.yaml new file mode 100644 index 00000000..d83b62f1 --- /dev/null +++ b/db/data/dfe/funded_early_education_childcare_2026/manifest.yaml @@ -0,0 +1,18 @@ +source_id: dfe +package_id: dfe-funded-early-education-childcare-2026 +dataset: dfe_dfe-funded-early-education-childcare-2026 +source_page: https://explore-education-statistics.service.gov.uk/find-statistics/funded-early-education-and-childcare/2026 +table: Funded early education and childcare 2026, Headline figures +files: + 2026: + filename: headline_figures_feeac_2011_2026.csv + source_url: https://api.education.gov.uk/statistics/v1/data-sets/019efe34-f746-72db-a258-06676f74ce09/csv + sha256: cefdb06593016446d215433cf31f80649b8ce18f89e454a5ad7931b0ab32d72d + size_bytes: 33467 + fetched_at: '2026-09-01T13:03:30+00:00' + storage: + r2: + provider: r2 + bucket: ledger-raw + key: raw/dfe/dfe-funded-early-education-childcare-2026/2026/cefdb06593016446d215433cf31f80649b8ce18f89e454a5ad7931b0ab32d72d/headline_figures_feeac_2011_2026.csv + uri: r2://ledger-raw/raw/dfe/dfe-funded-early-education-childcare-2026/2026/cefdb06593016446d215433cf31f80649b8ce18f89e454a5ad7931b0ab32d72d/headline_figures_feeac_2011_2026.csv diff --git a/db/data/hmrc/tax_free_childcare_march_2026/Tables_and_Statistics_March_2026.ods b/db/data/hmrc/tax_free_childcare_march_2026/Tables_and_Statistics_March_2026.ods new file mode 100644 index 0000000000000000000000000000000000000000..74fe5c30b25f010ad1b73669ec8eaf62ed11b28b GIT binary patch literal 321791 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

QYus z2&GI$d}#wX6~_mm!TIxw9LNrm|F{zEFpZ!Tze_$iF4YHC8}?1 z=P~qpfcSUE;0F}djB2A6We)X|e$E{~NpcO^@N*#%(DXqC*Ij!4=$q}`#Lw>~!DDr4 zKSrgr>Fy?>{)p8-tPTbE3>E)An zOAv{NW}}^5$3L4^Y@BrI$m|0G8xx8p+c=GoIo~jip8ZJ$FNcc5 zPd;9F&XbEz#J+K{Bd(+^+DO;oi_v>Cg#hIErODc-A((tQ)R^7)=+U6sZzzIlrc38T z#7}P9bAbWktJ<(3!rA6uOL9RA&jw(%fIq;F2ZWSDZ?`3~4HLHuf5O=a)gYQFhArRs z;XpZ$+C^i>Iqnm1_^=t~PIlMx;J-MF>L-;P-^a$+KOX{CKJDreYx3+XLm1~6 z!(&xD=RCCYQSXauRpd(zR1giCZWx4~j#@`-x~ZV%P_d82X@S2{wneTqq99*`^N}}i zFfCj``jrzn4SG0dc30_|@y?|I&wdXJQUt56uM8iY+2va1qhUZuDd%;1S}ZJrS`XP3 z`h-~^ONQDE&!|N-g;o<)=$`g%`Fz0;s2j7dXM0PK6Ur~u4FxH>iq{zIf9nipi8A(x zRA(1g2)@0OR;W%fXhM_I8zD`|r^W3h&LlmvFo+$IbI1f^9%r^}mjit4#qY)HuvQOE z0_pOJrLZFQgzlt7j<1Z}zHyDM{avX9|0+)pjE)e?5~=sdL=4;9H^`YcgC@x7;6~)n zdSFgcPcPsY#Ep`~#Fi{Foc{>5*7dTGKtZn8CNMu&#tI8y2-Vc;JxIYkx324`o`03@ zyNUavk}6sei5RaLFxg<>tOovg9od4fK8@8W?8R(6<9l}NtW$sC`Qxmx8S{Ig>e%dxzO1)2|^=C=oY*5+vT&uuCxkW-l!|;xonW`@tlb0qO z1oUcDI4LrktG6jBFwE2R#|#LE=G7WAb5yaW2gA0K4^K)U5y&s zsHql*0<+Cp&o7!2LJOwsU0}?J^ohwee_f89**`usSKJR@Z)!g_b5+}-81`Ve zVN%D1_cw+X);G&1VTRXrNl5eRXm7==Rv-TC{W{|%kV+DogE=T8ug=8@LRD$p76(^& zjK_kgPLCy`Q(CwY6JyL+AGW}%7T13b`1 z!9Hms7mWT0yYDL7lS?dmcuo=Xs#)L{^%xBc0ryzp1UJ0|0sJ(?^#yGCd4PB)+EFCHwS+h>(_#<@KRv!GNPBTab?YEvaZAKQ6CyiXPzB3;xcvnD1i=LdGfOMPiCP*t_62|4HTnM?%pB?)?*qy+AdDY5yCM6TQ2 zv?~0tu_9CPEA$2q>oeF`8cHO}NrSFe{oeO{J!p^k>e!Ut;B}t$ddkb3q1AR-1Rv?E zGt2LRSEiSdk@D`q=+G>h)a@OIPjUZv`1Ry4=hme2FR^CN*;(zWg%KsjWnz~hdGaTHP3$~Mh>6j|cupUN`;fqK>D6`p?P1GMJE=}*GYM;MS z9v|GeY|j%tIGd1+f)8r?1ldqk9<0V*VmhjrGA^W_-CQOP}}op ztHpQS7jan`>ED7C)iS+t+8_ZNy>pIggX!8ehx3( z&Lk+FNG&=aE^U9NRsL>xEI#C}Ock#R6o_gSB(pY;t8;YM+Sa^^M9d5}r0#ryZPdPj z_w!4ly`J4oR|bn)4Dr90dwc2MmTA+2O|Z}V=~KjtY5jaaY!l++4K9n*fAt*SG2w?4 z$m0k6qWa~2XNlq_)N$xAFeeAU2f0UWEfl__2IH5{*lm=I*?*xk)+)vBU{qeDM?28T zgDm}WIbkp+XU8JkH1xStGQ`VXkEX&ymud@$Ek(?#`bW-si%IkVYVUpJaa-Tnf z{AvU&o-jw3X-JM&FPn$EMY}nbJ_eT|2HftLa`?$=yKCmDt; zZfG{etc|E2CIeL=w}k3PER(Ys%>qmU;|ms-e_AD;)fowYP2w?@-1%plh^PGyBqSiw z8kPIGJRG6YYD=@;m-`PWO_|G0HC6b7YD+;%9mfu>=EG~ys(W4c<$U`7_{%Zq!K8RF z{}UTKx?eAd5h?&%rafu^rv}4Z4ovCxq}-_>Cx>+tOV{c94vy}^v(ieA-Kagt_O8B8Mp;rtvgx2*o6A2IK!ZWcLN+7&I(%3 zD5MFtxX^K>@Oa^mI(M2d93R1llZQai$HWEKb)S3t!8~+}-5g&Bm8Oi_6lgtV&OrSz z`s;vBg`7Mw#g3ce+cz?&M#=kz zmUGdd^U{3>14on9m@dGWx%%Ga=P&uKd-+4v_u@+xW~7LPc9*d@|JLcE^}jAgn!IGB zL{ACKhY}bX=S-s~jPpZunx(%FOIqtWhPbc0@ zePBFu6q1LYskm|8j~;(vGtI4@sONyf&RfImrxVZ454{?{E;387_O)Ft@;tJZ8v&7e z+vPB0vx>Y%GKhdR)~~W6Bp%f9-^ju{&c1$}UJUo8nDC#%+#z&6cTbNkDRN+(#Jn0= z5Denu^eZLu*32h3#M`?N#R_|l8z=i&MV<`}oM5-V+6kI8Y4=AihFb8_3ArUso@L0s zRMyk48Zdnx3$UMrEpoRmKr%GGX57}6cWz(Rmh|*+PLz%?dqAR46*x58xy@rOm|Zbp zS5$lL!j}f`sm0X?dA!_UqN9poDT{=&`1UR;peDOej8FP)HU6)UP8}A#HHiG-^X8Fp zIAq}BPxT5RZ9Y}ovgy=MWBrct3c|EwD5c8{60vfk1D1lr@z%xGsM^zXeA9Md|;Scd8*m<^aW4=BBg$XuV2TH4XMEwbF&H|;c8 z&{vKNk!7)+R-X+1lPBtEeZC>p{bRb80r}&1%k(;7`8dyPkKn0eHbTsHfzSDuvj8%| zA3!rl^lD(f89lC~(;9(|t3vAN3N?DB2i855I-iDl)wQ`>%;QBmNjy7{vpSU36>zjs z!ZL;wTS-G%F%7RPvpMzXrNQ9c@;n2W*{FY@R8=pVukL}VhC$=}L}PU&Wc6LI^W*SK z%;{kX%BLw}@8mLX0k`x9eR?s#RWtqwC{mkC6yuGn-d9&EWb)Ckad{89Bbeo*zCsg~ zm>7~bjM$}Hjkf-rcc`c(((;~CbqI+lfvfB9;fLTKYg{!1&MgBA8tsod zBFLA2Lv3vT%KH-U+`G1Rt=cyg^U7!|sn6T*+U0;~okt?7tRHJ##CV0Eq;werg=3(3 zxgI*r(DvIOY$P>T4p%Mq(@j$_5<%bx5Ldw>tIfB#_jUM4p)NVQIuONLzaX!{ZK~Mz zhB6t0x%>-aub=%PK>$HTslGIqha3V(d#Tl3{Oip-7#*=vF?)LI_6)9aAf(z3&veq* zH*#pB#qd-VsKa_kD3cL|~NaBq?4qVz^+Pj%2WHBsq(TXi(k)Kn0Vb5n&U?o@Q z$udpXSN$6n_K!)}C8#=jGp)&bH*vuBzeqy@VA#`9W&dXnc4*|-J@r+llv8zS*?~e_ zcu#Wt!aMa9__jl&njvR-`{*Vej?R(^NUR$LBze;MK6-ctVGLYH@}IF3l3ew+0;+l5 zJ*KUUA!4svsxh|Xt7yH_O5mNMXLa~TD($OeQ_`+fGd}l;#_4U*TkgqN#4pwF{2RI~ zucXypJDX3Yy6uIqQjK zZ%3Luyc<2QE2DjB{dk$btS0Hk;Jt_1ybRvs#@WT%yWH~T5_MnH<_}hV7y0%Rb^XHh zaMZ`)ySi5F%cY+7k0KwfIg1fuB zLvRTM26xxs?(XjH?h;&rOY%4SI~V6_=7MLKdAoZ_ty)zF3!DBGT;K}zd^G=tkdGMF zd!oL&xVf~yMxpjzwRNoZ=}PPt6k_`Ps-ET{zP zVWyO$z65TD{^tGLvJrntY7ea5(#c4 z47{gB{IIt)Oq-z6If0kGogrqM)Gu|Znt2EWi>S^ z2tIttlFZ@`?O`$;aSefJnqMXPTwAE%txk%Y7MB0lgX`9a{SI<_0xo!dcD@iNQkkz0 zp2*d0fs=HDJ+MlE6x{^fGq_QkCQBX7&No@w0-Tjj4zk}QG$*0&xEFK+E6~%zG;&dH z!)H1oeIky{EBfLy2YS*={JRF(EpwFNKi&5PhsV*3FY#D*((ZP%*_RYhmg1D|2s|LBy(T6?0y8$A zbQ|JqYlYUSB>@iV2;`7KSfHjw1dQ$3S!j*PWxyS^MoY<78P-1P;BcmdLa&2(a z*uVi5@;Clgi${m2n!|TDCN1vzu!=E-Isg3DZdbd7AFCW%FlugV);zNZ71tZ|UbjCj z921BbTy%($IbHxp5U%UdK^-{nRs`s>{VW`xhFlULvt*Nw4K*bX@Yl06jc@wZJGT|a zdhIBqgbaXx$y*7^mF1xPtMO6iZ@86uDEKc|D0;o(M?+WG+#g3!`T4LkaDhTX%iPx) z)R~DU?P|$QC&KcT00QmYcqU@B0+r2&%%foMo`IY|F|&!ZU6OoGW98!<=sFE#%qjO= zaXp}j;gsFZf~@>gL=*DEP_k8b`tAV}fwEATD>X4;7#lLbkRxr~K(a&8g_cYL#^{$E zWBuGy=)AM68mtnhgP_uWtc8tN^8l7vh8ho<0FcqUd?oq-?hTN5(nhd>3~7m!+tEGS zHF}p+-jDBbD81io*R#&O7AN1a_;T-Yd{98QkZS#HBMRDJXU%bj2)^QOnu%}^q!ob`{6|`83?PM}W zSt;Pf0MgJasKf&J{?X}rt30k#pzlC$P&DB!cJ!mnvekWW0foQ zXJPtwM?a`LlMgAsmj;{fGbYzu<^~XP-N2PWWm1Slz>)Zf34BPRjUTO)#hhCOJg{eU zQjCS&+StCp)4DBxigDL^v#(bDPB|Bdclb)cGGUqaZ;4={rBvh9i_pGO{AZJOnS2Ba zp!|Il>v8u%9kr$0PSjNUpn$YdSbqI=(RUU+cc?0JES)MtlT6jD`Kify?&*z60@jSB zxwnc+;>Hz0^;5-)E-zs&;QHnBz6Os&F}%pJ;Vf151ib*8lVdS@Ay~%Qf#p-l?2AESadUJjAqO&@r!nUYk=PkOPB5nD$iKINcv(a z3{@nfpQn%BB#&+;NlZG)QL(I?Q0F-F<2M{@N;DJoeJ@#fps73@FG*h3W$L<~2FQ_; zQi(`@4{ZkrFBq@X0PUC5;O)PKcHHJYR;pcbWR^bwp(vUWcmgERxpnyLCH4Y8ezdWG zq#8#Cia{aHz)5M9U={LR``zBIoX+4ZIF==ZyvpW5Aopo+Ue$U!Ryfvvt22TJ@3rB8#XskjKy2uHb?TDIQ<+ z`(D4XwE2BywxL83D~|S1S4lGIG;nz%@f5o7+w}F`vG#ku@p;czM8`f34Yxv0*E$~n z-UH}~KK|OWv_^#%h{%Z%g=Ap#d_+ZVrvU&H zZ<~W%HL34>V73wd3Lx~kVr*DolAT7}tF}yxegY`GnibWIUA!bx5il-53H>vUJDvu3 z%r6_;C{ShGCGM>5kt8_Qi}){&S~FD;RTiP0rdwb-NzF(rXcbrJ*L$pGoqqt4*wD;` z%O#!%P(5j;)|iz17>lq?&9p*62e{ z2@U^L-fF#wAlVh>Z*BZXA#TJ$bH30rEqs_Zv>-@B#nlLd5q?rr_0po@lpF}fEwjRD z6Bjk)+7xW*LgJ`RXK%W0wf|17zJ zybtCBW{1rg=H_#O-=Z%D{WfgX8(}3h;Zw>3%E{zeK3Iu0fZ%mY*jei&NJbbK>^38J z_tLPK7DoJ6ce3RWi+34(sRdjJ+}nM<(J*0gXHhpF*RUkQhet8P(#tMn*zCPJR=Rpd z0F0GN{_kYH1;P9^KL+XjPsu>Rh2(H0t`1=ck959In9!>B^6-`)%Y;@l#(s5 zk?vb(08KD&0A$)u>&=sXA-&4wdG_EPgb~Uujk;LzU|)-XvXUn$x5E`a=z0+z{6qX8 zPMti@7=X-QV#N|ZW+n7lkEU(F)=s$s$ORZpFBSvh(u3-NHNYPNY(d+l@$c}-F)7QT z^ktU-c!5)R+=v+^(-^FjRc?Vj2u>HNXB`0n{jI9$P$tRFTpyPP1nYQy3zi37x_eWi z%6~J`r~vsX=5%p93qO`HeHPvWIWLSS2(l;I?jYOX(`aN%CFOl*O zo^oPk&J5vfso-)2+m~_U`Z^vrQ5jl~%Iwywc~fq38f(Kh!GZi@kBtoSu>_Z8SOyos^0RGcqfXNIb zd{oUy?y)|Hg{3?cpzK6ly{aqK6I@REdv`s(`naHWyv;I>0GNPF&i5?^LvI(3YhK}K zzO{IHk7N_*@~zo6;r!EI`kp;3LlG+Ds7irLPd1&B@^wIn`@9M1p>A{gc%TnZyV{zk z{D!ZBE0E5Sj5*BFU>Qf40MN!-N;D-!;?fu}C$Cf=(|*IeAmGF}JYKQXpyChOv@-BZ z8Z0c3+y`0rpFTUYoeguGSjYm$04$cPEPRkt_q~tWzKph89zj5Vt;{raCmog?We$B? zC&soZ+#6z`Z{Dxc{Bg=U-?OZ4C@-ds5Bgv`Q-+?#tTPmp_*;u)Qjmq$Vq@u<4RUyC z?pla<>-D3?`bz^$;bvs~>2F3j_6_6FqZc)F@+5zhjMvPB%Hk2P6WVem5mjRV8g`~f zhvwJsa;SLo`NB$c8WUw?Wgo=6XfpREk4;yo6~OA)LBVoJDB_0}5>AQ0@Y+nWZouC5 zEZqqF{-6Fq-emwwbhA&dlyOoyE`=J`} ziRfJV2W=BVd!4&Pn;4EDT3Xl*Erx>1qpgNiA>%BU@qk{3D zAmfQmPNde&?YFrD4uIb0hsha77XjZ&Ya5MF@VrJlA6iga0Zd@@IZ9Mk_Q-kq+0sFA z2|X|_7hAE22O=yNkAe%Rxoql`S_)4ws~h#!j&Xk3P5(`GeK# zqpA_0iUYb`K$s=~pyS^Qa8lWxlsADv!xNQ^s8;wqNw(^TtlNTXEz2Vb$B@@a{sIRyxwYG05!_17NrWvlCh$C~?EKE^^x$O_4#{I@ z#X9sHKC|Dbxy}uGTZ!08C(%e&jw!(7e?1TZFi%1y)*m=zwCK6t>TrM-A+I4yhPBQUW!i?kXPu+Osf6tMHh>CVt${ zBz_P&gM*P=b>aYT*egMzz5D6Ny}4SWe1Bx=<}A07eM zmtL`)=#&duz*DWRl`iC@I zLI*>D<1j2-P^?)^2X-XGEtS^x|gB|9B;Ad(*f4 z`=M)W;PobMwLJ}j$N304a#Gr%B3QE%(U}xYdEzq1uJ$>4=q3X%WuOVyQkrT7;Y&;N z931BVkM_tv*z!aeAV zpPeCA!9H6!svNtoVezmr!`>u~yULb?mC_32vs?fR8ctIDrC0h({www*qI<+>aj>la z&Q)aez6vnA=H4+)GJ=YP=8#oWg8wZz(u@Ui2igWk1LBp*WBDBu9@looa^0-#&roXy_5 z`@wakV041{JSGL$_k5wSG1Ym*tjQ?43i`PS&b zRl8c1vGgM}vE-lrx!e{F#$}_pcbH(FvnTnGm?ogUMo*J54XXJl3Mp$?j4sN^QWz27 zZGZ(kp-w*e@;(gKi%jfGc<*l23;oYj7lZO6;P_G()=H$31}f>X#}o_U0wvjjL${OF zlhFPv6)6a21F66gd0ZC5tQI=5IKT{I%%l)=eXErjmSkb2XJ(#`YpZH4uaXh9!ZVfV z=j8UZy%r)|=hOXM)^5T`4)g@-62@PkK5W`==Z;ecnKwFD1zgm$W0$SHD+Y8v%YQGP zP-}|Vjx_{|2UHotR)zA#-KNdEgYl`{`-Rklfve}6UA?_=V_$$u@QrOO8J;et74W1) zP-S1x#Ae8KeC`M6Fc~`!=Iwg=-6g17B~58dcUU<0-_S*s_Z9f&>TMra(Pte2kF*D7 zC3v9s*u=~j_^i<7i~atP$;Uw=Io^@-QTz->w!p9nP9J`jvYc2Z_Ve3HnDo1#og{bb z5HJIyX}%Tr5>plbIJ|xC{oR~3U^LCB?7_a3P8IWXtim1 z{&QdV|2lGQ({nqzH|Y%69(A5~%|}ZqHGPk=xc^H!X#ReK-l$g;Emveou7mjblOwp3^qS)Youj|`9NUU_hlmfr_MXY9a_DdGfPmf52 z6)cR3xnN1J((=ASfBvWE0I->hG(_iK*w6Zak`rnGNcNq!iMh6tP%$bgr!=L;;vQsw zbbX!OI>&*Ma~&7<`yJ_z=MsGbMgxPl8l=}^7v2j5TuY%Ek`=5+nUP-`cNj>wYT!Lw zwFmT9eDDA5fCPQjdFgXre~n`NMOI`x&c6Vy1rXZYe^AbumPE&&qTHmA@9tiutWRzZ zzmwgG7GX}is~qxZXKUVeIsZC8*OTFWeHtWAQTl!`$VRb>mVRTA5K$7A&M{LJwn$w` z`I}U-NonV+t<>kWJ%|(;UgR(hEdtO>lEQVcD3iJ4??>%-`J--*4bL{sR_8=JY?mXK zdS7=*EGue$03r_Yb%k_E3=`xu-_saDOfL(ZL{BfWMDt2Vv8|seCzU3u3OU`tUHCym zt*XMN-JCvTads5^$8+H%+L^4mHhL@qMgU{^_FB1>tSDoF3qGEn#a1cG^IzP4Kh@1P zUwLx`r-fzZt+yhjgx~h3H~;itHmUd8!4j#=zNG9@*4$Kz;k>?iONt5t#Sz<=vTWnuKpMpenjUm4kRu%9wROrK3!6 zK@u1sE!?dyww~Xe?mn33z!9oDEQcD-G`n@`=r7k|j{TRr(3O_4V4c(a{0q1gLxPwk zT#X|q`m~(nL|U7;7<$7GAP_%YHbC?8BYf?=|IkPbhbM1qOaGdUy*v~hY3fNSA&&UR zrS9o%X&`9uWzgJv78mO)+sFnH@7`c$>H)BSh!GY(k#%F6%GmCQ!J-3ak?i@w?z%8dUF?sEJt@Q?7kn=mc?q3 z**J;NUJoM3b>;>~=*LikTbL7kXmYMw0z+EY4(Z(i_?GwDAtLi>kGq@Y5!4aww_SyJ zwY=h=cr{+K&4cqlgexp&9CxDgyBrN;Hz()RCZ4#FZWf2rN{I6c?IeW7=hT3)rSr?s z7&dei$mTP1;&}Je7;96(;`?nP!a%3JbGPBZC_{k0pi%vq*|+=hRGhe^5{k6vN*12Ihz2So=py03B#o+T=@ z=sQ29G|(|CLu2^_m-9RKX*irsK#r_S2LS{Ok^anb{gV)(fe21NtVb!u;m)Z!(Lo%_Q_&(+Usuq<-TPkD&hL=oS z#Ld}?gauPj;oG7K@T@ll0%#X9BMR$p)VMR^q~|6#WIr;p394RDh)sk~k{ejkSJDi$ z1wa=3m(szlY0=E$D`7epZ35xXAaDV`GJ!4?#Ua5#nMrpO9Ar2kmd{PFJ8~aty%_eEtTKzt?~A!09rlSaPV(GvT(b^zM&82KESg_ zXTs7o4AT6w-3;-W#&lCg%DpE79RkjFQpK3O*esS(iTTe1lN?MAC5Tr^f-VhnLWin@~R2O&+HkVC0=zUK* zgpp>#fCMv8h84RO&m^|jD>|ecs)F{a!+q*&tLsq>cc~jeI(81w}FaLof zaNSf#*)n#&h_ad&QWqSH$!$*{ zAKOu4yuJrbeHH0f(TSFKBkvW|0C?zaus26|PVeC(`6Cmf^H?9t>%BeAjYGl%0!-wD z2;=_ojXToXH0OQPwdZ44;|#jm!Yor%RgtXIB@vl@zJD!m^R>0Y9GYrd3LZ=gq13{8v- zx*2Vc9ac|~^lKuMy$M1KwF>l6o(~Wcew6QH)#cc0wIYzEQnjBhU*sj0jHK z)#Rrco)yWha{c1WgfV)w=9 zvjI*Z&PZYpSijGrJNz=eFbAZQ!dm6_YYcuP<3Mp_CVu~Iq8YJ zn0e9}6UGWe;{@UahYvA<%-{Ti%5UZR=MK?R1?_`g8jP2c=j5|UnDxP0>6F0@(>OsS&aU;*-M}ix z@Nw`#RcVvfizS1a)|02*6r8nB6Vv=dav|)W2R+E+pS{XOHVhNsvJ@|+kW`u~N|gak zP(#&Vxof07Z9}C?f;xJX_R4kl9E!RnG3!E_msbYmKHNYG7I!qhyCisN7yta1{aXS( zpIi$cSpM2zRTVs8T{)c#;o|OZ;&FbV4bFj+J=X^#t%Bkc_yH1JVlrd2%?^<74JSC= z+Llz*jwzBvQYR>ydiW;?h|M6IBZArjqKRbA=M|(yD3-oREo%uUmbZu}?m8!jtR_07 zfCk@uRd$G35}dr4Q9E-r(-ne7oYp!XwUjraV5`KIJ@Px{HufC?6o9V!w@dWo-XKro z)=LxDsUTirPEjZVx!f^NnS)W=w#b;uBiA|Jp-e7Qa;v!ALgC{+^Pj$J`Y9&r;9K z?uiE)-^<7(Dw*eHHe9oA{!0JS>HH!CUy$rN!Qqn-{ak6V(!nrstgZfY@V9J;IJxoD zj9=HYo0hNg52Y++719ZE>&#>q9y!b=0)bL4XDU=2sAQ9;E-GKq z*;^q`W-6Uuq)npR9cTQtU=%DRP$ zwyJpQR*mQ27BB9hg;c7pL5pKxcCx4n~)zBc5sY{spK zggZ88j=8MH)J34D_)|-dGroOz_V{0I*CvYJlmEZhe}8lCI3V#!iDKwR+9>7mQaC|v z0Tu=%yP^y~E-?9PGFE&CEG^ZcC;uerQ%kIgtqjDu!GO7_sS6tiMLs{o-LE5?2gbN^ z{OjZV)hmfV^ZT(t_&Es{+TCMwC#LlT?q2N)r+cG%?afo&Zi{%yZkG|}-(Tp(qlMMf z@63-02RjtWpvYd6Mt1<5zq=Bi;KX<9xaD%XBBRQs%`o6L_NgJ6%jDw;g(>X!#i*<6 z{N0Th_UE=mOq&to%IZCiSiWV*fDnud7?-^e@$A$I>*YWKqmc)q@4vI#VU%By$@t zsqn1%u{J$!k zb!p0kdd2nY`vS= z&rz%Sh#9j5A}(Z~-M8N-j|*-4k#9285W-XO(Tal^qqn(Vsz#G(4pJ;V;%&q7cysv? z>8323tCHKIrnY!)x5Ku*$V^(GzD1=nyCseJPuoO(8Q5tx*p9p7WPTTL_?uTME)o~W;xHL)N;=-j!k>XNEn*aef`<7uePb-fUJ3OtD$eIsap(Qnyfn7Qd4>7gekS(QuzO zQ~F!Fq)3F6?`-q96fc>R1`*W+=f#qGKBt73n`gT=yLSJd3_ZNB%osXovR8s?3EK_% z(9RMJKWJV;-a!Lw-x3-vMcv<>EX=2suYKp#4TUSzGu}OFuF8ykwe;5sr@Epf`b4w^ zcO!Sr&{p;5{-%0CA~vgWcqpkZ-oDvEqA=Q5Eob~`ZgMbhq=gBsWSXeTs>9u64od?b z+BTCO3?R$Q!<6tAG0C{HmMaC5m{fh05XG7Uc11(AM8nO&-%QNnJ8&(z-N)|#)0qD4>{uM?A zzJICQPr7cm1>Dcf^O4|UO^dz|nqWAKXVxm`RSzP+);4tYFYIBrlhxb^x;Ldd zG?`9uK(+*h+w-wEr1@T}r{b4*riqK*xOh=SamapKZ+~Bk+BWLP%boAtwFcKehxsZ; za$7Z0X;F=*h0CH@Y4TY>ypYUQL<-cBYrGU;pB0E@HBKaW^4y}n0e)&DfUx!AU0U*AhdF_NsN7q?s^y{XV% z0Y}a7!zwRotZ*HITx~ibppd%TwHhcAYc*2uYDYT@T$};P7ZEIym z3LnAuwq#>TJ~l_150vV^aiOxo`?x@P&v!6Ge=xmEecPki*ken)Ha4xM%+0iH#!@dx zPMupj1LHGno~V}xCr`-;e7be*90UhCyCgrEv~GdR?DU^2ru6GW^n;i6c&x1^21M*n zRQG=xnj+G=uzgr66_Bf=l2a-2LKSNYo%VZ;?EM6s%OfCGW)j{Lak1_}QDI4|zw#>X zFtC5sW&%0b)icJ)x$K~L+^Nv^S_KB`V2m8a%-)y(yeVb-g9#e)+I@8({ho41j(Q1Q<{Jk$hWHxvC@2Z>1vX>oI!1ST{)Ba~+PSm&xb9thDJhpP1 z1yS{ii4rIt8<;GG7uwjpckxy~y)7)eg{iYY#%@Ng+)o??@K`EG?7*c^!i{p=u!o7W zyMJfCN22xn+RVFdQHL5jTVsljBw=`x3&HqoDY~V*h{LwRRFz$jmg!hrG z==e9*H!sTgba0jr4Z1CPc>Tk&_Xp3^p4I*wuW~Ev!epCxjc{(*>qZx$eFvW&D&qpV ztVPR!;UE@up@=m_c}0((9lUQ0zilpWZ&Yk2F5X+WZh042Z{Yg0`>0q)XM$VO3DhrV zH9aR3{epVEu%Z?$Ko+w340k@-PP+e79JzK8{S0%sn3G)|ZS~HMZEiwJcYC;`hcGMB zmznjHwhO#x-%W{>;E~OYKtI+zbCuS>eJYiJ1jC4O|CbPQz4?8^uYPWFHsOM2_hICb zF(In89uWM7F-iuz>si7e&kUE<%zX2`6z;6)KwWxoB(pV;vTK2pLXe0J)k*oD+qRE& z3ie%N&;hqoBPF7nzIl02&8Q06*dYL&g$1wQ3mb8--n)eUk%z8 zh%hkY3k21hB0T$PGJz^~u(k>TotzgxFUWi+o9$pVufh&d;1+tdMDT)okCb7@Ikt zoN9Hibas}`^SG@gRANiv7ciRy43kGCCQgAY&~E;j^7TSxh#dZ-zDbiG0DgRzp*n1w zom&nrcCW)&B()oHRP@BR-I_PC+I)rLh`mp;>kL zOn{istkiRueqn#SF#q@RUG!*=v`bBc(dN%-!jSYEXpYG@BkCv0;uD2>W-Dp*tK}fJ z<~V-O1-mPfYh$1+9g`aMduAymM4Uvp(oxgIiu^`>@@%(-`bCECfz>!KHj+o+$dH?W zQH5AE3T>f7M6HK#Bb@lTRN)UEfYoNT?2nz3gz^P9W6FA_7K7YE*+JOUyZ-zXb7&4M z4!C!}T$Lsmq=n;qV5qXQGaUQuk<@Q?Dd3LZsTwoZTUaCr^4Da&&6YzwLW}dDgv>9brM~a6y_-Rt+ph zorKH4Pi3}inaLJpG5p3|1QX-1e}vbg;3SseaE@lS2>{0@)0ah0RSs$f~ zrQ%>UmbE{C-Thi~iikiDCKnk}YZA8^88R8H^9vab@q zb%M?2fFqxu_aKB9xI-i?T~=6KoTnVi8l!`3-v+C)m!$Dnse#V0xp)$GNs2w^X|Y!{ zVal}q^EM3m4XK^+aH`YbkCJibd&)Y;Vg}b8*qB^tTRNuGHhCRtSBXFLp3``*jczbM zUDV|ELEw;Rt3(*D7pnSU+~vV~z7t$gLZ+|oITctz!lB??U3wB^5Qi(A?f0wW3%{{m zO-?DvTn!PXwWvd&hrU?e!+Ukj(WM&seEv>3LjS3XGHQ%qd=Xpgp6=lQQ^z8b*vFLL zGpA>iPM7>$Ib3dz+A-#w z9yP9%F}I&-5QpyDQC6O_Mr1_}<#8)a=J8#^6noS|?zlQw<6TDmgcf2sPR6pibz5TE z5__3yMIODS;W*APm_nZ>4fOeBGhz#SMRRho4Eu`OR?ds#`MbHh>*O{u|6(YW%{ z2}axAc*{%(*4$jr{N^$YUHkFUAH!kPgC8nH-Wuk}E+V(_Fh9Y@9c|%6@TLBXZ&q(#q3%%8kcpRaAcst6B;`Sg1OrmUo4^~)Dl{-KJ61{mAvKSqZTS4oL3uPE_pT5n@}>anz-8H2~ajw;~m2d{ct>hK|hiJP9Ju9Fr!nO!e_WzhnOEpX)FA_fXY zDn>7FwEO)Y2rY=H)RuHfb5F`eHUOfB}}9*oxCSqSwRmg!`hs(9P6&muxNVY1Ty z)*WZFge8r2B^+)=rPZ2{)QzG%Y+%M@m=I-X+1G7%8LqtqNx9rw_KR@wF!zlhtOx*7 zwHbS`iON1M^?rJ)Omx{2pgy^@I=PfUS=U0=kbGSjKrOdnhqQlAGp~hs6#qpsv z`!!!)sOl>KE%p_cx1MOt5p0+{yQ_ZTwL&CPy!PR%Vk{3YQYBA=G#~5u3bb|D<1S(I z9!dkwZ+mA>--o9C*(x+IDv{O?pWJb53}sU@c_(g_%r;xUVE%@X(h}8s?LUq92Y)I` zoou*Gm#?FRMdyCeV3ig2&J>A2rP6~vu@1m*NVSibGq=fcb9GZKd%uQ51Hl5n)s}{@ zQw2VV&YA9edn_`mDT5KYNI-+fg>)VP26-Uc@<${NYwTKIl2@;^W*a$4i)C|`8?~^f zXd^l_D|vpq0g4-4c!_UmWetgVDqSdK>z%I!RS;ih=JLHz1;sg@+*&(nAM8(Y#2ec@ zb%w6E=0>D4Uj}j$R~0V_2ja+O2&xvqNT!7#7$(DG`SB=y%F%EF`;R6Os=w!C zGIKs!z{o@F>LPWdAl63*HK+a)i7=k9JOi-+4iUlUiZtDKV+8nrN#nQF{D#2Ii4A+~AJs3ZY)ERRWh;oQn{%UpVrM!x)YiJzW|E%y_=YDR&gC__hc#x4+^M)a) z)!p@M59^eTj8zlZ0Es>NZ4U`&{=Uuj+VB!baPABj` z!q@Wv5Lq$dx1*3x(Pkv`K3)4g6s#8Q&%uAl`@V%fr*siY_KjvT?+6vN>d4t&QbSM> z;s#?`P9!9ES`-}yt2Acj*1emx{^d?+LL{5CkvXHDAHdd(&S4>v{;wX1g+^0;tt9Y1 zc%_8d=TEz=J5dWFUG{)7)w^tDH1m|x&EJjjbr0s5id#VX7C{urN~hsjKLdU0Q6Rib z8y;pcM(bECy9)`RznS7Oc=?ncaNK_G@HCun^5S8c4}>q&mv`8pN>%*W{5LoTR&R_K zGv@`u)B0ZD<(Cv(N2Lx1I)X>9E%`kf*aQ~`yW^v0>F(|-pkS zO$mfJZk(DV|1A_-8M2ASWDEOu(2V=4^zs@kdMfGBFBe{{ee#IkxWr|?LgcjdHG1z$ z;QiS@gjRu+kKm}v66~aqD_46o&ThiJ>Y}i|t*CM~;pe@^eCQH#C~UgVlLIE;tC%kw zMZFZE&Z-!GNGaDV)s40{&<5pw7l|l*C@iHD#A{*iGEjk%7<2iQNS`@>5#$NC%&#?a$>48G0^!_0{1&)bgap zA~SWPm{wUANIk)XENSQrB_t36y&d3 z*!eVFU&ATZU?@fjVsoG>)=oKoSUNmER=|$z$TTIH&+LiBUt%3M-SXUAMu(Jn;RFRSll^)|&R{c|k7Z9FQoai2%t z9k#RVBTCtPrTN!1PlP9Q$}KrbT!WzfS7(Kl{~_qq=KO>v_KvuzKAvhrJ`me=oW~0OJ_S=uk+FjQ(stk$80GFM9?#JFW7vMc+QsUb zXe@ZtoBpL+3PRVrcpo$mH%1=*XiS|Ffhs)Q(37Uy?z_?bpt#HMC&JTF{)*p=NU1Hc z?DPXwlN2f=EMIU7n95Ut!a0(YKny<VmNppcY$WviyDw<%nD(kw{At-F8LE%W^&10z7 z5C=)lVur=#GBkb861$qJW24tHq|3KUa?I|m*SzY%rE;}@f zFZ)JN091``!#(A86d;@V8>j|K2foE zfm+UZSrkI8Z@+}|q@bmi$2}=qRLee@Is{K;p|q5~J6$0igQo>g7F95WcC;U_%~_fz z{5x$iAOdrMD)Toz=HA0^=m_xdS*|EgQ{b8|@_i zt(6>05Dx10tf(U|ek+ah4?l8Wz*F17YqsSJ!$#u8*rIq=9dbew=N@EW<0NM2Qx}Cz zb@=6p>QkL)Ptclm7`df!qG3}t@EZuC%SR;6I>>z~{cXA+6?BAM>oyea3`W$Sic;TY>HfYeC56p8xM$zokm(-f_^D@kj_ zZ5{w2hM$|t97qb>{sttSMc7-$+ ze4S^;xT&mw@cQY;<`WpPuxBfGa{xF3#omKzPJmz@ji!o zz=(TlLm9W}-PeFFwf$2(W!qCvud#-ef)jbtgvPJMZuN$^DC3oHgDg*=*hLr5CD!fL@Yh|IyfJ+A<#sNR++(DphKZRu4ggg*tNFcTXEwXXh z0k-Qr6e5J&IT4rE~adNnXtBRTFM{UedwZ^_vZV!*e>YW!^fyW z_sIucyg>h?&QMkZZ8exJ3PaZdAIZ-ro@Q2$!Y7@p7p{hfVfKXORoSrF0-^o1rz@?X z32NUZ_BnlyBOc=Ib925aZXq7_;O$1{$vg}hx-^tbD5`Ge!`v>{mx(nDz5l+LWsLAR zIF-G3#;NeQ1o|XP{5W?#nkk3=8nL6$A^O zAS)npgmuv92HP{Z+Dcm7@vPQ~Q6~R^9$yEgY0VXD%ci&{FKvYx(Klv6K-w@y zjdeaz86ulWVs4aIE(==EBBqk~MNuo73YG?QsdOizM>%3k@Eb>#ZC)^mpF18OgH-2U zNVkN3alkh-wE;=%8(y0cF{jDI*Ltl@idww>5(!qDI*CjqbM(A=F3@^54jJ|@7h7_m z`P@r8BrPCDqmP_ewpaX@_%18;_`Cw6pAbcLnv- zT=L$ROMc>VJzMRty>2B5$N#;L@h@cl8>li`fsg-sB!1G_JN;<7o=5qtni9`*ScK^L z-HT+e@Alg-6{6{*C(`LDdA|iaKQ54#zow6Y;DZd|_}`qVajo_|D~GjccL#OOWt-{C zY0muBO%1(7hwzNWs@5O%{o3r)QqR|nZ8w{YFqA#~gQH7)Z3pk)vaCmI+jah^cK??D z8?pbk;Qf|Ljn}b}Q0?jO)=T;5q9AzPe8MA=uUO13&|skWHHEL|C3cDVFNk^4g|KB- zqohW2`%`&u4Ciw7xU~-CbVT{#X&&uz(4&m1;hT+)K9b)TKf%`~+VS^)-}O}wcUGUD zkIXyQQS`S_tg()~TB~HbVFj@kt;6Ey?yH0fw11FZ|>tnB-R)EPV z_^^e&z>3|q;Ga<~fl94BqiEE^Y&Fl;4P4*6oa*jEl|ebBzns?>Bs^46Z>z<1{N-cD z*W}qPa*XT<<)i2M4KF>$F|Au~6JLp3ItN$b)8Y6i-cYAmiL(zc(YqPHTX_CWJv+2` z{>{8hkacLX?j=yrOZhA``s8X}S?uyp6ZRkUoTtx&!9HhLj$kj+Z(dq8rV> zHDs~YsS53%Ly?LVz~+DNIbBITEqlRd_*}m``+C-*PbR0eek-~7zP`^ZN=K)5eC5M6 zmc}2z0Qu`;h@bE1J~Iki#hz->I6duHxi$k=0X>jX*D`lpsDwN0#G~!WGKtW-+b$VQ z4@P8?>L}l8s^Jp+zxUYlr6wHUJg!(A_I>Sk|kJUl5BsAj=COaGqB8rUHUNh zQ=oOLZ718|ofP7bRI!2M>?s!zM|kVh5-)1x8?U=nX~Dk;`@=O4m zH6I?aA2WA+BH=$hwi1Qsx8P6$2y+h=ufQ%fESAKH04aCEQaY&;%q&+h zK$XG??0d-;g&2x9{{*YcFNlMWL@3(j+jX{IM++sO#liu*` z>G|36Gg=odjyduyTCg0P(>N1ELcqtmpyY??Fnx*mxI(J~9&o!;U`U@l(5yL_1Kq}3 zEF$l4j>0ZB1_RsY%xxW}-hP^L;hhhqn7D4-M$kWMX*P)ni|I z;N7R}w(lwC@24h*6FW04a_4n_kP|LoZn7Ulhx;DTjHo(^2xPEkaqeV5W*w33V3|bz zUi)I+_-lXQUbJZJ%YZnLlsLvLSq}e?qiYVU`|ZOm*D_CDSk}q5-Lidh%dRckw(XPo z%jPl{RxP_NY(onB|26G%Q1_a-|*$W z=Gf{X(C6>t`O!8c;Bo2&iq~2qC*Ty3yw8Z8&l!tIgq4+n`;GQbn!5zB>ZHi}}vn6ux z{bOyGmqh^2`9}OrUhw!M)!K5%#|Os{S#32@2%0~jR0xB}?IgpPxwx!*mH{V+;IkEW zIZqGqO5qZ9(MWYi?^o%0KN+b+N+H7bq7qj3XH%q(f!K3)> zNgdT3o?GKwymIB3WtLO1vz8p|O{OKB^RDGv5A+`IfnXr1xHT;aNyM4|ZkiEqM^c zyTB!c;IpN7Z+1oW^YSihnKARnY!(sHZe`*weZVz34&9^GjMROqGU1U%GicNuKvqiY zDdk|X)FaT0u4NYXoE)|TaE)n<+N2~26X2iN<{yPaT9h~pIYxnh z>6KpqfxffpJc#x+;95EG611C$dNYGch$f<{(GY)AMMm=8`qc6V{eeyRd>Su7HmyR; zha9HpIil2$D~;7Q)*r~9;bC{k>iJ+R=iY8X_hzke7EmGKb6<4nc-KHQ&Q*Z9`(dpQ z5#s=HA3$oPMpgg_dSw@X(k|Msu|!trudIR3ipzLLz#XsADu&0+O_naFXVSJBI*KKR zry_A{q8HcdonYJDS(TU2k=p6w_q5wvf4kNs8-S`&_{&Y-vS4;QyP4 z{U?VOk@d0C;YF!};Is#s3p4{E+|P{NJBVNeUx0%54^4fd`ac?20%{r4A?D_2hexeW zur*=u^keNy7||ED>g{U(_Vro^lL>M+8ypQ1E=!9{P{7W_y$>Rr2N_P*&r{t)_pH$R zUUcFQ->ylIzLU&?);~f zh5ZoG53eA~LBb~YX+nPiRikseMg4r3Uv_#zRf~>-YjLyRlxNYlo`gdJfnS!fDVSa0 zaDazbFb223R{7=^1`ef@wXuz}hD@s~@O|74sdMwQa_Su3qkZ7v&Crocc4D5=;XR9i z+7T1>ZEWc_6R#0Y+jv&{S`mJ-+ayMbwwz0{+vm6^^7lV4@k&B$|) zBD0Py0tA^2KVlfLADUWdf!9L$y|HYa0thB`93>F}Y)=;+OG&pZ26=hqLz$KsH3o4h z9FBbm@69sYg8XqV%HEuw#MKM4{%?0b;&24vx%j_&yTifJ!E<@eD7k7OntMaOdgoxd zyF%M!+1a5rXw25qZV|)(V~rs_`F$@1NX<}Q)XB!ToAj>D<*p2 zQYF~CiSY|lflLE^{Sr@#$Bj!h`aMWgWtf$@kzIu*4U@sqB5|0dRHC?-WoMLefm{jf zm_walBDnU~)9m6yiU<;BI(HB&LfewOCSc*H_6S=4t~yAc1%4)uhn_||AGg;BzP>;LnFrXNpUOc$l0P3SZJpgVnB-<$#J6HbMg*uh+2*C}rnJ9)#r)4cW@>!G zlAk|5I|7zvZ!tdfcjibvWIiF=XOU`#vaY~(dd=*^H<;g{Qx;fxugs~TONcmcN34ef z4Iapjsn!EE^XB@%lH=?rYE*=9VxjnUn?I`X0)s4EIaHTLM7y3}p~DnTySegTxIAZ$ z{2i1`OWmTb!t6?@&X2+Ifys~#K3TH5Dpqh;O*_3G1DdM;&yB@%TPDmGuUM`pS^6&i7 zzt#V)+<`e!=W6od`O&wz%HbHl-Ga@5uQ~@)3C13WbZRx;cZrN~>jjy_L&>tchu+a) zfSmgvTid7HZ8QmuaJw&uT^{}CxV5rJ$bv29QKAg!x2u$PUe?IsGA z*Hr}t2Jj=C`w?JnpH9V=7fi+64cd4@Wv731RNXpt47_J-7qA+dB-QvC??GB^$&Cwg*vq15taPJF;Elj5zO>^f?%{VKQdw zb_Qx#<-3pgiDR>fA&qDcbb?G37b-{Mq?*&mjsEnyF%CmDGr1@C%x8KdN~z7=kU4M zeP4k>`FxZN2q*+CzkntzQ-)o-?~6x+)%nFOH|byUMaJj@|L;N2KE7A+-{ZfG(1kiG zze;;Fg))9f(Xg%XgMYubam>mTk`rn!;TQ|pW#m7-}ewXAo4zu!!*&fMvug%0MUo};Li zUcs`DoLrj@KyS%)Q69L8L&7Id_U8}hudeJu;2{{5Jc$~e49@uD{`mUXC9@%aTGxzO zRx`X(yhM29uXf$AKFH~p?7OMGY_I-DaCUKa`&uXS67k$ze1UOOM zR2}p}x4IqY#Y~uH+U+-Dp{EMBN%bNO=y!Wl4gX&L{vpV?N#7)JkoM`s-F zG?9mCh*(Aco0$_2ssBs(pTiYM@(YIOyDxiB!FDNMT;x{$tB;?_TiOl(P+J|iJ;8;x z8L~gx#9NaXrvdf3!*xCwk39~GtVZ4$6G%i=uPfBD{(_NQ$@bHsUTlLFW+ukJi!cZoLB|4|TgcL6hx_C_0ROt+ z4+aK38vk2xA+s;}yyWBxLumMCuir)mk0Esb{b*q5=}N{7MQVn`;=kSxN{d)e=cC)W;X?EHr_l>&d}3 zR)@Svsef*IDo+z7g_o~3b5Mm9;<)!}Cn6+;PXl#MdQ%mZkJLywFS)R6KUhq6r~vRa zfB^N0R4klPzmB2aoZnbzF2?nr-{Yi&Os#36DWdg2LM_#%n^NF>@eT+3&~vt5IMLLp zV`m@Zdv(>K#CaRIW(5e}s4N0iT+i_C>;ZdK&Se$>lLVj7SNxTX5s?c74Lt;^nck^U z!V!5hVkQC9(2ngV>3fllbF>MF>rx7%`($lmy`w^(n;~*W1il!(t8+d|B}pk>AFOtMQ3*8ucjz1o z%15!B@NO8je-p{6hO2uV{Z;2`W@fC&y5~vx-F8n`J!;W>&Kw7WV)^^8Yw4Mx5(y^u4KslcvY8-YI)6~*FLNk9=2n2Cu*)m@@vlyRv zTweS;O5?k!&LE01e#h99KQKA=H?{OGcRusTGdR*OxJJ zj=AhOMwbYk8@*H!@BaLNgQpghbT+mQ;;X&&?aJMR8F%Q};;dY&wIgvi`TMJVaN{~1 zUqALgsWfcanVS^lo05G`Xrj#oyNOtasSkB=&JmI4jiO)p6s%CaZzdnj|vdT@bz9&H5kx|e-{5lJn$=v z--|^B?T+3o1KCCJ4i-KeU!#J4@o_8kPBLhEbX*t?dCBYp|Kwv-ZK~y<Vlq>cSOh**nL>jmSoX|==4RO5;mE?%0XWifgP;DysWHCi=;Gz7rZH>_7W;AG^O zDOQzo8Nf*&^{Z}Bz9r2J?I)Tg4`O7>XbYu_h6fIsOZOcyE*9pn{Gf}qu)KbxdS*hW zgSPQ0rMA0VyhQ^4MJS0K)UaNp~$e>P#idDG^+)M^sG2({SZs|^`q=KiHL1jGke zw{kbQZ3{3JRiog_04}LbYf8%Xa1`LrRFtb{(y2GnU6H!o!`PnfjZK)Y6#k^e z*nd3YrrXL4@lCW{8;_HuY-_WC(VJWOU@&)GbV*$q9FZGk47gv0Y!Bd0TA!9!^6$*( zg_cH9rn}WX3Ld8VkvuUl{?ZY#o?a(?jK!`xfagFbFtU`~TItaR6La_;(ZglQB*#`R z8KNmdyAYql@pBXi#>#JDXY_(<^)o^w-A0Q<}g?%ZAC zRZShnV0Z0pz(hZz3h>0Wc{fvywrU~8R9$D0;g)gl?mHc${;Ksp-QRe1W^n1PZcc?2 z0r}Q*{T7|wWDYxM#)d&`lL~jyRiHFx32q3LsG?~7LMwMoE#=UOJesB_N|7q%naI@mXb)mGK!34>+M9K-x~lNxV0)ipQZy- z`Q9nLRCL+K1I&X!=`Dg=6pY?7cYLK;7jlKW{q8ps_sYp%Ru3 zeklh!Q4%bbQ%2yqnAKmGbeTZtvY160n_i~F7u|q?_|KCb+wpBq6pwCtehi|@=ceD< zWuW&gc;K1^v^Sr+{PQQ9PuRZVWYYD$`GV(1SrsW3LL z-Lx-PZy9H3@&C5fxF8k}BC=m?;GHStCRrT5Sc{={nguN&N7wkibV$?duWF;u7p)N2 zoe{>n$2vFJAe)OQvsL?IEI#uuA3;#!_S+#fAEhFtj!jw*u`HCM?nZU z`$CFt2I!i+RM&pfIHefBI>!%S>NYXHI`iYx&4{fWHa_pyofaxL;-oa~*V2-9dz#mp z>MCjn=XshYlY~oTe(6WmLdFeu{ILEDvsnKy*Iko_yb1pdWjM-=fa$OCYlAEI@A{3` zNBG)Ulmk2Im7K}-?3!<_&sJ9cI+`8>DhD;Meoc%QCBAwC%6cA%f9m3C5b$Vji%19QjGFs zuJUa`u*v#|Y3>tg^T2}(Vvz1&K9^~UkzZ#se)mkuCUmjrIzN_puchB0r zK-0xt#Qak$d;L&$^)g%IPl!Jhlh@YV5eRuJ8!c*Z3DTVS@n2; zE52<%$NGpXK5$^9X#MG;n%QfxmSMCZ{<xESc#YPT1H<>z3Ne(sD><~7FQ{#+~ihGI0&w6cP- z@NM8!!qkV2;xJb`m&BuVOeWey@Q3Q?#e%(62j$`@!F&U1WEbUKapSwQoKqs*t@VQS z!V-*uz7M0Sg|0Y1iUz;7-NPiw_jdu@+0B1)L^P~s)QO>I)R>l^K6O_ z>jLuv`DR^=$$MSG?rLVoD{7~lz_r2_cC$@+-s4L=OCyXLHXn^&>DD|yi`5!4vA+py zUdfiba_}ocX-p=;W}b?T#~3D?F4V?Hi6!AISuxlEt9#TnS>9!ro8*$*0cUE8wz-=F z_5B0S;W!q%hq$bGi|C z`)=s|rYdD=QAP)%HXM(eNqo|#kUTysO|%nqwaW#Jq~Bxj5-6hY+*(=#nwfP*vjl)g z!?TI_xmnS`&RKXxwVwAZPj{I_WLl_?PwaXTE2)y6j$<^RfprQ@okeg|3#Uq#nf&Hs z`LFH-*Qf1ZU{d~Ez{zR@Ad0I_ztf0)M?GQm4(Avwl2$VONR=uO0|f_3KRezT;}|Tq1PdVo;Oadh^&5#|m^P1yO25j1ACyh>Nw80vE)g@! zl_nBoFa0U^dG@(HPz?J!zUDZTxToJguUdB<^wBB9n40?Hm7_XmiEc-+x(0Qi7@=gR zszq=zIBmUwbMyq2YLnV>4uG;SZ>+BwPrazGYa~7ty9@9tk{j+Y?nuIIe%13Rq%8`n zyFuMAbw;WMo&)x4)ie6{<*~1R%+X@~u>skq>z9~#c@EA;gcrofi!E>Jg6kio7NV2X zzBIbj#HqBn|6ZEu*AKLL1ocNAaip(=yvawyP9R<$bC4SNg9AR|ZGj)f8cGT5lK7v?5lP;#_oA*w9ai0&MM&AD;v#0*{2Fhz^6(T^ zU*2cz=|K!4s7TDH`Ec|nEV?Zl-tWiuXiiDB({FdHYNyqY?_zx-l3~(FD4N@;qxF!9 zAI=>Y+`KfsSl~G<$rK@A4W=KW@b-11D_Q*|wb40G+coCjElYD_Mb@Ivr^5}+Ap*7zv!|xDbH<`>Tnk;LHn-AZd4cfI}`47;6#)8d~ zKkkyq?|>mSB0Fa>UVvsp|B!d;K9gR-5yr9&S1x6;_TgsAw<-5KdY`1?rf{g?+?lu{ zCg|GEfjFsc8-i8TwI{~kNX`Q6aM~Gopyna_{=Jk4Q9|SKY;M=X_eGdhqjH>;GmI*95OZk*|JH_Z+)~rzlZbUJw%;l(b+N?OSTO2(t$=}T|)GvYU zeri7Iech3K$Xan>e~megy+^eWf~Ft){i5i&Yg!zZZOt7*gfQOhGR8HcO7M`JxxrkpCzQYMci`%T*uQl0qF~uMeoX5<#{a7i4 zLiA?I{T`qGvqCz&{<8oa;gNXSd9Um-a=3F*4)t2VcY|_D;(K!@m9UPfxSOzvnz7LwrEt~m*wbQWm~m5 z^sn-&bk08R(l%}=ncXKiIvWq2E`t?v@oRd$u;)d!GV-brTd`+z8M zneNytks;gZ)yu+aS^1K46O_fF0td3xf5q$dgiuIF;e816gIjnVfyzXcEbTuMa zcz_8#R=S`DerVhnxZOVr&0m{8oZ{!I{o^z-84SISwc}12D52|8pqarHD_G}5c(GEW zaYkTbXGi8Jh=1Q58>PMUhb}Im)7pC>n$o7ylzrV$bD~~l zrvF`%jP9}024F?4@!DLlBv7PAF@pt8Ot0KHnc)_IPl%S?Z!5HOsPHo2cL zQJ2}lvZNvsi5G6elGwd!72$b?hve2FaLk~1bCvNqT2tqZ5_j|CMs9s}nzU<{O*|g) z^+RdqrZt=(8|TtFEsuTaM;C`|iv5T6!?!Omj_+4Kci(3FLVEzqpHL!`Ag5O*jcd9b zg@zl4W;)TR5j=_Ow=1~hNnvcQC}&Yw+I`nRZN%Mh))Xl^h7DJ6=RGosSLuMhg+kpO z*voo+tnonea@L#T_y9fgh3^*{d-SSYu+1t;7QSArUE#O)LM09% zyP5?%-d||oNk1Axir_t}32`lUy|WD6tURzYz?8Mycda*lzpMvMq4JkiYvK|*qIjYa zL(5H_MlF?>g^Q#LGrn5ZKxssGZWb988+x~-$kMobiWF2w8Fj&;RP`+8UC@p)W zO^7ySp`Vxtu+h!*@UafvVQXXnN!cz^rA7)WLCyGiE0=pV@P+2_g7VW>xgj^s(Exy$ zIR%j84<9@q18RC(i8Xi}PoKoLPMJ_=%|AHNY?j&_50N4-`!Q$RFiExM&1A0*pG8L% z&}bTR)6;?A)w+{nkDE->+W=38CIzShzCE8+oy$ms$KQjLOaepx%|2;Gi6?40L*CJ4!xO6#pn5&7kW9V(x*@Nt`? zW=dejb1R=6G8zHH(JaD~eWuCZ0HnT^20ik?5UFdfb%%%qDe&6?N>9Xj2_dbU+>2dL z3B@duF4-P3dnkK;@#Qu7&rhq4pgm&x{P>C>Ope6rN9DS+b%AU9LYz}d2K{Q^bW;LT zoKOpvRN_ss8#lWMQzUWLs-1!rI)*sJ&)3#9D=Ji^07-MKnt6aEvAG;01 zD9J;!XSwVVNpv!Y*E55bsf}#eZfwIQ!YE+4R0!}}*sU*DfIEpe-n{UFXr@#>;gkHz zP2HlSaY?6-N&2ci*8;7^?g;rnN92nZ6K3gz1v#&NRCvn_cL>7rPh5{cM(yYB*{g)@ z)zANR?r4o%HmMx^S0h+77M*OoQVh~|_cAy>t_Ll{2Y#us8w~6V`C;A&XGwJ(El{1% zBzaW%xFwfXLHISTc)O4S%b|!PBFoWP_?;>RY4*Sk(Kg?y3EgcM8&a4*ZWb}WRm0KMVqe&*6%18v{~2VnfY&Ls6md$HY0 z<0zO3PpDP5Ups5x*7Q~Mzh5KDd#{8h0e1-@OY8q$Z_9NXkkEBTB%}nhKER;JPT1fr z8q78AITNd&Uj6*FL;2uptW`7PXoT|j>F9ervWZf8wpQL4{83VeHi{DCwH-$Hw*<8K z4hXMqBtfNi;?rIw?LF3NHF7wKhSM6b%ObOAQ+#^lurY1@Vj~?Hqacymd2M&4dcF#s zvf&?^9e15||A1M^i7X2AtzWbs8BcN4!9`EI4G5Zkv~y(0@*88YVN_Ve(dE!C>J4$nyf>K2qer zn+7Nsi413lop)CgrClIOy>#ZFm6mxf7bQtVnLG5r+|N!&n}^jL3K1W?0=8Jzr=DQZXsv0g}Qx_VkVKoCQx& zPg-pEXI)!#Zs05O(O|f78v~V7l2S{a`aqEej|g8F-b|mAA=y=d8`_5>`8#2_#N~@E zzM2^6_eY1i1?b(L1n+0VGu~5e3YzN7W%bj)UDWDAZfHO}{McMy0+}!|lTmsgjwqzY z>HSB6FaAVHsX=S;%lk^WLoG8+`VP?-W*E4+YnWD@jW@O%JUI)&#HvyEwnjEW>0;!l zsdIh2%TrofGpiv4*lgPV!=bX?(~J{A5-L&uM1s6ApR@7%*(9GG!v68}%_> zb#%fN7f>R4_VMd`L5Y0mWL~Bbc+!anUN48~LRo9{zozhS=wYXqiy5p;@5a1$7He{> ze?#}}C$C8&9kxd6g*lfYxE8IcvTH&|EfPA z{jna?deT)5vm&W{yDc}HIW7+r z3>X32BIteJP$_ZKq^EG>u!z7e;sBJWK+T^%Q~@v&xPh>`abk@;9Z z`VY9}G>M6VA&ye|Q{Kox$r6l-l6Jxrb~}zE)605Lv$4z?O-J3dG>M%+?530+t}oVe-?rreYL@eO%~WQxaSRb zgc`w>^s00H&g0L5|CdxWmTdF#i$-iN_V1BcYx78!rwm#~QRup7On#`KM>+Wr)Mx!d<>9CGC{?j`iJSt`coDoQ#X5PmNMu?8^z(%5dLJ4rRJW*YOiSP1Vr$728#eq(YkZlr}h&ea)P+X~|)YB^e zqos}q+FGl_|5CpTPnXKR^h+-epl8P_b}^r)iGU7}FLP4yRu8582Z#ts7gkU@QL`S4 zw;fzev^Yj@KAQ;@~qtkChV5udF z=yO00vA%x?)D*D1TpVO}pm``_MQK|X%RwikQ*JOGs{mvzX^GW|Q=F+^OdqnqP3u zyl@BKQJtk65RFkpI-Jks`*Wdi3?u6y{)n{Id6NPXvZ6%+yP|5!e?9z7`nBIN(dr{u zUc-l9Gmy;;#qNVol~AT6j&cg08HS*Z<&F0(b{B_vk`h7{!A%bB?Zz zZpl=oL?+9fBWd8jj5t4<(h=MhS8;E09l>!d|2BLHeZjL$n|6)EGl>Z`AJxzbI6WeNOQ3>2jv$I?fA zBjoeF5bfK>rU=NuWETW&W(ciXD}Ai(98ls z-$qS8Ut#Rb^JpOSMh3V_ZaHN>!oAJB784j_rtdfw5R3JCiY�(ip)r%2}nvzXvzU zmP3VwOX{A9jTz7h4v!Fpp?kGX%V0Se{L11YG#(ETu?dlcA%Jc`aUizERRvg{*s=uunT2BYQqz=4)i?VkM;C!#F0Bi+_^jZi++$*?p zxWk?;m5TS|FPVRFS&k78&j#ARFi$-gnF)5a+#)y$>fi~t!J7G0{1cOw5aQr;RE<{yLz+R+>_fkWtO?Ye7Uigetepnx|1 zLd=!&0=a>&1kSSUz|tgHVFdECBjm-RaO^GmwgJ&3*7$WSXTREHy05=C{>pgy-7z4SLf{-f2O9lr`DFc9h0%= zj8G{hv${hALn^L}*V7YE>B4_Tr#&swaM)YouFKZ)VIS3F5kLvCY$)zxZm^67mqpZ<rcpD;)dR>0N zQO_j3<9ij}u+nod434BA{8hlbju z;~QJHCi}#5#|7i$WpjB^>LvDx7xU}O-RREl%wy`T9vk){pjPhWG4j3`o-`3e95(}7 zPq@F);DHZgS~8#wLhN|XQdqsFS0%CFov=-^=-$ik`(t-655CUWcNvgaC4g)yx6!`J zBKx%ENHJ+=?QRam%;+>(ekewIvaMpU*Ay|gqYy7Oy8s{9zHN`n4T`}qr4uh5v{ke6 z?C2XccGbOBAAL1z(=)VhW)wKIIs@62{l*>E zj6Pze*lU`@OQdX8z=+Mkbqs>m$RcS?DnE_ZCerlFl?0XT^m&Hr%S+EW7c2$8%SNphKah9~@8Vh(<7RSf;6ejy zpBH^m!nKBy)dn8&!Z+3 zKG*ZeE`zH!lj=BWiGa4R6Y+wc7=*H+jBrn_>c*BSi$73_S25wb)5l&5-`qjbdWDBy zOY_FR$Jm;$_8LYYTJ1FgEi%13X0*GHTCMt91U&Kh{gE*k?V=E;ZSNN%0%ER!^&3R7 zm7~VzWc3G|Obn#|(sPV%y0X8My2n>!>i@@ToRNmC3&Lxc;A7ISN-VF(M=2pp(9*vN zm6t_KiaT3RNl54r7{%L;tO2J)CO{-t^a}4$q~OHIg2zaa?UJo#zuYYI{^NU{`+J!jWk=|NWzAU@!iLrnMDvueEouoYf9$reT97+qiV#| z`TIV9M*L6_&q>v~+fQCGO#IaAz$kK#i#Y%0l|?~J`V|<<1l`RnVf<(?ZBfWCs?Y4h z>^yy#d_0gwco)&_(`s~?^urcq=y2HzEzC8(>L7^7iKVxY4XA16h0nThd_a@er!j1l zoh}=#q_J*c^8W2?B|OkQ7dy!>N;vND>evwgE4T}RcESEcS6kFl%VV}j4cUpQ$fK-O zX`AfeG#fjG_~=kI8Y8X#vdz7F=&Ia(f`XMcoN{Jhs!{QL-mj!s`AkXEF-CktAo<;M zkw{3P`{UnhP3?}uzlJ#Q&mjmbB6RfAHliZ!bmRxXQQmi;rraWMy!M>9e9VU`o@i7n zfd!<4fydmT#9wVWvL5Vu>Aj|kiCRrI^7lo zFt#H;Y5n*>^rQ$zi{`6hX`_hl<5X4bCp{5{!#tp`wRipV81u&Xi@@mnHyll7>s^a~ zDnlI4UxN9jvH>sR^}HeU&Q3_JSc8g;=9Ip#Ky^4)ysCY^8Aa3JG8=@VDP;lMUaVNQrILO|9^0{|rW}4v^QvSa8r=ouo`V`kfgyo2VdITGiQCaZ&3f zFVLhTV#6Xuauu#OamFv|oWI+2GaLH@X=ko!54&*v=DF%%;4R||!=?!fKZ2C&VsZGR zZ%O~+OBvL%${q^}{LXSZH9|+*2o}2(O!YQXr zwqF^R*L9K;J#yD?z;8m(t_`CtC5%EKO@Ka)$gNCwY6gZkOrMJ zdRMSHb%C1Q&jsKCJ^+$>#rs&xiE8$8W{hPch4KY4ifP@YTz3CZ*Vz3tZ#edawnvws z!K5Mj!Th>Zf1A~7b9rA4>$iWa@#pW|RSwfRZ8tIo)EicuXmS&fZPhGq-pCD74U^*S z)dc@HGNAftJ}J#X4n24e@DzLcD}Vi^_ZJ>#c)=`{V`ABtk&2?(7n9=EsWoC~ z@j`rad1kJZo{TwHEsl9OYwcjidn=Y^+Ubdq@zFbLq}bw)NP$=s+*~QGIOe=Tss zgD;UOsJ|B^noSGTD##hjms^#*V=Z?6sQHJCmwNzhVw^7cz*nAtv4N2^BxI8VaGykO zaN||5ti0xYn1?3Xy9y~|U#wnL%S{UD%x}iTTMc`A;WdUdaCsJNbDWvbaz}DS9u}AUiU&*b`X(^;Wq3*+i!rq`jvY7g;2cVB(B@bWX+}w*4>IQG zgPnG|hDx!!p2JAljz32Sa3?6ZvUlYxIQfh!0zQX!4J+d#DmDU^DnneO@(HbJ-Y2?Y zH6J>o(K48?N^UQ#8xCi>+&t}@3b>;V9}d)6&(kKm+)m(Vh1cU59V_A*_Zl*>`23}+ zu{w@NRjI`ueTEPfp2;WeyfPbZYcq9n21iM2Nr&wD*ZFnJso62)?{e{gC&kc!w2u4b z^r^-2>B5OBrT@=zQR$Zx@+l`HQKRMBoi|lcR=r(xEb_+pE22V&cFtymt0U=aR@*Y< zz7R(-F%^QpbDr{uJ9-tzN~b;dYp?P7)1l7XG)S&yu+vq=en-G>hD??>lSd5-3D5xc zn627-w-+k)JuJTYo#E`FapT?+8UG;-D-Wi5l1%mqH;>b%8`N(S7vxi5kqL&RJ8WG@g}Hh7@SWa8J+G$vDI^@b0c%B9?N8U~8El%RFM+o)bWs z?lnX%a;NIU3l|L~dCJ2TEDwqt>ft#YEYhARgJT`^y(b)(fxny{-dGRSz zaU?Xp)`gm&xEQW#=p`+#r2LcZbQITl`_L$#5Ujs#S6!y2)<2vX zWzrw3Ho`{wtedah%1$zRs(MMJlzQg))Xlg?<|Y`L-7|S6_HdZuaYzEz1_EcU$&7yK z_`I<2GAkpOXNqyIh=gKI1?U^1-~vzUV-KIqRq4g3tlsP#<>s0>&sQJ9C}Z>qoEq&mMPlj?Fkk`c@iye z#knZBL~lPBO5ooLW&tV1g-V^d)Ula}qdqg%IhHKxFjTgiFqDyvXP$MSj%^@{?$Fbu z$@;)R+uYs28EhUM@YaoEL&N)n&4{M`&Ny^IVg!rj^oX?h&Pz@evV{m`hNyBM$*@VB zp_E2h5OY`GCKx@btr^R1><||Xc4zKj_tBJ6)o>;JSJVB=D7K)*9GRREq+$56mXlVR zSn4fDE|{iatx{>BQvjwU2JX3S=_#rN7m1a}1$F*vIUCI^t^99N3%$j8wAJyNLPi7z zOQx-IF4(4FXFIqf^m*4(dLP$;ZEmhDWK{fXOj3`y=0z__`cQl-xv*PVNJ9U8+3G3t z@vLOG&v_h~B;q(1K$oU=1nX1d2bEWRV|<;@)lH&J)?3`SC2D!MjviQVfH-q?I(ux; z!rTiJ6T*>ymVdy3Xd$s<+BhfpW81jZG$=IcPqoB<`6!lO<*0{7m0WS&6gdQ6=xL8_ zt)qP;#hVAUheZD8oSG-~O|CW21BA4346oqfkp{T~pThQ&Y<xMnYbw1BK@=(e!qF59Ik@?cvcGr)$)qZc8CE) z`lB}*-Mtt?GeuRm>6GD#c;=HTh@@65a*801~VZAZDVg95jP^swmZv$ z=0#7?Wn9pLcAV*4mU^?6ep|)syJ{{W##T5f;=knJuWvSx1^y69jq0`-+6IYXt`7zoN0)pM_Vx@W7)gI_RizW_+Ar9Ft|>JgP?pP*FK3%yGjc zgEuoBE%LpW56p9J`()bT-IXiIx?xtNJqG& zO@yFscE6m|P@cMp1xD~4I{!um&N;EqY50WYZ|4epz;t6mp25#alH$T$nuI?>zK;Ox zRX^QlT;BlwW*e|m*nUy2lLn!OM84k7Aoan1j+^0Ui!BblHZLS5=qHrqLEDCb+$(F^ zVP&1p{YumJipTmgs|R!;>6$%%fxZ9}U5Jt^{o`?UzXZW>=LH7TONmV@A6Xz}Ie&&C zxI1HzD|1ZxAK{!-+{gKWeoMZ-1uGuXKf%47CYZr&N3Oz1m;(F0z>?`{>;@3I{T-kK z*eqwbzp#l(XaAw9MtEIl@>fu2&d&2^ztcNlHVD zQ!!;Y5OhAZJNjsEr@N{gG&X(#*OlR}hgt}~^ZP~qjg#tY;=xrxZG5u;=3m%cm_H^j ziQStQ>GbDS{NShmNqXO*D}5WE5W}{YY}y~$0Kc#MF+ATf7s|Xe1b1t?xgtt<}r_ybvIRBYe-#}%n@jQ_UsbcCc@iZq! zg1$lYDKCK$GLX|nq|1$$V@tYtJxOvN(V$V`I)^G5$zX)(;EQ8v{?V^?xzBY#+L;E1 z8sL;()X&!!T%%4IAXMXh<+PB-ZUKPI?^eq=;R9yCzwCn8&o{_v@%J%O4j*jLLx9?U z=X^ZL(q-&b|1t=g($_-7IdVH{PxukXdww0^_D9wzkezHb`19^gOkDO zn6{p_3=DY0or|l1j5j;OE4CwJ@RU}5jW}G)mL5$h9sZCA3*evnOa%+!FY(6ko-Pw} zWmOIxFnV85%f7bkmXxh;WUcQHim!?I*V;s<8S;}zhAq&w54BwYLj8Yv-J^FJ~7g5Y_(!IPzXEx+PU=yfN00nUa zKga*8*xh96l_x6_H%#47!>Z~^<)BP16FrsVj(e0MLz$NQ4a{{ybyQ8iwN3?U+hiCM z=ct;-*jxKCVDqQ+qKWG>n`3wS%*v=uVpdH668Wd8ehS|yHXMq!36|X~PdV)MJcQ>% zZ4p!ho;VkzS$Pk6=_}4-Fpxc)OFZ-B#QR>^>3>Y5CNgqw5OiTrlXdt0FYk^Mhn2jK zHX6zy(z(0={T3sEzsNQauG9pkZvpFV4QWyqLt6?iDPGh-9dJY3HJT-!e*ugQTIOrZ z9`r@8V0eYEUNKY_E-TZ)UB%6Cx1s4_vLo=a)X-{*2c9t52KoG?p0JO9FS!ka)o}%X zykCUtaDjQk4l7rIO4=J&22~iymK)qIII^50~({@rS&QfX;Sy57a=2ysZ#5JsQe&8-9g4 zz*F*;r*WknXeG%d@=sW8%w*5+#eJ-!QF&kb#&=@)6Fa3Yp)KWn5qrDh0)t%-*20sO zq}0kCXs85mLD6>DD1XNX-Wu}gOwo8ltcL;QTA6C@z&1&b{N!NqPX&iB3jxqlTnR zfFGJN3HbvT0FCA==LLs*^9kW#Z?S4h#7F*ss;aEN?n}Z!o3cqlT@rYo}Sv7Auj)Y~2J~{vM6b`6O z28g*+6!##}v9wX;sro~-v+Cw4DhsF5yc93IRarYjbHsfOs**plmWnm=N?K`+>E}%n zo4sOVv{dM)ydLe{+cET;)oB*_*O3W&pOF=&c1e^{{Lj);@_|lE#(lFyMv^)8?FX() zoOGWOXyA^EqpYa4v=N4#uBifAfpjxxhD1Zv;FdQDleKuqNlt}&XJ)x%RPEaxVLG zeX@@92~~{=IH-Zkbkj9M;K%Zh)u;rzHPC&-K&|>JP`};f_zk?;E$04QH)qE~_|uJs zo&7mM&V4KyLZX6cmh!&*Zu?NHidESYE;V&gjwTv8qv1aO2^sb#vp zn#re;i3rM#2`0J!;%e$QDW75}6X8=TTIl>*$M9vIB~Y{w3*$AIq8(Pyx&B{SA^)HI zbt?2jI5xwHaOr}C=&=xSb`XQuAlQqmj@Z)Gj*Kj8cBh9aS+X?6It@alg~uq?Urkr< z4&P1oYlTdTQFNPzD3wpYREMul~$IR4sBwu6lBUsqLi!^=ps>=XM=4T4kF@& z9$&1zP@0}Zfid)srDIl&4*ysc0w88Bl-VM>59sm}0nG#{Z5&|xB8BTkNK}KKnC0&{ zAgSyEm~Fvt0kgu{Wn4oj_O#Zzqzl>eKhObSl!g~A?U1z45fTc#g_pimAf)?&l7k{7 zo>G+63biqMXZv;%XQ(le)ncbL2_iSD=cpV18<_?$?tl(}Bms;%({@n_sLF3;exzb| zd~ySTka52bFgga5wxF@^g$GR3H;vIH}-pCA{6VA+hBvPs-#5lzQ#l}+*f$~qb z8|d#f1s3nu(5XT6PMB`GQPX1hsxsr9d^sx$$nQ@>#!<0HV>tl9oI&TpzV^ z>ve(5j57a{J_xX1XH@p1=%JHaq$G;O7`VBKhF89 zinPpOsnD5hM*4j>cl&|+lQ#1_f+ofWj%|afi6;G;eJl`dYewr#oK;HbVY^a z&{7Wp4JyqP^F#I&Tz}phVKi)R4$|-`M0@+|^=L*Wf7=al(vR@?^+Q>|0UxZbKXt}N zMt3#9&&9yft&+Mu*ASu4!jUbCzvLBRu{|SvJ>a@D#qMTk|)C~9#pdT)Tqg<{C57LBX&xycvan64-%3|dsy)4uF|4I$HA z1Dw5xjW0n>6(^sYY(TS59K8;YAdJ{=0Dc+!LaX>S2}FJ@dEA~6jh(bMQz zmtF@e2cBfEd7VD1buh{|D`La$IC#J^*Dbm}b$MjL0h=oal9MdF=SJkHVEy^2T)0XF z`>!5Qv?=JJb0{k??(5PAUg3$vjYe77xjF}t9QuqGR6+VhHAb=p;1oicNHP*x$i|!iza@oICe8Yd zdHOd3nVRnMR$=Om+tt?IJ${)kfTm2xFCc$b&0-a8`tmLKIa5PS%Bsn49Vky`Uf-U1 zOmv0s)TvubA__`9cezb5KihjlfERQ|LWQ~M`!5a2=5#FkXD9h2uzgf$D+z=dMqrQs zO(TB>$(==~Xv79q2teb~+Iso(R`{g>3AfMAF4rtQe;@%ro18KW?nHy_%{%T}^BJiB z+Bxpg^*3z;bJ{X8G+BOmP+!k}r7hP1YQx~>e&%0q<^yX?-}$Q1Ua@9>!=va*1)X3# zbmzlxSRh02riGbmA##o(uU@Dgriu~R_$W2@pUA?xepU^Tkb)?2ZlbkUxA>f}`w7>p z4}q+wf|ic-T5>5wIqRb<0O|5x(jy#*Uf0W@Pc$MTr9>Dk6asayu@~*~91jysxPP#OLqT)O)ENAFrG!JBQLPE+VpXHB#FR5<_~xXhG=l9?m_dacTN z=qvGFXRk>3djFcKJWi4}PXcC}`L}e(xOAvJHRT$Utni7Sqbx1~<5LnEm9E|q^rFd; zyw0s4uo9<67Q z1>8-&J2&0u59C8Ct&q>Akf) zgZ{ITxx$D4zE3A^xb*Q9A-7WmpX+*2+!K7J2OdLaDGr=#B*uTpP za3IoXd78MKobsiN1%RgcZdvTqsItU;%8rQwUVqmX+%$kCRpzI%j=yiF;G^@g<;*<%Q8ZifbUNb=Jmp3G6p_LS5v)kjIP|c4;xabxCL{n(NAc zIQ_MM@i5S6tvv%jPx(rZ;Mtn&$*#Kg$sHn9T`g8ULOQVB8DBQ}7lpqXh5i9sqbu@YX?7l8ekJGZJ(jw`un6QG zXPFYtt%UE#H(|lHV^x2ox4xM9KrfhunW*3a8P2zMztB06hv$`02t*S0hmpq3Gf?bF zokq|c^i{WNWrjZds>B^Vam^F{C|I4hC$}ZCHPT((Ir@mKjS0&vW4e-`Jdw_2J5hg} z`2E`{FPs5^%PW98G&P%-r8Vh=yI3`ejxkZkegioMls&-i zJ}<6D?K1XTv}1-83Y;!TJCHJnAA@hDo0HK|zZHOOv~R|nu_qS64&qfUiyYs4z0GVF zTkS~)9lF5XU+n#rh4ZvZ_q~il^0;(?V%wZ6v2u-C|5eV7JQaD(I85*=dj&5wL5wdb zbOk1ZuAaMg;xF8TZAIu|41FOmm^8Dx7kT)W;t^0=CBm!#gU zt3Nt*(uzqTk`zCm>^|$r#I~RZ7z|tQN0dMeQb^5O2Lm zZp!|PnQZrYwe1PHwhhg@R<&tB>>PGY!Uk({T8Y z6rsjE4hLL3e1WoVu$AaK>!H_x_K(OH2k|x0jeqC?<8%^lm!Pg(&RT0C4tOfc4*oBe(FSA zvzR~xD&icjyY;Jlyx`7eOGfNfEM08(gRtU{x|8mYm`2#lDS`O@ZF}oG>ji~v`+_i~ zij>ktW#UzwSlKBGwroLy@<#SS_N1*KWCkxP4Nur@E^2YVFkU}pS|oZ&S4!Ql5*_Td zJ~yj(b%yQi3-?>Gv@Qb%uNVfdfN_@ztD*wT`Rw=w9x|yiou>jJ%Mr>NcX_Rk93D&Y z*6b6wF82|ORXohu1{c|Ika8aHBhMfLKZxd7b(^x;RS*#2-rsaQR zM2p%er<}+f)9N66b&U$FXFQIo$+Z|(*o1pz;Xt~P!3&}_`(KZp8!d~V;_BJ!OXqF- z+q6eIu~>}y^&3BL0aH{cYAM>;xi|72sQ)F)q!7EXcneQ&P!?w(uBLJM4xoa=>+ z|40~H-(BG@Z$Nkv&|3@C;jOaEFDuH7C2?}AEi^w+J61C<`Kccq@9iS8#jFfxJbabY z2zuJ@>KgFY0%{muQRA86F~H8r!ZxpMyv*_Dy)EYNZ{RemCX5R9r_cz4t*L|a zHZ_n`4YuI_NH*(|2{DkuvSJ&{{s3DY!-aQ^7=pDKI!~=pW;D)8(-reAJZ~+oVyVf` zEWC&|#}H7pe)SoLHvjeL)kq6|gBvPNSm#s2wDo zjKuz(A9u~9Yo+IWNFC?j^cAX`i#V935W3$@Vi>l}A9vl)Ze|l0M7CCudB|X*$1OV` zzErQWTu>lFc^VoaxeX}W{KeJJut0iEE|G^A(hRLSU$-CeS~4 zg~}1u%>BbvtXA{1WxIsEsc%BM9|BNQIrN4_OGE=jD^rOr*@1&SAxv)iMtT@MscLZ(0&x$^aF8vOb)RpC1$E*2r6N&L1Ix8F1rk0DTgfJiZ zJL7b^?l*Rzav)jfwd85dNG!1Cg*DepnBG%QXDz0lS2OgUe}R*Ys9K*p1sLVcKOs&l zP}WV$c*`8UtLlT$+D+FJvUW^WPASPB;r}d zw*l3?^SlPi`*I8o$*pZvs$x+!>q~K0m(7fCyTguMT9e zKq+AJSQz4Rbu9T1-JBa82FE5yjD%;t2i^uM}op7o>rsz@ARf}0w`e>Xg9&D}+ zKXCg4Cu9kM@3a_6!9A8KL0)33$}bClOQT1Q3g=Im^~ZS-c~Z*r9`W|%PN;(od*&%yxE^7$ii1%K6E zeLuunJg;RELhnbs&y;L)>U<-svCd!i$p!T3c^GnIW)=^30wXs~B}#+kBxqqkv&CbC3t$tUX%~i9D^pYGUo}V* z>lYNft^B}T@43Xw-dx)ht-Ao<0K>_z!~YwKSyL)s_w&aTlpgKDy2UT)m-A2XHI4Hk zVE>4o3DiL!Fe(Li(Aj#0PTdb7#Za_$36T4S>-1!5wNh|(dC%wzQ#G1!cKrr7R7nA0 zS|MK(b5UKYpKxQ+x>P#>Fq4t<6v>tL%ajZ68eqgbQKFhJqQWdE+DT0S=$wr7z3h;i z3oSm7ttKK-KcA2hWA4R_4SD%_F>>EfJ$HcaRV6oCD{c`<50pmRuD_l8WE!a(XcMI< zxzbEewpB1|M2a1w-zE{izm^Imd&)$?r_MLfQTTfNT07w~!pS5;;eL}Q<+%cbYV?+W zFWlEupCnFTQI=YBRTJYTyw+dj=^aVY>X3HS5`j|M@kSUpED%2+5&s-1yFn4*tstJn^o}j;bC~jwhBmFbCucK3Jtmr1FiV{XSj$2K4#jb| zpdw_v^URHY+TW6G*1C^8cSbFwtD0PxTSTqSMfJt1Z%eM+rDYmpeUnXrFSBxsM1Ct- zJj_Btu=5iFf-0Da!2^*SM^(L(5c0Rzlrx$|DterAoU6Nq5}?N3=ClcHO`nQwE< zz*1JB$!I{W-Hefz^tO>+{S757?JlksF`vr>BjX#Us<_WUS^TvqRZ$UYIG5&zu&*o6 z9X8Q$PC!N*HbpOkXrpATQ@q-B_E!nN%RKHe2NLHxuw)T2<~`V)W3%+s!7SfqK2Y;t zQx~LLf`yyBsQV#TED+C4Q<9qJ$QX~&$h*16%rcv|EUc*5ToG!5&0@7RW?(u|4z5K5 z21G*133R*JSD)Q`D7-4>E!498nsg;?R=s^Q`Yl6O0(9`<)DxDhoR^AB#{Rly+)?F^ z(9ntNhAP78@QkDZeepY?VygcPp?GCnmR?#4T=P=MD$X1N%lnymQg`U7Ug+_NTYoaF zFgq}C8HMo<>j$zMD0Iqbqp$N2Q2}L)6;Q^|0Lf@MSR_^UCMB>S8DA1lITu(@54GcR zB3SBy3uKNZzOCEA-@3v7Vp<2T#s7k>kNo;Qr2&_9R&+G({lACmOe;|d=25J`_;MjM z+14)Wz8r4d=`!XXVUMfEm6-Y8MwC=m%Wd-%@7REiiHMOdPFU;StE0-6k*{oMR>!Yr zqdUUdB7o9fo#0kfrQ+SdC-zTnu&ayq8r>S&(Yq8C5@t(4=@NHR|G3bRvnKZU?Pd&*N~=CF0@TYq`5e(>kn!_HVA zWfn*3XdMQSpUa3KzT~?-U;04)HvjPjSuST2r`4BQZ@oh=+((zU7Q%L^_5m0Jh|9uC zD}qWqWlo`?DMiZlb*o%Ikz})1p&l=cBSN+m+v9nG{pP@_iDBpER(I(o&s(0hT(7Kd z>dj2K*6keZyf1=1YzL_??>JWyoG5A;0&gsDU{CC+bT2(3kno0sOG27w(H9!w1^gdA z>n+7{BmbNymB36W^r>c>=t|2@pY2Q~Cy#)bWz&P|Czq!0HhTFyi3ZqSDO}fUz90D4 z#Bl7t6EyRa@io554rNx1>ex@Cze;aQ@!zscs3k#oj`feikiYxFM>kH~gDcDbt3NMb zryj@8-gyl>=o!rA{R%iBrnLsm^wvPx25Xz#VYb4bt*WE13EF~blm!NWB zbaSCZ6}6(>k0tQ-3K#Pn(JOGrbGtCpMzH?7qNtqp6hqbc3E}q&X!Wvq*x2i5{MuP> z0q|U*8UG7~(Kom6=oC}7iFoAjI0r~|yJ^3DSH?IlTBA)Pke#Z3msq$f$AA%zk1ux2 z!j*If;7FHa27Lt7s2e5(ew=k3J&en>n0gFu4$MM_bGXFisp#g<61g}jwDM_lN+Ovk zmB|K0(TAwOG9|+_f~6d?B*Z5^?-IV?AI#TbsvwE}8r=-kZ1*2zJKA*qxzYV81UVAy z4Sf=D?#!-IfFbx@)N^0 z8TnDxxnWoqBK{42ZSorJ(O&W4yE!y)SvGJTMx5Lt3jB4<=lovUB0rfZ>L;?ZXDXGR zPeoJlp|kV73^c=m)WZ4J1&db$uozObMpuVxmf2ydO;Oej=7tok@#vndY(!S}Z+v@8 zEX6XH6rq-~v__h67#g}+Advk<=@vJ z1&D3cUFSv(`$Pbg0qKz^@F@+$_6{2$A5iha+DywGqTvFi2s!2^(6;IBMo5JRM(VY7 zaUJ)*0i<88xEpSuIxKLg$)+#ri=apq%HXY`D&wL`GgEj!SdxsO8KYu23+ zr&uvpFX{Z_P)^Uud?H&Ka{pC)$Mu2#-A{$)kexSDwisD+WtMx2>rIf@YR`|_3HQah zFMq1zwbcvY`4%xRISpV15KHoP{~6ol6^nDGt)*8@Tj=S~kjHbMYP;S^_;q3~{~Ou- z6aD4$ex}6(QjU6-cjmCvns+h>^R|a}t$3qEr+uL_L-0E=aXZ^a=LtO_o}!esOn+Xz z%{v5D2D>@QbSiz6`^fb4=xDsM*LA}M76p)^?KU?6A;FFRSjFL~*6g+R~WH<&pz9u2k}~Jfa{RJW9?ljmW4vbGi>H*j#zV zkcl^hy0*sIWJkMu#fo-#6Tnc8Wkm8%PJ!92i=37fWHQw~yGJ>;r~sDGk@Hvl*8Sku ziwhU6_1@3oHf5M=m77VisyX-K6VgN;h`g_EQRdmfoc;do0M9&YG+rz20BM6ZfJGZ4 z5jc194j)fa%32OJm1e7vDl&Fb(q_MO-vR@X(Z%PXSTANie)0!&`f&TcvU!QhICKTp z-}@ri*5UsAv!y6al(L~hOyzI$uo92~k<1~ErQd92qu&C6I0Q9Y%Yf{=g`IxZPHsI< ztf2}yk6IYP-3X{wg@t14u*Vy@w<3-?xqInjUw3y0HyN4qYGsiuQ5z*?1`TMHJ)^}s z5l+?in#bwA7Q~SA=WVmsfQ1H@2B~-?1NEg8e{dR8pclwX=ss zN##KMdgGfF1^BL|-tj?%*M+1?@ydV< zm<*85Ezb4Ys+h_Dl_Jf55%hj|RvYD+y}XmghN_7?7P~1GP|^{^(7WLr@Rl%H7>rWi}TgP?o*j)X-YcfR=@0H}e;iWYzG=0SWYdm` zajFk3wi=?dSyzFWT0<4`CF52kio$U*&07dKwE3Jx?`9>-{AS!BZ#&%p(s66p>m%n{ zIUKg=Y6zlvHn!X=I;`iS;OOGlY(h>~J6xM#I%;erc)pl#4-dI&tQdHQs3orSO2QIT z`);AXeI5zG19*i!aS-f{(4+^$KR$#h4obumJ^Xe>0@92~h^WxJVI3Z}&HMD~K_u**QhVwAGv%{zLFAtOE5ZMQ`(@MQ$WHqt*XaKJtiK0lX@(N9-2cE{mhfR zF372Zx5zlJ!C!L0j*KS+tkdra%9E2>Rgpq#7tAr1GTrSR2F}}F*;P{U37K$E1?zHm zbFE8I(+wbrmDJ_Qe=tb=5e~e_{076pB7vqUNv?wk05w&8nB^3=U;~x5X_O>b4R?&y z_>WuHx&RAbM~j4Bm5-jA061^!-|S182uR_)nLLKtYMk%qo2=+Q`o!^?OsiLXk*~f? zSaRP5S4*VSiu!Ti-%y%uAl`M|n zO!{a8588hGl-B+NuP~z`7cCo;gZbd8-W~WJl&(V-^x@7os!KvG3F0588iN{k^eDB} zGCMqU9^)J&*htM+n>r`01ZH*CrziCt)X@a1u@a)#6s*apMs=f&dCETHj$5pZX=WSS zgwYPeq_hrFx#OX;0Ls|_uNZmaC@;}eMQzpHN%`4tn~(~n;_}bIEy|5ytoa@zcEF%6 z&h^h0AAxsIfesxGp!v&^W{w0RirX>xk{Vo&ldcvdLPh zx_blcLyK0N7}yFicS3Ch zkufOg%bfGpe99Fg=eXz@KRuIV8mJSmu9WoPXG+KnlQQw=mdN04@Zh}ff)PBMnF_EH zI?F=24(kxGAm;CZL4m*efQ^J{Z2LLf0+`&QD}gKOc`ILj!5)kKloO8?I_3TOT&(Dm zw(RJyb;jALk*j+2ShI;1R>A&?pN-v0%z2e@Huq4&ToO~8%j^m9>J#t>O0p?j_Vs0Q zzFxw@K>Ym%# z3bT;OPP}57CZhX#57c-a(_Nud7%Z9un!SoI)?P`dDe^2|spWTi<2#H4$0WNqeybs~(qv9iCFNY> zQX@%DVNOM%k+h3D{^2N2BdOY;=eRJS!9|G;QR}XRk?1R`Y<8;8{8~-Y+i&l60vr_R zFeRJx`qQe1L{+eX?VC?GtF?zp_4cbsyOlD)&8JwXciRK)SGb1=#s^8IHJOuTUwkvT z(<~;auNwSJFW%c)BA1^;;Tx$Ly+X!3m6#N3M;qfO3mxP0kZ{7kufnSrw?#qvA&&u^x56vNkdmVnj{ASGo@ZBUsEK%(HtFJU>rXu{xhWAHx`DsLrd;gS>xo-;3%pt~6F#M4e2PbPrmXjr z4tT4D3B5;pHLjzM?1tvK>t?`B1_<$;lOGNA zvbS@_OJGuB_X~(}|M_NwDL2DFE-);~AvZ}$6~9v8vRfhIMGyK4y;c)Q^Wp=Bl9}{H z2Jk{7a$V)dWf$DY?-W1M1qKr(mAebmh$Q;1v@f_Mm_}<(`&cC)Dhi(xvAXa$L@3*u z$H`k&*8e5A)A;CakS1!_vL_oZ=o?j8^L!*<1f;@ ziqf#J%fQKSON+f|SQDIr^c9bDokc+L%TbGRHC_T;O%9*(rusb=_0@Xz`+;mBKV|K2D;r6WHPqLD9J2NG!X@DOQpsat3B=Wle;@5Jacbu!)L5mK z1+-$1Hf_No0I+ts_@50WrPcOPu-4O7=5=V1SDr?F>3d*Q_d6t!MSjxA_?(6If~6`? z_Nh3A?ss<8F8EA?unA_9&t5J5KFiwI-KHkpbpi2q2eBZ}*LfpJM^}#|;jA$Viz8`r zb-{~4xgd1(w74o|blxx;bZ93^TI|DSIE)**Ta&bJw)tf!4afcSS;R$H*##Fm1)fZ? z3>b2HXhjA({lfddX3<;N7q5VicYdtCCWvvneZ|6$*3S-xi8!&&Ua*ahv=@7x?5Q1p ziMoWB&!tz+!Zp*U;@&=A$gw)DHA+-V$#{D)uMg*(4b&#m8^J?iL~58k?KL~#+(ii_ z(n&q&QmGb^xde`yaR812C+pz8&eQz`<|4Og@u71|LlDznf1skKnQu% zChQU385%pjz2LA^wV)I%@G{yOI7du=R#_wO5Tj9XHJ_1FeN~B?3KdqBvzjpw6EFpe zOWq@LLoFKHK6Pq@=bm+H>_?CgxsgGq)1GyEv+xx@ao&)O2Ad|F*SPg(k$#V28CFrL-PVfV7q$>9&TBV`q%1oSG(w``NZXi;^k;d^InYFCRu>e2WKnnV_!R#{d~c7EReQgh8h} zm_K=|61y*YxDS5TTVc*<^!2*G6r`7YDd039C75GPs@Gm z4qwM+OHmEux`%my@;FSC^Z>QLwf5&&R=G%rQ+t<__d5Ygwrld3S*vsSIc;!O+0a=g zA2h={eSu{9WP=02v#eQ)vB})lW2)G8VnPL^tfTO)obj=bz(g}rBAVFl&Y-HVzlKgi zxe=0gx!2dmgVAmnUlOJQw1zavg5Y6NE0leIw%WL*yR% ztOirusb6?C04Zt!`kD6}WEjk(y!l-0vX6Du>_fb#PBJN~6miWM(Yv655?ZSKnKS;P z_4j;2PW4wQbC75;&j|!J56K77a@sE;2gR$>UqWQ3`6Nf;S{_4tf7`P@Otnd259(Rx z3ptFjYqHnueH9C<8;D;X7oz@#wcgBn&u^kldA;L-6l7QbIRCz-AW4K?%&@%XGr0y< zcVFk!i>jZkb?MsafJn`BRX)M$Ia%VUBvugt}TuoNw&0HwH686+3U8pX_aPRx^voG~1+|7%dXW zYF3;6{=dFPfZ2!xebB+{&X`^K-1%@6Vmmrmq zt|gbEZ?IR^K(ofL7FIo(j)};FS^RU=bz*w^KINQAE6T8un+cFu0egL_r{EQI$^6McV z_)1dl&-4d&?q0A|TN2r;^Q&SWlT%Qe0z&|#N;zgP_QLz#X(VCfh;jGxW5;EwLsxZk zO|(>Tfx8R$>--l~yteQBZ@8g|h=?Sk)tmD-Y=$&n9HHfnw$pgymCOgfTLQ|!#XvjA z1lvP4GiWdIGuPNRopGYJ@3n8N z`015#$3&w&uZ_xqf1SW(#y3l&uI8Et)QgT^0dJ7;l?>C6Dp_L-DxMNlJB4DDlwktZ z`1{7H)P_r~m!s0UXXaUjIDW?cMoOB0yk>{p+GAt{5Ept%$IVE{H2*Bx8==cY77r8v zul?xzcKrR0eeFx}$ zP{ak%dzMa6R)mG!0)th#zka-(dBN|_EQ1!`0@C; z#=ym)$skw;mba)VIxLI0YfGq`_qO2Ae=D%`YGK1S zqZg0#>~(_9$W5M7^N}7yg#xJlqC)GLMf4&x3zE{TrF; zs``RGG=3#fv5ug!y8#q8gqsRkgoA=>5&^fp&OQgs9|aO)I)5K-4B(J#;w z8LQXHS({>4y5GfuP?nD-XKUB;+eoLrwFFt1chvtOn$7y)y^rph&31sMU~)qPmurKz zh>-rmV`6m#PjydYL#90|Y|ht(z-#;|?2{{KI-~P+HU3o4=IBW+m`hGXDJ3^1oM42s zJ%@^Vu04vExCW2VUL;=eOW=67qreOgwgW}0jK8RsFS>AZ%%x{8#4SV}2~+ftqXEJ5 zYG?58?8Mgd@=@+dPNjZ1-vaUD236G|*cK?lTz~omD$XLraUJ#{5a}-G_dJA;18eta zyHY;vh(FB!^JDzLxA;q+w}`-V?lnfGwmPY|dix?}wV%Jwg@HtX8RO7arvy;s)zTcD zisMG_(9jn%-EMUZUKu|-pQldHqX;-FJbjsS*jc3JJlm90dqp`t-y+$6MU#%8Kg>=y zB3ZUHpHl}aIsQ&X@!}Sdtd*Iyvc`shpd_#*-f`!5^%CK(lPPmb3eM|6k}sC|0;rgk z`od$pC+A=O-?sOz%wjLq&JMC-rc3HL+1>1n2t&(}$&euJmEMHnWv1OsXk~Kg$w?sB z(j`A+X|^RW^=tO-u;TPS1PLkaqU&^Z({Yb;*;H-C*mXj%>QyNU{^}u@S{8(tLZ|Xj zUBLZ`JPKc8afmyK0*j7%;hr=yMJV+M$a6##aZZ8FM?oZ*p=7oEhyJ&1COXa}=zgs| zi(~@DNL6Xy^PtS!IHa;5zGKyC7EU!5^SdYm)|8de|5!3Jo`V3j@-FkLF&(;~Aw}mqQ~fqaETo)y zR5f)%G*UD&QxWQjEk%Y8mOm}vBbzpL!gO`bYzfNx0?i#59V7w&YN+CmnfLf}uHCbV zwg(JiDEh;O`;G3$DEFtsjNhz?GznLU{Pov*t9jO+wZT}g_1WQz| z%haDITB<*}bmliza61nKS_4+Cy6PF~vUuE8J?m#HRG}tBl1~tq} zs^ueacMpF%J8@|cK(&Rok@A+eUrm&}tau(kphNuaIeQs{`?;KWYmrBF7{WA&hT+R% zt!)GDRRXc6Wka51wmLsCUZp0DbCuK|Hy(OU9f5Wnd+OTnm-trvh2EmoyS@djtH{=5 z#YB261!Kz>GY&zGjjY0AVry=QC~pC%qfMVlabtZ|7Z>iha z%Y;JEU1&n_U=>P-1eKCbHrHDmiwP+d#nIwyt9*Xy+8y;6k|HIeh60_od{l&0W;J|7 zd@j>VfN(iOL69uUQMaSr)#cFRQhz|_-s&|>HkCffPUfdn&gX8xt=0c{E@`#TN1za= zFT0`O1{CZ*`}&<$q_UFq8*fVc8ILKCl;!dH%@fAT-`fz#=4EvK)#(s-O3M0DH=m1R zLUWbh`a=ooG)M7-D^F4HXDXQ;m?G0XLX9;<9YzjcN6ucg*l2vTn$4vo1kBZp01yL= zQ^s#cYB3E|zcI4DP2WDEZy0Lj&jg?}|B?z>lRIITk~UPSRK!Cxw0)iB^2~G`n?Ktv zO;ftA+Bow7<fd`?!ZS9rK|W(;a3ai4;escT!tbO+3}_; zHn01c)%??ne=Domp*Aah+o)w?h6ve-FC)DL*7mT{;70f+@)|%bX(jr1);NF(NpG)C z5nK+_TM1s3<60WU@%?BO%v$pAEwe2BB(^+flr=^<5J(?vz9YhWA;~z5oOh7pj1BJzMz!0lE)&C&1VeY*!1ufqXisA88`$?T7%AS zabJ(Ugpx2%&KAl5lC)LAlodr2j{$YnAY>z{)m34X8ZF@%GIP{p>U@6^?*RJREQZ9E zf`YpR_ZrtW{>qJF0N_W(IY|$s3?jvzGL3%?XDe3#BR35&;)-wS(^r;$p81{kJh{Qr zKm$O2n16q$f>40}Ld|mLvPl%kj+B40+Q@2Qcf~%po7-P^xhqU8lZexF<{TZdy3xvq(H*>?})YHZ>0=TTW zH9=;PpXgTgQ2PN;j_>kk(2lr@kGt-KD6t&vV&}tH)?(sM5O&GbqXdt@9zgGtus=A! zc-mzWJvTd-ry}g68C_uRy=dTH=S@xlGTS;TA20_DpS7+lY!8f*eWhHk#z#fK^cQnh ztop<#oGv(e8y2w+IfIXpZblYqqihy(b`rz&SQH8hZuI+)&APx+y|!=f1mX$8;Lv zaOW{S=WIr%(7E{!KjiAxL-E(A@}<0@6cwcS?67 z-Q7qH-Q7s1Fm#H9geWQLcjx_n`#21jbNAVM?G@9k(V}s2!2Lla?Z%LXdNXo@|K)&~ zF9es#3Ly5$W2?zdXVaitLkCyw3pgbe0fcERF4+i>KhBCaW}k$}R2be5Q0IEKS}0S% zkW+JI86?0v!Zu|!nuI+3{rbz0{2tLcI@g=@7sM4}{435e?5JqGHCH;JocuMS%=DGI z9dBe>E=$mde)9}YN;5TA_9v^mS>g`YN;Ce(!yHwCAODFLhQ_thrCSTNt>0h7H;-|pnEOj!h) zT3!_BA2f5y*e6mNlV{>v07Ii}0I82}UW1m3odxJ5-82+(sW}16gMiV$+5d4<> zRwE$OkE-D()Lz*zyb+x2&%{^-SYmaoav~4}{D%+v?rq3O1gBx0INSjvaSSYqr3G9B z@1l9nT1~=%p1qobm>$Thf*MkEdsDJudubALJ5WzhY;r2&nBMlxU4?tS# z$_ue45&;d28h~i3;LK+A!c!PhY^PUivBuPEcXp#IZ&$#!tV;?T)?eb~iMntq@U)rFVo28g@wf5eto#AhvMGC&T=DhBkumhEX(hlOgSe+}Aj9&vx@5c@ z$+y3a2?6!hj|`Q6+Rq=F*3ab<%?k>1T?pvLc}cPyl&1hTafnWM!1VEz2T7gem(FV& z*+dQn3u3VaUX36R!_y!Jz9Q8!BZ^(mJ~*>E?izsrsNhk07zq4v|FYg30L7 z?fVVKMf>qv*+oy1Tb++gwkg1}Tl+zeIYhmCI*ycxAX@ab-@M!`-MlFf$}v>+YqDv3 z5`EMhNH1*X$hv+FTT2cnL>FJsqNo$rzD=|0d5MT`fpZAzFxFP#N0EEF$&H-^=(6a} zI`>wF0V_}9ot4Y>aR+|gU6p;0UY&il1!TXRC8m7q0zn+x&L*+EsJ!tqmnRJY#_=!J zT~h7EW4q&e+<&C8tBCS+DKMP21{xZEgsjmGG?;=zUCkyTtPB{Hz%JbfCAqL|!ou}h z=s&f)-%`L?X^evwc<$U~Ebjq>dt;B1ezp^?j2Y+Mt4aJ5QFiU9*lPD*0!%6dN+bl) z4y2Z4*;YtboFR1iVyhZ*^;L^*nkz{$3s{WHhj748b9pe^he9>uO1KkKH&FTOrn7FNC8sM3_uEulVW<$HAa>1@3_Bubuc7(hTudN2$C zA)@cBS+QVSG*W}jvp3^Qjt=pKS{HR^w$HXAn4uAe^17ZeC*tBF*&eWIi{6w_evfPP zoz|&9dv|<%*xLRtVjdzsef~Ss$t-O^PWhB(+XRb8Yz9baz&;Alm0FJ~9ZVNRa(^P5 zD7sTS_uS}S*e7DZa{Sd2Z{#H_pl9Fm`y0VI1~R+wrBB z^?@ZjDwc8uMRT1iZV3ghG|ROUgoI7-B#5a`STyl92HelE%Y-}z83zPG|1FIc6N|-p zeL>;dz-RP{y|SbJR*q1!vl_WoEOMzT^bZDrxvDRG=6s3BVI0DkK~0||V09STTzN6A z4$c3!z!!{R@v+9yV^zP9YZQ2-9R9N~o?pR2-==YaVDXqN zGbLz=L1k7E)+RQ8;Nk`g1op+Xd=lM}L?piK@j@Duw1yS<%#vD7qx)Pbg)N-PbhRqd z)eS)e`-pkEy}?JJapb}OMSq^z|)$~z(tQjzo>iInqCU|UnC zS=$#tJSF?^IwS7acK`tdtekUy4hWnjJda_4-~H0UuSv2#aMB>3?OdZuDzfzqZ+-GY zj7pw7J+2(JX6I=aC#6X8|DLq6ac-H3WOZgfRFm4k`=_2vn*Y#3`=UKkSz`jAn_z#x zo;Wr6fx}Bk&5E;|1qobKyPx?zr=R>J%6WNrvvFRx=u*(~9Fa_Wl!RbGBKh5|ycB_( ztnZf=%~p13x?Y0X6Ho@NKwlWpEAivL|0k`$h=QS={#NQ6XPjQMMZ_G|qT1ej5NQkn z%XLgRj+)?fhD6=w{ZbnnU#V3cI>#W%9;U1kd2B#~(xg6UKnJwIl!>-X^u$|hA!3$? zosezNsC(gZttC%S1%?;k#AJNdsX~+o^Xv;Gtsso!`|qbJb-{Gk6`zesC~hfn?YrY1 z0Vfh{>W5!S<6knD?#V~3c{!8hP0_TBT;n0NT#}wQsEcHPSFpfT-L|uR46*qXOfVob z9eY8F2ZL#&Ykxh80rt)T6T5i-eXyyBy8kbps76x1mf((eM}c7tT-I0wFx~eYar0~C z>iokH1gWoanzuzN`M+uPU2_a`N!^OL-5)+$#2}Rf;DFGj8hK8G~fw6axnHQa*6}la9mWw;DEc~q?5^(>S5+B-6!3{4a@v6BRQ*#3?9UiB5 z)hmgH-73yH{kWCBMgcf#6aHB)%Vs3y{4r#CvquHAmkz8Eq) zKC@ZVE0u`XDwJRnfS+mI>^q^+i%cgiDV7umkhs2fl z-%i(&pua0%{GzFtc*9zxgjWe&mY3|{OlmzFx+RCs4Jr>U!LZk~EJ{-Is&T0KmI*yH zwA_DlJI&mxU4CtMsk7=F)gPT=OtnZB_|H;x;g^#m3fG;Nc|BD{Q%~{L)Fv4&D1-wc zJ0AJlYhF^Cf8_52Gx0q{t{2__HjvTY%JjVhD604P^Uh)=wD-lsq6oT~r{oGf`?$Fl zrIe6dDZ^RwN4*Cj4gNytcXREFwFvz4r60{XO&Yk`m4y>s;a^4gS{Ft(t3F%85zbuO z8Hcd0OsOFt7+O&fd$aR){=-A@FahdF&cl_$f`FrRm#jG$Jd$ z<|wOlx=SR#Z38-qgYbk~rArR|Wgcc>t_@>D0j_RqFRf`3`_iaclG5_t!RI1Kg`^vt zWn#|b3_$N(Cb%!7z)JWl*V#$-{0hIBd)8KQ!xCF`GxRdvnre}0#AyPSS&NB*E~>6; zPPAG)QDfd8FiRH)Sc6)hogmV70rftBSkd>Y7)V)$s%c9L5+{k6cyKpFaoEEZ0LG8I ze~%vAu4^6|UREI|(38vWx1*k5TT)Cjx!D;hiPAR9*~kpd`m`5< zr~E}D|B%aY7T?^4RWoulv`QWU@PgaFI)4eq(-Qi?LjhJuoUMXf$XQ6^aBF4wizMn`uKM)E&ab=PAy4w1zHECG zrDU_OX7A0yHfcg&GK_2xWONWXWe>*gj&I z$@Z_MpqEQvNb_5fWPtx%-ZoUl^;+w2{mi-oGNJs}po~f&U^)OA8;{qpDLXYYU7X!4 zKHNVV*0&SJB>|Gg8+rs)08=Pn@YOBUfXy|{R7`?n(x|FJ_VI5UQugN}k14TswnU#j zJX}3`Wln~t-0rqV>#slX)V=vaWv4Y3M?dt_BB1)LUBd{uc`n3AY02H7_(8 zGk~kThVwiZT;|4kO5Kw97W8uA2zGp#>%+kuyRLNe&`o#&*RgEqrDt6%VQa;>2iV}AB zrBdqH9%RX)0cnM?fv%w^z|Mevy1>8x>LH`i?+%ux>nFz}F*yyFZHJ)r8gW+09)tel z+eNBBE@+nPkzw#&FJ*xTadgR?A(pl5admz$HI^OQ4(lf$uoA z^$1WS^dS;LQoVdwKOLK?Z*zqFDTe(%oc?>2YaytG9;9^~Jv<@d)j zC_cc2<}rY~zG$@mG!f#gK#QV2qF@fEyKh`HVRvv*y%9L>HpAa|ico*cMykKF^ru0y zgX`ZRu!Cmd?N?!k-1y@CJ>)ncsC%IWYxMrvq1-;x%DhO}p4u1uW1N`G6;CHutwJND zUKXK}4TYH=$*|UsYlr>U1{@CnZNc`x>2e|WhgJ~-k5}mBl5gn>_?FTb^81;X2nrEp z7zI4nmxl&I#8tvyPe_!1w}46=V9=XVC_r>%!c*$t6=4tNq1 zoKaj<)VbCl@%^)>dRLtbIhRGFdD|&wEU#)YbZ6cBJqk#mbRXfaR_7<|^V>RqZ{)ij z!*OGxcM~6&%>g8jfrj}#kIp(=CoZFHq75@d@GRBqXosljIwMX4Sla#Z*Rd)IEei8@ zJ8I;9YLrwgu2Pv_8{Qt%B7U+3J1L5r3KmgZvVIToAGKlj0iZzKa#TwaF5#}~MNh)W zxIV*J_VtmSJM@m}&Cwu}B(*mI&mS_(NMnQBW_9r4%gQAutt4+nsKQ93Z7HNC-b1+$ zKm7@LCCyJgQI|j=gOg|1nC~=MT@&&lhsw(IdvVVqusRz4vRkpi#5Bh(9?&CIUd&3BG1&t`|d6hV$vjIoVMN*bot`!)Y(0!k8O7( z0@i|gqIUyeg9=ya@(*SN0^&jyiKrR}H@S9R+Q1j(@%7(l)qM>sULj|pKo%v__Neq%_go~^#t&b{{5ScjR`_Bz0Db`sk}W8oxa7h zxqX-eblt{*v%A7pUVTh=$O~LYo19|?0yD1MWrw!P<;2Il6`X}^M4p9n-1D|=s?*H4 zMOoI|ECcbel}gS(hxXsE_4-L-Vth)KVIU=m{`Ohupg)&w!F+f;&Gy@a;&xgTHkoZV zy7>n+Rx`(TJsWjAVidlMDYl8E^ULZt>w*1!HJ*>vwP@-c-2_|i{Z|_gPI2K!c=Ns- zkY%2!(Pi7rmTv?%bS=MWdHmiUW3pyrkoLIPM`Ct|_z%5KOg6Xp=%$c5W&A#Vh{r=D z2FOZAl%%cT_TT-Wc8|ztE}QTX7=Ex%0V+E);K$zg5OGE6HqfHOFOG12CyhHBKRA*xP@% zRFqZsjJ(uvvd(Hji#J#t36+s{4sH@K{iS2RVp{@u=d!C)JKCG3MSDg#m-g3iJQea# z=JXNl(5kivxp(8v)RYV7Ogv=YnEvZ-wPuch$MWZ+7>j^#%W?Zp z9B{Hzot*Xkln?_wZl@UN$iC+)X>Rv;rQ|ZIQ)U`}O%^@LR;gNaU3>T)d{M;7>q{Cd z!&U)+RD${i)q;Rccp|c;7O`@@8qJgA%LbiaTD=coW($`12kFtW}M0ZV19EDR# zi(YAp8$^gR8P!TG_#_zgP^)YJzGnHJzd|33r5I+)M=!x2R}1T>_G7Vcv{^K3GIOUEnlD{+v~${rubW!=n=I)G1v;e;h6=bWzX65hQIw%2 zAQ_grGL==gD}@yOlG*FL;Yd5t_Jm(Tfy}FbGhtt<0&lreyD;W~W~oB@EFWtd%lY+M zH4Q9Wf2DYZ$n%b$CAE#^TQv5{>~D3DVc=d^Z*g?oYU4_uGY}+}fbkwY_`?Q@q#2#g znB+4so{H(y9XA|lt&XL3U+2ap4ADj7H<>XO0_1518qib2R?26izHI}()jx%~BqH-M zH?^JLvherg=rmBd=YFh(%F~XQPs=01qB$>H%e4ZnoyqsJ_PIsFv9G4BJUx^wN~ol@ z3rgO4`wV4ACd~*5;}luy)fz8LRqxG+2bu3L_TSuS(=DDUuajs9xuHU8Ku6X%}xohR==Hp-Qxv!zf@4PK8&#l+2wzd315t>M>Roy2af;#Oc#LSmON$di*!;e2!-BNI3yTHd%Z-Xdre+>wRcle62gsS6?|4M?Fud2R#Ye%wAB9N%wN`*Q2Ic$ndQ3`uD>k7G zTnql&snkg?wCJMJab);EYK0Cx+Wpl2SjczX-ztp`&xJs`WMvpbm#UrhWKeD-)@`;0 zUrx28(<_1Td6}i*(a{#V5X%K~2!5(kqG<+_;#ZaUuh0WNHE9KEFl+;E2knfwBvK=s6+BJfyZ%{JhYAG% zD!{8bfc$0TzeJzdnYD5064=NVA3%S3OA-~&gT*gVzGtr@L=~dH#qP=3;Mxe0GZffd z_(YE5S#g3di8ks7pakvoH@~nYE%XEqIv4I8Q&hylu`!NS#cp0i>ME_|f1mn=!! zPj~E4WUk9WE!Co^h1^Z4L~DWv0zg#2a!AvrG~I7Zqv054#MX$GFnb(A@G@+%u(@*3(E&M6hWYgYUMQwD~Rt ze_hi?ogj-ftHl|6tuFKVmRO?`<|=V~AEdX){|3pVpM3Gl?Q zJ}3w;Gv)hqCC&AQcpaq2`A*S zexlCl@RvkQns6P}&trJX>S_VMH&NU++zQA614hFlGYVE}hR^06Hwvlf`CSRuaw$kS4g#OuK5N|TtdX)Z@VN)iC-`fbqE#3|}yYDsNAPP6XJXL*XR}~xWASWK0&YrPRTiDY4;CbB{HIqZE)G%=PmfUh(%|t8OFRKI zNOWBT;Xr3)9rQ6^6 zM{e%G^K|n?xLQID=SM2((c;V93a&Ye*_LpdmnRjTem1`h=f)(5_SIcFHtc8GIVad1 zo^zv-zr^`0!I^`#l`n`rFv|S3A{>I}|CFp#vWs($H^8WLebub`&O8MIjSzyxl^V;m8!S;LThFC7t%1GUjwNi zoHX5_UB2dV4*oP(IsrUK;my!0?@*%>h>x4%X#Dq4s^&k7e;SYw$h8S654~&Kny7=) z%+(Jw^0*2Ru-ATNXXI&WzF94PYcT7chsC{sI;~D>vq43*=l~Z29<~3>qUu<*+jS1e zc3=6Vtc8;sy4hZ~5h7x#9B9KwT6%pDDz*<>u8hV&7Yx*6rv0v|Gf#qNL4W(Y0MOB_ z1EVVB>_qXu{oKhcS7e4%mFXDs5MU$_^`ZWny zYneW|v82RHSv;S}l7%R&l>}bBLxRzOW0L>4d)yFw4Qf-dFh)ew->lgw@?k8WSCxv8Cny4r%g$+BrR$h;A$B=A)HAa;+6jKMf=c^3m(s4 z`BW1h`rCbUDt=jW>z6yHMB~_|_tp=3hW2&4=w_PIBkp&yrFl9x9{`kv?MnYk&41w# z@Sw5Q_oP!f#hsz>b|&fgkgFe@nE1Ls(|r8m%w?L!B%+_?8B|UC3poj6K2M)k4y7dfnPUNJ3|zQoSly za7_l43Pp3)AMw;n9nwDGv`0s9Z`e*(3zx&T)&A}tu@~axsRaeP-3#Nu@QI-q#j@(a zKH>F%4Bq|;(QpSJH&XQ-w?ezZ(XX{_lhw_G=I?_ivbhE1$8pDy&MFad;!V5_&R3wbo+>`wO2J4Kzx}F*=8UQ;mehhH z!IZ=#Ha${`7NjB#a&gzX-xn(L@DNjrV0j5D8huZyX8(zqaDcsNO+n2^)WP@Kxg`qa z6>EX3_iFD34fAs&>ftaT*}P~@7JC?VqHEg%t|q~1zos20jx&d&*_so+0(%=t<8P&u zuOg>Qcf4XZH09>8xpwoKJYQSZZ_}UW{=QzQFtpqo&+$D1A_fP>XFKLLtd~Yy*ezSy zH~`N&v2metakvj&%Wp$MsAZv*xH&w^8SW8YtSpD`e~s9p%Vn4>TwE({e*PW`J)S`KPR=5$sI5Y!0Q{EuL(mr#s8 zz};~($>%7^RI(DYav%eW`o^zdXAbJy+WW-marDSyuIK=7;SKR2dA|z+qWkb0E79(o zN{Rn(`aG`+*N~EF%#3Qqx%fhd^1;|H7H?R?0-^7YlCMB zpjH%tZI7sus%hSe)(Ew%!Cpp)$x4QxA+Wo7KY)rX*BdVA}&n zb}Ssta^v$r^~P`7(SlFs=Uyt>xgMR}1A_Q7v1NMoS)}z1C#-zVa{P`_cBl3BCp&)i zH>lci@PN#qQz&&R&bu9CX)LNONzr+%RZ%7pi&%QS)F+L@@|lM)Qr%yz^lKp-a-nfr zDIw7PLndHU{0@61q$!C;D!|h+;`Y!iq1sLM>do;cA`PmfHxo zx8xr1S!3pwFQN<6dc^%T?8ZY<&-M5xw@!}rJkDWiily>R8sjq&3HdRo`y5Q8RHtq_ zVS@=x>mJ`xAE2DTFqv$FJIVz|vw`2dBW@k}04tPpk;-ne(xe>IJT$ArnV;=F5s02Y zc$b|l6v`q2uaBtFkF@KL$@7bb%XWWY(B?aF@J5<+btqMwBj{EOzyY|2Q*a_=@b=g1{TYZ@8<<( zlDtB#1rh~Hhpxj$(A@TBLA`5=^YR`<@~1p0saRhdmU8B;Uz61f^)~wUO4+6Kg!DpS zw^X#epF>vGd5i=WB*i~x1uMjX<1x^a*s!mG6a`A)9i@rtmenblO=?9k zjyuciz}wpUF&8`Tu$$G&=qz8Z?4~$ z;XH4s{4fmtdb%7rf2`TH_pRlTdd&Pc!m4dqay2SssF#sE2yzlt2_yBd-c6-v=SSqiXRt9J*&4A;I8_+8o_J0KuqYqf-ge&(TigpybnsRVNeide)S z0{Lu$UDwg$8+v%mPjQXKdv_XZ^MTn4m>7kPlws4O6T|OgjHhxJRG<_Z26FF8YHQCm zehLf|WpXbz9leBO6smv?wl7{^TK>OL!&y=Lyn|8&A9SgM6FkAT5@>ZOI2VTFuw zeklLhg7gIdS3_Y%o!AHBSTOB1h=_=z{%(}afq+KT9Iz+8GGJB-X2s~U(4+=vZiWny)oK-%6>8N_s&zjx zS+k<)(S~Yp6g?4a&_DbvvErjw!D>E~A!R$Wv)E=YwP}=Jt1eaqz7nGhK2gpTdLrPe z&{C;UP69Oze_PP5O_&={CFEE)(F467>)Wzbn8FkSO#hs{G;cAkm2`}YsQiFC^9BpoIOu~|baGp&NGk0t#4 z2e&eFbz)<54wVMjq|u9M$!NuV<=VjqXgC&N3VZg`a z8+*S7q!7;nT9ZC8a%&sfNcLF?dQk)}3#~Z^<-dx1b-ASVR4NQtvU01Q#~(UH&b0MO z>wh@%+If!a%{A9g7IL+pjKRvS)Mua9yTuMnLvXD%qltD}woc#)ZoPhdT+Jz?%rx98-esd$umeICfy?(yG@1wuYRj#7c!_jnvv|~B47&W`iag$+ z7}dizN-dSXJ?+lBe^;Bz7DonL4SPf+xhvIDRX#16xKz66MSZ7F9r87G`h|-4sx62F z?SjpDEJV)a#0o3UcvPT#^n^<^g4LD;r*6QT$8sPsToTJ_y2XtEEZg* zv?+{qvgL*?U>w|U?Akte;+VQ=e0Ldpd3zAp9LRQQLY;==fL?ovz;vXzQ8qQ6RMRz&cvaE>f0|1|6zouax-yD0*t2wu z&zAK~N(p{xJeIhW64s!nsddAapUE-cC@q-6oFlt@8aDr-GGQ#5>!hmH9Zc+E2`&_a z1cA@aD`McLBG&q6-G*(K5%eU#v6bWe2dw z413E&K3@ahbcbc1GaM6TtKnby)0Z<}#`leq8nl~}xhB*iT6N(sYoX!A9mrU7j-D*e zSXb-aygSOeYdO!jw8Cu~3obH%EGf$BhurCwHF%$(&0lW#BKm+t?XCQS6B0w>ySn%G z-Tob#wv0vy%gYD=SSJUs2sLk5mt1=CAaXR_n8W6uV@l*D?=#+`j~+BHW`1OEYZ#`G z^LbM903+Qy3v8|y@o8#ly?+3jG0^QR<)_6imUq^^ZAjgsK%%6xjdAknAFw5Nb*EZbzIx3T-EX@t|7E8%` zwFEf2AHq$!VTDylLuBcr1#WBA2lzuF__GPx3gJI}QV3F2dny{FC@TF<%Jf|Ux~=jB zyoYN0?&-i`6NsTG0MSO`&c}?i`uWWjBab^Y9eC@6NhUH(ay^t8kZWdZG6#8`;#c=< z;W7wg(QJ@61M;NyNdr{R{?X!>^SHk%j-`6JNhn(& z!23o0@!5jpy|^6MWm^mPc#x?~;!V2VN!53%&1yasSDoWOJ?rGBBe|FH$~+Oay6<&= zL%c*yA#DJXG6Jx)4R~f-40It+!*%jMZ5=V-0dRxd<6%5bZA*NVgaM;bMPiy{VFpk* zM1HDyGrM7c$7k{N?o5PW=ZC68!qEyP;L+c?1vwcdu8Npsil5K=Vucc+LI5zEj+m2) z>j3TBiDqCjYd6Y%AMUrNc)~-hr88PDp7Lk}sAm&*0{yVR{O_hF;{y5eKi{v?5RV-B z6DT3V3OTKn<+1tQ2X7GH8P#}3r9%YpWi9jBaRI9n&)KX^A>cCg((J}<=}`?3|1C(} zBlQEqk}k7)5W9pJeysLrFRiWGv4k{)DZt5JMZu(Z^5$}l^*1x#f$#1o^+USa&}gg0;YdzUbLn~oC~ zv*TXB@SAxb$V!IMlJtQg5?cHdJA=Gr4?uBAV%7&NIJ9@GB8iBEEM|_TaK{Zz zh6_px+s8UMi)96=W#)1WB@~-c@5%u`zskXo(Fe#npxG8Tmz`Td~H_nbZ$x^#0)D#HNG4blf*f_Q~P;~=QowLk?)FQoMdaHeUX9qu!h}+f5~NeNuO;? z=F1^!g+YR7P{3JUT;fg;xcyRMvPXWE;hGIuIb*ECOSlEnwr>lNkO-ipEpqJv)b^U! zo53J30rqzNeO1%WuUR5f#JgSv9U;gqY5|jOmY6R7B0rmj2bYs1ajSXK=f8#DL-Z*5 zoB*ii%G=cg{1T!Y811x<#pE2M*5mTVgq^lHfJ&-6H(xMoUM7q%3(kHYMa#ig)&|C+ z?Z@pg984>w-L>;D0D_wsl=QH>$g94ECUq5fn^RjznCSg~{njU4NClj#(ey0M^^YuI zm7r%Gh^1d4T8~aSS#I$Ia(lsK<4^Ktcp|}NOpKYnRZ4afQ(oE-M}tA}^?tW*W>7jf zW4z16fed@%SH1+gjv&bNoI&Xaig#5E`2Pwecm&=jKgfzsy5N zPBcOZfhdIaUv2AEAe{^0N<*m1ow%olLo^Px??T9URo5r&ITELU1l((s7R`CRu+^Cn>8 zW(uy*4(@NVmPu<_j~sLQheai!y-ZPd^;G zW*q3X;?CPWdDJ-V?qEfnKB)S+-l1r^O;(*kK!?M|pqP{hqY>fbr|j zP}WhN!bo9hSS(6~9kcAQq|@iwds!JKw=*@|wk*bq)ChB)Wb;7gye6=`soiLy(32-iXUgrP5!4odX+VnbV`9I1-i+e)`*Rv< zXJgkq9T#gL#)Y^k^Ej2QX-F}=@yfD7N4&0%EAzamOWYtX&|o6cms^Y^4IwJPig zBrR}BlUWk`nggrXGMLdB!(p;;@=BSXcTLj9a<;4uE;Yi61rmK4{NYHl84lwc=4siM zNTiQB*d|4SlV_IXL^fvvrz-;0Qk~A_jnED*UoFFo$Leoc$%>Ssi%Y2I1iYbiLdWz= z&lcuJ<q@Brr^^U3zoE96uUhk4qBbGXZD^Dn?fAIA zPP_~~;{6w?t%=>D{S#HkejQ3^I6MfjE_;ohiasg@V}B*&gv710<7;(Vto*@d-=%K? zbem7)(D7D^Xoexh>t+T#O^aajPcRm^C?CbhbiQ8S#?L>qVYa#Zo4Maw-zE&u zCgl{P&0e4aE3L@SB>h_Q-|?(8Z$wh!FI`VXH?5U6=;fWk`}A@*XHjjn3Z`z&X)0Zq zlvK@P{I{)-7V_eF0yc!DLmcl+F(}^nm8N$5)a$W|c;g4B8BAU<$u6`!%7lA z1nN)0;K^H>C4G_c2W@hMfRB1glrlD5S03&QO>>i{V*=#sD+e9>#$#Oh+2)7W{Fm5BK7Ydc!7$vLI4;3_^@MvFEs+FEyOxzNfPG4?5;=qS z@%w$TT(Y=Xj?=_mi|@@;O|C>!-|OzOwHDL7iZRKkaPtRJ)C_j()O8ICPO%cq41@33WD0LG#EYbpQ|oE!R!2C*mk(xg?x35(Vl?)^e4IO$yMMIPj#<&t8vFh3F zgMwz25XRMwPwomC@sd`lj4)1snZtHpIt|hu{3nQuL%$LAQgy*?;7N?$oM4prxC4fA zf5Qt-*w1OS5!J>*?;n}M5howy9M$0nf0N=mqZTmRqvTjxDSa>IpKtVc7j#jxwk$L@ zxR{fn#=!fPPmt4fBF+%E3pRaiw^{D6dYHBc$nNK9)@a0eIV>>0ZxQ1PhxwGn6bNzR z58j#cTpR$=yB!_J<+6w8>~^|;LtSyHA^~f0Z#y)qw-vQjWW!CY*gdOHUOr{X1P1RE zvh%F`xp31N%a4Y{rLl=55xJqzik1g#=G_yp?M*_AH?4+31b&}M!>hNmlmC3aWsSwu z30nZYg-u8sE1pO$qeD|I*HOVBNH=_b6wMvy z)nnVEvwgeCCL>CY&K9FjN){h`7fM7={?{2a$S&!Yb#$&MXFn5p_4Cu^HYkgCl~zd!#$i!y#k7LzoOF<+MYp-<4Rh)SV4`^P z+-9l5KoB)vtjIbVO#mt|pRoh>LijLKlI~|w)9LS{M+=-+wTiCrY3rmQWU3}HLoH9%EIjT1&{k6&Sg$YcaZT-1w32@En@b^U zUJ1bC0SJU0F2ws3|HlV&0AS;t>>-!^^Xj7@kz{D2Udho9t2p@2*@IgczV|uLQy#p=#wdY8;xft6Y%oXnkPt9)JAwKR~s(W=q#PY6-PjZ z^?llVgW(8QV5|pvV6pNO-hwj*ifu>04qmIYgPOE!vX3S4CERrui<01h)-zTI6H%bR zX&I2Q_@1c`(~Tiz^n;;ocw&sQcb=fFTsM*|LnPLz8KMNhROZK#lFb{SM5%$2y`3DX z;DM%FlM>EC2{OB*R{GuauMQ6{Kxsgyd*_^NuX}D}bm2_;VSx(uWzbXK$1k4dbFMm# zCG7C6S+hA|^5D_kxAs(p9q#n|>wcE~%O$kZb^RPpL1u?OyZ#hq*;s%;-ur!-8@x{Z z3OQOjvHK1W{``r;gU?(0UE3=rU&>k;Fmox{*5ou$D=<`fX|oE7+Rta~?DOWoqD`lz zili-r-U#r0e9y0Fmh(1quL4+|vOmr+C|Yqus+!IkTKG7H;8J}3q2+xElU}C$v_S{# zC>rNnUvi!MA0Ph&TAZJb^%?AgheFenlSJZo#YgSud zG`Eh#_dR7UW}d6EnX;apTGtY_1z0<<`CHHNSt@zOz$x3|$w0mB{TfXbE#45AY*#QT ziq#0{1)MMXdy;cV!bIUtQ8(Y1iL$jj*UdMyxXO5(5GS|KF-eu0rOv~tzBb2{Y37*J znAw=O|8{~#N@vEahB+A@7C4mVw6S*Q~nuI5wYZI=j1+ zdMQ>BE`0!>ZulvnRsTv1k>LZk`KSAsykQSY%Jcv44S{?U; zX~ouQCA4i4fIXBJNsJTKUXe0 zXt@=tgh0%`RwTxIopcSE%nQTKP$k_3H(E*mK($z3@-Ad?mvCJ1baaT#Z~t1^N=@26 z+gDNFZ1nHHb)+1)#N12qwx)AQE`7+D(>+Pz3y#6FmLjXVnMhg=jO>a~iE|Y5a=4r$ zl5y3KvUHrpO)G)nErME#W7RwfjVpe$iPU%2FzURq!BFoc>Z=ESTWUeJ)uw6Niw{eJYk7Zd}-06h0%Y`9)44cb*q84hd`~3sLu&mKWKCdlP#RT zsGetd$ew5i&k_B81=vJoR;?7DEmll&78eS@a5Mwd{aCE!ypjD0GBqR zAc4|*z*$*Op!wxhcA-fWYm(5g zSAhd(s8`)L{Y~!lU@{{(y*)kLq^mDY#3GklYd)k2!_n4xnhh3UWk?J2R-a)rvluT? zr?^3n^XF=ulDuZ!vR8hi`Y;lv1|MD%S`4bWK0x6*Urbvg{0{5+<}?zTetQ6eeb?yO z6z(vu)9Ti;4{7Ya)V~=SqDAuTC9MfQX@46t!!3}Hj$*zYfvpq%MBS{%SSEf2k1ZUo zJv-*(`JyJLFkU*(_{Pae{H>G zP#j&jE{a=l9o&MuySuw4xO;+oaCf)hF2OxOaJRry2R?!I>@YNmg5 z&$O(yUU_6ky|MHoE`TFMPYDn=r`uJ>uFThIWuRm^E!m7c%y?J+1<;-mmKBh){D!Gb zmghMj6o~izDZL^RhFscRZK{~JSbrW9n1-rWji|NcHL`AFM8n`a zO;&=VDn@^se;n~LC>cj^H+G2*7Gf5D_=tv%_4#M4QKkP1*T^Ia6`HL^^Y5wD--mu` z*4b@lgLzhp0CJu+sit&*<)TAc`M+!}wn8ONw&;|C5P)CtacWNs*;*Gbut#ka$LZm~m?b zEPYc%+ZaD}MkGur3SK!PS(tbciMKeos1Q}s17?%!o_oYbpXFHCY#o|i(6{#Ho)A8M z)25hT=jT#``0k%$Up<1W7xizRWk^DmjI`;l;_(j2XbuttNH9X$`)DHvSd+_3-5MOl z;0Ogpu4g!*+8n~3VE6-3fH(X{WbZ|`ScUJRUHJ1cmvM>uoXUR zmUcQvzCBdXy*viK$f>ad{Ks2oshZ8}AKN>{Bp%8GpgYZ6pHzZ7|-< z0fTcxMN{J|FM!-_3EnIrV%()wV_fk5oVO)lPuslujou~n^9sL3%ALks1>@}9*p|qd z9fGq#4?JvW{B*ZiF7`joGu|ktm8?+RcFp`V^^J5i_RF}Uw};|ky&*LCG<$+36&C_n z7fa4#P>g2mJafQ^@orAyOz1A!q6}QPg=#E*!jVOkv=3K)m&19N9aZ99GfSelzj$N+ zs;Lv(f4IVk2jNNqw9z7eP`%fYp{=1j;qy+dH9^&o)ax5#|LP+S?{}e8z6m(Gf9odq ze@sHx%CzkfuUoQySgV!TKjTKhkOE|C1fS2wjrAx!$9#=g2mxiI92dDWp?vuo1n5NIc~7H1b`%e(0-2rxNQ1t4M1wfoT~OAohysn|*ZY($5V#I&a5 zUY?HZ0!3pX$?6;2+TN6+v2Rl^UgK)P-p{~`v^jvqZ+(15vS>Ty4)3^qjYvdH^&P8$ z1*SdvS4R|5q7~Xw&nQ9<*2b&stGLlczvTr_ZQ?9;V}_13@=6oNI0w;<(}`GDE9N`A zACWg7*^w-%e00^1@`3LHRHYv)Mbe8mDe^>|TSp8U=j(ICl**98ZIP*n9U8YbFQ6#B zGGa&rLO|7rSgtKNNqG5z8`tZPEvq+PS~Ga?Z{;*(^R=}@%!Mh4!Q#Lt80V>4m5=>4$9 zlsf$V)AV&fwlI&(td-E2^k)uIo$JY%=w zQYIf^J%KDiOltBLz?Cf|9(9rm8>1iy?G6-BEU<&V=OT}c8Y&dXLS?h^@?Eg z_9fnfRfxY`VkEbW1?-6pzE4`^3~B}IrmMzL&f>}gZVdyqz9JrRLiU0P0LBYF^&pEH zDtA)TFo|!<(Tp?02$oS&>)6)T#^;f}_KAKHIWYV508cX8B*6-;CkA;_>Z1V~&>I>l zY;Ls3_wJosnMlJ0!i_cE;k=v~jj6L;0ex%6j75^)=62*^{=yA@U?nP(00KFvZc)|b zr+-$RCOujn(q@jf>Co}$Mim9swebXeYjfY(IG50Rf^A$m0%hey>z`ahT3a3&xYw~Wtc#)3Ab1W{ci3rX9*zOQXW zmH*_FAa)RhXQHEjtzPY(0Dzr!?_+M&EJ|uq`s95?A&;j1`lsV+456Cg@m#b_Skgve zF@i0xFZZ6y()NM$lQq*_-)BW+uO#rF%zegL2$3T`qSas$XJI7|gHFx3L^0EeC%DD| zYd8_)r%6JLG)LBxxc|Im1Nwu2271k8h~+6*$UcS9HM2`cs)lm+%Ko8iEzy3mIFyKi zoq>eU$QP9pPwsQluf9)XD}7I>sukVLkU8pSF>bHyYqv0^nst(G49W0zPAsO3N=0D< z(#`i)*^vlv0F_r&pnf{EY&BJ_4dz|;%sL9Q+Rx29)PvyAqbpCHbKT{V0+)%6qQ>`u zeH}gP>9QA+o7N>6VIxkXn@4fu+px*;1(8-#E#8CoMadSuvDAZ+R4@n=V+7H3jM8=q zYO*u@Pf3*q0$mCMRsKnspzl1yVK4UzjM8MTBvDPBLcZ79$)P^gpYv;bP6*qA%uEJ^ zL5YDTbzbZQ$GY8W&VWOQ9$(p6!*v_6h+d0`X$l(vr9VrzVp<*B4~CW=q?W5IGE1$A zjjw)6ny=HT<~hz(W4Z_Iafs7#9aWL74SKe6UVdk_Vv0;jEdj3Uk_bLc#e>QmUp_D}R0C!;E`uuM{O80kr~)%u-4fsaiv-ao-TRWX>&$esV@p&-NS&(Wgn>hrg{W}L5ao9zPPJwY*_%c zJ30LY9VNTWaTJs8ZDL|1AI^&(*nGn~TZ>9CIM~vvp)`9+>jfvZck|1t|Jk(-Et#P3 z8V;N122kyvujkm!`!>J(^7w`XfdgrdjeatzmkRIK5is3kaWVGzIMXwIqgBRdj&eku z`Iev8JO_iK14)73t@^Kdin{#f{HUxa=>V_l8oghO!`$#e=*6sU#>gLEYB;V_-4 z+%?2_y>5FaaoIA_bzS`+nSH5bI%=qCe*mBw4u2lyztTNA<_ei^|UW~JW{n9)@ zspKI9D<8;u^V9MuU98mZms;UNQn`u-nAB_0Vb?IJyo71Tlaf9of|8UQb8o| zMr@#|AOPp8_^B_qyAK1OD`)A*!)Rt6^iucTzq5WbZGs4Oz^m}*3n5l@O5qE>=X2UV zdG#j6PvNdU_XF{X#kRFIAJ^AI1heDoB9S@NPU@+ zN=W4qs)$g`mQ&n|hIHqf=}*0sLWf3Toq6U-U0F=fnu0fgVSeB zw|~41o$oLC&zzSr3O#e}ucBk#IZQ?Bv<2Y~NqtKm7*m&$M)5n05wYH%uFhwsLa&f% zWo7Pfp<~n@;5=GGzO&m(1_-W;C(yk5q|LB{5fIWHtye>*_N9#E;ccJ0QxKs0<- zuemijD%ZjJ_B?l_FnJ0$M0LS@gF%ZvBQ3%Lx=$Cr5k-1OV(m3XodHm0b}hyhE&SRg zpgZ?_d{RARUfx+=Vtf!lJvf%;UEdrIdzBr+`vrAUFM>?7kpB35*&+`Oo~&$m1Rva$fKLGU(c zv|Y{L{O78}xE)pk*##J?XOa20Aj} z$Z!nO@6o5JR+eST+M1gR=`KwNaT>BmKeMq=m6dgLeBbRW016$Y1__yeB(9~|;&H*} zZ~avFG1FOyDK0VQZAqRY1iku`$ zyUQixQRvsQl>^Yil@)PlZ!BpkGKQ;`HBw`}%)NhY{gET(kA(mBTU!lvgYj%p$@o;I zU{%({@;)mSK1YJNiiTrW`LKH0;M|@x&RShted0$#T zlCmb`SLA}vt3Qgwne$iQg?C=TGYw=U>6EPeiR46;Hez+BcjBXhu2JQ3p|%MmaEYK} zRx~wF!%Vkdy-DjbM$558(LloL!Y#%X4=15J$rd%sLYFprA0wE4w|u?t)G8*7YWgYv z3aM~SBHe!nr5sv>)3A=^FwvU}XrtLi=kGY z&C^ICaEl|98w)t1fB=7#$&C)2bVW>s*Y3h``3Rk+u0?|S)fjJ2nv)8TkmG?Ggs;dw zGj^K!v)M0tez#VUBsS=UmrQLxKLUz*QiMe_As7=;JZ;)UL&j}FIv<#@zfJ@nWkHvW z1aGlbZ}|4un`6G-JvI44!DGFIJjEev0=jI9Qc@w`MCEj~Iel{#olaJVhxi3i(n~A` zI@AC`dguG4)USz>Nl6}}hU|kjZ>z4?$l@&J%f6ZJoQNNJL7UeK)?+$1XU@L4*+9QK z3?_N8rl+T=TIVc9m`y1FGDtBW7-ImcE^@2=c506=%d}xgMKvnwt@5VXn;Nw5cWQL? z0|keaYSI*dwP@=rO={_kG=VSoX`N9nA{@&IR-<<4uyr7Z!#s~M9YwWtA?I)AvE6mF z3&v;j^5gOErst&6MDLup^UDdIuM=azWoM4p>dem4-XjWVACwU=7h%6)O&p?tK;k3^ zC<&q$rybq6nd$}DIud`wQ_Fns>S*dRF$pY}Cg0<|#}Gi5=3O1Nm*k?A2Y`CVJ}D31 zY(Tyl|9ZN6h(un#ygtAFEBMEPXwTW|$a)ttZVRuG`GG|7_E*5qkTV?W+25?^?+Qwh z;Cy*hK(E=3kC+E!t;amc#0mDE}q3F6U*cI;>B92iIwH=Cw;$j|_p@_FU4&->@f2-iX#Y}lW+>6XI5^)St1!K)1E0A%@` z^H_>h)yfjbnJ<0oglz*Xw0DdqQ{3rf7uHvN9#6=BQreCuO%yC_(*gzPmA*2fKI24O zXm!*gf5h@UGaxDMy1X3(`mj9ITYp|xyO%b36D*(gqWsA&sv|FAbD`R9RwxvCqrCVE zMtAh7l#@r2Vsu~sk<1xIl_PppVbQ5 z)M#T+)odf6Xqh(M~ZPQ<=F}eSAYe;4-Bsfj%(MN%;51?sR zS~GKQDHGUv{E=-=nATB#_!_@q3Q1T;H|0zP0(?8acgN&7e8rzI!)ul>^|!qTK7h1R zztLGZ_CHqVz@8`_A56AewbD=CZ4)R*bzq4Y@2rl&=*1yd*A!SWrdui`k3osW8#QrX zB_OJEzIa=4InlkjB=od%Yxtwm{uQjkjZSJCEG(5JCz13&eclG`algY$n9vV1d7X4_ zx*WrIxo@sTb6vqd(X+em%mJ43 zIqQDsSwi}1QXe#J^7O7Q%XE>=05;XOt|}3&$1dW7j5J?nwW{pOtF9OcVNw>QtQZH$FlLVL;YO{2~nILeapvoGXY95U_bi3)Yi=3Is*-jU_?z(pk!NH`cqlBuW>7yQ#zi4We#mXA=cJ2} z0}IP7cAi^9*`CKZT%hWl)A_z7PYbX zd&ye;kcN7^+-}@bfCkA`-3~5a+2A%WT3a{TIweEc%G9|t6{>AHLy#C0p#4L3Ga^#4u01s|;O#vroeyMfE>;DssYiv1?%O}N z`ldR#pPuqZ6bx>*4iELoS*JoR4DyM!1Va=R4&A;jGI>{ji%q;A-gE5!5O zHsqgxj!to|8M8K+&|qj~1p>KkeEI6H}|pt813n zx4`c+WwJvo)O0?ykzpWbqxkq{i&7`&W*mSE4GdO7oGL(i(Zfrk@qY}PO1T`oz6&-h z2{|oGyp!gtOi8yTIzJ}NS>G7=+{t>b8|!$v;MyAS2%>vNrcB)PMdS~5YnG9~@I#)$ zY3^n7bQ)bO0V49QRd6K7mziKwy+3Xd%HjYr%q8)DTqp=n=LsB#?EfZ0d&6Lc|DWZI zyETW*_NFSt8&j8dsvDsFhpl>vSZQ8KSbpd+X}CVyI1|E+;>-3G!-YzI9>{XU;y<_e zc>GR9W2I!*TVR(hUFH1@VG%qPu@>Sv|6^eZZxRLpC$a6+51{C^Mb`SmKY{Oqsh#G- ziqx$Xd41|%h@BrQr)E3!HDSqV$k>Sdi*!U{wr;&1MyzW$y{?MraNqf)YvXI?8Ir!h zK$QB|=M?p4%U_U$o3B~x?nca18RkbNh#^Hp`Gax&3mOy~6q5VDZO-gr(BU>_?aFh!Az62gDs-N|)8dj6NvcP_Sq^V}sLj0%zu*;w;pbheA=rBnGiqI8;i9N4R)%q-P z#*r=45f|FUcMDz<^iVgRDB>nDFnv8WMLQ3!-OY`F+42+$70){CIh9AYPHYG!h`CJ*C zkHy)j5=_f^rPFX!iOQOp?bh*gh{GYse;~ejM0}x*Oge>7YYvSHEmvy+^dZ6gH1?oc z7Q1xs{GF)!#T5cLq&s&9Bkl&0nQoE+f$WsC>mfE$<z@92z4oAhw$R71Dqw@0tKQKot!8R%(uTX?sTnf^z6rQ&>hx`pq;mZ^8r_3eEQxY_ zYZhLKtIfAth+?V65Q!%Ld3*bxXR{&R#zTXvfQ82oI{I#1Ze!82qzD*OnL4ta5tqFu zBb`kqBYiB&ok{le`jj1R!U7eLC}OgTXG5D2_w_dUch+l6r?NY`%Lc~P(}QlTlGg3y z8e9TCt7^qJa}?N8hAU=o5`J2Hn<1O6A+2*hTlWqut-7#D9Wax`0p$>pHcpN6A{UYY z^Rf#0hDi6yN=U$%a>qE4llk(9aM?mkh~uGVyHArvc@5BqYA2InBNuf)^ynXVPO=j< z*?;dRd1+g3Snk9b2Xd1obR!(&=F92MS_UtVUITs)Xt#JAqKUY@%=6IG_w%(-k@XKP zPy`tUm^BzW+hs?|qxs*hp=i6ix}&lmMFUSG_oDK<2cvL9Za7!poW!2z90ouCx zMA9i~)4=e%3RV2JJ}MrEsI}h{gXaI_~n>~cs70aHQb)1YLVKY3(UF66oWq6ng*n{jMfVWU2XmlKN3<1|*Me%Q+|-i{A*3WdA#gdD=IRJ|BU{_5pEH=O|zV{i^U)Pqq*XLe>e|)Yy@x zRelf1k#ATe&Rt|bZD?*xL2_b(Iy+(Yik=0GYw&Um-s~ zb0$TfYk&vJO{@noYRqFfFC}W4W)EyQ*o!4-2wiCl(W%hHw0tC*Y71>i#^m4(NTL*T zlFO!S8~9cBn|KE+4qVil)gUIAIO@{@L0or^K=Tb2xTL6p<3^y;KlzbTuvrA7(cL5lXl1T9RLx+!%`a zr%vDoH;axW{-b_@37ts@hR3vf?1U7{G72eVY4Va(xz?NMKq9CV<}H4=kbDc<(*%5g zuzmSGmRArSOR3}ZOgMZ;rxY(%k5&hoBNxp#oFC zhVU&978hAL@|wl$e}KX0qeCcACtIBKoOJrg%I{wT7wmz5J2GP z8uM1~%B!8beX@};NE83yO1H&v{HwWiZ;dKeh*|CWgnn&ajBny!txTW9V(L>2%mE^P z%f6luLJk9PcjA@{s6T(7H`*LV_OoSvVP0PTAkCZa>Sbmj$paI$N5yBk_QMPzxfLf5 zpP1IT5I?ty?T%1}ooSivp;NwMc7rpMwOD)q{7(cc6Z8@n12Bu{nXMO<$!e+x z9TA5-02A?gOSbf^GvpQ>$ywhfU<1<>5&s`Dzn=qUAcNsoaQUdLy76^p-32Wh;nS$; z8MDS#f&Gif`-Ed_B)TS3sJ57O`XM6wtP92hDnq_~x0$2d4kp@Tw@L0iU)z5*sVn>ZP+al=;|eA_yKQD3lIRWrOMe z#0}PPH7V-)kg70VX$<6P4&?vM;y8N)S&Q<;Kb3*jzdt&6GA5%pvptjj)z@y*Qj}_@ zU=kWB0#M|#2G+$fEWMYSvDPu;labX4X5h!mrs~==3mCdh4q`it*$ebATynyTgE%o%zEG*Da3CEHxtF784fb43SQ_vQ?#R2U25oV2vF1 ze-u8fmdPE5;)JWuo@Zik4wM7Bc&o)sD_%&224F_Nm!;D0{)9$=eyy|^4qNDr1Jg^Lr5?N7})m0 zS^hy4~+K(mvILO9`b>8q|x zBQkANZ44zB!^+a%lOM>4A7m8!KJDZ=4v>jxVc4-mST1`iBf(0yAr5>KwU%55 zCdtjuR>sVDS?~#|eP?qT3pe;u5`njVUHo=IN_mgm4rh zQDK>I@!YFsL}13sK942Un9pl_X#oJQz@c>^pj;=0#`%4fr3SBSk$08T!;DY%!a(bM z;hxA-C7wRh4M-U}5iE7RVJ(~i&X`l74gXc8;3D(&N~@+t=?X+JEDs*M0KIZiik zaY_XNUnJ`)cr=a==vKR3@Xui36pIE;)k&s_`0!b}_Ri<85m^`ViFb~$ldqwe+ZF%G z;yoA@IR2%;RwTwc(R3vKIIicRqaC}~)zau_yWpMudwsQmzrdC6KPnS(z9x#{o0Y&* zI9&lQI)tw&a;oK7K{NH5J|jBnq}{`(fZyWZn~Q)E6-njR`YsJh7fkdeCnthwi9?Gf@tNt!ZJtFt{a z?iVZ-7KFpu;D(;}{&)9RBCO0J(V&*3qSFJRYF!dEtGYF@o?wNkF9$Uk>|(WK!mu%6 z@@5ucY5#!A{vltfMt`PUBUi8UZD!~Ar{jC#e}2vOFE=u+onjNVTPT(&q8$I zd=<{FQ_W>yYALQ(^y4r!{nbEVKL$tt%SL;cK2l3@a!R~B8K^fpdz9CF_&RH$z}#ES zH47NrLi6Q}VjK96AIZMe(#O~;qwE5qBij#guPHq+{>%kpQLcipN`k$fxnZbVMxzjj zS1i=qeuFwBR_gySr?$d^x)kDCUq*StD9xQT95|G0hZsM6v5Gr9YC_e%l=Dv^DTUNpE?^#99Y@X zV~cdghQ*~0t16CA?l=)*z4$k5U6e{XmcZF_U%;uLqgW{EIze}c>D6h`4FKW(2fDB6Z6LR}G5M6X_R#PuPj9DMEI~l(W7!7^84mtyL`tv`^U4b zagEsmye7V>-pO)!$(rdE3{xHVCIfKiaUuGO3N|vZIp>Mz*idV-^gm&0$UzDg3aE(l z-3MhpQvqT;%QWQGCNy~$Q_GtMMxOditTo2$>Gb0dsUZDL$%objbEV~CG$P}|IR$f?$1Bj)~Lzo`GoGP8a!ShXTh zzyUwvgV4mAxk~VT#isYguXW>VQIQ8fbkr4DiS(@JNbT66ZYnt!$(w_P8le-Q!3N%t znYwe0!l%G-Dm+1eaULjyNAWM9Gi<>_g{l4IhW;o~{;MqS#4|7Zne<_@?Xm28eNJ#a z8`k%Z-gy#UYHl6Qh2g(@y%#_MkByu||BXUvA^Q;!0rFjR+a3&`atrG9Oye`)wVSP) zV|<@5>ta}{5HUxFGyRUw^67LyKOKCiem@;ZQgbEnfXd1HZ0A35x|*dmkhvn52uIDM z&CF|Q{sfrooZ4dLeYtGH?yyZy0R}G-%~EaHXDRO-jgU%7rJ>PEGywMcOsT;f6uYEJ z+0tiO8Fd$ZB|xZ7d4j{W-+*H2#M;c3UujKp(7w;8d_T|G99Nfmy3#r?vhQvQAY-1b z^eTL5Ck1J>+>WNTjsOL+Us#AGN22OM@^04&F(7`wp`aK4$fxwn2XYiXw`?VO%$lG9 zRvgK0rEp}%`$)U2rWtYVM-0-+UdPyCg>)T5TqD6kS4Kwb9y47-|LD46;E+SDNLw(O0u+@~$U2*FcwwpG z+r?$5|N18t3CkO`VaNfR&@TZm2_t`mH*1D8!tFG0F$%JIu*ke7ZJ1}Ky^1>eV!(TY zVI^%NRMUYqpJEgCs|yVB3H!@xed2EECfg~~M!cxiRv}Lzjt!m>-E(uG<%RBW^$%ZE zl_ISc$kxsOew{n867a%d1L{De?1ad( zj|6>@3MJSi*nbFg@WOLrhjJV-E zlZMlUJPQpET_*az+)L@;$3FcQeLa9o@BF&y!_TehhPd|leQq_lxP0JyMTCNSeT9Wm zSAvDZg+hQrf`Wpggo>QNxLN@|;le;c;Q{X|GTIU>3aYYfPG-(_)>dxrtlmzJwMi28 zupFo|58<2r-eR83Otkr@z9IKe154ZpA9$%%#@0nu%~Cuyp+7;0ZSv7*%r#t{k$ zIep);mSm2mB!T_lwq>-jODa?rCuNeW*GjnF@>`fYsbpDqYZTrhL}F>_M#4b=J}EFk zM1$J|ddjQ*7caH6C{;{bBC)|zoTKlt$zq62O76e?YYYyqDbgI!+&?oW9Nn(n zUa|uzw!gEN%`KU#CLE5bT-~c!^AXb|XX>6aap&tE!nd&RdYep)_wufzRFLo$OOE#Z z_KdVnyS#BGlYQVLJ^lhVy69{JN_$si-Vty?-fCW{$wqjeQIYa z3)0g%nD1kUL&6z@&1RdUXiGtWxB`K}WrIv;>t!3OuHw?tYJ49CR-+~U@TactLh_4_ z3@z&pzaWcW?tU$}bEs7i`oW+4nxL-_D{mTM-%)kgtL+R+zx)SJ+@UYpivvFQeL?Qs z3iJ~*HJ)tJyvDkc5fSTF>R^$9Cos_y%eXxJ@Y*3F`Mh>%+L|(ojzA8X=A95i!ZFQm z4bErp>4S3eDzZ|d|H&V3hrQt5t6Kioeq{I0!uH|T$joeI*1Wgkg7;VDNAA5;RSsP) zUSUb{2XCTRjYr>MlmBxAp Date: Tue, 1 Sep 2026 18:27:24 +0200 Subject: [PATCH 2/3] Fix issues from review: strengthen childcare dimensions --- chronicle/core.py | 10 +- chronicle/source_package.py | 4 + chronicle/sources/specs.py | 4 + chronicle/suite.py | 29 +- docs/pe-uk-source-checklist.md | 2 +- .../source_package.yaml | 3666 ++++++++++++++--- tests/test_childcare_source_packages.py | 110 +- tests/test_chronicle_suite.py | 61 + 8 files changed, 3329 insertions(+), 557 deletions(-) diff --git a/chronicle/core.py b/chronicle/core.py index 16dcc3cf..0f8adb7b 100644 --- a/chronicle/core.py +++ b/chronicle/core.py @@ -230,6 +230,7 @@ class SourceRecordLayout: measure_ordinal: int | None = None source_row_id: str | None = None source_column_id: str | None = None + source_column_dimensions: dict[str, Scalar] = field(default_factory=dict) table_record_kind: str | None = None parent_record_set_id: str | None = None total_record_id: str | None = None @@ -575,9 +576,7 @@ def fact_counts(facts: list[AggregateFact]) -> dict[str, dict[str, int]]: f"{fact.period.type}:{fact.period.value}" for fact in facts ), "by_assertion": _counter_dict(fact.assertion for fact in facts), - "by_provenance_class": _counter_dict( - fact.provenance_class for fact in facts - ), + "by_provenance_class": _counter_dict(fact.provenance_class for fact in facts), "missing_labels": {"count": sum(1 for fact in facts if not fact.label)}, "missing_provenance": { "count": sum(1 for fact in facts if _has_missing_provenance(fact)) @@ -651,7 +650,10 @@ def _validate_provenance_class( return if provenance_class == "survey_aggregate": - if type(fact.survey_instrument) is not str or not fact.survey_instrument.strip(): + if ( + type(fact.survey_instrument) is not str + or not fact.survey_instrument.strip() + ): errors.append( _issue( "missing_survey_instrument", diff --git a/chronicle/source_package.py b/chronicle/source_package.py index daa201b3..7234621b 100644 --- a/chronicle/source_package.py +++ b/chronicle/source_package.py @@ -1876,6 +1876,10 @@ def _measure_from_mapping( if payload.get("source_column_id") is not None else None ), + source_column_dimensions={ + str(key): _render_value(value, year=year) + for key, value in payload.get("source_column_dimensions", {}).items() + }, expected_cell_type=payload.get("expected_cell_type", "number"), expected_column_header_row=( int(payload["expected_column_header_row"]) diff --git a/chronicle/sources/specs.py b/chronicle/sources/specs.py index 41e2382c..91efd162 100644 --- a/chronicle/sources/specs.py +++ b/chronicle/sources/specs.py @@ -167,6 +167,7 @@ class SourceRecordSetMeasure: divisor_column: str | None = None round_to: int | float | None = None source_column_id: str | None = None + source_column_dimensions: dict[str, Scalar] = field(default_factory=dict) expected_cell_type: str = "number" expected_column_header_row: int | None = None expected_column_header: Scalar = None @@ -338,6 +339,7 @@ def compile_source_record_set_specs( or measure.source_column_id or measure.measure_id ), + source_column_dimensions=dict(measure.source_column_dimensions), table_record_kind=row.table_record_kind, ), ) @@ -846,6 +848,8 @@ def _record_set_spec_hash(spec: SourceRecordSetSpec) -> str: measure.pop("divisor_column", None) if measure.get("round_to") is None: measure.pop("round_to", None) + if not measure.get("source_column_dimensions"): + measure.pop("source_column_dimensions", None) if measure.get("expected_column_header") is None: measure.pop("expected_column_header", None) if measure.get("expected_column_header_row") is None: diff --git a/chronicle/suite.py b/chronicle/suite.py index a94abf2f..79f98285 100644 --- a/chronicle/suite.py +++ b/chronicle/suite.py @@ -943,7 +943,11 @@ def _row_semantic_evidence_issues( ) for variable, value in fact.filters.items(): - if value in (None, "all"): + if value is None: + continue + if value == "all" and not ( + fact.layout and fact.layout.source_column_dimensions + ): continue matched_values = _source_row_values(rows, variable) if not matched_values: @@ -1020,30 +1024,19 @@ def _row_semantic_evidence_issues( return issues -WIDE_TABLE_SOURCE_COLUMN_DIMENSIONS = { - "eligibilitybasis", - "provision", - "receptionstatus", - "registrationbasis", - "registrationstatus", -} - - def _wide_table_filter_evidenced_by_source_column( fact: AggregateFact, variable: str, expected: Any, ) -> bool: - """Accept categorical dimensions printed in a wide-table column name.""" - if _normalize_semantic_name(variable) not in WIDE_TABLE_SOURCE_COLUMN_DIMENSIONS: + """Accept an explicitly declared dimension of a guarded source column.""" + if not fact.layout: return False - source_column_id = fact.layout.source_column_id if fact.layout else None - if not source_column_id: + dimensions = fact.layout.source_column_dimensions + if variable not in dimensions: return False - expected_name = _normalize_semantic_name(str(expected)) - return bool(expected_name) and expected_name in _normalize_semantic_name( - source_column_id - ) + declared = dimensions[variable] + return type(declared) is type(expected) and declared == expected def _wide_table_constraint_evidenced_by_source_column( diff --git a/docs/pe-uk-source-checklist.md b/docs/pe-uk-source-checklist.md index 2b3e396f..0c82efb8 100644 --- a/docs/pe-uk-source-checklist.md +++ b/docs/pe-uk-source-checklist.md @@ -67,7 +67,7 @@ cannot be obtained. Nothing in uk-data is absent from this table. | UC claimants by children ([`dwp.py`](https://github.com/PolicyEngine/policyengine-uk-data/blob/ebf733c/policyengine_uk_data/targets/sources/dwp.py)) | 5 `dwp/uc/claimants_with_{n}_children` | **ported** | `dwp-uc-households-children-april-december-2025` (72 facts, Stat-Xplore) | [#141](https://github.com/PolicyEngine/chronicle/pull/141), [#187](https://github.com/PolicyEngine/chronicle/issues/187) | Monthly history now covers the April–December 2025 caseload averaging window. Digit categories carry integer `number_of_children` constraints; `5 or more` and the unknown tail stay categorical (uk-data merged the tail into its `5+`). Raw revised publisher cells are preserved. | | UC claimants by family type ([`dwp.py`](https://github.com/PolicyEngine/policyengine-uk-data/blob/ebf733c/policyengine_uk_data/targets/sources/dwp.py)) | 4 `dwp/uc/claimants_{family_type}` | **ported** | `dwp-uc-households-family-type-april-december-2025` (45 facts, Stat-Xplore) | [#141](https://github.com/PolicyEngine/chronicle/pull/141), [#187](https://github.com/PolicyEngine/chronicle/issues/187) | Monthly history now covers the April–December 2025 caseload averaging window. Raw publisher counts only — uk-data's `undercount_relative` inflation is **excluded (computed)** and stays populace-side. | | UC element caseloads | Childcare, housing, LCWRA and carer benefit units | **ported** | `dwp-uc-childcare-element-march-2021-august-2025` (54 facts) plus three April–December 2025 Stat-Xplore entitlement packages (9 facts each) | [#187](https://github.com/PolicyEngine/chronicle/issues/187) | DWP's “household” is normalized to the UC benefit unit. Housing is a publisher-side grouped API cell across social, private and other tenure categories; no Chronicle-side summation or annual averaging is introduced. Coverage is Great Britain (`K03000001`), matching the source. | -| Childcare programme anchors | Tax-Free Childcare annual top-up and annual/monthly child activity; funded early-education registered and eligible child measures | **ported; downstream activity and mutually exclusive target arithmetic excluded (computed)** | `hmrc-tax-free-childcare-march-2026` (126 facts: 108 monthly used-account child counts, 9 annual-unique child counts, 9 annual top-up flows); `dfe-funded-early-education-childcare-2026` (770 national child headline facts, 2011–2026) | [#219](https://github.com/PolicyEngine/chronicle/issues/219) | **Publisher cells only.** HMRC's April-2025 used-account definition break is a first-class dimension; annual figures use the revised treatment from FY2024-25. DfE facts are third-week-of-January England stocks: raw entitlement and age labels are row constraints, registration/eligibility and nursery/reception identities are source-column-backed dimensions, and the release vintage is pinned in provenance. Administrative registered-child counts remain distinct from survey-informed eligible-child estimates and revisable percentages. The TFC duration proxy, `379,029 + 242,453`, and `778,327 - 361,790` remain consumer computations; overlapping universal and working-parent universes are not reconciled. | +| Childcare programme anchors | Tax-Free Childcare annual top-up and annual/monthly child activity; funded early-education registered and eligible child measures | **ported; downstream activity and mutually exclusive target arithmetic excluded (computed)** | `hmrc-tax-free-childcare-march-2026` (126 facts: 108 monthly used-account child counts, 9 annual-unique child counts, 9 annual top-up flows); `dfe-funded-early-education-childcare-2026` (770 national child headline facts, 2011–2026) | [#219](https://github.com/PolicyEngine/chronicle/issues/219) | **Publisher cells only.** HMRC's April-2025 used-account definition break is an exact filter and constraint on every monthly fact; consumers combining months must select one `definition_regime`. Annual figures use the revised treatment from FY2024-25. DfE facts are third-week-of-January England stocks: raw entitlement and age labels are row constraints, while registration/eligibility and nursery/reception identities use explicit guarded source-column dimension declarations rather than column-name inference. Total and component columns have distinct concepts, and the release vintage is pinned in provenance. The TFC duration proxy, `379,029 + 242,453`, and `778,327 - 361,790` remain consumer computations; overlapping universal and working-parent universes are not reconciled. | | Scotland UC households, child under 1 ([`dwp.py`](https://github.com/PolicyEngine/policyengine-uk-data/blob/ebf733c/policyengine_uk_data/targets/sources/dwp.py)) | 1 `dwp/scotland_uc_households_child_under_1` (14,000) | **ported** | `dwp-uc-scotland-youngest-child-may-2025` (23 facts, single year of age, Stat-Xplore) | [#141](https://github.com/PolicyEngine/chronicle/pull/141) | The age-0 row (14,412) is the precise value behind uk-data's rounded 14,000. Single-year cells differ from the published 0–4 band by 4 households — Stat-Xplore disclosure-control rounding, both publisher-emitted. | | Land values ([`_land.py`](https://github.com/PolicyEngine/policyengine-uk-data/blob/ebf733c/policyengine_uk_data/targets/sources/_land.py), [`ons_land_values.py`](https://github.com/PolicyEngine/policyengine-uk-data/blob/ebf733c/policyengine_uk_data/targets/sources/ons_land_values.py), [`mhclg_regional_land.py`](https://github.com/PolicyEngine/policyengine-uk-data/blob/ebf733c/policyengine_uk_data/targets/sources/mhclg_regional_land.py)) | `ons/{household,corporate,}_land_value` + 11 regional | **ported** | `ons-national-balance-sheet-land-2025` (90 facts: Land AN.211 × total/households/NFCs × 1995–2024) | [#141](https://github.com/PolicyEngine/chronicle/pull/141) | **Re-pinned to the dataset, vintage partially revised.** From the [2025-edition NBS reference tables](https://www.ons.gov.uk/economy/nationalaccounts/uksectoraccounts/datasets/thenationalbalancesheetestimates) (E44R/E44N/E43B). uk-data's totals match exactly for 2021–2023; its 2024 (£7,100,000m) approximated the published £7,117,771m; its 2020 household/corporate split matches no series in this edition (earlier vintage, since revised). **Excluded (computed):** flat-fills, the fixed 2020 share split, and the regional split over the unattributed prices×dwellings CSV. | | Salary-sacrifice headcounts ([`obr.py`](https://github.com/PolicyEngine/policyengine-uk-data/blob/ebf733c/policyengine_uk_data/targets/sources/obr.py)) | `obr/salary_sacrifice_users_{total,below_cap,above_cap}` (7.7m / 4.3m / 3.3m at 2024) | **ported** | `hmrc-salary-sacrifice-reform-2029-headcounts` (3 facts) | [#141](https://github.com/PolicyEngine/chronicle/pull/141) | **Re-pinned + relabeled.** The publisher is the [HMRC salary-sacrifice reform policy paper](https://www.gov.uk/government/publications/salary-sacrifice-reform-for-pension-contributions-effective-from-6-april-2029/salary-sacrifice-reform-for-pension-contributions) (2025-12-04), not OBR; the paper says "latest available data" with no reference period, so the 2024 keying and the ×1.024 growth extension are **excluded (computed)** populace declarations. | diff --git a/packages/dfe/funded_early_education_childcare_2026/source_package.yaml b/packages/dfe/funded_early_education_childcare_2026/source_package.yaml index 14b8244f..54723ffd 100644 --- a/packages/dfe/funded_early_education_childcare_2026/source_package.yaml +++ b/packages/dfe/funded_early_education_childcare_2026/source_package.yaml @@ -81,9 +81,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -160,6 +163,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -241,6 +247,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -322,9 +331,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -402,9 +414,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -484,9 +500,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -565,6 +585,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -646,6 +669,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -727,9 +753,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -807,9 +836,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -889,9 +922,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -970,6 +1007,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -1051,6 +1091,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -1132,9 +1175,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -1212,9 +1258,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -1294,9 +1344,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -1375,6 +1429,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -1456,6 +1513,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -1537,9 +1597,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -1617,9 +1680,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -1699,9 +1766,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -1780,6 +1851,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -1861,6 +1935,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -1942,9 +2019,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -2022,9 +2102,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -2104,9 +2188,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -2185,6 +2273,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -2266,6 +2357,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -2347,9 +2441,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -2427,9 +2524,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -2509,9 +2610,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -2590,6 +2695,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -2671,6 +2779,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -2752,9 +2863,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -2832,9 +2946,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -2914,9 +3032,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -2995,6 +3117,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -3076,6 +3201,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -3157,9 +3285,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -3237,9 +3368,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -3319,9 +3454,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -3400,6 +3539,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -3481,6 +3623,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -3562,9 +3707,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -3642,9 +3790,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -3728,9 +3880,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -3814,9 +3970,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -3896,9 +4056,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -3977,6 +4141,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -4058,6 +4225,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -4139,9 +4309,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -4219,9 +4392,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -4305,9 +4482,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -4391,9 +4572,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -4473,9 +4658,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -4554,6 +4743,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -4635,6 +4827,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -4716,9 +4911,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -4799,9 +4997,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -4882,9 +5083,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -4962,9 +5166,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -5048,9 +5256,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -5130,9 +5342,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -5216,9 +5432,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -5297,6 +5517,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -5378,6 +5601,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -5459,9 +5685,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -5542,9 +5771,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -5625,9 +5857,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -5705,9 +5940,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -5791,9 +6030,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -5873,9 +6116,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -5959,9 +6206,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -6040,6 +6291,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -6121,6 +6375,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -6202,9 +6459,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -6285,9 +6545,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -6368,9 +6631,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -6448,9 +6714,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -6534,9 +6804,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -6616,9 +6890,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -6702,9 +6980,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -6783,6 +7065,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -6864,6 +7149,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -6945,9 +7233,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -7024,6 +7315,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -7105,6 +7399,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -7186,9 +7483,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -7266,9 +7566,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -7348,9 +7652,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -7429,6 +7737,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -7510,6 +7821,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -7591,9 +7905,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -7671,9 +7988,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -7753,9 +8074,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -7834,6 +8159,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -7915,6 +8243,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -7996,9 +8327,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -8076,9 +8410,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -8158,9 +8496,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -8239,6 +8581,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -8320,6 +8665,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -8401,9 +8749,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -8481,9 +8832,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -8563,9 +8918,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -8644,6 +9003,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -8725,6 +9087,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -8806,9 +9171,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -8886,9 +9254,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -8968,9 +9340,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -9049,6 +9425,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -9130,6 +9509,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -9211,9 +9593,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -9291,9 +9676,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -9373,9 +9762,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -9454,6 +9847,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -9535,6 +9931,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -9616,9 +10015,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -9696,9 +10098,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -9778,9 +10184,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -9859,6 +10269,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -9940,6 +10353,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -10021,9 +10437,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -10101,9 +10520,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -10183,9 +10606,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -10264,6 +10691,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -10345,6 +10775,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -10426,9 +10859,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -10506,9 +10942,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -10592,9 +11032,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -10678,9 +11122,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -10760,9 +11208,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -10841,6 +11293,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -10922,6 +11377,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -11003,9 +11461,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -11083,9 +11544,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -11169,9 +11634,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -11255,9 +11724,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -11337,9 +11810,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -11418,6 +11895,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -11499,6 +11979,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -11580,9 +12063,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -11663,9 +12149,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -11746,9 +12235,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -11826,9 +12318,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -11912,9 +12408,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -11994,9 +12494,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -12080,9 +12584,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -12161,6 +12669,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -12242,6 +12753,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -12323,9 +12837,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -12406,9 +12923,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -12489,9 +13009,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -12569,9 +13092,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -12655,9 +13182,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -12737,9 +13268,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -12823,9 +13358,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -12904,6 +13443,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -12985,6 +13527,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -13066,9 +13611,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -13149,9 +13697,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -13232,9 +13783,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -13312,9 +13866,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -13398,9 +13956,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -13480,9 +14042,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -13566,9 +14132,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -13647,6 +14217,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -13728,6 +14301,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -13809,9 +14385,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -13888,6 +14467,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -13969,6 +14551,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -14050,9 +14635,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -14130,9 +14718,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -14212,9 +14804,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -14293,6 +14889,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -14374,6 +14973,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -14455,9 +15057,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -14535,9 +15140,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -14617,9 +15226,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -14698,6 +15311,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -14779,6 +15395,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -14860,9 +15479,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -14940,9 +15562,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -15022,9 +15648,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -15103,6 +15733,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -15184,6 +15817,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -15265,9 +15901,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -15345,9 +15984,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -15427,9 +16070,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -15508,6 +16155,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -15589,6 +16239,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -15670,9 +16323,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -15750,9 +16406,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -15836,9 +16496,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -15922,9 +16586,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -16004,9 +16672,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -16085,6 +16757,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -16166,6 +16841,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -16247,9 +16925,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -16327,9 +17008,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -16413,9 +17098,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -16499,9 +17188,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -16581,9 +17274,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -16662,6 +17359,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -16743,6 +17443,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -16824,9 +17527,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -16907,9 +17613,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -16990,9 +17699,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -17070,9 +17782,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -17156,9 +17872,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -17238,9 +17958,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -17324,9 +18048,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -17405,6 +18133,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -17486,6 +18217,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -17567,9 +18301,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -17650,9 +18387,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -17733,9 +18473,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -17813,9 +18556,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -17899,9 +18646,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -17981,9 +18732,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -18067,9 +18822,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -18148,6 +18907,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -18229,6 +18991,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -18310,9 +19075,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -18393,9 +19161,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -18476,9 +19247,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -18556,9 +19330,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -18642,9 +19420,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -18724,9 +19506,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -18810,9 +19596,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -18891,6 +19681,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -18972,6 +19765,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -19053,9 +19849,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -19132,6 +19931,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -19213,6 +20015,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -19294,9 +20099,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -19374,9 +20182,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -19456,9 +20268,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -19537,6 +20353,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -19618,6 +20437,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -19699,9 +20521,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -19779,9 +20604,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -19861,9 +20690,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -19942,6 +20775,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -20023,6 +20859,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -20104,9 +20943,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -20184,9 +21026,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -20266,9 +21112,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -20347,6 +21197,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -20428,6 +21281,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -20509,9 +21365,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -20589,9 +21448,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -20671,9 +21534,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -20752,6 +21619,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -20833,6 +21703,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -20914,9 +21787,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -20994,9 +21870,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -21080,9 +21960,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -21166,9 +22050,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -21248,9 +22136,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -21329,6 +22221,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -21410,6 +22305,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -21491,9 +22389,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -21571,9 +22472,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -21657,9 +22562,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -21743,9 +22652,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -21825,9 +22738,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -21906,6 +22823,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -21987,6 +22907,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -22068,9 +22991,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -22151,9 +23077,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -22234,9 +23163,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -22314,9 +23246,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -22400,9 +23336,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -22482,9 +23422,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -22568,9 +23512,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -22649,6 +23597,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -22730,6 +23681,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -22811,9 +23765,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -22894,9 +23851,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -22977,9 +23937,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -23057,9 +24020,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -23143,9 +24110,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -23225,9 +24196,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -23311,9 +24286,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -23392,6 +24371,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -23473,6 +24455,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -23554,9 +24539,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -23637,9 +24625,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -23720,9 +24711,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -23800,9 +24794,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -23886,9 +24884,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -23968,9 +24970,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -24054,9 +25060,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -24135,6 +25145,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -24216,6 +25229,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -24297,9 +25313,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -24376,6 +25395,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -24457,6 +25479,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -24538,9 +25563,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -24618,9 +25646,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -24700,9 +25732,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -24781,6 +25817,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -24862,6 +25901,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -24943,9 +25985,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -25023,9 +26068,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -25105,9 +26154,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -25186,6 +26239,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -25267,6 +26323,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -25348,9 +26407,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -25428,9 +26490,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -25510,9 +26576,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -25591,6 +26661,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -25672,6 +26745,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -25753,9 +26829,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -25833,9 +26912,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -25915,9 +26998,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -25996,6 +27083,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -26077,6 +27167,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -26158,9 +27251,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -26238,9 +27334,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -26324,9 +27424,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -26410,9 +27514,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -26492,9 +27600,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -26573,6 +27685,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -26654,6 +27769,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -26735,9 +27853,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -26815,9 +27936,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -26901,9 +28026,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -26987,9 +28116,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -27069,9 +28202,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -27150,6 +28287,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -27231,6 +28371,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -27312,9 +28455,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -27395,9 +28541,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -27478,9 +28627,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -27558,9 +28710,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -27644,9 +28800,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -27726,9 +28886,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -27812,9 +28976,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -27893,6 +29061,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -27974,6 +29145,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -28055,9 +29229,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -28138,9 +29315,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -28221,9 +29401,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -28301,9 +29484,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -28387,9 +29574,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -28469,9 +29660,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -28555,9 +29750,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -28636,6 +29835,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -28717,6 +29919,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -28798,9 +30003,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -28881,9 +30089,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -28964,9 +30175,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -29044,9 +30258,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -29130,9 +30348,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -29212,9 +30434,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -29298,9 +30524,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -29379,6 +30609,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -29460,6 +30693,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -29541,9 +30777,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -29620,6 +30859,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -29701,6 +30943,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -29782,9 +31027,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -29862,9 +31110,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -29944,9 +31196,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -30025,6 +31281,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -30106,6 +31365,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -30187,9 +31449,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -30267,9 +31532,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -30349,9 +31618,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -30430,6 +31703,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -30511,6 +31787,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -30592,9 +31871,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -30672,9 +31954,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -30754,9 +32040,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -30835,6 +32125,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -30916,6 +32209,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -30997,9 +32293,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -31077,9 +32376,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -31159,9 +32462,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -31240,6 +32547,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -31321,6 +32631,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -31402,9 +32715,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -31482,9 +32798,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -31568,9 +32888,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -31654,9 +32978,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -31736,9 +33064,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -31817,6 +33149,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -31898,6 +33233,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -31979,9 +33317,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -32059,9 +33400,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -32145,9 +33490,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -32231,9 +33580,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -32313,9 +33666,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -32394,6 +33751,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -32475,6 +33835,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -32556,9 +33919,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -32639,9 +34005,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -32722,9 +34091,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -32802,9 +34174,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -32888,9 +34264,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -32970,9 +34350,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -33056,9 +34440,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -33137,6 +34525,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -33218,6 +34609,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -33299,9 +34693,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -33382,9 +34779,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -33465,9 +34865,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -33545,9 +34948,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -33631,9 +35038,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -33713,9 +35124,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -33799,9 +35214,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -33880,6 +35299,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -33961,6 +35383,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -34042,9 +35467,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -34125,9 +35553,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -34208,9 +35639,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -34288,9 +35722,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -34374,9 +35812,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -34456,9 +35898,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -34542,9 +35988,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -34623,6 +36073,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -34704,6 +36157,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -34785,9 +36241,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -34864,6 +36323,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -34945,6 +36407,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -35026,9 +36491,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -35106,9 +36574,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -35188,9 +36660,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -35269,6 +36745,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -35350,6 +36829,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -35431,9 +36913,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -35511,9 +36996,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -35593,9 +37082,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -35674,6 +37167,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -35755,6 +37251,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -35836,9 +37335,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -35916,9 +37418,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -35998,9 +37504,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -36079,6 +37589,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -36160,6 +37673,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -36241,9 +37757,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -36321,9 +37840,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -36403,9 +37926,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -36484,6 +38011,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -36565,6 +38095,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -36646,9 +38179,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -36726,9 +38262,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -36812,9 +38352,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -36898,9 +38442,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -36980,9 +38528,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -37061,6 +38613,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -37142,6 +38697,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -37223,9 +38781,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -37303,9 +38864,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -37389,9 +38954,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -37475,9 +39044,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -37557,9 +39130,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -37638,6 +39215,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -37719,6 +39299,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -37800,9 +39383,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -37883,9 +39469,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -37966,9 +39555,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -38046,9 +39638,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -38132,9 +39728,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -38214,9 +39814,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -38300,9 +39904,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -38381,6 +39989,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -38462,6 +40073,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -38543,9 +40157,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -38626,9 +40243,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -38709,9 +40329,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -38789,9 +40412,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -38875,9 +40502,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -38957,9 +40588,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -39043,9 +40678,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -39124,6 +40763,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -39205,6 +40847,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -39286,9 +40931,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -39369,9 +41017,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -39452,9 +41103,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -39532,9 +41186,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -39618,9 +41276,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -39700,9 +41362,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -39786,9 +41452,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -39867,6 +41537,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -39948,6 +41621,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -40029,9 +41705,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -40108,6 +41787,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -40189,6 +41871,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -40270,9 +41955,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -40350,9 +42038,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -40432,9 +42124,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -40513,6 +42209,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -40594,6 +42293,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -40675,9 +42377,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -40755,9 +42460,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -40837,9 +42546,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -40918,6 +42631,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -40999,6 +42715,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -41080,9 +42799,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -41160,9 +42882,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -41242,9 +42968,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -41323,6 +43053,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -41404,6 +43137,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -41485,9 +43221,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -41565,9 +43304,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -41647,9 +43390,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -41728,6 +43475,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -41809,6 +43559,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -41890,9 +43643,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -41970,9 +43726,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -42056,9 +43816,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -42142,9 +43906,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -42224,9 +43992,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -42305,6 +44077,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -42386,6 +44161,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -42467,9 +44245,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -42547,9 +44328,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -42633,9 +44418,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -42719,9 +44508,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -42801,9 +44594,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -42882,6 +44679,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -42963,6 +44763,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -43044,9 +44847,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -43127,9 +44933,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -43210,9 +45019,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -43290,9 +45102,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -43376,9 +45192,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -43458,9 +45278,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -43544,9 +45368,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -43625,6 +45453,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -43706,6 +45537,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -43787,9 +45621,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -43870,9 +45707,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -43953,9 +45793,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -44033,9 +45876,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -44119,9 +45966,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -44201,9 +46052,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -44287,9 +46142,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -44368,6 +46227,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -44449,6 +46311,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -44530,9 +46395,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -44613,9 +46481,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -44696,9 +46567,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -44776,9 +46650,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -44862,9 +46740,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -44944,9 +46826,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -45030,9 +46916,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -45111,6 +47001,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -45192,6 +47085,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -45273,9 +47169,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -45352,6 +47251,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -45433,6 +47335,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -45514,9 +47419,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -45594,9 +47502,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -45676,9 +47588,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -45757,6 +47673,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -45838,6 +47757,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -45919,9 +47841,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -45999,9 +47924,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -46081,9 +48010,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -46162,6 +48095,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -46243,6 +48179,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -46324,9 +48263,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -46404,9 +48346,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -46486,9 +48432,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -46567,6 +48517,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -46648,6 +48601,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -46729,9 +48685,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -46809,9 +48768,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -46891,9 +48854,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -46972,6 +48939,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -47053,6 +49023,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -47134,9 +49107,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -47214,9 +49190,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -47300,9 +49280,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -47386,9 +49370,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -47468,9 +49456,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -47549,6 +49541,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -47630,6 +49625,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -47711,9 +49709,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -47791,9 +49792,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -47877,9 +49882,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -47963,9 +49972,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -48045,9 +50058,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -48126,6 +50143,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -48207,6 +50227,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -48288,9 +50311,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -48371,9 +50397,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -48454,9 +50483,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -48534,9 +50566,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -48620,9 +50656,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -48702,9 +50742,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -48788,9 +50832,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -48869,6 +50917,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -48950,6 +51001,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -49031,9 +51085,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -49114,9 +51171,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -49197,9 +51257,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -49277,9 +51340,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -49363,9 +51430,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -49445,9 +51516,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -49531,9 +51606,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -49612,6 +51691,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -49693,6 +51775,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -49774,9 +51859,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -49857,9 +51945,12 @@ record_sets: ordinal: 0 column: I source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery expected_column_header_row: 1 expected_column_header: registered_children_nursery_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_nursery source_concept: dfe.number_of_registered_children_nursery concept_relation: source_label concept_authority: dfe @@ -49940,9 +52031,12 @@ record_sets: ordinal: 0 column: J source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception expected_column_header_row: 1 expected_column_header: registered_children_reception_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_reception source_concept: dfe.number_of_registered_children_reception concept_relation: source_label concept_authority: dfe @@ -50020,9 +52114,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -50106,9 +52204,13 @@ record_sets: ordinal: 0 column: L source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_nursery_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_nursery source_concept: dfe.estimated_number_of_eligible_children_nursery concept_relation: source_label concept_authority: dfe @@ -50188,9 +52290,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -50274,9 +52380,13 @@ record_sets: ordinal: 0 column: P source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_nursery_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered concept_relation: source_label concept_authority: dfe @@ -50355,6 +52465,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -50436,6 +52549,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -50517,9 +52633,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -50596,6 +52715,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -50677,6 +52799,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -50758,9 +52883,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -50838,9 +52966,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -50924,9 +53056,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -51010,9 +53146,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -51092,9 +53232,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -51173,6 +53317,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -51254,6 +53401,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -51335,9 +53485,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -51415,9 +53568,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -51501,9 +53658,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -51587,9 +53748,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -51669,9 +53834,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -51750,6 +53919,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -51831,6 +54003,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -51912,9 +54087,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -51992,9 +54170,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -52074,9 +54256,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -52155,6 +54341,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -52236,6 +54425,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -52317,9 +54509,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -52397,9 +54592,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -52479,9 +54678,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -52560,6 +54763,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -52641,6 +54847,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -52722,9 +54931,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -52802,9 +55014,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -52884,9 +55100,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -52965,6 +55185,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -53046,6 +55269,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -53127,9 +55353,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -53206,6 +55435,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -53287,6 +55519,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -53368,9 +55603,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -53448,9 +55686,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -53534,9 +55776,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -53620,9 +55866,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -53702,9 +55952,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -53783,6 +56037,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -53864,6 +56121,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -53945,9 +56205,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -54025,9 +56288,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -54111,9 +56378,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -54197,9 +56468,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -54279,9 +56554,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -54360,6 +56639,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -54441,6 +56723,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -54522,9 +56807,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -54602,9 +56890,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -54684,9 +56976,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -54765,6 +57061,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -54846,6 +57145,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -54927,9 +57229,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -55007,9 +57312,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -55089,9 +57398,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -55170,6 +57483,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -55251,6 +57567,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -55332,9 +57651,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -55412,9 +57734,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -55494,9 +57820,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -55575,6 +57905,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -55656,6 +57989,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -55737,9 +58073,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -55816,6 +58155,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -55897,6 +58239,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -55978,9 +58323,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -56058,9 +58406,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -56144,9 +58496,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -56230,9 +58586,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -56312,9 +58672,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -56393,6 +58757,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -56474,6 +58841,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -56555,9 +58925,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -56635,9 +59008,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -56721,9 +59098,13 @@ record_sets: ordinal: 0 column: M source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit expected_column_header_row: 1 expected_column_header: eligible_children_universal_credit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_universal_credit source_concept: dfe.estimated_eligible_children_universal_credit concept_relation: source_label concept_authority: dfe @@ -56807,9 +59188,13 @@ record_sets: ordinal: 0 column: N source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit expected_column_header_row: 1 expected_column_header: eligible_children_legacy_benefit_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_legacy_benefit source_concept: dfe.estimated_eligible_children_legacy_benefit concept_relation: source_label concept_authority: dfe @@ -56889,9 +59274,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -56970,6 +59359,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -57051,6 +59443,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -57132,9 +59527,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -57212,9 +59610,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -57294,9 +59696,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -57375,6 +59781,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -57456,6 +59865,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -57537,9 +59949,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -57617,9 +60032,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -57699,9 +60118,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -57780,6 +60203,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -57861,6 +60287,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -57942,9 +60371,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -58022,9 +60454,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -58104,9 +60540,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -58185,6 +60625,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -58266,6 +60709,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -58347,9 +60793,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -58426,6 +60875,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -58507,6 +60959,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -58588,9 +61043,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -58668,9 +61126,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -58750,9 +61212,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -58831,6 +61297,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -58912,6 +61381,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -58993,9 +61465,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -59073,9 +61548,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -59155,9 +61634,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -59236,6 +61719,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -59317,6 +61803,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -59398,9 +61887,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -59478,9 +61970,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -59560,9 +62056,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -59641,6 +62141,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -59722,6 +62225,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -59803,9 +62309,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -59882,6 +62391,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -59963,6 +62475,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -60044,9 +62559,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -60124,9 +62642,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -60206,9 +62728,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -60287,6 +62813,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -60368,6 +62897,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -60449,9 +62981,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -60529,9 +63064,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -60611,9 +63150,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -60692,6 +63235,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -60773,6 +63319,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -60854,9 +63403,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -60934,9 +63486,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -61016,9 +63572,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -61097,6 +63657,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -61178,6 +63741,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -61259,9 +63825,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -61338,6 +63907,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -61419,6 +63991,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -61500,9 +64075,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -61580,9 +64158,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -61662,9 +64244,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -61743,6 +64329,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -61824,6 +64413,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -61905,9 +64497,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -61985,9 +64580,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -62067,9 +64666,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -62148,6 +64751,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -62229,6 +64835,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -62310,9 +64919,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -62390,9 +65002,13 @@ record_sets: ordinal: 0 column: K source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: eligible_children_count - concept: dfe.funded_childcare_eligible_children + concept: dfe.funded_childcare_eligible_children_total source_concept: dfe.estimated_number_of_eligible_children concept_relation: source_label concept_authority: dfe @@ -62472,9 +65088,13 @@ record_sets: ordinal: 0 column: O source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all expected_column_header_row: 1 expected_column_header: registered_eligible_children_percent - concept: dfe.funded_childcare_eligible_children_registered_percentage + concept: dfe.funded_childcare_eligible_children_registered_percentage_total source_concept: dfe.estimated_percentage_of_eligible_children_registered concept_relation: source_label concept_authority: dfe @@ -62553,6 +65173,9 @@ record_sets: ordinal: 0 column: Q source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: all_children_count concept: dfe.funded_childcare_estimated_all_children @@ -62634,6 +65257,9 @@ record_sets: ordinal: 0 column: R source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all expected_column_header_row: 1 expected_column_header: registered_all_children_percent concept: dfe.funded_childcare_all_children_registered_percentage @@ -62715,9 +65341,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -62794,9 +65423,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -62873,9 +65505,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe @@ -62952,9 +65587,12 @@ record_sets: ordinal: 0 column: H source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all expected_column_header_row: 1 expected_column_header: registered_children_count - concept: dfe.funded_childcare_registered_children + concept: dfe.funded_childcare_registered_children_total source_concept: dfe.number_of_registered_children concept_relation: source_label concept_authority: dfe diff --git a/tests/test_childcare_source_packages.py b/tests/test_childcare_source_packages.py index 893a5131..56956baf 100644 --- a/tests/test_childcare_source_packages.py +++ b/tests/test_childcare_source_packages.py @@ -17,18 +17,34 @@ REPO_ROOT = Path(__file__).parents[1] -DFE_MEASURE_IDS = { - "registered_children_count", - "registered_children_nursery_count", - "registered_children_reception_count", - "eligible_children_count", - "eligible_children_nursery_count", - "eligible_children_universal_credit_count", - "eligible_children_legacy_benefit_count", - "registered_eligible_children_percent", - "registered_eligible_children_nursery_percent", - "all_children_count", - "registered_all_children_percent", +DFE_CONCEPT_BY_MEASURE_ID = { + "registered_children_count": "dfe.funded_childcare_registered_children_total", + "registered_children_nursery_count": ( + "dfe.funded_childcare_registered_children_nursery" + ), + "registered_children_reception_count": ( + "dfe.funded_childcare_registered_children_reception" + ), + "eligible_children_count": "dfe.funded_childcare_eligible_children_total", + "eligible_children_nursery_count": ( + "dfe.funded_childcare_eligible_children_nursery" + ), + "eligible_children_universal_credit_count": ( + "dfe.funded_childcare_eligible_children_universal_credit" + ), + "eligible_children_legacy_benefit_count": ( + "dfe.funded_childcare_eligible_children_legacy_benefit" + ), + "registered_eligible_children_percent": ( + "dfe.funded_childcare_eligible_children_registered_percentage_total" + ), + "registered_eligible_children_nursery_percent": ( + "dfe.funded_childcare_eligible_children_registered_percentage_nursery" + ), + "all_children_count": "dfe.funded_childcare_estimated_all_children", + "registered_all_children_percent": ( + "dfe.funded_childcare_all_children_registered_percentage" + ), } @@ -79,6 +95,11 @@ def test_hmrc_tax_free_childcare_package_preserves_activity_series(): for fact in facts if fact.measure.concept == "hmrc.tfc_children_with_used_accounts_monthly" } + monthly_used_facts = [ + fact + for fact in facts + if fact.measure.concept == "hmrc.tfc_children_with_used_accounts_monthly" + ] assert len(annual_used) == len(annual_top_up) == 9 assert annual_used[2024] == 1_085_020 @@ -88,6 +109,40 @@ def test_hmrc_tax_free_childcare_package_preserves_activity_series(): assert monthly_used["2024-04"] == 664_215 assert monthly_used["2025-04"] == 699_155 assert monthly_used["2026-03"] == 744_315 + regimes = { + regime: sum( + fact.filters["definition_regime"] == regime for fact in monthly_used_facts + ) + for regime in { + "used_account_in_period", + "payment_and_open_at_reference_date", + } + } + assert regimes == { + "used_account_in_period": 96, + "payment_and_open_at_reference_date": 12, + } + assert ( + next( + fact for fact in monthly_used_facts if fact.period.value == "2025-03" + ).filters["definition_regime"] + == "used_account_in_period" + ) + assert ( + next( + fact for fact in monthly_used_facts if fact.period.value == "2025-04" + ).filters["definition_regime"] + == "payment_and_open_at_reference_date" + ) + assert all( + any( + constraint.variable == "definition_regime" + and constraint.operator == "==" + and constraint.value == fact.filters["definition_regime"] + for constraint in fact.constraints + ) + for fact in monthly_used_facts + ) assert all( fact.entity.name == "person" @@ -123,7 +178,7 @@ def test_dfe_funded_childcare_package_preserves_atomic_child_headlines(tmp_path) working_2025_ages_3_4 = _fact_by_dimensions( facts, - concept="dfe.funded_childcare_registered_children", + concept="dfe.funded_childcare_registered_children_total", period="2025-01", measure_id="registered_children_count", entitlement_type="Working parents", @@ -131,7 +186,7 @@ def test_dfe_funded_childcare_package_preserves_atomic_child_headlines(tmp_path) ) working_2025_age_2 = _fact_by_dimensions( facts, - concept="dfe.funded_childcare_registered_children", + concept="dfe.funded_childcare_registered_children_total", period="2025-01", measure_id="registered_children_count", entitlement_type="Working parents", @@ -139,7 +194,7 @@ def test_dfe_funded_childcare_package_preserves_atomic_child_headlines(tmp_path) ) universal_nursery_2024 = _fact_by_dimensions( facts, - concept="dfe.funded_childcare_registered_children", + concept="dfe.funded_childcare_registered_children_nursery", period="2024-01", measure_id="registered_children_nursery_count", entitlement_type="Universal", @@ -147,7 +202,7 @@ def test_dfe_funded_childcare_package_preserves_atomic_child_headlines(tmp_path) ) working_2024_ages_3_4 = _fact_by_dimensions( facts, - concept="dfe.funded_childcare_registered_children", + concept="dfe.funded_childcare_registered_children_total", period="2024-01", measure_id="registered_children_count", entitlement_type="Working parents", @@ -155,7 +210,7 @@ def test_dfe_funded_childcare_package_preserves_atomic_child_headlines(tmp_path) ) early_learning_2024_age_2 = _fact_by_dimensions( facts, - concept="dfe.funded_childcare_registered_children", + concept="dfe.funded_childcare_registered_children_total", period="2024-01", measure_id="registered_children_count", entitlement_type="Early learning for 2-year-olds", @@ -163,7 +218,7 @@ def test_dfe_funded_childcare_package_preserves_atomic_child_headlines(tmp_path) ) eligible_2024_age_2 = _fact_by_dimensions( facts, - concept="dfe.funded_childcare_eligible_children", + concept="dfe.funded_childcare_eligible_children_total", period="2024-01", measure_id="eligible_children_count", entitlement_type="Early learning for 2-year-olds", @@ -171,7 +226,7 @@ def test_dfe_funded_childcare_package_preserves_atomic_child_headlines(tmp_path) ) registered_share_2024_age_2 = _fact_by_dimensions( facts, - concept="dfe.funded_childcare_eligible_children_registered_percentage", + concept=("dfe.funded_childcare_eligible_children_registered_percentage_total"), period="2024-01", measure_id="registered_eligible_children_percent", entitlement_type="Early learning for 2-year-olds", @@ -194,7 +249,22 @@ def test_dfe_funded_childcare_package_preserves_atomic_child_headlines(tmp_path) assert all( "third-week-of-January" in fact.measure.concept_evidence_notes for fact in facts ) - assert all(fact.layout.measure_id in DFE_MEASURE_IDS for fact in facts) + assert all(fact.layout.measure_id in DFE_CONCEPT_BY_MEASURE_ID for fact in facts) + assert all( + fact.measure.concept == DFE_CONCEPT_BY_MEASURE_ID[fact.layout.measure_id] + for fact in facts + ) + assert len(set(DFE_CONCEPT_BY_MEASURE_ID.values())) == len( + DFE_CONCEPT_BY_MEASURE_ID + ) + assert all(fact.layout.source_column_dimensions for fact in facts) + assert all( + all( + fact.filters[dimension] == value + for dimension, value in fact.layout.source_column_dimensions.items() + ) + for fact in facts + ) assert working_2025_ages_3_4.filters["registration_basis"] == "registered_children" assert working_2025_ages_3_4.filters["provision"] == "all" assert universal_nursery_2024.filters["provision"] == "nursery" diff --git a/tests/test_chronicle_suite.py b/tests/test_chronicle_suite.py index b4b2af3e..f0d10fe1 100644 --- a/tests/test_chronicle_suite.py +++ b/tests/test_chronicle_suite.py @@ -30,6 +30,7 @@ from chronicle.suite import ( SourceRecordSuiteReport, SourceRegionSuiteReport, + _wide_table_filter_evidenced_by_source_column, build_agent_acceptance_report, build_source_cells, build_source_record_specs, @@ -40,6 +41,66 @@ ) +def _wide_table_fact(*, source_column_dimensions=None): + return AggregateFact( + value=1, + period=PeriodDimension(type="month", value="2026-01"), + geography=GeographyDimension( + level="country", + id="E92000001", + vintage="current", + name="England", + ), + entity=EntityDimension(name="person"), + measure=Measure( + concept="dfe.funded_childcare_registered_children", + unit="count", + ), + aggregation=Aggregation(method="sum"), + provenance_class="administrative", + source=SourceProvenance( + source_name="dfe", + source_table="test", + source_file="test.csv", + url="https://example.test/test.csv", + vintage="test", + extracted_at="2026-09-01", + extraction_method="test", + ), + filters={"provision": "all"}, + layout=SourceRecordLayout( + source_column_id="registered_all_children_percent", + source_column_dimensions=source_column_dimensions or {}, + ), + ) + + +def test_wide_table_evidence_requires_explicit_column_dimension(): + fact = _wide_table_fact() + + assert not _wide_table_filter_evidenced_by_source_column( + fact, + "provision", + "all", + ) + + +def test_wide_table_evidence_uses_exact_typed_column_dimension_value(): + fact = _wide_table_fact(source_column_dimensions={"provision": "all"}) + + assert _wide_table_filter_evidenced_by_source_column(fact, "provision", "all") + assert not _wide_table_filter_evidenced_by_source_column( + fact, + "provision", + "All", + ) + assert not _wide_table_filter_evidenced_by_source_column( + fact, + "registration_basis", + "registered_children", + ) + + def test_build_source_suite_writes_artifacts_and_reports(tmp_path): output_dir = tmp_path / "suite" From 12325f6c3dd76e2f94d3b41320534bd72ec5b7ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mar=C3=ADa=20Juaristi?= <127882282+juaristi22@users.noreply.github.com> Date: Tue, 1 Sep 2026 21:23:40 +0200 Subject: [PATCH 3/3] Fix CI: preserve fact layout serialization --- chronicle/core.py | 1 - chronicle/sources/specs.py | 1 - chronicle/suite.py | 68 ++++++++++++++++++------- tests/test_childcare_source_packages.py | 20 ++++++-- tests/test_chronicle_suite.py | 50 ++++-------------- 5 files changed, 75 insertions(+), 65 deletions(-) diff --git a/chronicle/core.py b/chronicle/core.py index 0f8adb7b..411388ea 100644 --- a/chronicle/core.py +++ b/chronicle/core.py @@ -230,7 +230,6 @@ class SourceRecordLayout: measure_ordinal: int | None = None source_row_id: str | None = None source_column_id: str | None = None - source_column_dimensions: dict[str, Scalar] = field(default_factory=dict) table_record_kind: str | None = None parent_record_set_id: str | None = None total_record_id: str | None = None diff --git a/chronicle/sources/specs.py b/chronicle/sources/specs.py index 91efd162..f87cfa9e 100644 --- a/chronicle/sources/specs.py +++ b/chronicle/sources/specs.py @@ -339,7 +339,6 @@ def compile_source_record_set_specs( or measure.source_column_id or measure.measure_id ), - source_column_dimensions=dict(measure.source_column_dimensions), table_record_kind=row.table_record_kind, ), ) diff --git a/chronicle/suite.py b/chronicle/suite.py index 79f98285..07b9551e 100644 --- a/chronicle/suite.py +++ b/chronicle/suite.py @@ -39,6 +39,7 @@ ) from chronicle.sources.specs import ( SourceRecordSpec, + SourceRecordSetSpec, SourceRegionSpec, build_cells_by_sheet_address, resolve_source_record, @@ -320,12 +321,16 @@ def build_source_suite( source_region_report.to_dict(), ) + source_record_set_specs = ( + source_package.build_source_record_set_specs(year) if source_package else [] + ) + source_record_specs = ( + source_package.build_source_record_specs(year) + if source_package + else build_source_record_specs(source, year=year) + ) source_record_report = validate_source_record_specs( - ( - source_package.build_source_record_specs(year) - if source_package - else build_source_record_specs(source, year=year) - ), + source_record_specs, cells, ) _write_report( @@ -386,6 +391,9 @@ def build_source_suite( fact_report=fact_report, concept_alignments=concept_report, require_axiom_validation=require_axiom_validation, + source_column_dimensions_by_record_id=( + _source_column_dimensions_by_record_id(source_record_set_specs) + ), selected_only_source_parse=( bool(source_package) and source_package.artifact.parser == "delimited_text_selected_rows" @@ -558,6 +566,7 @@ def build_agent_acceptance_report( fact_report: ValidationReport, concept_alignments: ConceptAlignmentReport, require_axiom_validation: bool = False, + source_column_dimensions_by_record_id: dict[str, dict[str, Any]] | None = None, selected_only_source_parse: bool = False, ) -> AgentAcceptanceReport: """Build the stricter report agents should satisfy before review.""" @@ -570,6 +579,7 @@ def build_agent_acceptance_report( source_rows_by_key = {build_source_row_key(row): row for row in rows} source_row_keys = set(source_rows_by_key) source_cells_by_key = {build_source_cell_key(cell): cell for cell in cells} + source_column_dimensions_by_record_id = source_column_dimensions_by_record_id or {} raw_r2_link_count = 0 if not cells and not rows: @@ -669,6 +679,12 @@ def build_agent_acceptance_report( for key in fact.source_cell_keys if key in source_cells_by_key ], + source_column_dimensions=( + source_column_dimensions_by_record_id.get( + fact.source_record_id or "", + {}, + ) + ), ): row_semantic_error_count += 1 errors.append(issue) @@ -924,8 +940,11 @@ def _row_semantic_evidence_issues( fact: AggregateFact, rows: list[SourceRow], cells: list[SourceCell], + *, + source_column_dimensions: dict[str, Any] | None = None, ) -> list[AgentAcceptanceIssue]: issues: list[AgentAcceptanceIssue] = [] + source_column_dimensions = source_column_dimensions or {} fact_key = build_fact_key(fact) period_values = _source_row_values(rows, "period") for value in period_values: @@ -945,16 +964,14 @@ def _row_semantic_evidence_issues( for variable, value in fact.filters.items(): if value is None: continue - if value == "all" and not ( - fact.layout and fact.layout.source_column_dimensions - ): + if value == "all" and not source_column_dimensions: continue matched_values = _source_row_values(rows, variable) if not matched_values: if _filter_evidenced_by_source_cells(cells, variable, value): continue if _wide_table_filter_evidenced_by_source_column( - fact, + source_column_dimensions, variable, value, ): @@ -991,7 +1008,10 @@ def _row_semantic_evidence_issues( continue if _constraint_evidenced_by_source_cells(cells, constraint): continue - if _wide_table_constraint_evidenced_by_source_column(fact, constraint): + if _wide_table_constraint_evidenced_by_source_column( + source_column_dimensions, + constraint, + ): continue matched_values = _source_row_values(rows, constraint.variable) if not matched_values: @@ -1025,33 +1045,45 @@ def _row_semantic_evidence_issues( def _wide_table_filter_evidenced_by_source_column( - fact: AggregateFact, + source_column_dimensions: dict[str, Any], variable: str, expected: Any, ) -> bool: """Accept an explicitly declared dimension of a guarded source column.""" - if not fact.layout: - return False - dimensions = fact.layout.source_column_dimensions - if variable not in dimensions: + if variable not in source_column_dimensions: return False - declared = dimensions[variable] + declared = source_column_dimensions[variable] return type(declared) is type(expected) and declared == expected def _wide_table_constraint_evidenced_by_source_column( - fact: AggregateFact, + source_column_dimensions: dict[str, Any], constraint: Any, ) -> bool: if constraint.operator != "==": return False return _wide_table_filter_evidenced_by_source_column( - fact, + source_column_dimensions, str(constraint.variable), constraint.value, ) +def _source_column_dimensions_by_record_id( + record_sets: list[SourceRecordSetSpec], +) -> dict[str, dict[str, Any]]: + """Index explicit wide-column dimensions without changing fact payloads.""" + return { + f"{record_set.source_record_id_prefix}.{row.value_id}.{measure.measure_id}": ( + dict(measure.source_column_dimensions) + ) + for record_set in record_sets + for row in record_set.rows + for measure in record_set.measures + if measure.source_column_dimensions + } + + def _constraint_evidenced_by_source_cells( cells: list[SourceCell], constraint: Any, diff --git a/tests/test_childcare_source_packages.py b/tests/test_childcare_source_packages.py index 56956baf..c7ffe3bd 100644 --- a/tests/test_childcare_source_packages.py +++ b/tests/test_childcare_source_packages.py @@ -167,6 +167,12 @@ def test_dfe_funded_childcare_package_preserves_atomic_child_headlines(tmp_path) rows = package.build_source_rows(2026) cells = package.build_source_cells(2026, source_rows=rows) facts = package.build_facts(2026, cells=cells, source_rows=rows) + declared_columns = [ + (record_set, row, measure) + for record_set in package.build_source_record_set_specs(2026) + for row in record_set.rows + for measure in record_set.measures + ] assert report.valid assert len(rows) == 224 @@ -257,13 +263,19 @@ def test_dfe_funded_childcare_package_preserves_atomic_child_headlines(tmp_path) assert len(set(DFE_CONCEPT_BY_MEASURE_ID.values())) == len( DFE_CONCEPT_BY_MEASURE_ID ) - assert all(fact.layout.source_column_dimensions for fact in facts) + assert len(declared_columns) == len(facts) + assert all(measure.source_column_dimensions for _, _, measure in declared_columns) assert all( all( - fact.filters[dimension] == value - for dimension, value in fact.layout.source_column_dimensions.items() + { + **record_set.shared_filters, + **row.filters, + **measure.filters, + }.get(dimension) + == value + for dimension, value in measure.source_column_dimensions.items() ) - for fact in facts + for record_set, row, measure in declared_columns ) assert working_2025_ages_3_4.filters["registration_basis"] == "registered_children" assert working_2025_ages_3_4.filters["provision"] == "all" diff --git a/tests/test_chronicle_suite.py b/tests/test_chronicle_suite.py index f0d10fe1..3f418137 100644 --- a/tests/test_chronicle_suite.py +++ b/tests/test_chronicle_suite.py @@ -41,61 +41,29 @@ ) -def _wide_table_fact(*, source_column_dimensions=None): - return AggregateFact( - value=1, - period=PeriodDimension(type="month", value="2026-01"), - geography=GeographyDimension( - level="country", - id="E92000001", - vintage="current", - name="England", - ), - entity=EntityDimension(name="person"), - measure=Measure( - concept="dfe.funded_childcare_registered_children", - unit="count", - ), - aggregation=Aggregation(method="sum"), - provenance_class="administrative", - source=SourceProvenance( - source_name="dfe", - source_table="test", - source_file="test.csv", - url="https://example.test/test.csv", - vintage="test", - extracted_at="2026-09-01", - extraction_method="test", - ), - filters={"provision": "all"}, - layout=SourceRecordLayout( - source_column_id="registered_all_children_percent", - source_column_dimensions=source_column_dimensions or {}, - ), - ) - - def test_wide_table_evidence_requires_explicit_column_dimension(): - fact = _wide_table_fact() - assert not _wide_table_filter_evidenced_by_source_column( - fact, + {}, "provision", "all", ) def test_wide_table_evidence_uses_exact_typed_column_dimension_value(): - fact = _wide_table_fact(source_column_dimensions={"provision": "all"}) + dimensions = {"provision": "all"} - assert _wide_table_filter_evidenced_by_source_column(fact, "provision", "all") + assert _wide_table_filter_evidenced_by_source_column( + dimensions, + "provision", + "all", + ) assert not _wide_table_filter_evidenced_by_source_column( - fact, + dimensions, "provision", "All", ) assert not _wide_table_filter_evidenced_by_source_column( - fact, + dimensions, "registration_basis", "registered_children", )